/* =========================================================
   GERUSA DE SÁ — Harmonização Orofacial
   ========================================================= */

:root {
  /* paleta da cliente: vinho #700200 · preto · carvão #202020 · branco */
  --cream:    #FAF9F9;   /* fundo claro principal (quase branco) */
  --cream-2:  #F1F0F0;   /* seções claras alternadas */
  --ink:      #181716;   /* texto escuro / rodapé */
  --espresso: #0E0D0D;   /* fundo das seções escuras */
  --gold:     #700200;   /* ACENTO — vinho da paleta */
  --gold-lt:  #9C342B;   /* vinho um pouco mais claro (hovers) */
  --blush:    #ECD8D6;   /* rosado suave (orbs do hero) */
  --taupe:    #7C7472;   /* cinza neutro p/ texto secundário */
  --line:     rgba(24, 10, 10, 0.13);
  --line-lt:  rgba(250, 249, 249, 0.16);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --pad: clamp(1.4rem, 5vw, 7rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); font-weight: 400; line-height: 1.6; overflow-x: hidden; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--cream); }

.italic { font-style: italic; }
.gold   { color: var(--gold); }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1; letter-spacing: -0.01em; }

.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); display: flex; align-items: center; gap: 0.9em; margin-bottom: 2rem; }
.section-label__line { width: 32px; height: 1px; background: var(--gold); display: inline-block; flex-shrink: 0; }
.section-label--light { color: rgba(250,249,249,0.65); }

/* nas seções escuras o vinho puro fica ilegível: usa um vinho mais claro */
.method, .cta, .footer { --gold: #C9756B; }

/* ----------------- grain ----------------- */
.grain { position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px; }

/* ----------------- custom cursor ----------------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; will-change: transform; mix-blend-mode: difference; }
.cursor { width: 42px; height: 42px; border: 1px solid #fff; transform: translate(-50%, -50%); transition: width .4s var(--ease), height .4s var(--ease), background .4s var(--ease); display: grid; place-items: center; }
.cursor-dot { width: 5px; height: 5px; background: #fff; transform: translate(-50%, -50%); transition: opacity .3s; }
.cursor__label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); opacity: 0; transition: opacity .3s; font-weight: 600; }
.cursor.is-hover { width: 74px; height: 74px; background: rgba(255,255,255,0.18); }
.cursor.is-view { width: 92px; height: 92px; background: var(--gold); border-color: var(--gold); mix-blend-mode: normal; }
.cursor.is-view .cursor__label { opacity: 1; }
.cursor.is-view + .cursor-dot { opacity: 0; }
body.no-cursor { cursor: none; }
@media (hover: none), (max-width: 900px) { .cursor, .cursor-dot { display: none; } body.no-cursor { cursor: auto; } }

/* ----------------- preloader ----------------- */
.preloader { position: fixed; inset: 0; z-index: 10000; background: var(--espresso); color: var(--cream); display: flex; align-items: center; justify-content: center; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }
.preloader__logo { display: block; }
.preloader__logo img { width: clamp(200px, 42vw, 280px); height: auto; object-fit: contain; }
.preloader__line { width: 180px; height: 1px; background: rgba(250,249,249,0.18); overflow: hidden; }
.preloader__line span { display: block; height: 100%; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.preloader__count { font-size: 0.78rem; letter-spacing: 0.3em; color: rgba(250,249,249,0.6); }

/* ----------------- buttons ----------------- */
.btn { position: relative; display: inline-flex; align-items: center; gap: 0.7em; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; padding: 1.05em 1.9em; border-radius: 100px; overflow: hidden; transition: color .5s var(--ease); white-space: nowrap; }
.btn svg { width: 1.1em; height: 1.1em; transition: transform .5s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn span { position: relative; z-index: 2; }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary::after, .btn--light::after { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--gold); transform: translateY(101%); transition: transform .5s var(--ease); border-radius: 100px; }
.btn--primary:hover::after { transform: translateY(0); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { color: var(--cream); }
.btn--light:hover::after { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost::after { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--ink); transform: scale(0); border-radius: 100px; transition: transform .5s var(--ease); }
.btn--ghost:hover { color: var(--cream); border-color: var(--ink); }
.btn--ghost:hover::after { transform: scale(1); }
.btn--nav { background: transparent; color: var(--ink); border: 1px solid var(--line); padding: 0.8em 1.5em; }
.btn--nav::after { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--ink); transform: scale(0); border-radius: 100px; transition: transform .5s var(--ease); }
.btn--nav:hover { color: var(--cream); border-color: var(--ink); }
.btn--nav:hover::after { transform: scale(1); }

/* ----------------- nav ----------------- */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.3rem var(--pad); transition: padding .5s var(--ease), background .5s var(--ease); }
.nav.scrolled { padding-top: 0.85rem; padding-bottom: 0.85rem; background: rgba(250,249,249,0.8); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav__logo { display: flex; align-items: center; gap: 0.65rem; }
.nav__logo-img { height: 30px; width: auto; }
.nav__logo-brand { display: flex; flex-direction: column; line-height: 1.05; }
.nav__logo-name { font-family: var(--serif); font-size: 1.35rem; letter-spacing: 0.04em; text-transform: uppercase; }
.nav__logo-sub { font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); }
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__burger { display: none; width: 30px; height: 18px; position: relative; }
.nav__burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease); }
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { bottom: 0; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-8px) rotate(-45deg); }

/* ----------------- mobile menu ----------------- */
.menu { position: fixed; inset: 0; z-index: 999; visibility: hidden; }
.menu__bg { position: absolute; inset: 0; background: var(--espresso); clip-path: circle(0% at 100% 0%); transition: clip-path .8s var(--ease); }
body.menu-open .menu { visibility: visible; }
body.menu-open .menu__bg { clip-path: circle(150% at 100% 0%); }
.menu__content { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: var(--pad); color: var(--cream); }
.menu__links { display: flex; flex-direction: column; gap: 0.3rem; }
.menu__link { font-family: var(--serif); font-size: clamp(2.2rem, 9vw, 4.2rem); line-height: 1.15; overflow: hidden; }
.menu__link span { display: inline-block; transform: translateY(110%); transition: transform .6s var(--ease); }
body.menu-open .menu__link span { transform: translateY(0); }
.menu__link:nth-child(1) span { transition-delay: .15s; }
.menu__link:nth-child(2) span { transition-delay: .22s; }
.menu__link:nth-child(3) span { transition-delay: .29s; }
.menu__link:nth-child(4) span { transition-delay: .36s; }
.menu__link:nth-child(5) span { transition-delay: .43s; }
.menu__link:hover span { color: var(--gold); }
.menu__footer { display: flex; gap: 2rem; margin-top: 3rem; font-size: 0.85rem; letter-spacing: 0.08em; }
.menu__footer a { color: rgba(250,249,249,0.6); }
.menu__footer a:hover { color: var(--gold); }

/* ----------------- reveal-img ----------------- */
.reveal-img { overflow: hidden; }
.reveal-img img { display: block; width: 100%; height: 100%; object-fit: cover; will-change: transform; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100vh; padding: 7rem var(--pad) 3rem; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; }
.hero__orb--1 { width: 46vw; height: 46vw; top: -10%; right: -8%; background: radial-gradient(circle, var(--blush), transparent 70%); }
.hero__orb--2 { width: 36vw; height: 36vw; bottom: -15%; left: -5%; background: radial-gradient(circle, var(--cream-2), transparent 70%); }

.hero__inner { position: relative; z-index: 2; max-width: 660px; }
.hero__eyebrow { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.6rem; }
.hero__title { font-size: clamp(2.3rem, 5.4vw, 4.8rem); line-height: 1.04; letter-spacing: -0.015em; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__title .word { display: inline-block; will-change: transform; }
.hero__desc { max-width: 520px; color: var(--taupe); font-size: 1.02rem; margin-top: 1.8rem; }
.hero__desc strong { color: var(--ink); font-weight: 600; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-top: 2.4rem; font-size: 0.8rem; color: var(--taupe); }
.hero__trust li { position: relative; padding-right: 1.4rem; }
.hero__trust li::after { content: "·"; position: absolute; right: 0.45rem; color: var(--gold); }
.hero__trust li:last-child { padding-right: 0; }
.hero__trust li:last-child::after { display: none; }
.hero__trust strong { color: var(--ink); font-weight: 700; }

.hero__visual { position: absolute; right: var(--pad); top: 50%; transform: translateY(-50%); z-index: 1; width: clamp(240px, 26vw, 380px); }
.hero__portrait { aspect-ratio: 3/4; border-radius: 220px 220px 14px 14px; overflow: hidden; }
.hero__portrait .reveal-img { width: 100%; height: 100%; border-radius: inherit; }
.hero__portrait img { object-position: 50% 16%; } /* centraliza o rosto, sem cortar a cabeça no arco */
.hero__badge { position: absolute; left: -52px; bottom: 30px; width: 108px; height: 108px; background: var(--espresso); border-radius: 50%; display: grid; place-items: center; }
.hero__badge-text { width: 100%; height: 100%; position: absolute; inset: 0; animation: spin 20s linear infinite; }
.hero__badge-text text { font-family: var(--sans); font-size: 8px; letter-spacing: 1.2px; fill: var(--cream); }
.hero__badge-mark { color: var(--gold); font-size: 1.3rem; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__scroll { position: absolute; bottom: 2rem; left: var(--pad); z-index: 2; display: flex; align-items: center; gap: 0.8rem; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }
.hero__scroll-line { width: 50px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--gold); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0%{transform:translateX(-100%)} 50%{transform:translateX(0)} 100%{transform:translateX(100%)} }

/* ---- hero variante: FOTO da Dra sentada, 100% visivel (teste) ---- */
.hero--photo { min-height: 100vh; background: linear-gradient(180deg, #DCD0DE 0%, #EFECF3 50%, #FAF9FE 100%); }
.hero--photo .hero__media { position: absolute; top: 0; right: 0; height: 100%; width: calc(100vh * 1733 / 2600); z-index: 0; -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%); mask-image: linear-gradient(to right, transparent 0%, #000 12%); }
.hero--photo .hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.hero--photo .hero__scrim { display: none; }
.hero--photo .hero__inner { position: relative; z-index: 2; max-width: 600px; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.4rem 0; overflow: hidden; background: var(--cream); }
.marquee__track { display: flex; align-items: center; gap: 2.2rem; white-space: nowrap; width: max-content; will-change: transform; }
.marquee__track span { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 2.1rem); font-style: italic; color: var(--ink); }
.marquee__track .dot { color: var(--gold); font-style: normal; font-size: 0.9rem; }

/* =========================================================
   AUTORIDADE + NÚMEROS
   ========================================================= */
.authority { padding: clamp(5rem, 11vw, 10rem) var(--pad) clamp(3rem, 6vw, 5rem); }
.authority__head { max-width: 760px; }
.authority__title { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1.8rem; }
.authority__text { color: var(--taupe); max-width: 620px; font-size: 1.04rem; }
.authority__text strong { color: var(--ink); font-weight: 600; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(3rem, 6vw, 5rem); }
.stat { background: var(--cream); padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; gap: 0.6rem; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.6rem); color: var(--gold); line-height: 1; }
.stat__num--text { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.stat__label { font-size: 0.84rem; color: var(--taupe); line-height: 1.4; }
.stat__label em { font-style: italic; opacity: 0.7; }

/* =========================================================
   BLOCO DE DESEJO
   ========================================================= */
.desire { padding: clamp(4.5rem, 10vw, 9rem) var(--pad); background: linear-gradient(155deg, #700200 0%, #4A0100 100%); color: #FAF9F9; text-align: center; }
.desire__inner { max-width: 920px; margin: 0 auto; }
.desire__title { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1.6rem; color: #FAF9F9; }
.desire .gold { color: #EFD3CF; }
.desire__text { color: rgba(250,249,249,0.8); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* =========================================================
   PROCEDIMENTOS
   ========================================================= */
.proc { padding: clamp(4rem, 10vw, 9rem) var(--pad); position: relative; }
.proc__head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.proc__title { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.proc__list { border-top: 1px solid var(--line); }
.proc-card { position: relative; display: flex; align-items: center; gap: 2rem; padding: clamp(1.5rem, 3vw, 2.4rem) 0; border-bottom: 1px solid var(--line); transition: padding .5s var(--ease); }
.proc-card::before { content: ""; position: absolute; inset: 0; background: var(--espresso); transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease); z-index: 0; }
.proc-card > * { position: relative; z-index: 1; transition: color .5s var(--ease); }
.proc-card__body { flex: 1; }
.proc-card__body h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); margin-bottom: 0.4rem; }
.proc-card__body p { color: var(--taupe); max-width: 520px; font-size: 0.96rem; transition: color .5s var(--ease); }
.proc-card__icon { color: var(--gold); font-size: 1.2rem; opacity: 0; transform: translateX(-12px); transition: all .5s var(--ease); }
@media (hover: hover) {
  .proc-card:hover { padding-left: 2rem; padding-right: 2rem; }
  .proc-card:hover::before { transform: scaleY(1); }
  .proc-card:hover .proc-card__body h3 { color: var(--cream); }
  .proc-card:hover .proc-card__body p { color: rgba(250,249,249,0.7); }
  .proc-card:hover .proc-card__icon { opacity: 1; transform: translateX(0); }
}
.proc-cta { margin-top: clamp(2.5rem, 5vw, 4rem); padding: clamp(2rem, 4vw, 3rem); background: var(--cream-2); border: 1px solid var(--line); border-radius: 16px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.proc-cta__text h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.5rem; }
.proc-cta__text p { color: var(--taupe); max-width: 460px; }

/* floating image */
.proc-float { position: fixed; top: 0; left: 0; z-index: 900; width: clamp(220px, 22vw, 300px); aspect-ratio: 4/5; pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(0.85); will-change: transform, opacity; transition: none; }
.proc-float__inner { width: 100%; height: 100%; border-radius: 10px; overflow: hidden; box-shadow: 0 30px 70px rgba(20,15,12,0.35); }
.proc-float img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: none), (max-width: 900px) { .proc-float { display: none; } }

/* =========================================================
   RESULTADOS (auto-scroll)
   ========================================================= */
.results { padding: clamp(4rem, 9vw, 8rem) 0; background: var(--cream-2); overflow: hidden; }
.results__head { padding: 0 var(--pad); max-width: 820px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.results__title { font-size: clamp(2.2rem, 5.5vw, 4.4rem); margin-bottom: 1.2rem; }
.results__caption { color: var(--taupe); font-size: 0.92rem; }
.results__viewport { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.results__viewport::-webkit-scrollbar { display: none; }
.results__viewport.is-auto { overflow: hidden; }
.results__track { display: flex; gap: clamp(1rem, 2vw, 1.6rem); padding: 0 var(--pad); width: max-content; will-change: transform; }
.result-card { flex-shrink: 0; width: clamp(250px, 26vw, 350px); }
.result-card__img { position: relative; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; background: var(--espresso); }
.result-card__img img { width: 100%; height: 100%; object-fit: cover; }
.result-card__tag { position: absolute; top: 1rem; left: 1rem; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--ink); background: rgba(250,249,249,0.92); padding: 0.5em 0.9em; border-radius: 100px; }
.result-card figcaption { margin-top: 1rem; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.7rem); }

/* =========================================================
   MÉTODO (dark)
   ========================================================= */
.method { background: var(--espresso); color: var(--cream); padding: clamp(5rem, 12vw, 11rem) var(--pad); display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.method__img { aspect-ratio: 4/5; border-radius: 14px; }
.method__title { font-size: clamp(2.2rem, 5vw, 4.2rem); margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.method__steps { display: flex; flex-direction: column; }
.method-step { display: flex; gap: 1.6rem; padding: 1.8rem 0; border-top: 1px solid var(--line-lt); }
.method-step:last-child { border-bottom: 1px solid var(--line-lt); }
.method-step__num { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold); flex-shrink: 0; }
.method-step h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 0.5rem; }
.method-step p { color: rgba(250,249,249,0.6); font-size: 0.96rem; max-width: 520px; }

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
.testi { padding: clamp(4rem, 9vw, 8rem) var(--pad); background: var(--cream); overflow: hidden; }
.testi__head { margin-bottom: 3rem; }
.testi__title { font-size: clamp(2rem, 5vw, 3.8rem); margin-top: 0.4rem; }
.testi__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: 16px; padding: clamp(2rem, 3.5vw, 2.8rem); display: flex; flex-direction: column; gap: 1.3rem; }
.testi-card__stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.9rem; }
.testi-card blockquote { font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.3; font-style: italic; flex: 1; }
.testi-card figcaption { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; letter-spacing: 0.04em; font-weight: 600; color: var(--taupe); }
.testi-card__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testi-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-card__avatar--initial { display: grid; place-items: center; background: var(--gold); color: var(--cream); font-family: var(--serif); font-size: 1.3rem; }

/* =========================================================
   SOBRE
   ========================================================= */
.about { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; padding: clamp(5rem, 12vw, 11rem) var(--pad); }
.about__visual { position: relative; }
.about__img { aspect-ratio: 4/5; border-radius: 14px; }
.about__badge { position: absolute; right: -7%; bottom: 7%; width: clamp(118px, 14vw, 150px); height: clamp(118px, 14vw, 150px); background: var(--cream); border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; }
.about__badge-text { width: 100%; height: 100%; position: absolute; inset: 0; animation: spin 22s linear infinite; }
.about__badge-text text { font-family: var(--sans); font-size: 6.2px; letter-spacing: 0.7px; fill: var(--taupe); }
.about__badge-mark { color: var(--gold); font-size: 1.4rem; }
.about__title { font-size: clamp(2.4rem, 5.5vw, 4.4rem); margin-bottom: 2rem; }
.about__text { color: var(--taupe); max-width: 520px; margin-bottom: 1.3rem; }
.about__sign { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--ink); margin-top: 1.6rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: clamp(4rem, 10vw, 9rem) var(--pad); }
.faq__head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.faq__title { font-size: clamp(2.2rem, 5vw, 4rem); margin-top: 0.4rem; }
.faq__list { max-width: 900px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; text-align: left; font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.7rem); transition: color .3s var(--ease); }
.faq-item__q:hover { color: var(--gold); }
.faq-item__icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-item__icon::before, .faq-item__icon::after { content: ""; position: absolute; background: var(--gold); }
.faq-item__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-item__icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); transition: transform .4s var(--ease); }
.faq-item.is-open .faq-item__icon::after { transform: translateX(-50%) scaleY(0); }
.faq-item__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq-item__a > div { overflow: hidden; }
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a p { padding-bottom: 1.6rem; color: var(--taupe); max-width: 720px; font-size: 1rem; }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta { background: var(--espresso); color: var(--cream); padding: clamp(5rem, 13vw, 12rem) var(--pad); text-align: center; }
.cta__inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.cta .section-label { justify-content: center; }
.cta__title { font-size: clamp(2.6rem, 8vw, 6.5rem); line-height: 0.98; margin-bottom: 1.6rem; }
.cta__title .line { display: block; overflow: hidden; padding-bottom: 0.05em; }
.cta__title .word { display: inline-block; }
.cta__text { color: rgba(250,249,249,0.65); max-width: 480px; margin-bottom: 2.4rem; }
.cta__micro { margin-top: 1.8rem; font-size: 0.84rem; color: rgba(250,249,249,0.55); letter-spacing: 0.02em; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: var(--cream); padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-lt); }
.footer__logo { font-family: var(--serif); font-size: 1.9rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer__tagline { color: rgba(250,249,249,0.55); font-size: 0.86rem; max-width: 360px; margin-top: 0.7rem; }
.footer__contact { display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.9rem; text-align: right; }
.footer__contact a:hover { color: var(--gold); }
.footer__locations { display: flex; flex-wrap: wrap; gap: 2.5rem 4rem; padding: 2.5rem 0; border-bottom: 1px solid var(--line-lt); }
.footer__loc { max-width: 380px; }
.footer__loc h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; letter-spacing: 0.02em; color: var(--cream); margin-bottom: 0.5rem; }
.footer__loc p { font-size: 0.86rem; color: rgba(250,249,249,0.55); line-height: 1.5; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.76rem; color: rgba(250,249,249,0.5); padding-top: 1.6rem; }

/* ----------------- reveal base ----------------- */
.reveal-up { opacity: 0; transform: translateY(28px); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero__visual { width: clamp(200px, 30vw, 300px); }
  .method, .about { grid-template-columns: 1fr; }
  .method__media, .about__visual { max-width: 480px; }
  .method__media { order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: block; }
  .hero { min-height: auto; padding-top: 8rem; }
  .hero--photo { min-height: auto; padding-top: 7rem; padding-bottom: 0; display: flex; flex-direction: column; justify-content: flex-start; background: var(--cream); }
  .hero--photo .hero__inner { order: 1; max-width: none; }
  .hero--photo .hero__media { position: static; order: 2; width: 100%; height: auto; margin-top: 2.5rem; -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 7%); mask-image: linear-gradient(to bottom, transparent 0%, #000 7%); }
  .hero--photo .hero__media img { width: 100%; height: auto; object-fit: contain; }
  .hero__visual { position: relative; right: auto; top: auto; transform: none; margin: 3rem auto 0; width: 100%; max-width: 320px; }
  .hero__scroll { display: none; }
  .testi__track { grid-template-columns: 1fr; }
  .proc-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  :root { --pad: 1.4rem; }
  .stats { grid-template-columns: 1fr; }
  .about__badge { right: 2%; }
  .footer__top { flex-direction: column; }
  .footer__contact { text-align: left; }
  .footer__bottom { flex-direction: column; }
  .result-card { width: 76vw; }
}
/* no-JS fallback: se o JavaScript não rodar, mostra tudo (nada fica escondido) */
.no-js .reveal-up,
.no-js .reveal-img,
.no-js .reveal-img img,
.no-js .hero__title .word,
.no-js .hero__eyebrow,
.no-js .hero__desc,
.no-js .hero__ctas,
.no-js .hero__trust { opacity: 1 !important; transform: none !important; }
.no-js .reveal-img { clip-path: none !important; }
.no-js .preloader { display: none !important; }

/* respeita "reduzir movimento" só se o visitante pedir via ?static=on (classe aplicada pelo JS) */
.is-static .reveal-up { opacity: 1; transform: none; }
