@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,500;1,600&family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500;600;700;800&display=swap');

[x-cloak] {
    display: none;
}

:root {
    --ink: #171412;
    --muted: #62564b;

    --hp-bg: #faf8f4;
    --hp-surface: #ffffff;
    --hp-line: rgba(23, 20, 18, 0.1);
    --hp-line-strong: rgba(23, 20, 18, 0.18);
    --hp-accent: #ea580c;
    --hp-accent-soft: rgba(234, 88, 12, 0.12);
    --hp-accent-ink: #1d1710;
    --hp-dark: #15130f;
    --hp-dark-ink: #f7f3ec;
    --hp-dark-muted: rgba(247, 243, 236, 0.6);
    --hp-dark-line: rgba(247, 243, 236, 0.12);
    --hp-radius: 10px;
    --hp-shadow: 0 24px 60px rgba(23, 20, 18, 0.08);
    --hp-header-h: 84px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Archivo', sans-serif;
    color: var(--ink);
    background: var(--hp-bg);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
}

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

::selection {
    background: var(--hp-accent);
    color: #fff;
}

.hp-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

/* ----------------------------------- */
/* Header                               */
/* ----------------------------------- */

.hp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--hp-header-h);
    display: flex;
    align-items: center;
    background: var(--hp-surface);
    border-bottom: 1px solid var(--hp-line);
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

.hp-header.is-scrolled {
    height: 72px;
    box-shadow: var(--hp-shadow);
}

.hp-header__inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.hp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.hp-brand__mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--ink);
}

.hp-brand__mark img {
    width: 24px;
}

.hp-brand__text {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.hp-brand__text strong {
    color: var(--hp-accent);
}

.hp-nav {
    display: flex;
    gap: 36px;
}

.hp-nav a {
    position: relative;
    padding-bottom: 4px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    color: var(--ink);
}

.hp-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--hp-accent);
    transition: width 0.25s ease;
}

.hp-nav a:hover::after,
.hp-nav a:focus-visible::after {
    width: 100%;
}

.hp-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-pill {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid var(--hp-line-strong);
    background: transparent;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.hp-pill:hover,
.hp-pill:focus-visible {
    border-color: var(--hp-accent);
    color: var(--hp-accent);
}

.hp-burger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--hp-line-strong);
    background: transparent;
    cursor: pointer;
}

.hp-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hp-burger.is-active span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}

.hp-burger.is-active span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hp-mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    background: var(--hp-surface);
    border-bottom: 1px solid var(--hp-line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hp-mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.hp-mobile-nav a {
    padding: 16px;
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.hp-mobile-nav a:hover {
    background: var(--hp-accent-soft);
    color: var(--hp-accent);
}

/* ----------------------------------- */
/* Buttons & eyebrow (shared)           */
/* ----------------------------------- */

.hp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hp-accent);
}

.hp-eyebrow::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background: var(--hp-accent);
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    padding: 0 28px;
    border-radius: var(--hp-radius);
    border: 1px solid transparent;
    font-family: 'Archivo', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hp-btn--sm {
    height: 44px;
    padding: 0 22px;
    font-size: 0.84rem;
}

.hp-btn--solid {
    background: var(--hp-accent);
    color: var(--hp-accent-ink);
    box-shadow: 0 14px 32px rgba(234, 88, 12, 0.28);
}

.hp-btn--solid:hover,
.hp-btn--solid:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(234, 88, 12, 0.36);
}

.hp-btn--outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}

.hp-btn--outline:hover,
.hp-btn--outline:focus-visible {
    background: var(--ink);
    color: var(--hp-surface);
}

/* ----------------------------------- */
/* Hero                                 */
/* ----------------------------------- */

.hp-hero {
    padding: calc(var(--hp-header-h) + 56px) 0 0;
    background: var(--hp-bg);
}

.hp-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    padding-bottom: 80px;
}

.hp-hero__title {
    margin: 0;
    max-width: 13ch;
    font-weight: 900;
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.hp-accent-text {
    color: var(--hp-accent);
    font-style: italic;
}

.hp-hero__lead {
    margin: 28px 0 0;
    max-width: 46ch;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--muted);
}

.hp-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hp-hero__visual {
    position: relative;
}

.hp-hero__visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: var(--hp-accent);
    border-radius: var(--hp-radius);
    z-index: 0;
}

.hp-hero__frame {
    position: relative;
    z-index: 1;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: var(--hp-radius);
    background: var(--ink);
}

.hp-hero__frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-hero__badge {
    position: absolute;
    left: -28px;
    bottom: -28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 200px;
    padding: 20px 24px;
    border-radius: var(--hp-radius);
    background: var(--hp-surface);
    border: 1px solid var(--hp-line-strong);
    box-shadow: var(--hp-shadow);
}

.hp-hero__badge strong {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--hp-accent);
}

.hp-hero__badge span {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--muted);
}

.hp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 40px;
    padding-bottom: 64px;
    border-top: 1px solid var(--hp-line);
}

.hp-stat {
    padding: 4px 32px;
    border-left: 1px solid var(--hp-line);
}

.hp-stat:first-child {
    padding-left: 0;
    border-left: 0;
}

.hp-stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.hp-stat span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ----------------------------------- */
/* Marquee                              */
/* ----------------------------------- */

.hp-marquee {
    overflow: hidden;
    padding: 20px 0;
    background: var(--hp-surface);
    border-top: 1px solid var(--hp-line);
    border-bottom: 1px solid var(--hp-line);
}

.hp-marquee__track {
    display: flex;
    width: max-content;
    animation: hp-marquee 42s linear infinite;
}

.hp-marquee:hover .hp-marquee__track {
    animation-play-state: paused;
}

.hp-marquee__track span {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
    flex-shrink: 0;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--muted);
}

.hp-marquee__track span::after {
    content: '/';
    color: var(--hp-accent);
}

@keyframes hp-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ----------------------------------- */
/* Section heads                       */
/* ----------------------------------- */

.hp-section-head {
    max-width: 60ch;
    margin-bottom: 56px;
}

.hp-title {
    margin: 10px 0 0;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.hp-contact__lead {
    margin: 16px 0 0;
    max-width: 60ch;
    line-height: 1.85;
    color: var(--muted);
}

/* ----------------------------------- */
/* Reveal on scroll                     */
/* ----------------------------------- */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* ----------------------------------- */
/* Áreas de atuação                     */
/* ----------------------------------- */

.hp-areas {
    padding: 100px 0;
    background: var(--hp-surface);
    border-top: 1px solid var(--hp-line);
    border-bottom: 1px solid var(--hp-line);
}

.hp-areas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hp-line);
    border: 1px solid var(--hp-line);
}

.hp-area-card {
    padding: 32px;
    background: var(--hp-surface);
    transition: background 0.25s ease;
}

.hp-area-card:hover {
    background: var(--hp-bg);
}

.hp-area-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hp-area-card__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    border: 1px solid var(--hp-line-strong);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.hp-area-card__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    opacity: 0.78;
}

.hp-area-card:hover .hp-area-card__icon {
    border-color: var(--hp-accent);
    background: var(--hp-accent-soft);
}

.hp-area-card__num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    color: var(--muted);
}

.hp-area-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    color: var(--ink);
}

.hp-area-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--muted);
}

/* ----------------------------------- */
/* Equipe                               */
/* ----------------------------------- */

.hp-team {
    padding: 100px 0;
    background: var(--hp-bg);
}

.hp-team__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.hp-team__card {
    background: var(--hp-surface);
    border: 1px solid var(--hp-line);
    border-radius: var(--hp-radius);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hp-team__card:hover {
    border-color: var(--hp-line-strong);
    box-shadow: var(--hp-shadow);
}

.hp-team__photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--hp-bg);
}

.hp-team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hp-team__card:hover .hp-team__photo img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.hp-team__body {
    padding: 28px;
}

.hp-team__role {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hp-accent);
}

.hp-team__body h3 {
    margin: 10px 0 12px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.hp-team__body p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--muted);
}

/* ----------------------------------- */
/* Diferenciais                         */
/* ----------------------------------- */

.hp-why {
    padding: 100px 0;
    background: var(--hp-surface);
    border-top: 1px solid var(--hp-line);
    border-bottom: 1px solid var(--hp-line);
}

.hp-why__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.hp-why__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-line-strong);
}

.hp-why__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(35%);
}

.hp-why__content > p {
    margin: 0 0 32px;
    max-width: 54ch;
    line-height: 1.85;
    color: var(--muted);
}

.hp-why__list {
    display: grid;
    gap: 0;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--hp-line);
}

.hp-why__list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--hp-line);
    line-height: 1.7;
    font-weight: 500;
    color: var(--ink);
}

.hp-why__list span {
    flex-shrink: 0;
    padding-top: 2px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp-accent);
}

/* ----------------------------------- */
/* Contato                              */
/* ----------------------------------- */

.hp-contact {
    padding: 100px 0;
    background: var(--hp-bg);
}

.hp-contact__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
    gap: 32px;
}

.hp-contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hp-contact__item {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-line);
    background: var(--hp-surface);
}

.hp-contact__item img {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    filter: brightness(0) saturate(100%);
    opacity: 0.75;
}

.hp-contact__item strong {
    display: block;
    margin-bottom: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hp-accent);
}

.hp-contact__item span {
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--ink);
}

.hp-contact__cta {
    margin-top: auto;
}

.hp-contact__map {
    overflow: hidden;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-line);
}

.hp-contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    filter: grayscale(25%) contrast(1.05);
}

/* ----------------------------------- */
/* Footer                               */
/* ----------------------------------- */

.hp-footer {
    padding-top: 90px;
    background: var(--hp-dark);
    color: var(--hp-dark-muted);
}

.hp-footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--hp-dark-line);
}

.hp-footer__brand {
    margin: 0;
    font-weight: 900;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--hp-dark-ink);
}

.hp-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.hp-footer__col h4 {
    margin: 0 0 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hp-accent);
}

.hp-footer__col p,
.hp-footer__col a {
    display: block;
    margin: 0 0 10px;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--hp-dark-muted);
    text-decoration: none;
}

.hp-footer__col a:hover,
.hp-footer__col a:focus-visible {
    color: var(--hp-dark-ink);
}

.hp-footer__link-btn {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    margin-bottom: 10px;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-dark-line);
    background: transparent;
    color: var(--hp-dark-ink);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.hp-footer__link-btn:hover,
.hp-footer__link-btn:focus-visible {
    border-color: var(--hp-accent);
    color: var(--hp-accent);
}

.hp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.4);
}

/* ----------------------------------- */
/* WhatsApp float                       */
/* ----------------------------------- */

.hp-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--hp-surface);
    box-shadow: var(--hp-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid var(--hp-accent);
    opacity: 0.5;
    animation: hp-pulse 2.4s ease-out infinite;
}

.hp-whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.hp-whatsapp-float:hover,
.hp-whatsapp-float:focus-visible {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 26px 60px rgba(23, 20, 18, 0.18);
}

@keyframes hp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

/* ----------------------------------- */
/* Login modal                          */
/* ----------------------------------- */

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(23, 20, 18, 0.45);
    backdrop-filter: blur(6px);
}

.login-modal[hidden] {
    display: none;
}

.login-modal__dialog {
    width: min(100%, 460px);
    padding: 36px;
    border-radius: var(--hp-radius);
    color: var(--ink);
    background: var(--hp-surface);
    border: 1px solid var(--hp-line-strong);
    box-shadow: var(--hp-shadow);
}

.login-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.login-modal__title {
    margin: 0;
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.login-modal__subtitle {
    margin: 10px 0 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--muted);
}

.login-modal__close {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--hp-line-strong);
    background: transparent;
    color: var(--ink);
    font-size: 1.1rem;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.login-modal__close:hover,
.login-modal__close:focus-visible {
    border-color: var(--hp-accent);
    color: var(--hp-accent);
}

.login-modal__status,
.login-modal__errors {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.login-modal__status {
    background: rgba(80, 150, 90, 0.08);
    color: #3c7a4a;
    border: 1px solid rgba(80, 150, 90, 0.2);
}

.login-modal__errors {
    background: rgba(200, 70, 70, 0.08);
    color: #9a3412;
    border: 1px solid rgba(200, 70, 70, 0.2);
}

.login-form {
    display: grid;
    gap: 18px;
    margin-top: 6px;
}

.login-field label {
    display: block;
    margin-bottom: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hp-accent);
}

.login-field input {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid var(--hp-line-strong);
    background: var(--hp-surface);
    color: var(--ink);
    font: inherit;
}

.login-field input:focus {
    outline: none;
    border-color: var(--hp-accent);
    box-shadow: 0 0 0 3px var(--hp-accent-soft);
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--muted);
}

.login-remember input {
    width: 18px;
    height: 18px;
    accent-color: var(--hp-accent);
}

.login-submit {
    width: 100%;
    border: 0;
}

.login-modal__footer {
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--muted);
}

/* ----------------------------------- */
/* Home responsive                      */
/* ----------------------------------- */

#topo,
#atuacao,
#equipe,
#diferenciais,
#contato {
    scroll-margin-top: 100px;
}

@media (max-width: 1080px) {
    .hp-hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hp-hero__visual {
        max-width: 420px;
    }

    .hp-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hp-stat {
        padding: 0 0 0 24px;
        border-left: 1px solid var(--hp-line);
    }

    .hp-stat:first-child {
        padding-left: 24px;
        border-left: 1px solid var(--hp-line);
    }

    .hp-areas__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-why__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hp-why__media {
        aspect-ratio: 16 / 10;
    }

    .hp-contact__grid {
        grid-template-columns: 1fr;
    }

    .hp-contact__map iframe {
        min-height: 340px;
    }

    .hp-footer__top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hp-nav {
        display: none;
    }

    .hp-burger {
        display: flex;
    }

    .hp-mobile-nav {
        display: grid;
    }
}

@media (max-width: 760px) {
    .hp-header__inner {
        gap: 16px;
    }

    .hp-hero__title {
        max-width: none;
    }

    .hp-hero__visual {
        max-width: none;
    }

    .hp-hero__badge {
        left: 16px;
        bottom: -24px;
        max-width: none;
        right: 16px;
    }

    .hp-areas {
        padding: 80px 0;
    }

    .hp-areas__grid {
        grid-template-columns: 1fr;
    }

    .hp-team,
    .hp-why,
    .hp-contact {
        padding: 80px 0;
    }

    .hp-team__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hp-footer__cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hp-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .login-modal__dialog {
        padding: 26px;
    }

    .dashboard-panel {
        padding: 30px 22px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-actions > * {
        width: 100%;
    }
}

/* ----------------------------------- */
/* Área do cliente (dashboard)          */
/* ----------------------------------- */

.dashboard-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 34%),
        linear-gradient(180deg, #f8f5ef 0%, #f2ede4 100%);
}

.dashboard-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px 18px;
}

.dashboard-panel {
    width: min(100%, 980px);
    padding: 42px;
    border-radius: 34px;
    background: rgba(255, 253, 249, 0.95);
    box-shadow: 0 24px 70px rgba(17, 13, 8, 0.14);
}

.dashboard-panel h1 {
    margin: 0 0 14px;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 0.98;
    color: #1f1a16;
}

.dashboard-panel > p {
    margin: 0 0 30px;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.8;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(18, 15, 11, 0.08);
    background: rgba(247, 243, 236, 0.75);
}

.dashboard-card h2 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: #211b17;
}

.dashboard-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dashboard-link,
.dashboard-button {
    min-width: 220px;
}

.dashboard-button {
    border: 0;
    cursor: pointer;
}

.admin-shell-page {
    margin: 0;
    padding-top: 0;
    overflow: hidden;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.006em;
    background:
        radial-gradient(1200px 600px at 100% -10%, rgba(234, 88, 12, 0.10), transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(234, 88, 12, 0.07), transparent 55%),
        #f2eee7;
    --admin-radius: 14px;
    --hp-line-soft: rgba(23, 20, 18, 0.07);
}

.admin-shell {
    display: flex;
    height: calc(100vh - 20px);
    margin: 10px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--hp-line-soft);
    background: var(--hp-surface);
    box-shadow: 0 30px 70px rgba(23, 20, 18, 0.10), 0 4px 12px rgba(23, 20, 18, 0.04);
}

@media (max-width: 767px) {
    .admin-shell {
        margin: 0;
        height: 100vh;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }
}

.admin-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.admin-main__content {
    flex: 1;
    overflow: auto;
    padding: 1rem;
    background: var(--hp-surface);
}

.admin-main__inner {
    width: 100%;
    min-width: 0;
}

.admin-page-header {
    margin-bottom: 1.25rem;
}

.admin-page-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--muted);
}

.admin-page-header__eyebrow::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 999px;
    background: var(--hp-accent);
}

.admin-page-header__title {
    margin: 0 0 0.375rem;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
}

.admin-page-header__text {
    margin: 0;
    max-width: 54rem;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

.admin-grid {
    display: grid;
    gap: 0.75rem;
}

.admin-grid--overview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1rem;
}

.admin-grid--status {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-card {
    padding: 1rem;
    border: 1px solid var(--hp-line);
    border-radius: var(--admin-radius);
    background: var(--hp-surface);
}

.admin-card h2,
.admin-card strong {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink);
}

.admin-card p,
.admin-card small {
    display: block;
    margin: 0;
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.6;
}

.admin-card small {
    margin-top: 0.625rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-card--action {
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.admin-card--action:hover {
    border-color: var(--hp-accent);
    background: var(--hp-accent-soft);
}

.admin-card--action span {
    margin-top: 0.625rem;
    display: inline-block;
    color: var(--hp-accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .admin-main__content {
        padding: 1.5rem;
    }
}

@media (max-width: 1100px) {
    .admin-grid--overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-grid--status {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .admin-grid--overview {
        grid-template-columns: 1fr;
    }

    .admin-page-header__title {
        font-size: 1.25rem;
    }
}

.agenda-modal-scroll {
    scrollbar-width: thin;
    scrollbar-color: #fb923c #141418;
}

.agenda-modal-scroll::-webkit-scrollbar {
    width: 10px;
}

.agenda-modal-scroll::-webkit-scrollbar-track {
    background: #141418;
    border-left: 1px solid rgba(63, 63, 70, 0.35);
}

.agenda-modal-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #fb923c, #9a6238);
    border-radius: 999px;
    border: 2px solid #141418;
}

.agenda-modal-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fdba74, #c2410c);
}

/* ----------------------------------- */
/* Legal pages (Privacidade / Termos)   */
/* ----------------------------------- */

.legal-page {
    padding: calc(var(--hp-header-h) + 64px) 0 96px;
}

.legal-page__inner {
    max-width: 760px;
}

.legal-page__inner h1 {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.02em;
}

.legal-page__updated {
    margin: 0 0 32px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.legal-page__inner h2 {
    margin: 40px 0 12px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.legal-page__inner p,
.legal-page__inner li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted);
}

.legal-page__inner ul {
    margin: 0 0 16px;
    padding-left: 1.4em;
}

.legal-page__inner li {
    margin-bottom: 8px;
}

.legal-page__inner a {
    color: var(--hp-accent);
    text-decoration: underline;
}

.legal-page__inner .hp-btn {
    margin-top: 40px;
    text-decoration: none;
}
