/* ============================================
   CLÍNICA GA — DRA. GLAUCIA AMBROZIO
   Design System — Minimalist Premium 2026
   ============================================ */

/* Fontes carregadas via <link> no <head> (functions.php) — sem @import bloqueante */

/* Amandine — fonte proprietária da marca.
   Coloque o arquivo em /img/fonts/Amandine.woff2 (ou .ttf) e a fonte carrega automaticamente.
   Enquanto não estiver presente, o fallback Great Vibes (Google Fonts) é usado. */
@font-face {
    font-family: 'Amandine';
    src: url('../img/fonts/Amandine.woff2') format('woff2'),
         url('../img/fonts/Amandine.woff') format('woff'),
         url('../img/fonts/Amandine.ttf') format('truetype'),
         url('../img/fonts/Amandine.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ---- Tokens ---- */
:root {
    /* Brand palette (oficial Clínica GA) */
    --brown: #5E3621;          /* marrom escuro (palette) */
    --brown-dark: #3E2415;
    --brown-mid: #7D4D32;
    --brown-light: #A06D48;

    --gold: #D2AE7D;           /* dourado/bege (palette) */
    --gold-light: #E2C8A3;
    --gold-dark: #AD8A5A;

    --cream: #ECE6DA;          /* cream (palette) */
    --cream-dark: #DDD4C1;
    --cream-light: #F6F2E9;

    /* Neutrals */
    --white: #FFFFFF;
    --black: #1A0F08;

    --gray-100: #F3EFE6;
    --gray-200: #E0D8C8;
    --gray-300: #C1B39E;
    --gray-400: #8E8072;
    --gray-500: #6A5D50;
    --gray-600: #463C33;
    --gray-700: #2A221B;

    --whatsapp: #25D366;

    /* Typography */
    --font-serif: 'Playfair', Georgia, 'Times New Roman', serif;
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-script: 'Playfair', Georgia, 'Times New Roman', serif;

    /* Layout */
    --container: 1320px;
    --section-pad: clamp(80px, 10vw, 140px);

    /* Radius */
    --r-xs: 2px;
    --r-sm: 4px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-pill: 999px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    color: var(--gray-600);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }

::selection { background: var(--gold); color: var(--white); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ---- Layout ---- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.container--narrow { max-width: 960px; }

section { padding: var(--section-pad) 0; }

/* ---- Typography ---- */
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 24px;
}

.section-heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.15;
    color: var(--brown);
    letter-spacing: 0.02em;
}

.section-heading--light {
    color: var(--cream);
}

.section-sub {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-500);
    max-width: 640px;
}

.section-sub--center { margin-left: auto; margin-right: auto; }
.section-sub--light { color: rgba(247, 241, 232, 0.75); }

.text-center { text-align: center; }

/* Script accent — use where a handwritten feel is desired (signature, ornament) */
.script {
    font-family: var(--font-script);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    font-variant: normal;
    text-transform: none;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    border-radius: var(--r-pill);
    white-space: nowrap;
}

a.btn,
a.btn:link,
a.btn:visited,
a.btn:hover,
a.btn:active,
a.btn:focus {
    text-decoration: none;
}

.btn i, .btn svg { font-size: 0.9rem; transition: transform 0.35s var(--ease); }

.btn--primary {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
}
a.btn--primary,
a.btn--primary:link,
a.btn--primary:visited,
a.btn--primary:hover,
a.btn--primary:active,
a.btn--primary:focus { color: var(--cream); }
.btn--primary:hover { background: var(--black); border-color: var(--black); }

/* Botão dedicado do formulário (submit) — self-contained, evita
   conflitos de user-agent styles em <button> */
.ga-wa-submit,
button.ga-wa-submit,
input[type="submit"].ga-wa-submit {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: 1px solid var(--brown);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    background: var(--brown);
    color: var(--cream);
    white-space: nowrap;
    line-height: 1.2;
    box-sizing: border-box;
    text-decoration: none;
}
.ga-wa-submit:hover,
button.ga-wa-submit:hover,
input[type="submit"].ga-wa-submit:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--cream);
}
.ga-wa-submit i,
button.ga-wa-submit i { font-size: 0.7rem; transition: transform 0.35s var(--ease); }
.btn--primary:hover i.fa-arrow-up-right, .btn--primary:hover .arrow { transform: translate(3px, -3px); }

.btn--gold {
    background: transparent;
    color: var(--brown);
    border-color: var(--gold);
}
a.btn--gold,
a.btn--gold:link,
a.btn--gold:visited,
a.btn--gold:active,
a.btn--gold:focus { color: var(--brown); }
a.btn--gold:hover { color: var(--white); }
.btn--gold:hover { background: var(--gold); color: var(--white); }

.btn--gold-solid {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
a.btn--gold-solid,
a.btn--gold-solid:link,
a.btn--gold-solid:visited,
a.btn--gold-solid:hover,
a.btn--gold-solid:active,
a.btn--gold-solid:focus { color: var(--white); }
.btn--gold-solid:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn--ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(247, 241, 232, 0.3);
}
a.btn--ghost,
a.btn--ghost:link,
a.btn--ghost:visited,
a.btn--ghost:hover,
a.btn--ghost:active,
a.btn--ghost:focus { color: var(--cream); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(247, 241, 232, 0.06); }

.btn--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}
a.btn--whatsapp,
a.btn--whatsapp:link,
a.btn--whatsapp:visited,
a.btn--whatsapp:hover,
a.btn--whatsapp:active,
a.btn--whatsapp:focus { color: var(--white); }
.btn--whatsapp:hover { background: #1EB955; border-color: #1EB955; }

.btn .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
}

/* ============================================
   HEADER — Floating pill
   ============================================ */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    z-index: 100;
    transition: top 0.4s var(--ease);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(236, 230, 218, 0.55);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--r-pill);
    padding: 8px 16px 8px 28px;
    box-shadow: 0 8px 32px rgba(42, 22, 12, 0.08);
    transition: all 0.4s var(--ease);
}

.header.scrolled .header__inner {
    background: rgba(236, 230, 218, 0.72);
    backdrop-filter: blur(32px) saturate(1.5);
    -webkit-backdrop-filter: blur(32px) saturate(1.5);
    box-shadow: 0 10px 40px rgba(42, 22, 12, 0.12);
}

.header__logo { display: flex; align-items: center; }
.header__logo img { height: 88px; transition: height 0.4s var(--ease), filter 0.4s var(--ease); }

.header.scrolled .header__logo img { height: 72px; }

/* Páginas internas: logo branco quando header está sobre o page-header escuro */
body.page-internal .header:not(.scrolled) .header__logo img {
    filter: brightness(0) invert(1);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header__link,
.header__link:hover,
.header__link:focus,
.header__link:visited {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    padding: 10px 16px;
    transition: color 0.3s var(--ease);
    text-decoration: none !important;
}

.header__link:hover { color: var(--brown); }

.header__link.active {
    color: var(--brown);
    font-weight: 600;
    position: relative;
}
.header__link.active::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
}

.header__cta { display: flex; align-items: center; gap: 8px; }
.header__cta .btn { padding: 13px 22px; font-size: 0.72rem; letter-spacing: 0.14em; }

button.header__hamburger,
.header__hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 48px;
    height: 48px;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    cursor: pointer;
    position: relative;
    z-index: 11;
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
    -webkit-tap-highlight-color: transparent;
    color: var(--brown);
    font: inherit;
    line-height: 0;
}
button.header__hamburger:hover,
button.header__hamburger:focus,
button.header__hamburger:active,
.header__hamburger:hover,
.header__hamburger:focus,
.header__hamburger:active {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border: 0 !important;
}
.header__hamburger::before {
    content: '';
    position: absolute;
    inset: 0;
}
.header__hamburger span {
    pointer-events: none;
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    position: relative;
}
.header__hamburger span + span { margin-top: 6px; }
.header__hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(184, 151, 112, 0.06), transparent 65%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.hero__content { max-width: 620px; }

.hero__label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero__label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--brown);
    letter-spacing: 0.015em;
    margin-bottom: 28px;
}

.hero__title em {
    font-style: normal;
    color: var(--gold);
}

.hero__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
}

.hero__media img {
    width: 100%;
    aspect-ratio: 2/3;
    height: auto;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: 0 6px 24px rgba(94, 54, 33, 0.10);
}

.hero__media img:first-child { margin-top: 40px; }

/* ============================================
   ABOUT INTRO
   ============================================ */
.about {
    background: var(--cream-light);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__media {
    position: relative;
}

.about__media img {
    width: 100%;
    aspect-ratio: 5/6;
    height: auto;
    object-fit: cover;
    border-radius: var(--r-lg);
}

.about__text h2 { margin-bottom: 24px; }

.about__text p {
    margin-bottom: 20px;
    color: var(--gray-500);
    line-height: 1.8;
}

.about__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0 36px;
}

.about__tag {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown-mid);
    padding: 8px 16px;
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-pill);
}

/* ============================================
   SERVICES (dark cards)
   ============================================ */
.services {
    background: var(--cream);
}

.services__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 64px;
    gap: 40px;
    flex-wrap: wrap;
}

.services__head .eyebrow { margin-bottom: 16px; }

.services__title {
    max-width: 720px;
}

.services__subtitle {
    max-width: 380px;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--brown);
    transition: transform 0.5s var(--ease);
}

.service-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--cream-dark);
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease);
}

.service-card:hover { transform: translateY(-4px); }
.service-card:hover .service-card__img { transform: scale(1.04); }

.service-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 7, 6, 0) 0%, transparent 100%);
    pointer-events: none;
    display: none;
}

.service-card__body {
    flex: 0 0 auto;
    padding: 28px 28px 32px;
    background: var(--brown);
    color: var(--cream);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--cream);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(247, 241, 232, 0.75);
    margin-bottom: 18px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    transition: gap 0.3s var(--ease);
}

.service-card:hover .service-card__img { transform: scale(1.06); }
.service-card:hover .service-card__desc { opacity: 1; max-height: 140px; margin-bottom: 18px; }
.service-card:hover .service-card__link { gap: 14px; color: var(--gold); }

/* ============================================
   DIFFERENTIALS (editorial dark)
   ============================================ */
.differentials {
    background: var(--brown);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.differentials::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(184, 151, 112, 0.08), transparent 60%);
    pointer-events: none;
}

.differentials::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(184, 151, 112, 0.06), transparent 60%);
    pointer-events: none;
}

.differentials .container { position: relative; z-index: 1; }

.differentials .eyebrow { color: var(--gold-light); }

.differentials__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 100px;
    align-items: start;
}

.differentials__intro {
    position: sticky;
    top: 120px;
}

.differentials__intro h2 {
    margin-bottom: 28px;
}

.differentials__lead {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(247, 241, 232, 0.82);
    margin-bottom: 36px;
    font-style: italic;
}

.differentials__list {
    display: flex;
    flex-direction: column;
}

.diff-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
    padding: 32px 0;
    border-top: 1px solid rgba(247, 241, 232, 0.08);
    transition: padding 0.4s var(--ease);
}

.diff-item:first-child { border-top: none; padding-top: 0; }
.diff-item:last-child { padding-bottom: 0; }

.content-block--dark .diff-item {
    border-top: none;
    padding-top: 0;
}

.diff-item__num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
    padding-top: 4px;
}

.diff-item__body h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.diff-item__body p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(247, 241, 232, 0.62);
    max-width: 520px;
}

@media (max-width: 900px) {
    .differentials__grid { grid-template-columns: 1fr; gap: 56px; }
    .differentials__intro { position: static; }
    .diff-item { grid-template-columns: 60px 1fr; gap: 20px; padding: 24px 0; }
    .diff-item__num { font-size: 1.4rem; }
    .diff-item__body h4 { font-size: 1.2rem; }
}

/* ============================================
   TREATMENTS (highlighted cards)
   ============================================ */
.treatments {
    background: var(--cream-dark);
}

.treatments__head {
    text-align: center;
    margin-bottom: 64px;
}

.treatments__head .eyebrow { justify-content: center; }

.treatments__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.treatment-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease);
}

.treatment-card:hover { transform: translateY(-4px); }

.treatment-card__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.treatment-card__body { padding: 28px; }

.treatment-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 500;
}

.treatment-card__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.treatment-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.treatment-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold);
    transition: gap 0.3s var(--ease);
}

.treatment-card__link:hover { gap: 12px; }

/* ============================================
   STATS
   ============================================ */
.stats {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--gray-200);
}

.stat:last-child { border-right: none; }

.stat__num {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--brown);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* ============================================
   PROCESS
   ============================================ */
.process { background: var(--cream); }

.process__head {
    text-align: center;
    margin-bottom: 64px;
}
.process__head .eyebrow { justify-content: center; }

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-step { position: relative; }

.process-step__num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
}

.process-step__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.process-step__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ============================================
   TESTIMONIALS (infinite marquee)
   ============================================ */
.testimonials {
    background: var(--cream-dark);
    overflow: hidden;
}

.testimonials .container { position: relative; }

.testimonials__head {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials__head .eyebrow { justify-content: center; }

.testimonials__viewport {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonials__track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testimonialsScroll 60s linear infinite;
    will-change: transform;
}

.testimonials__track:hover,
.testimonials__viewport:hover .testimonials__track {
    animation-play-state: paused;
}

@keyframes testimonialsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 12px)); }
}

.testimonial {
    flex: 0 0 380px;
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--r-lg);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial__stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testimonial__text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--brown-mid);
    margin-bottom: 24px;
    flex: 1;
}

.testimonial__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.testimonial__avatar--img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}
.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial__name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown);
    line-height: 1.2;
}

.testimonial__role {
    font-size: 0.75rem;
    color: var(--gray-400);
    letter-spacing: 0.08em;
}

/* ============================================
   GALLERY
   ============================================ */
section.gallery { background: var(--white); }

.gallery__head {
    text-align: center;
    margin-bottom: 56px;
}

.gallery__head .eyebrow { justify-content: center; }

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-md);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.gallery__item:hover img { transform: scale(1.04); }

/* Mosaic sizes (12-col grid) */
.gallery__item--hero   { grid-column: span 5; grid-row: span 3; }
.gallery__item--tall   { grid-column: span 4; grid-row: span 2; }
.gallery__item--portrait { grid-column: span 3; grid-row: span 2; }
.gallery__item--wide   { grid-column: span 4; grid-row: span 2; }
.gallery__item--square { grid-column: span 3; grid-row: span 2; }
.gallery__item--xwide  { grid-column: span 6; grid-row: span 2; }
.gallery__item--sm     { grid-column: span 3; grid-row: span 1; }

/* Legacy classes kept for compatibility */
.gallery__item--1 { grid-column: span 5; grid-row: span 2; }
.gallery__item--2 { grid-column: span 4; grid-row: span 2; }
.gallery__item--3 { grid-column: span 3; grid-row: span 2; }
.gallery__item--4 { grid-column: span 4; grid-row: span 2; }
.gallery__item--5 { grid-column: span 4; grid-row: span 2; }

/* Portraits variant — uniform grid for portrait photography */
.gallery__grid--portraits {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
}

.gallery__grid--portraits .gallery__item {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 3/4;
}

.gallery__grid--portraits .gallery__item img {
    object-position: center 20%;
}

@media (max-width: 900px) {
    .gallery__grid.gallery__grid--portraits {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto !important;
        gap: 12px !important;
    }
    .gallery__grid.gallery__grid--portraits .gallery__item {
        aspect-ratio: 3/4 !important;
        height: auto !important;
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}
@media (max-width: 520px) {
    .gallery__grid.gallery__grid--portraits { gap: 8px !important; }
}

/* Even variant — grid uniforme (3 cols desktop, 2 cols mobile, fotos quadradas) */
.gallery__grid--even {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 14px;
}

.gallery__grid--even .gallery__item {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1/1;
}

.gallery__grid--even .gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .gallery__grid.gallery__grid--even { grid-template-columns: repeat(2, 1fr) !important; grid-auto-rows: auto !important; gap: 10px !important; }
    .gallery__grid.gallery__grid--even .gallery__item { aspect-ratio: 1/1 !important; }
}
@media (max-width: 600px) {
    .gallery__grid.gallery__grid--even { gap: 8px !important; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--brown);
    color: var(--cream);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(184, 151, 112, 0.12), transparent 55%);
    pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__text {
    font-size: 1rem;
    color: rgba(247, 241, 232, 0.7);
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--black); color: var(--gray-300); padding: 80px 0 0; }

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 56px;
}

.footer__logo {
    height: 68px;
    margin-bottom: 22px;
    filter: brightness(1.05);
}

.footer__brand-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 24px;
    max-width: 320px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(247, 241, 232, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 0.85rem;
    transition: all 0.3s var(--ease);
}

.footer__social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer__heading {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a,
.footer__links a:hover,
.footer__links a:focus,
.footer__links a:visited {
    font-size: 0.88rem;
    color: var(--gray-400);
    transition: color 0.3s var(--ease);
    text-decoration: none !important;
}
.footer__links a:hover { color: var(--gold-light); }

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__contact-row {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.footer__contact-row i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer__contact-row a,
.footer__contact-row a:hover,
.footer__contact-row a:visited {
    color: var(--gray-400);
    transition: color 0.3s var(--ease);
    text-decoration: none !important;
}
.footer__contact-row a:hover { color: var(--gold-light); }

.footer__bottom {
    border-top: 1px solid rgba(247, 241, 232, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--gray-400);
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a,
.footer__bottom-links a:hover,
.footer__bottom-links a:visited {
    color: var(--gray-400);
    transition: color 0.3s var(--ease);
    text-decoration: none !important;
}
.footer__bottom-links a:hover { color: var(--gold-light); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 90;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s var(--ease);
}

.whatsapp-float:hover { transform: translateY(-3px); }

/* ============================================
   VIDEO BLOCK + LIGHTBOX
   ============================================ */
.video-block { padding: var(--section-pad) 0; }
.video-block--cream { background: var(--cream); }
.video-block--white { background: var(--white); }
.video-block--dark  { background: var(--brown); color: var(--cream); }

button.video-block__poster,
.video-block__poster {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1100px;
    margin-left: auto !important;
    margin-right: auto !important;
    aspect-ratio: 16/9;
    border: 0 !important;
    outline: 0 !important;
    padding: 0 !important;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--cream-dark);
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
    box-shadow: 0 20px 60px rgba(42, 22, 12, 0.18);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
button.video-block__poster:hover,
button.video-block__poster:focus,
button.video-block__poster:active,
.video-block__poster:hover,
.video-block__poster:focus,
.video-block__poster:active {
    border: 0 !important;
    outline: 0 !important;
}
.video-block__poster:hover { transform: translateY(-3px); box-shadow: 0 28px 70px rgba(42, 22, 12, 0.24); }
.video-block__poster img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.video-block__poster:hover img { transform: scale(1.03); }
.video-block__poster::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
}
.video-block__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 86px; height: 86px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--brown);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 40px rgba(0,0,0,0.32);
    transition: transform 0.3s var(--ease);
}
.video-block__poster:hover .video-block__play { transform: translate(-50%, -50%) scale(1.08); }
.video-block__play svg { transform: translateX(3px); }

/* Lightbox */
.ga-lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(10, 7, 6, 0.92);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.25s var(--ease);
}
.ga-lightbox-overlay.is-open { opacity: 1; }
.ga-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
}
.ga-lightbox-content iframe,
.ga-lightbox-content img {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 90vh;
    border: 0;
    border-radius: var(--r-md);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    background: #000;
    display: block;
    object-fit: contain;
}
.ga-lightbox-content img { aspect-ratio: auto; }
button.ga-lightbox-close,
.ga-lightbox-close {
    position: absolute;
    top: -52px; right: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--brown) !important;
    background-color: var(--brown) !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3) !important;
    color: var(--cream) !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
button.ga-lightbox-close:hover,
.ga-lightbox-close:hover {
    background: var(--black) !important;
    background-color: var(--black) !important;
    transform: scale(1.08);
}
.ga-lightbox-close::before, .ga-lightbox-close::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 18px; height: 2px;
    background: currentColor;
    border-radius: 2px;
}
.ga-lightbox-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.ga-lightbox-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 600px) {
    .video-block__play { width: 64px; height: 64px; }
    .ga-lightbox-overlay { padding: 16px; }
    .ga-lightbox-close { top: -38px; }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
    background: var(--brown);
    color: var(--cream);
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(184, 151, 112, 0.12), transparent 55%);
    pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header .eyebrow { color: var(--gold-light); justify-content: center; margin-bottom: 18px; }

.page-header__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.02em;
    line-height: 1.1;
    max-width: 820px;
    margin: 0 auto;
}

.page-header__sub {
    margin-top: 20px;
    font-size: 1.05rem;
    color: rgba(247, 241, 232, 0.75);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   CONTENT BLOCKS (generic for inner pages)
   ============================================ */
.content-block { padding: var(--section-pad) 0; background: var(--cream); }
.content-block--white { background: var(--white); }
.content-block--dark { background: var(--brown); color: var(--cream); }
.content-block--dark p { color: rgba(247, 241, 232, 0.7); }

.content-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-block__media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--r-lg);
}

.content-block__text h2 { margin-bottom: 24px; }
.content-block__text p { margin-bottom: 18px; color: var(--gray-500); line-height: 1.8; }

/* Team / Profissionais — linhas alternadas */
.pro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 80px;
}
.pro-row:first-of-type { margin-top: 0; }
.pro-row--reverse .pro-row__media { order: 2; }
.pro-row--reverse .pro-row__text { order: 1; }

.pro-row__media img {
    width: 100%;
    aspect-ratio: 3/4;
    height: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--r-lg);
}

.pro-row__text .team-card__crm { display: inline-block; margin-bottom: 12px; }

.pro-row__name {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 400;
    color: var(--brown);
    line-height: 1.15;
    margin-bottom: 8px;
}

.pro-row__role {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.pro-row__text p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 14px;
}

@media (max-width: 900px) {
    .pro-row { grid-template-columns: 1fr; gap: 32px; margin-top: 64px; }
    .pro-row--reverse .pro-row__media,
    .pro-row--reverse .pro-row__text { order: initial; }
    .pro-row__media img { aspect-ratio: 3/4; height: auto; }
}

/* Team / Profissionais (cards — manter para compat) */
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(94, 54, 33, 0.10);
}

.team-card__media {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.team-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.team-card:hover .team-card__media img { transform: scale(1.05); }

.team-card__body {
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.team-card__name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--brown);
    line-height: 1.2;
}

.team-card__crm {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.team-card__desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-top: 4px;
    flex: 1;
}

.team-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    margin-top: 8px;
    transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.team-card:hover .team-card__link { gap: 14px; color: var(--gold-dark); }

@media (max-width: 1024px) {
    .team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .team__grid { grid-template-columns: 1fr; }
}

/* Feature list inline (for service pages) */
.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .feature-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .feature-list { grid-template-columns: 1fr; }
}

/* Dark variant — for use on brown/dark sections */
.feature-list--dark .feature {
    background: rgba(247, 241, 232, 0.04);
    border: none;
}

.feature-list--dark .feature:hover {
    background: rgba(247, 241, 232, 0.07);
    transform: translateY(-2px);
}

.feature-list--dark .feature__icon {
    background: rgba(184, 151, 112, 0.12);
    color: var(--gold-light);
}

.feature-list--dark .feature__title { color: var(--cream); }
.feature-list--dark .feature__text { color: rgba(247, 241, 232, 0.65); }

.feature {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    transition: all 0.3s var(--ease);
}

.feature:hover { border-color: var(--gold); transform: translateY(-2px); }

.feature__icon {
    width: 42px;
    height: 42px;
    background: var(--cream);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: var(--r-sm);
    font-size: 1rem;
}

.feature__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.feature__text {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Full-bleed map with floating info card */
.map-section {
    position: relative;
    width: 100%;
    height: 820px;
    padding: 0;
    overflow: hidden;
    background: var(--cream-dark);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.9) contrast(0.95);
}

.map-section__card {
    position: absolute;
    top: 50%;
    left: clamp(24px, 6vw, 80px);
    transform: translateY(-50%);
    width: min(420px, calc(100% - 48px));
    background: var(--cream);
    padding: 40px 36px;
    border-radius: var(--r-lg);
    box-shadow: 0 20px 60px rgba(42, 22, 12, 0.15);
    z-index: 2;
}

.map-section__card .eyebrow { margin-bottom: 14px; }

.map-section__card h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--brown);
    line-height: 1.15;
    margin-bottom: 20px;
}

.map-section__card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.map-section__card p:last-of-type { margin-bottom: 24px; }

.map-section__card strong { color: var(--brown); font-weight: 500; }

@media (max-width: 720px) {
    .map-section { height: auto; }
    .map-section iframe { height: 360px; }
    .map-section__card {
        position: static;
        transform: none;
        width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 40px 24px;
    }
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info__item {
    display: flex;
    gap: 16px;
    align-items: start;
}

.contact-info__icon {
    width: 40px;
    height: 40px;
    background: var(--cream-dark);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.contact-info__label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-info__value {
    font-size: 0.95rem;
    color: var(--brown);
    line-height: 1.5;
}

.contact-info__value a { color: var(--brown); transition: color 0.3s var(--ease); }
.contact-info__value a:hover { color: var(--gold-dark); }

.form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--r-lg);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-600);
}

.form__input,
.form__textarea,
.form__select {
    padding: 14px 16px;
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--brown);
    transition: all 0.3s var(--ease);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.form__textarea { resize: vertical; min-height: 140px; }

/* Timeline (for about / Dra page) */
.timeline { position: relative; padding-left: 32px; border-left: 1px solid var(--gold); }
.timeline__item { padding-bottom: 32px; position: relative; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline__year {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--gold-dark);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.timeline__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 6px;
}

.timeline__text {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: none; }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .services__grid,
    .treatments__grid,
    .process__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stat { border-right: none; padding: 12px 0; }

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

    .gallery__grid { grid-template-columns: repeat(8, 1fr); }
    .gallery__item--hero   { grid-column: span 4; grid-row: span 3; }
    .gallery__item--tall   { grid-column: span 4; grid-row: span 2; }
    .gallery__item--portrait { grid-column: span 4; grid-row: span 2; }
    .gallery__item--wide   { grid-column: span 4; grid-row: span 2; }
    .gallery__item--square { grid-column: span 4; grid-row: span 2; }
    .gallery__item--xwide  { grid-column: span 8; grid-row: span 2; }
    .gallery__item--sm     { grid-column: span 4; grid-row: span 1; }
}

@media (max-width: 900px) {
    :root { --section-pad: 80px; }

    .header {
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 520px;
    }
    .header__inner {
        padding: 6px 10px 6px 16px;
        width: 100%;
        box-sizing: border-box;
        gap: 8px;
    }
    .header__nav { display: none; }
    .header__nav.open {
        display: flex;
        position: fixed;
        top: 84px;
        left: 12px;
        right: 12px;
        background: var(--cream);
        flex-direction: column;
        gap: 0;
        padding: 16px;
        border-radius: var(--r-md);
        box-shadow: 0 20px 60px rgba(42, 31, 24, 0.12);
        border: 1px solid var(--gray-200);
    }
    .header__nav.open .header__link {
        width: 100%;
        padding: 14px 12px;
        border-bottom: 1px solid var(--gray-200);
    }
    .header__nav.open .header__link:last-child { border-bottom: none; }
    /* Active state no mobile (sem barra inferior — usa fundo + cor) */
    .header__nav.open .header__link.active {
        color: var(--brown);
        font-weight: 600;
        background: rgba(94, 54, 33, 0.08);
        border-radius: 6px;
        padding-left: 16px;
    }
    .header__nav.open .header__link.active::after { display: none; }

    .differentials__list {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .header__hamburger,
    button.header__hamburger { display: flex !important; width: 40px; height: 40px; flex-shrink: 0; }
    .header__hamburger span { width: 20px; }
    .header__cta { gap: 4px; flex-shrink: 0; min-width: 0; }
    .header__cta .btn { padding: 9px 12px; font-size: 0.62rem; letter-spacing: 0.1em; gap: 6px; }
    .header__logo { flex-shrink: 1; min-width: 0; }
    .header__logo img { height: 48px; }
    .header.scrolled .header__logo img { height: 44px; }

    .hero { padding-top: 110px; }
    .hero__grid,
    .about__grid,
    .differentials__grid,
    .content-block__grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__media img:first-child { margin-top: 0; }

    .differentials__media img,
    .content-block__media img { height: 440px; }

    .services__head { flex-direction: column; align-items: start; }

    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }

    .services__grid,
    .treatments__grid,
    .process__steps { grid-template-columns: 1fr; }

    .testimonial { flex: 0 0 300px; padding: 28px 24px; }

    .gallery__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; }
    .gallery__item--hero, .gallery__item--tall, .gallery__item--portrait,
    .gallery__item--wide, .gallery__item--square, .gallery__item--xwide, .gallery__item--sm,
    .gallery__item--1, .gallery__item--2, .gallery__item--3, .gallery__item--4, .gallery__item--5 {
        grid-column: span 2; grid-row: span 2;
    }
    .gallery__item--hero, .gallery__item--xwide { grid-column: span 4; grid-row: span 2; }

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

    .form { padding: 28px 24px; }
    .form__row { grid-template-columns: 1fr; }

    .hero__label { font-size: 0.68rem; }
    .hero__actions .btn { flex: 1 1 100%; justify-content: center; }

    .page-header { padding: 160px 0 80px; }

    .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}

/* === A Clínica → Infraestrutura (montada no Elementor) ===
   Remove padding excessivo das inner-sections e aproxima as duas linhas de cards. */
.elementor-element-01152e9 .elementor-inner-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.elementor-element-01152e9 .elementor-inner-section + .elementor-inner-section {
    margin-top: 32px;
}
.elementor-element-01152e9 .elementor-inner-section .elementor-widget-icon { margin-bottom: 8px !important; }
.elementor-element-01152e9 .elementor-inner-section .elementor-widget-heading { margin-top: 4px !important; margin-bottom: 8px !important; }
.elementor-element-01152e9 .elementor-inner-section .elementor-widget-text-editor { margin-top: 0 !important; }

/* === A Clínica → CTA "Conheça nosso espaço pessoalmente" ===
   Faz o bloco bater visualmente com o backup (.cta-banner do tema).
   - Remove padding 140px da inner-section dos botões (espaçamento)
   - Remove sublinhado dos botões (default do Elementor)
   - Adiciona glow radial sutil (cta-banner::before do tema)
   - Botão "Fale Conosco" com cor do texto cream em vez do marrom invisível */
.elementor-element-5df6add { position: relative; overflow: hidden; }
.elementor-element-5df6add::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(184, 151, 112, 0.12), transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.elementor-element-5df6add > .elementor-container { position: relative; z-index: 1; }
.elementor-element-5df6add .elementor-inner-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.elementor-element-5df6add .elementor-button {
    text-decoration: none !important;
}
.elementor-element-d690e35 .elementor-button {
    color: var(--cream) !important;
}
.elementor-element-d690e35 .elementor-button:hover {
    background: rgba(247, 241, 232, 0.08) !important;
    border-color: var(--cream) !important;
}

/* Eyebrow "Equipe" desalinhado em relação ao título centralizado abaixo */
.elementor-element-980e506 { text-align: center !important; }
