/* =========================================================================
   Juliano Carmo · /consulta — redesign
   Direction A "Painel Clínico Vivo" + abertura cinematográfica "2h da manhã"
   Tema dark navy · arco de cor âmbar (dor) → azul (método) → verde (ação)
   ========================================================================= */

:root {
  /* base surfaces */
  --navy:        #0a1628;
  --navy-2:      #0c1422;
  --navy-3:      #0f1b2d;
  --navy-card:   #122036;
  --navy-card-2: #16263f;
  --navy-line:   #ffffff12;
  --navy-deep:   #060c16; /* opening "2am" */

  /* semantic accents */
  --blue:        #1e90ff;
  --blue-soft:   #4fb0ff;
  --blue-deep:   #0a4d96;
  --blue-glow:   #1e90ff55;
  --warn:        #f5b048;  /* dor / tensão */
  --warn-soft:   #ffc977;
  --warn-deep:   #5a3d12;
  --whatsapp:    #25d366;  /* ação / CTA, exclusivo */
  --whatsapp-2:  #1fb658;

  /* text */
  --text:   #e8eef7;
  --text-2: #a6b3c7;
  --text-3: #7d8ba3;
  --text-4: #57647c;

  /* type */
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --border: #ffffff14;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  --maxw: 1180px;

  /* per-section accent (re-bound by section classes) */
  --accent: var(--blue);
  --accent-soft: var(--blue-soft);
  --accent-glow: var(--blue-glow);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }
button { cursor: pointer; color: inherit; background: none; border: none; font-family: inherit; }
::selection { background: var(--blue-glow); color: #fff; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--blue-soft); outline-offset: 3px; border-radius: 3px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: 940px; margin: 0 auto; padding: 0 24px; }

/* =========================================================================
   Background atmosphere
   ========================================================================= */
.bg-field {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 700px at 78% -8%, #11335e44, transparent 60%),
    radial-gradient(800px 600px at 8% 12%, #1a2c4a40, transparent 55%),
    var(--navy);
}
.bg-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
/* Camada de "clima": tinge o fundo suavemente ao longo do scroll (âmbar na
   dor -> azul no método), interpolado por GSAP via --mood-c1/--mood-c2 (M7,
   ver JS). Fica atrás do grain, na frente do bg-field. Valores iniciais =
   tom âmbar (seção "pain" já é âmbar por padrão, sem precisar de JS rodar). */
.bg-mood {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  --mood-c1: #f5b04800; --mood-c2: #f5b04800;
  background: radial-gradient(1000px 800px at 76% 14%, var(--mood-c1), var(--mood-c2) 45%, transparent 72%);
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .4;
  background-image:
    linear-gradient(to right, #ffffff06 1px, transparent 1px),
    linear-gradient(to bottom, #ffffff06 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 70%);
}

/* =========================================================================
   Typography helpers
   ========================================================================= */
.eyebrow {
  font-family: var(--font-mono);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-soft);
  font-size: 11.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px; background: var(--accent-soft); opacity: .6;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.06;
  text-wrap: balance;
  color: #fff;
  font-size: clamp(30px, 5.2vw, 54px);
}
.lede {
  color: var(--text-2);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.66;
  max-width: 60ch;
  text-wrap: pretty;
}
/* .risk RISCA: só usar quando riscar SIGNIFICA negar ("isso não é preguiça",
   "parar de tentar sozinho"). */
.risk { color: var(--warn); text-decoration: line-through; text-decoration-color: var(--warn); text-decoration-thickness: 2px; }
/* .warn-em MARCA sem negar: para trechos em âmbar que são a própria afirmação
   ("o custo cresce toda semana") — ali o line-through leria como "não cresce". */
.warn-em {
  color: var(--warn);
  text-decoration: underline;
  text-decoration-color: #f5b04866;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.clear { color: var(--blue-soft); }
.kw { color: #fff; font-weight: 600; }
/* Negritos usam 600 (o peso 700 do Inter deixou de ser carregado — evita
   bold sintético/fallback feio e reduz 1 arquivo de fonte no 4G). */
b, strong { font-weight: 600; }

/* mono metadata label (instrument readout) */
.meta {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3);
}

/* section rhythm */
/* Ritmo vertical: o par 132+96 deixava ~228px de vazio em CADA fronteira de
   seção (×15 = muito scroll morto antes do CTA). Comprimido mantendo o ar. */
.section { position: relative; padding: clamp(60px, 8.5vw, 104px) 0; }
.section--tight { padding: clamp(44px, 6vw, 72px) 0; }
.hairline { height: 1px; background: linear-gradient(to right, transparent, var(--border) 18%, var(--border) 82%, transparent); }

/* =========================================================================
   Reveal / motion primitives
   Content is VISIBLE BY DEFAULT. Hiding is gated under .js-anim (set
   synchronously by an inline head script) so no-JS, crawlers, slow-JS and
   a failed app.js all render full content. .anim-failsafe (set after 4s)
   is an additional backstop that force-reveals everything.
   ========================================================================= */
.reveal { opacity: 1; transform: none; }
.js-anim .reveal { opacity: 0; transform: translateY(26px); }
.js-anim .reveal.visible { animation: revealIn .8s cubic-bezier(.22,.61,.36,1) both; }
@keyframes revealIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.js-anim .reveal[data-d="1"].visible { animation-delay: .08s; }
.js-anim .reveal[data-d="2"].visible { animation-delay: .16s; }
.js-anim .reveal[data-d="3"].visible { animation-delay: .24s; }
.js-anim .reveal[data-d="4"].visible { animation-delay: .32s; }
.js-anim .reveal[data-d="5"].visible { animation-delay: .40s; }
.js-anim.anim-failsafe .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }

/* ---------- LCP fix: hero (above-the-fold) aparece IMEDIATAMENTE ----------
   Antes, todo .reveal ficava opacity:0 sob .js-anim e só revelava quando o
   app.js rodava — no mobile (CPU lenta) isso empurrava o LCP para ~6s, pois o
   maior elemento de texto/foto ficava invisível esperando o JS. Aqui o hero
   anima via CSS puro no load (sem depender do app.js) e mantém opacity:1 o
   tempo todo, então o texto pinta já no FCP. Só o deslize (transform) anima. */
.js-anim .hero .reveal,
.js-anim .hero .reveal.visible {
  opacity: 1; transform: none;
  animation: heroSlide .7s cubic-bezier(.22,.61,.36,1) both;
}
.js-anim .hero .reveal[data-d="2"], .js-anim .hero .reveal[data-d="2"].visible { animation-delay: .10s; }
.js-anim .hero .reveal[data-d="3"], .js-anim .hero .reveal[data-d="3"].visible { animation-delay: .16s; }
.js-anim .hero .reveal[data-d="4"], .js-anim .hero .reveal[data-d="4"].visible { animation-delay: .22s; }
@keyframes heroSlide { from { transform: translateY(16px); } to { transform: none; } }

@keyframes pulse-dot { 0% { opacity: .7; transform: scale(1); } 100% { opacity: 0; transform: scale(2.6); } }
@keyframes float-slow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes aurora { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(3%, -2%) scale(1.06); } }
@keyframes sheen { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }

/* live dot used across instrument UI */
.livedot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-soft); flex: none; }
.livedot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--accent-soft); animation: pulse-dot 2.2s ease-out infinite; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 16px; line-height: 1;
  padding: 16px 26px; border-radius: 999px; min-height: 52px;
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s, background .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); will-change: transform; }

.btn-wa {
  background: var(--whatsapp); color: #04130a;
  box-shadow: 0 10px 30px -8px #25d36680, inset 0 1px 0 #ffffff40;
}
.btn-wa:hover { background: #2ee06f; transform: translateY(-2px); box-shadow: 0 16px 40px -8px #25d366aa, inset 0 1px 0 #ffffff55; }
.btn-wa svg { width: 19px; height: 19px; }

.btn-ghost {
  background: #ffffff08; color: var(--text); border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #ffffff12; border-color: #ffffff2e; transform: translateY(-2px); }

.btn-sm { padding: 11px 18px; min-height: 42px; font-size: 14px; }

/* quiz secondary text link */
.quiz-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-2); font-size: 14.5px; font-weight: 500;
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.quiz-link:hover { color: var(--blue-soft); border-color: var(--blue-glow); }
.quiz-link .gem { color: var(--blue-soft); }

/* =========================================================================
   Credibility chips (authority anchors)
   ========================================================================= */
.cred-strip { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cred-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px; border-radius: 999px;
  background: #ffffff06; border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em;
  color: var(--text-2);
}
.cred-chip svg { width: 14px; height: 14px; color: var(--blue-soft); flex: none; }
.cred-chip b { color: var(--text); font-weight: 600; }
/* No celular o chip é um flex de dois itens (o <b> e o resto do texto), então
   quando não cabe numa linha o <b> vira uma coluna e o complemento vira outra,
   com um buraco no meio. Em bloco o texto volta a fluir como frase. */
@media (max-width: 560px) {
  .cred-strip { gap: 8px; }
  .cred-chip { display: block; text-align: left; line-height: 1.55; padding: 9px 15px; }
  .cred-chip svg { display: inline-block; vertical-align: -2px; margin-right: 7px; }
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: #08111fcc; backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(150deg, #16314f, #0c1c30);
  border: 1px solid var(--border);
  font-family: var(--font-display); font-size: 19px; color: var(--blue-soft); font-weight: 600;
}
.brand-name { font-weight: 600; font-size: 15.5px; letter-spacing: -.01em; line-height: 1.1; }
.brand-name small { display: block; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); letter-spacing: .08em; font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; color: var(--text-2); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: var(--blue-soft); transition: width .25s; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-progress { position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: linear-gradient(to right, var(--warn), var(--blue), var(--whatsapp)); }
/* C3: a barra de progresso do topo É o "fio da jornada" — já traz o arco
   âmbar->azul->verde e enche com o scroll. A cabeça luminosa na ponta dá vida
   ("você está aqui, indo em direção à ação"). Visível em TODOS os dispositivos.
   Só aparece depois que rola (senão fica um ponto solto no canto do topo). */
.nav-progress::after {
  content: ""; position: absolute; right: -1px; top: 50%;
  width: 8px; height: 8px; border-radius: 50%; background: #f4fff8;
  transform: translate(50%, -50%); opacity: 0; transition: opacity .35s ease;
  box-shadow: 0 0 10px 2px var(--whatsapp), 0 0 4px 1px #ffffffdd;
}
.nav.scrolled .nav-progress::after { opacity: 1; animation: jt-head 2.4s ease-in-out infinite; }
@keyframes jt-head {
  0%, 100% { box-shadow: 0 0 10px 2px var(--whatsapp), 0 0 4px 1px #ffffffdd; }
  50%      { box-shadow: 0 0 16px 4px var(--whatsapp), 0 0 7px 2px #ffffff; }
}
@media (prefers-reduced-motion: reduce) { .nav.scrolled .nav-progress::after { animation: none; } }
@media (max-width: 860px) { .nav-links { display: none; } }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; padding: 120px 0 clamp(48px, 7vw, 80px); overflow: hidden; }
.hero-aurora {
  position: absolute; inset: -20% -10% auto -10%; height: 120%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(620px 420px at 72% 18%, #1e90ff2e, transparent 62%),
    radial-gradient(520px 420px at 20% 4%, #2a4a7a33, transparent 60%);
  animation: aurora 16s ease-in-out infinite;
}
.hero.hero-spotlight::before {
  content: ""; position: absolute; width: 620px; height: 620px; left: var(--hero-gx,40%); top: var(--hero-gy,30%);
  background: radial-gradient(circle, #1e90ff22, transparent 62%);
  pointer-events: none; z-index: 0; transition: opacity .4s;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px; border-radius: 999px;
  background: #ffffff08; border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2);
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 18px; }
.hero-tag {
  font-size: 13px; padding: 5px 12px; border-radius: 999px;
  background: #1e90ff14; border: 1px solid #1e90ff33; color: var(--blue-soft); font-weight: 500;
}
.hero-tag.muted { background: #ffffff06; border-color: var(--border); color: var(--text-3); }

.hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(33px, 6vw, 60px); line-height: 1.04; letter-spacing: -.022em;
  color: #fff; text-wrap: balance; margin-bottom: 22px;
}
.hero .lede { margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 14px; }

.hero-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 38px; border: 1px solid var(--border); border-radius: var(--radius-md);
  background: #ffffff05; overflow: hidden;
}
.kpi { padding: 18px 18px; border-right: 1px solid var(--border); position: relative; }
.kpi:last-child { border-right: none; }
.kpi-num { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 34px); color: #fff; line-height: 1; font-weight: 600; letter-spacing: -.01em; }
.kpi-num .u { font-size: .62em; color: var(--blue-soft); }
.kpi-label { color: var(--text-3); font-size: 12.5px; margin-top: 8px; line-height: 1.4; }
@media (max-width: 560px) {
  .hero-kpis { grid-template-columns: 1fr; }
  .kpi { border-right: none; border-bottom: 1px solid var(--border); }
  .kpi:last-child { border-bottom: none; }
}

/* hero photo as instrument frame */
.hero-figure { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--navy-card);
  aspect-ratio: 4 / 5; box-shadow: 0 40px 90px -30px #000a, inset 0 1px 0 #ffffff14;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 2; }
.hero-frame .photo-ph {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; gap: 10px;
  background:
    radial-gradient(120% 90% at 50% 0%, #1b3556, #0c1a2e 70%);
  color: var(--text-3);
}
.photo-ph .ph-ico { width: 54px; height: 54px; opacity: .5; }
.photo-ph .ph-t { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.hero-corner { position: absolute; width: 18px; height: 18px; border: 2px solid var(--blue-soft); opacity: .6; z-index: 3; }
.hero-corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.hero-corner.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.hero-corner.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.hero-corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.hero-livebadge {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 13px; border-radius: 999px; background: #07101dcc; border: 1px solid var(--border);
  backdrop-filter: blur(8px); font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--text);
}
.hero-crpbadge {
  position: absolute; right: -14px; top: 28px; z-index: 4;
  display: flex; align-items: center; gap: 10px; padding: 11px 15px; border-radius: 14px;
  background: #0c1a2eee; border: 1px solid var(--border); box-shadow: 0 18px 40px -16px #000c;
  animation: float-slow 6s ease-in-out infinite;
}
.hero-crpbadge svg { width: 22px; height: 22px; color: var(--blue-soft); }
.hero-crpbadge .t { font-size: 12px; line-height: 1.3; }
.hero-crpbadge .t b { display: block; color: #fff; font-size: 13px; }
.hero-crpbadge .t span { color: var(--text-3); font-family: var(--font-mono); font-size: 10px; }
@media (max-width: 880px) {
  /* No empilhamento, .hero-copy inteiro vinha antes da foto: o rosto (maior
     ativo de confiança da página) só aparecia depois de H1 + lede + 2 CTAs +
     3 KPIs, a ~830px de scroll. `display:contents` dissolve a caixa da coluna
     para que os filhos entrem na MESMA ordenação da foto — assim ela sobe pra
     logo depois do lede e o CTA vem embaixo dela (confiança → ação).
     .hero-copy não tem estilo próprio, então dissolver a caixa é seguro. */
  /* gap:0 — como agora são 7 filhos diretos (e não 2), o gap do grid passaria a
     somar 6× entre eles e empurraria o CTA ~130px pra baixo. Cada elemento já
     traz sua própria margem vertical. */
  .hero-grid { display: flex; flex-direction: column; gap: 0; grid-template-columns: 1fr; }
  .hero-copy { display: contents; }
  .hero-chip   { order: 1; }
  .hero-tags   { order: 2; }
  .hero h1     { order: 3; }
  .hero .lede  { order: 4; }
  .hero-cta    { order: 5; }
  .hero-figure { order: 6; }
  .hero-kpis   { order: 7; }
  /* width:100% evita o colapso: como o frame tem filhos todos em position:absolute,
     sem largura explícita o grid item encolhe a 0 com margin:auto. */
  .hero-figure { width: 100%; max-width: 420px; margin: 8px auto 22px; }
  .hero-crpbadge { right: 8px; }
}

/* =========================================================================
   OPENING — "2h da manhã" (cinematic)
   ========================================================================= */
.opening {
  position: relative; background: #04080f; overflow: hidden;
  /* seção cinematográfica: continua a mais arejada da página, mas 260px de
     topo somados aos 104px do hero abriam ~364px de nada entre as duas. */
  padding: clamp(88px, 13vw, 168px) 0;
  --accent: var(--warn); --accent-soft: var(--warn-soft); --accent-glow: #f5b04844;
}
/* warm, restless ambient glow that breathes and drifts (the lamp still on at 2am) */
.opening-glow {
  position: absolute; left: 50%; top: 14%; width: min(900px, 120vw); height: 640px;
  transform: translateX(-50%); pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at center, #f5b0481f, #f5b04808 38%, transparent 64%);
  filter: blur(6px);
  transition: background 1.6s ease, opacity 1.6s ease;
  animation: breathe 9s ease-in-out infinite;
}
.opening.cleared .opening-glow {
  background: radial-gradient(ellipse at center, #1e90ff26, #1e90ff0a 40%, transparent 66%);
}
@keyframes breathe {
  0%, 100% { opacity: .7; transform: translateX(-50%) translateY(0) scale(1); }
  50%      { opacity: 1;  transform: translateX(-52%) translateY(-12px) scale(1.08); }
}
/* faint streetlight-through-blinds streaks + heavy vignette = night room */
.opening-streaks {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(101deg, #ffd9930a 0 2px, transparent 2px 64px);
  mask-image: radial-gradient(120% 80% at 60% 20%, #000 0%, transparent 60%);
  transition: opacity 1.6s ease;
}
.opening.cleared .opening-streaks { opacity: .12; }
.opening::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(130% 100% at 50% 30%, transparent 38%, #000000c4 100%);
}
.opening-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 24px; }

.clock {
  display: flex; width: fit-content; align-items: center; gap: 13px; margin-bottom: clamp(40px, 6vw, 64px);
  font-family: var(--font-mono); color: var(--warn-soft);
  padding: 9px 16px; border-radius: 999px;
  background: #f5b04809; border: 1px solid #f5b04822;
  transition: color 1.4s ease, background 1.4s ease, border-color 1.4s ease;
}
.opening.cleared .clock { color: var(--blue-soft); background: #1e90ff0d; border-color: #1e90ff2e; }
.clock { max-width: 100%; }
.clock .time { font-size: 14.5px; letter-spacing: .26em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.clock .tick { width: 7px; height: 7px; border-radius: 50%; background: var(--warn); box-shadow: 0 0 10px 1px #f5b04877; animation: blink 1s steps(1) infinite; transition: background 1.4s ease, box-shadow 1.4s ease; }
.opening.cleared .clock .tick { background: var(--blue-soft); box-shadow: 0 0 10px 1px #4fb0ff77; }
@media (max-width: 480px) {
  .clock { gap: 9px; padding: 7px 13px; }
  .clock .time { font-size: 11px; letter-spacing: .1em; }
}
/* telas bem estreitas (360px): sem isso a pílula do relógio estoura a
   viewport e o texto sai cortado pelo overflow-x do body. */
@media (max-width: 380px) {
  .clock { padding: 6px 11px; gap: 7px; }
  .clock .time { font-size: 10px; letter-spacing: .04em; }
}

.opening-lines { font-family: var(--font-display); font-style: italic; font-weight: 500; letter-spacing: -.012em; }
.opening-lines .ln {
  display: block; font-size: clamp(25px, 5vw, 50px); line-height: 1.2; color: #d6deea;
  opacity: 1; transform: none; filter: none;
  transition: opacity 1.3s ease, transform 1.4s cubic-bezier(.22,.61,.36,1), filter 1.3s ease, color 1.2s ease;
  margin-bottom: .42em; text-wrap: balance;
}
.js-anim .opening-lines .ln { opacity: .05; transform: translateY(22px) scale(.985); filter: blur(11px); will-change: opacity, transform, filter; }
.js-anim .opening-lines .ln.lit { opacity: 1; transform: none; filter: blur(0); }
.opening-lines em { color: var(--warn-soft); font-style: italic; text-shadow: 0 0 24px #f5b04855; }
.opening-close {
  font-family: var(--font-body); font-style: normal; font-size: clamp(18px, 2.7vw, 26px);
  color: var(--text-2); line-height: 1.55; margin-top: clamp(42px, 6vw, 68px); text-wrap: pretty;
  opacity: 1; transform: none; filter: none;
  transition: opacity 1.3s ease, transform 1.4s cubic-bezier(.22,.61,.36,1), filter 1.3s ease;
}
.js-anim .opening-close { opacity: .05; transform: translateY(22px); filter: blur(11px); }
.js-anim .opening-close.lit { opacity: 1; transform: none; filter: blur(0); }
.js-anim.anim-failsafe .opening-lines .ln, .js-anim.anim-failsafe .opening-close { opacity: 1 !important; transform: none !important; filter: none !important; }
/* palavras do SplitText (op-word/ps-word) — mesmo failsafe: se o timeline nunca
   rodar, nada fica preso em opacity:0 pra sempre. */
.js-anim.anim-failsafe .op-word,
.js-anim.anim-failsafe .ps-word,
.js-anim.anim-failsafe #psBlock .meta { opacity: 1 !important; transform: none !important; }
/* mobile: drop the costly per-line blur, keep opacity+transform (compositor-cheap) */
@media (max-width: 600px) {
  .js-anim .opening-lines .ln, .js-anim .opening-close { filter: none !important; }
}
.opening-close .clear { color: var(--blue-soft); font-weight: 600; text-shadow: 0 0 30px #1e90ff66; }

/* =========================================================================
   MECANISMO — o claim + a fonte + a ressalva clínica
   Vive dentro de .opening. É o bloco que paga a pergunta aberta pelo H1: a
   página anterior abria "por que isso acontece" e nunca respondia.
   ========================================================================= */
.mech-claim {
  margin-top: clamp(46px, 7vw, 76px);
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #1e90ff0e, #ffffff04);
  border: 1px solid #1e90ff2e;
  box-shadow: inset 0 1px 0 #ffffff0d, 0 24px 60px -40px #1e90ff55;
}
.mech-claim h2 {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(23px, 3.6vw, 36px); line-height: 1.24; letter-spacing: -.015em;
  color: var(--blue-soft); text-wrap: balance; text-shadow: 0 0 34px #1e90ff44;
}
.mech-claim p { margin-top: 18px; font-size: clamp(15.5px, 1.9vw, 17.5px); color: var(--text-2); line-height: 1.62; text-wrap: pretty; }
.mech-source {
  margin-top: 24px !important; padding-top: 18px; border-top: 1px solid var(--navy-line);
  font-size: 13.5px !important; color: var(--text-3) !important; line-height: 1.5;
}
.mech-source .meta { display: block; margin-bottom: 5px; }
.mech-source i { color: var(--text-2); font-style: italic; }
.mech-caveat {
  margin-top: clamp(28px, 4vw, 40px); font-size: clamp(14.5px, 1.8vw, 16px);
  color: var(--text-3); line-height: 1.6; text-wrap: pretty;
  padding-left: 16px; border-left: 2px solid var(--navy-line);
}

/* =========================================================================
   A VIRADA — para quem já tem o diagnóstico e não viu nada mudar
   ========================================================================= */
.turn-body { margin-top: clamp(24px, 3.5vw, 36px); }
.turn-body p { font-size: clamp(16.5px, 2.1vw, 19px); color: var(--text-2); line-height: 1.66; margin-bottom: 18px; text-wrap: pretty; }
.turn-body p b { color: var(--text); font-weight: 600; }
.turn-beat {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 4vw, 38px) !important; line-height: 1.24;
  color: var(--warn-soft) !important; margin: 26px 0 30px !important;
  text-shadow: 0 0 30px #f5b04844;
}
.turn-close { font-size: clamp(19px, 2.6vw, 24px) !important; color: var(--text) !important; margin-top: 28px !important; }
.turn-close .clear { color: var(--blue-soft); font-weight: 600; text-shadow: 0 0 30px #1e90ff66; }

/* =========================================================================
   O MANUAL — a devolutiva e o documento clínico
   ========================================================================= */
.manual-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 3.5vw, 48px); align-items: start; margin-top: clamp(28px, 4vw, 42px); }
.manual-body p { font-size: clamp(15.5px, 1.95vw, 17.5px); color: var(--text-2); line-height: 1.66; margin-bottom: 16px; text-wrap: pretty; }
.manual-body em { color: var(--text); font-style: italic; }
.manual-body .clear { color: var(--blue-soft); font-weight: 600; }
.manual-tea { padding-top: 16px; border-top: 1px solid var(--navy-line); color: var(--text-3) !important; font-size: 15px !important; }

/* Ponte para /avaliacao. Discreta de propósito: é rota de saída para quem
   precisa só do documento, não um CTA competindo com o WhatsApp. */
.manual-link {
  display: flex; align-items: center; gap: 16px; margin-top: 22px;
  padding: 18px 20px; border-radius: var(--radius-md);
  background: #ffffff06; border: 1px solid var(--border);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.manual-link:hover { border-color: #1e90ff45; background: #1e90ff0d; transform: translateY(-2px); }
.manual-link .ml-txt { font-size: 14.5px; color: var(--text-3); line-height: 1.55; }
.manual-link .ml-txt b { display: block; color: var(--text); font-size: 15.5px; margin-bottom: 4px; }
.manual-link .ml-arrow {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; font-size: 16px;
  background: #1e90ff14; color: var(--blue-soft); border: 1px solid #1e90ff2e;
  transition: transform .25s ease;
}
.manual-link:hover .ml-arrow { transform: translateX(3px); }

.manual-doc {
  position: sticky; top: 96px;
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--navy-card), var(--navy-2));
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -50px #000, inset 0 1px 0 #ffffff0d;
}
.doc-top { display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--navy-line); background: #ffffff05; }
.doc-top .dots { display: inline-flex; gap: 6px; }
.doc-top .dots i { width: 8px; height: 8px; border-radius: 50%; background: #ffffff1f; }
.doc-title { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.doc-list { list-style: none; padding: 8px 18px 4px; }
.doc-list li {
  display: flex; gap: 13px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid #ffffff08;
  font-size: 14.5px; color: var(--text-2); line-height: 1.5;
}
.doc-list li:last-child { border-bottom: 0; }
.doc-list .n { font-family: var(--font-mono); font-size: 11.5px; color: var(--blue-soft); flex: 0 0 auto; opacity: .8; }
.doc-foot { padding: 14px 18px 18px; font-size: 13px; color: var(--text-3); line-height: 1.55; border-top: 1px solid var(--navy-line); background: #ffffff03; }

@media (max-width: 900px) {
  .manual-grid { grid-template-columns: 1fr; }
  .manual-doc { position: static; }
}

/* nota da tabela comparativa + linha de verificação do CRP */
.compare-note { margin-top: 22px; font-size: 14.5px; color: var(--text-3); line-height: 1.6; text-wrap: pretty; max-width: 780px; }
.social-verify { margin: 26px 0 4px; font-size: clamp(15px, 1.9vw, 17px); color: var(--text-2); line-height: 1.6; text-wrap: pretty; }
.social-verify b { color: var(--blue-soft); font-family: var(--font-mono); font-size: .95em; letter-spacing: .04em; }
.guarantee-note { margin-top: 14px; font-size: 14.5px; color: var(--text-3); line-height: 1.6; }
/* ressalva contra autodiagnóstico ao pé da lista de reconhecimento */
.pain-caveat { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--navy-line); font-size: 13.5px !important; color: var(--text-3) !important; line-height: 1.55; }

/* =========================================================================
   PAIN — tabs
   ========================================================================= */
.pain { --accent: var(--warn); --accent-soft: var(--warn-soft); --accent-glow: #f5b04844; }
.tabs { display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px; background: #ffffff07; border: 1px solid var(--border); margin: 24px 0 36px; }
.tab {
  padding: 10px 20px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--text-2);
  transition: color .2s, background .2s; min-height: 44px;
}
.tab[aria-selected="true"] { background: #f5b04818; color: var(--warn-soft); box-shadow: inset 0 0 0 1px #f5b04844; }
.pain-list { display: grid; gap: 12px; }
.pain-panel[hidden] { display: none; }
.pain-item {
  display: grid; grid-template-columns: 30px 1fr; gap: 16px; align-items: start;
  padding: 20px 22px; border-radius: var(--radius-md);
  background: #ffffff05; border: 1px solid var(--border);
  transition: border-color .3s, background .3s, transform .3s;
}
.pain-item:hover { border-color: #f5b04840; background: #f5b0480a; transform: translateX(4px); }
.pain-item .pip { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: #f5b04814; flex: none; margin-top: 1px; }
.pain-item .pip svg { width: 16px; height: 16px; color: var(--warn-soft); }
.pain-item p { color: var(--text-2); font-size: 15.5px; line-height: 1.55; }
.pain-sign {
  margin-top: 36px; padding: 30px 32px; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #f5b0480f, #ffffff04); border: 1px solid #f5b04826;
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between;
}
.pain-sign h3 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); color: #fff; font-weight: 500; margin-bottom: 8px; }
.pain-sign p { color: var(--text-2); max-width: 52ch; font-size: 15px; }
.pain-sign .cta-col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
@media (max-width: 600px) {
  .pain-sign { padding: 24px 22px; gap: 18px; }
  .pain-sign .cta-col { width: 100%; }
  .pain-sign .cta-col .btn { width: 100%; white-space: normal; line-height: 1.3; padding: 14px 20px; text-align: center; }
  .pain-sign .cta-col .quiz-link { align-self: center; text-align: center; }
}

/* =========================================================================
   THESIS — custo (degradation curve)
   ========================================================================= */
.thesis { --accent: var(--warn); --accent-soft: var(--warn-soft); }
.thesis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 68px); align-items: center; }
.thesis-points { display: grid; gap: 16px; margin-top: 28px; }
.thesis-point { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.thesis-point .n { font-family: var(--font-mono); font-size: 12px; color: var(--warn-soft); padding-top: 3px; }
.thesis-point p { color: var(--text-2); font-size: 15.5px; }
.thesis-point p b { color: var(--text); }
.curve-card {
  border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--navy-card);
  padding: 22px; box-shadow: 0 30px 70px -34px #000a;
}
.curve-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.curve-legend { display: flex; gap: 18px; margin-top: 14px; }
.curve-legend span { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-2); font-family: var(--font-mono); }
.curve-legend i { width: 14px; height: 3px; border-radius: 2px; }
@media (max-width: 820px) { .thesis-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   ARGS — 6 transformations
   ========================================================================= */
.args-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.arg-card {
  position: relative; padding: 26px 24px; border-radius: var(--radius-md);
  background: #ffffff05; border: 1px solid var(--border); overflow: hidden;
  transition: border-color .3s, transform .3s, background .3s;
}
.arg-card:hover { border-color: #1e90ff44; transform: translateY(-4px); background: #1e90ff08; }
.arg-card::after { content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0; background: linear-gradient(to right, var(--blue), var(--blue-soft)); transition: width .5s; }
.arg-card:hover::after { width: 100%; }
.arg-n { font-family: var(--font-mono); font-size: 12px; color: var(--blue-soft); letter-spacing: .1em; }
.arg-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: #1e90ff14; margin: 14px 0 16px; }
.arg-ico svg { width: 21px; height: 21px; color: var(--blue-soft); }
.arg-card h3 { font-size: 17.5px; color: #fff; font-weight: 600; margin-bottom: 9px; letter-spacing: -.01em; }
.arg-card p { color: var(--text-2); font-size: 14.5px; line-height: 1.56; }
@media (max-width: 880px) { .args-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .args-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   WHYNOW
   ========================================================================= */
.whynow { --accent: var(--blue); }
.whynow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.whynow-card {
  padding: 30px 30px; border-radius: var(--radius-lg); background: var(--navy-card); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.whynow-card .wn-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: #1e90ff14; margin-bottom: 18px; }
.whynow-card .wn-ico svg { width: 22px; height: 22px; color: var(--blue-soft); }
.whynow-card h3 { font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 24px); color: #fff; font-weight: 500; margin-bottom: 10px; letter-spacing: -.01em; }
.whynow-card p { color: var(--text-2); font-size: 15px; }
.whynow-card .note { margin-top: 14px; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); letter-spacing: .03em; }
@media (max-width: 760px) { .whynow-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   METHOD 360 — signature
   ========================================================================= */
.method { position: relative; --accent: var(--blue); --accent-soft: var(--blue-soft); overflow: hidden; }
.method::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(700px 500px at 80% 10%, #1e90ff1c, transparent 60%);
}
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 44px 0 0; }
.pillar { position: relative; overflow: hidden; padding: 26px 24px; border-radius: var(--radius-md); background: #ffffff05; border: 1px solid var(--border); transition: border-color .3s ease, background .3s ease; cursor: default; }
.pillar .pn { font-family: var(--font-mono); font-size: 26px; color: #1e90ff; opacity: .55; letter-spacing: -.02em; }
.pillar:hover, .pillar:focus-visible { border-color: #1e90ff44; background: #1e90ff08; }
/* demo interativo: hover/foco no pilar destaca a peça correspondente do dashboard */
.dash, .metric { transition: box-shadow .35s ease, border-color .35s ease; }
.dash.pillar-focus {
  box-shadow: 0 0 0 1px #1e90ff55, 0 0 26px -4px #1e90ff88, 0 40px 90px -36px #000c, inset 0 1px 0 #ffffff10;
  border-color: #1e90ff66;
}
.metric.pillar-focus { box-shadow: 0 0 0 10px #1e90ff18, 0 0 0 1px #1e90ff55; border-radius: 8px; }
.metric.pillar-focus .lbl { color: #fff; }
.metric.pillar-focus .bar > i { box-shadow: 0 0 16px 1px #4fb0ffb3; }
.pillar h3 { font-size: 18px; color: #fff; margin: 12px 0 9px; font-weight: 600; }
.pillar p { color: var(--text-2); font-size: 14.5px; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* dashboard */
.dash-wrap { margin-top: 52px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .dash-wrap { grid-template-columns: 1fr; } }
.dash {
  border-radius: var(--radius-lg); border: 1px solid #1e90ff33; background: linear-gradient(180deg, #102543, #0c1a2e);
  padding: 0; overflow: hidden; box-shadow: 0 40px 90px -36px #000c, inset 0 1px 0 #ffffff10;
}
/* S1: scan-line do boot do painel (criada por JS; só existe com GSAP ativo) */
.dash { position: relative; }
.dash-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 120px; z-index: 3;
  pointer-events: none; opacity: 0;
  background: linear-gradient(to bottom, transparent, #4fb0ff1f 45%, #4fb0ff59 50%, #4fb0ff1f 55%, transparent);
}
.dash-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); background: #ffffff05; }
.dash-top .dots { display: flex; gap: 6px; }
.dash-top .dots i { width: 9px; height: 9px; border-radius: 50%; background: #ffffff1a; }
.dash-top .dots i:first-child { background: #f5b04866; }
.dash-title { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: var(--text-2); }
.dash-body { padding: 24px 24px 26px; }
.dash-headline { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.dash-headline .h { font-family: var(--font-display); font-size: 22px; color: #fff; font-weight: 500; }
.dash-headline .h small { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: .1em; text-transform: uppercase; margin-top: 5px; }
.badge-up { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: #25d36618; border: 1px solid #25d36644; color: #5fe690; font-family: var(--font-mono); font-size: 13px; font-weight: 600; }
.metric { margin-bottom: 18px; }
.metric-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.metric-row .lbl { font-size: 13.5px; color: var(--text-2); }
.metric-row .val { font-family: var(--font-mono); font-size: 13.5px; color: #fff; }
.bar { height: 8px; border-radius: 999px; background: #ffffff0c; overflow: hidden; }
.bar > i { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(to right, var(--blue-deep), var(--blue-soft)); transition: width 1.4s cubic-bezier(.22,.61,.36,1); }
.spark-card { display: flex; flex-direction: column; gap: 0; }
.spark-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.spark-head .lbl { font-size: 13px; color: var(--text-2); }
.spark-head .trend { font-family: var(--font-mono); font-size: 12px; color: #5fe690; }
.spark-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.spark svg { width: 100%; height: 84px; overflow: visible; }
.spark path.line { fill: none; stroke: var(--blue-soft); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.spark .updated { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); letter-spacing: .06em; margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; }
.dash-side { display: flex; flex-direction: column; gap: 22px; }
.dash-note {
  border-radius: var(--radius-md); border: 1px solid var(--border); background: #ffffff05; padding: 18px 20px;
}
.dash-note .meta { margin-bottom: 8px; display: block; }
.dash-note p { color: var(--text-2); font-size: 13.5px; }

.method-quote {
  margin-top: 30px; padding: 30px 34px; border-radius: var(--radius-lg);
  background: #ffffff05; border: 1px solid var(--border); border-left: 3px solid var(--blue);
}
.method-quote blockquote { font-family: var(--font-display); font-size: clamp(19px, 2.6vw, 26px); color: #eaf1fb; line-height: 1.4; font-weight: 500; text-wrap: pretty; }
.method-quote .cite { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.method-quote .cite .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(150deg, #16314f, #0c1c30); display: grid; place-items: center; font-family: var(--font-display); color: var(--blue-soft); font-weight: 600; flex: none; border: 1px solid var(--border); }
.method-quote .cite .nm { font-size: 14px; color: #fff; font-weight: 600; }
.method-quote .cite .nm small { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--text-3); font-weight: 400; margin-top: 2px; }

/* =========================================================================
   COMPARE
   ========================================================================= */
.compare-table { margin-top: 44px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #ffffff04; }
.compare-head { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.compare-head > div { padding: 20px 22px; }
.compare-head .ch-feat { background: #ffffff03; }
.compare-head .ch-common { background: #f5b0480a; border-left: 1px solid var(--border); }
.compare-head .ch-method { background: #1e90ff12; border-left: 1px solid var(--border); position: relative; }
.compare-head .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.compare-head .ch-common .name { color: var(--warn-soft); font-weight: 600; font-size: 16px; }
.compare-head .ch-method .name { color: var(--blue-soft); font-weight: 600; font-size: 16px; }
.compare-head .rec { position: absolute; top: 14px; right: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; background: #1e90ff22; color: var(--blue-soft); border: 1px solid #1e90ff44; }
.compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--border); }
.compare-row > div { padding: 20px 22px; font-size: 14px; line-height: 1.5; }
.compare-row .feat { color: #fff; font-weight: 600; background: #ffffff03; display: flex; align-items: center; }
.compare-row .common { color: var(--text-3); border-left: 1px solid var(--border); }
.compare-row .method { color: var(--text); border-left: 1px solid var(--border); background: #1e90ff08; display: flex; gap: 10px; }
.compare-row .method svg { width: 17px; height: 17px; color: #5fe690; flex: none; margin-top: 2px; }
/* Marcadores neutros: círculo vazado (ausente) × círculo cheio (presente).
   Substituem o par ✕ âmbar / ✓ verde, que julgava o modelo da outra coluna. */
.compare-row .common .x { color: var(--text-4); margin-right: 8px; font-size: 12px; line-height: 1.5; }
.compare-row .method .mk { color: var(--blue-soft); margin-right: 2px; font-size: 12px; line-height: 1.5; flex: none; }
/* S2: duelo com foco — a linha no centro da tela ganha destaque e as irmãs
   recuam. Usa SÓ filter/box-shadow/background (a timeline do duelo é dona de
   opacity/transform das linhas — dono único por propriedade, sem colisão). */
.compare-row { transition: filter .35s ease, background .35s ease; cursor: pointer; }
.compare-table.has-focus .compare-row:not(.is-focus) { filter: brightness(.5) saturate(.55); }
.compare-row.is-focus { background: #ffffff05; }
.compare-row.is-focus .method {
  box-shadow: inset 0 0 0 1px #1e90ff5c, 0 0 30px -8px #1e90ffb0;
  background: #1e90ff16;
}
.compare-row .method, .compare-row .common { transition: box-shadow .35s ease, background .35s ease, filter .35s ease; }
.compare-row.is-focus .common { filter: saturate(.25) brightness(.85); }
.compare-row.is-focus .method svg { color: #7dffb0; }
.compare-row.is-focus .method .mk { color: #9ed4ff; }
@media (prefers-reduced-motion: reduce) {
  .compare-row, .compare-row .method, .compare-row .common { transition: none; }
}
/* mobile: cada comparação vira um card limpo (sem header redundante, sem bordas cortadas) */
@media (max-width: 760px) {
  .compare-table { border: none; border-radius: 0; background: none; overflow: visible; margin-top: 30px; }
  .compare-head { display: none; }
  .compare-row { display: block; border-top: none; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: #ffffff04; margin-bottom: 14px; }
  .compare-row > div { padding: 14px 18px; font-size: 14px; }
  /* O card tinha TRÊS rótulos em fonte mono maiúscula empilhados (o critério
     mais as duas colunas), cada um numa linha própria, e ainda os marcadores
     soltos. Lido no celular parecia formulário de sistema, não comparação.
     Agora: o critério é título de gente, o rótulo da coluna é curto, e os
     marcadores saem — quem distingue é o rótulo, eles viraram redundância. */
  .compare-row .feat {
    background: #ffffff08; color: var(--text); font-family: var(--font-body);
    font-size: 15px; font-weight: 600; letter-spacing: 0; text-transform: none;
    border-bottom: 1px solid var(--border); display: block; padding: 13px 18px;
  }
  .compare-row .common { color: var(--text-2); border-left: none; display: block; padding: 13px 18px; }
  .compare-row .method { color: var(--text); border-left: none; background: #1e90ff10; display: block; border-top: 1px solid var(--border); padding: 13px 18px; }
  .compare-row .common::before, .compare-row .method::before {
    display: block; font-family: var(--font-mono); font-size: 9.5px;
    letter-spacing: .12em; text-transform: uppercase; margin-bottom: 5px; opacity: .9;
  }
  .compare-row .common::before { content: "Comum"; color: var(--text-4); }
  .compare-row .method::before { content: "Aqui"; color: var(--blue-soft); }
  .compare-row .common .x, .compare-row .method .mk, .compare-row .method svg { display: none; }
  .compare-note { font-size: 13.5px; }
}

/* =========================================================================
   SOCIAL — stats + carousel
   ========================================================================= */
.social { --accent: var(--blue); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 40px 0 52px; }
.stat { padding: 24px 20px; border-radius: var(--radius-md); background: #ffffff05; border: 1px solid var(--border); text-align: center; }
.stat .s-num { font-family: var(--font-display); font-size: clamp(26px, 3.6vw, 38px); color: #fff; font-weight: 600; line-height: 1; }
.stat .s-num .u { color: var(--blue-soft); font-size: .6em; }
.stat .s-lbl { color: var(--text-3); font-size: 12.5px; margin-top: 9px; font-family: var(--font-mono); letter-spacing: .04em; }
/* margem NEGATIVA saiu: ela existia pra colar os chips nos stats, mas desde
   que o parágrafo do CRP (.social-verify) entrou entre os dois, ela passou a
   comer o texto dele — sobreposição de 195px no mobile, texto por cima de
   texto. Agora o espaçamento é positivo e a ordem visual é a do documento. */
.social-creds { justify-content: center; margin: 22px 0 46px; }
@media (max-width: 680px) { .stats-row { grid-template-columns: 1fr 1fr; } }

.carousel { position: relative; }
.carousel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 16px; }
.carousel-track-wrap { overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent); }
.carousel-track { display: flex; align-items: center; width: max-content; animation: car-marquee 70s linear infinite; }
.carousel:hover .carousel-track, .carousel-track:active { animation-play-state: paused; }
@keyframes car-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* card: largura E altura fixas. Antes a altura era natural e os prints variam
   de 135px a 960px (na largura 760) — a fileira ficava serrilhada e os cards
   pequenos demais pra ler. Altura única alinha a esteira; `contain` mostra o
   print inteiro (sem cortar mensagem) centralizado no card. */
.print-card {
  flex: 0 0 auto; width: clamp(252px, 76vw, 320px); height: 400px;
  display: grid; place-items: center; padding: 12px;
  margin-right: 18px; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); background: #0b141a; position: relative;
  box-shadow: 0 20px 50px -28px #000a;
  opacity: .62; transform: scale(.94);
  transition: opacity .45s ease, transform .45s cubic-bezier(.22,.61,.36,1), border-color .45s, box-shadow .45s;
}
.print-card.is-center { opacity: 1; transform: scale(1.04); border-color: #1e90ff55; box-shadow: 0 32px 66px -26px #1e90ff4d, 0 14px 30px -16px #000c; z-index: 2; }
.print-card img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 6px; }
@media (max-width: 640px) { .print-card { height: 340px; } }
@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
  .carousel-track-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .print-card { opacity: 1; transform: none; }
}
.print-ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: 12px; padding: 18px;
  background: linear-gradient(160deg, #16263f, #0d1a2c);
}
.print-ph .pp-top { display: flex; align-items: center; gap: 9px; }
.print-ph .pp-av { width: 30px; height: 30px; border-radius: 50%; background: #25d36622; border: 1px solid #25d36644; flex: none; }
.print-ph .pp-name { height: 9px; width: 90px; border-radius: 5px; background: #ffffff18; }
.print-ph .pp-bubble { border-radius: 12px; padding: 12px; background: #1e3252; }
.print-ph .pp-bubble.me { background: #1f4d33; align-self: flex-end; max-width: 80%; }
.print-ph .pp-line { height: 8px; border-radius: 5px; background: #ffffff20; margin-bottom: 7px; }
.print-ph .pp-line:last-child { margin-bottom: 0; width: 60%; }
.print-ph .pp-tag { margin-top: auto; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; color: var(--text-4); text-transform: uppercase; }
.carousel-ctrls { display: flex; gap: 8px; }
.car-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: #ffffff06; display: grid; place-items: center; transition: background .2s, border-color .2s; }
.car-btn:hover { background: #ffffff12; border-color: #ffffff30; }
.car-btn svg { width: 18px; height: 18px; color: var(--text); }
.car-note { font-family: var(--font-mono); font-size: 11px; color: var(--text-4); letter-spacing: .04em; }

/* =========================================================================
   OBJECTIONS + FAQ (accordion)
   ========================================================================= */
.accordion { margin-top: 36px; display: grid; gap: 10px; }
.acc-item { border: 1px solid var(--border); border-radius: var(--radius-md); background: #ffffff05; overflow: hidden; transition: border-color .3s, background .3s; }
.acc-item.open { border-color: #1e90ff3a; background: #1e90ff08; }
.acc-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; text-align: left; font-size: 16px; font-weight: 600; color: #fff; min-height: 60px; }
.acc-q .ic { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; transition: transform .3s, background .3s, border-color .3s; }
.acc-q .ic svg { width: 13px; height: 13px; color: var(--blue-soft); transition: transform .3s; }
.acc-item.open .ic { background: #1e90ff18; border-color: #1e90ff44; }
.acc-item.open .ic svg { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.22,.61,.36,1); }
.acc-a .inner { padding: 0 22px 22px; color: var(--text-2); font-size: 15px; line-height: 1.62; }
.acc-q-txt { display: flex; align-items: center; gap: 14px; min-width: 0; }
.acc-q-ic { flex: none; width: 22px; height: 22px; display: grid; place-items: center; color: var(--blue-soft); opacity: .85; transition: color .4s ease; }
/* S3: item aberto = dúvida resolvida (o ícone morfa em check e fica verde) */
.acc-item.open .acc-q-ic { color: #5fe690; opacity: 1; }
.acc-q-ic svg { width: 19px; height: 19px; }
.acc-a .inner b { color: var(--blue-soft); }

/* =========================================================================
   GUARANTEE + URGENCY
   ========================================================================= */
/* Tratamento de "documento lacrado": é o momento de reversão de risco da
   página e era o card mais liso de todos. max-width evita o vazio à direita
   (o <p> para em 62ch e o card ia até 1160px). */
.guarantee-card {
  position: relative;
  max-width: 940px; margin-inline: auto;
  display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center;
  padding: clamp(30px, 5vw, 52px); border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 140% at 0% 0%, #25d3661a, transparent 58%),
    linear-gradient(120deg, #25d3660d, #1e90ff0a);
  border: 1px solid #25d36633;
  box-shadow: 0 30px 70px -40px #25d36640, inset 0 1px 0 #ffffff10;
}
/* marcas de canto: mesmo vocabulário do .hero-frame, aqui lendo como lacre */
.guarantee-card::before, .guarantee-card::after {
  content: ""; position: absolute; width: 22px; height: 22px;
  pointer-events: none; border: 1px solid #25d36655;
}
.guarantee-card::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; border-radius: 5px 0 0 0; }
.guarantee-card::after { bottom: 14px; right: 14px; border-left: 0; border-top: 0; border-radius: 0 0 5px 0; }
.guarantee-card .seal { position: relative; width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; background: #25d36614; border: 1px solid #25d36644; flex: none; box-shadow: 0 0 0 7px #25d3660d, 0 14px 34px -14px #25d36659; }
/* S4: onda concêntrica saindo do selo (criada por JS; some sozinha) */
.seal-ripple {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  border: 2px solid #25d366; opacity: 0;
}
.guarantee-card .seal svg { width: 44px; height: 44px; color: var(--whatsapp); }
.guarantee-card h3 { font-family: var(--font-display); font-size: clamp(22px, 3.2vw, 32px); color: #fff; font-weight: 500; margin-bottom: 12px; letter-spacing: -.01em; }
.guarantee-card p { color: var(--text-2); font-size: 15.5px; max-width: 62ch; line-height: 1.7; }
@media (max-width: 620px) { .guarantee-card { grid-template-columns: 1fr; text-align: left; gap: 18px; } }

.urgency { --accent: var(--warn); --accent-soft: var(--warn-soft); }
.urgency-card {
  position: relative; padding: clamp(30px, 5vw, 48px); border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #f5b04810, #ffffff04); border: 1px solid #f5b04826; overflow: hidden;
}
.urgency-card .meta { color: var(--warn-soft); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 9px; }
.urgency-card h3 { font-family: var(--font-display); font-size: clamp(24px, 3.6vw, 38px); color: #fff; font-weight: 500; margin-bottom: 14px; letter-spacing: -.01em; }
.urgency-card p { color: var(--text-2); font-size: 16px; max-width: 62ch; margin-bottom: 26px; }
.slots-bar { display: flex; gap: 6px; margin-bottom: 12px; }
.slots-bar i { height: 9px; flex: 1; border-radius: 3px; background: #ffffff10; }
/* preenchido por padrão (no-JS ok); anima o "encher" quando a seção entra na tela */
.slots-bar i.taken { background: linear-gradient(to right, var(--warn-deep), var(--warn)); transform-origin: left; }
/* S5: o preenchimento dos slots agora é do GSAP (dono único). As regras antigas
   dependiam de `.urgency-card.visible`, classe que o reveal por GSAP não
   adiciona mais — por isso a seção tinha ficado estática e o contador travava
   em "0 de 8" com 6 barras cheias (inconsistente). */
.slots-bar i.just { animation: slot-just 1.3s ease 2; }
@keyframes slot-just { 0%, 100% { box-shadow: 0 0 0 0 #f5b04800; } 50% { box-shadow: 0 0 12px 1px #f5b048cc; } }
.slots-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px 16px; flex-wrap: wrap; }
.slots-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); letter-spacing: .04em; }
.slots-live { font-family: var(--font-mono); font-size: 11.5px; color: var(--warn-soft); display: inline-flex; align-items: center; gap: 8px; letter-spacing: .03em; }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.final { position: relative; overflow: hidden; --accent: var(--whatsapp); }
.final::before { content: ""; position: absolute; left: 50%; top: 0; width: 760px; height: 520px; transform: translateX(-50%); background: radial-gradient(circle, #25d36614, transparent 62%); pointer-events: none; z-index: -1; }
.final-inner { text-align: center; max-width: 820px; margin: 0 auto; }
.final h2 { font-family: var(--font-display); font-size: clamp(30px, 5.4vw, 56px); color: #fff; font-weight: 500; line-height: 1.06; letter-spacing: -.02em; margin-bottom: 22px; text-wrap: balance; }
.final .lede { margin: 0 auto 32px; text-align: center; }
.final-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.final-seals { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.final-seal { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); }
.final-seal svg { width: 14px; height: 14px; color: var(--whatsapp); }
/* O P.S. fecha o arco narrativo da abertura ("2h da manhã") e era o bloco mais
   liso da página. Trilho azul + fundo tingido o marcam como recado pessoal,
   dentro do mesmo azul = método/clareza do arco de cor. */
.ps {
  position: relative;
  margin: 56px auto 0; max-width: 700px; text-align: left;
  padding: 30px 32px 30px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #1e90ff0d, #ffffff05);
  border: 1px solid #1e90ff26;
  box-shadow: 0 30px 70px -44px #1e90ff4d;
  overflow: hidden; /* deixa o raio recortar o trilho abaixo */
}
.ps::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  pointer-events: none;
  background: linear-gradient(180deg, var(--blue-soft), #1e90ff22 62%, #1e90ff00);
}
.ps .meta {
  display: inline-flex; align-items: center; color: var(--blue-soft);
  margin-bottom: 14px; padding: 4px 11px; border-radius: 999px;
  background: #1e90ff14; border: 1px solid #1e90ff33;
}
.ps p { color: var(--text-2); font-size: 15.5px; line-height: 1.72; }
.ps p em { font-family: var(--font-display); font-style: italic; color: var(--warn-soft); }

/* =========================================================================
   SOBRE
   ========================================================================= */
.sobre { --accent: var(--blue); }
.sobre-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.sobre-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sobre-photos .ph-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 1; position: relative; background: var(--navy-card); }
.sobre-photos .ph-frame.tall { grid-row: span 2; aspect-ratio: auto; }
.sobre-photos img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 2; }
.sobre-photos .place {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; gap: 8px;
  background: linear-gradient(150deg, #16263f, #0d1a2c); color: var(--text-4);
}
.sobre-photos .place svg { width: 28px; height: 28px; opacity: .5; }
.sobre-photos .place span { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; }
.sobre-body h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 42px); color: #fff; font-weight: 500; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 22px; }
.sobre-body p { color: var(--text-2); font-size: 15.5px; margin-bottom: 16px; }
.sobre-body p b, .sobre-body p .kw { color: #fff; }
.sobre-meta { margin-top: 24px; }
@media (max-width: 820px) { .sobre-grid { grid-template-columns: 1fr; } .sobre-photos { max-width: 460px; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { border-top: 1px solid var(--border); padding: 48px 0 calc(40px + env(safe-area-inset-bottom)); background: var(--navy-deep); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer .brand-name small { color: var(--text-4); }
.footer-meta { color: var(--text-4); font-size: 12.5px; font-family: var(--font-mono); line-height: 1.7; letter-spacing: .02em; max-width: 60ch; }
.footer-meta b { color: var(--text-3); }
.footer-meta a { color: var(--text-3); text-decoration: underline; text-underline-offset: 3px; }
.footer-meta a:hover { color: var(--blue-soft); }

/* =========================================================================
   STICKY MOBILE CTA
   ========================================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: #08111fe8; backdrop-filter: blur(14px); border-top: 1px solid var(--border);
  display: none; gap: 12px; align-items: center; justify-content: space-between;
  transform: translateY(120%); transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.sticky-cta.show { transform: none; }
.sticky-cta .txt { font-size: 12.5px; color: var(--text-2); line-height: 1.3; }
.sticky-cta .txt b { color: #fff; display: block; font-size: 13.5px; }
.sticky-cta .btn { flex: none; }
@media (max-width: 720px) { .sticky-cta { display: flex; } body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); } }

/* =========================================================================
   Mobile performance — alivia o CPU em telas pequenas
   No celular o "Style & Layout" custava ~1,1s. Desligamos o grão (feTurbulence
   em tela cheia é caro), paramos o loop infinito da aurora e adiamos o render
   das seções fora da tela (content-visibility). Visual permanece igual. */
@media (max-width: 768px) {
  .bg-grain { display: none; }
  .hero-aurora { animation: none; }
  .section { content-visibility: auto; contain-intrinsic-size: auto 760px; }
}

/* =========================================================================
   Reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .js-anim .reveal { opacity: 1 !important; transform: none !important; }
  .js-anim .opening-lines .ln, .js-anim .opening-close { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-aurora, .hero-crpbadge, .opening-glow { animation: none !important; }
  /* keep the static end-state of the colour arc legible & intentional */
  .opening-glow { background: radial-gradient(ellipse at center, #1a2c4a40, #12203633 40%, transparent 66%) !important; }
}

/* ═══════════ Motion vivo (M1-M5): loops leves, GPU-only, pausados fora da viewport ═══════════ */

/* M1 — curva de degradação viva: traços fluem pela recuperação + inflexão pulsa + cometa */
@keyframes dash-flow { to { stroke-dashoffset: -13; } }
.curve-alive .curve-blue { animation: dash-flow 1.1s linear infinite; }
@keyframes infl-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .7; } }
.curve-alive .curve-infl { transform-box: fill-box; transform-origin: center; animation: infl-pulse 2.4s ease-in-out infinite; }
.curve-comet { opacity: 0; filter: drop-shadow(0 0 6px #4fb0ff); }

/* M2 — dashboard 360° vivo: barras respiram + brilho percorre a sparkline */
@keyframes bar-breathe { 0%, 100% { transform: scaleX(1); } 50% { transform: scaleX(1.015); } }
.dash-alive .bar i { transform-origin: left center; animation: bar-breathe 3.8s ease-in-out infinite; }
.dash-alive .metric:nth-child(odd) .bar i { animation-duration: 4.6s; animation-delay: 1.1s; }
.spark .line-shine { fill: none; stroke: #bfe1ff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 34 300; stroke-dashoffset: 334; opacity: 0; }
.dash-alive .line-shine { animation: spark-shine 5.2s ease-in-out infinite; }
@keyframes spark-shine { 0% { stroke-dashoffset: 334; opacity: 0; } 8% { opacity: .85; } 55% { stroke-dashoffset: 0; opacity: .85; } 62%, 100% { stroke-dashoffset: 0; opacity: 0; } }

/* M3 — esteira: pausa fora da tela (o hover-pause e o fade nas bordas já existem) + card central com mais presença */
.carousel-track-wrap.offscreen .carousel-track { animation-play-state: paused; }
.print-card.is-center { transform: scale(1.06); }

/* M4 — vagas: contador factual + shimmer nos slots vazios */
.slots-count { color: var(--warn-soft); font-weight: 600; font-variant-numeric: tabular-nums; }
@keyframes count-flash { 0% { color: var(--warn); text-shadow: 0 0 14px rgba(245, 176, 72, .75); } 100% { color: var(--warn-soft); text-shadow: none; } }
.slots-count.flash { animation: count-flash 1.1s ease; }
@keyframes slot-shimmer { 0% { background-position: -44px 0; } 55%, 100% { background-position: 90px 0; } }
/* shimmer dos slots vazios: agora gatilhado por classe que o GSAP adiciona
   (`slots-live`), não mais por `.urgency-card.visible` */
.slots-bar.slots-live i:not(.taken) {
  background-image: linear-gradient(100deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.15) 50%, rgba(255,255,255,0) 70%);
  background-size: 44px 100%; background-repeat: no-repeat;
  animation: slot-shimmer 2.8s ease-in-out infinite;
}

/* M5 — fotos do consultório: Ken Burns sutil (alternado por foto) + tilt no hover */
@keyframes kb-a { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.07) translate(-1.4%, 1%); } }
@keyframes kb-b { from { transform: scale(1.06) translate(1.2%, -1%); } to { transform: scale(1) translate(0, 0); } }
.sobre-photos.alive .ph-frame img { animation: kb-a 17s ease-in-out infinite alternate; }
.sobre-photos.alive .ph-frame:nth-child(2) img { animation-name: kb-b; animation-duration: 21s; }
.sobre-photos.alive .ph-frame:nth-child(3) img { animation-delay: 4s; animation-duration: 24s; }
@media (hover: hover) {
  .ph-frame { transition: transform .5s cubic-bezier(.22, .61, .36, 1), box-shadow .5s ease; }
  .ph-frame:hover { transform: perspective(700px) rotateX(1.6deg) rotateY(-2deg) translateY(-4px); box-shadow: 0 26px 50px -22px rgba(0, 0, 0, .8); z-index: 2; }
  .ph-frame .place { transition: transform .45s ease; }
  .ph-frame:hover .place { transform: translateY(-4px); }
}

/* M6 — cursor vivo: magnetismo em CTAs + tilt/glow reativo em cards (GSAP
   quickTo; classes js-magnetic/js-tilt só existem quando o JS assumiu, então
   nunca conflitam com o hover CSS em quem não tem hover:hover ou GSAP). */
.arg-card, .whynow-card, .pillar { --mx: 50%; --my: 50%; }
.arg-card::before, .whynow-card::before, .pillar::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(240px circle at var(--mx) var(--my), #1e90ff22, transparent 65%);
  transition: opacity .35s ease;
}
.js-tilt .arg-card:hover::before, .js-tilt .whynow-card:hover::before, .js-tilt .pillar:hover::before { opacity: 1; }
.arg-card > *, .whynow-card > *, .pillar > * { position: relative; z-index: 1; }
.js-tilt .arg-card:hover { transform: none; }
.js-magnetic .btn-wa:hover, .js-magnetic .btn-ghost:hover { transform: none; }

/* acessibilidade: reduce-motion desliga todos os loops (o JS também não liga as classes) */
@media (prefers-reduced-motion: reduce) {
  .curve-alive .curve-blue, .curve-alive .curve-infl,
  .dash-alive .bar i, .dash-alive .line-shine,
  .slots-bar.slots-live i:not(.taken),
  .sobre-photos.alive .ph-frame img { animation: none !important; }
  .curve-comet { display: none; }
  .ph-frame, .ph-frame:hover { transform: none; }
}

/* Área de toque no celular: os links do rodapé ficavam com 15 a 17px de
   altura, pequenos demais para o dedo. Vira bloco com padding vertical, o
   que também separa um link do outro na leitura. */
@media (max-width: 640px) {
  .footer-meta a { display: inline-block; padding-block: 14px; line-height: 1.25; }
}

/* =========================================================================
   MAPA DO CASO (11/08/2026)
   Entra entre `metodo` e `args`. Grade 2x2 de propósito: a seção anterior
   já empilha 3 pilares em lista, e duas listas verticais seguidas cansam.
   ========================================================================= */
.mapa-intro { max-width: 720px; margin-top: 26px; }
.mapa-intro p { color: var(--text-2); font-size: clamp(15px, 1.9vw, 17px); line-height: 1.62; }
.mapa-intro p + p { margin-top: 14px; }
/* A absolvição do colega é o que mantém a seção dentro da vedação de
   publicidade comparativa: o problema é estrutural, não é que os outros
   trabalham mal. Não reescrever isso como crítica. */
.mapa-absolve b { color: var(--text); }

.mapa-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 36px;
}
.mapa-card {
  padding: 24px 24px 26px; border-radius: var(--radius-lg, 24px);
  border: 1px solid var(--border, #ffffff14);
  background: linear-gradient(155deg, var(--navy-card), #0d1826);
}
.mapa-n {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  color: var(--blue-soft); opacity: .8;
}
.mapa-card h3 {
  font-family: var(--font-display); font-size: clamp(17px, 2.1vw, 20px);
  font-weight: 600; line-height: 1.24; margin: 10px 0 9px;
}
.mapa-card p { font-size: 14.5px; color: var(--text-2); line-height: 1.58; }
.mapa-card b { color: var(--blue-soft); font-weight: 600; }

/* ---- a peça de demonstração ----
   A faixa de "caso fictício" é o PRIMEIRO elemento da figura, dentro dela.
   Se alguém printar, o aviso sai junto. Não mover para fora, não recortar. */
.mapa-fic {
  font-size: 13px; line-height: 1.55; color: var(--warn-soft);
  background: #f5b0480f; border: 1px solid #f5b04833;
  border-radius: 10px; padding: 11px 14px; margin-bottom: 18px;
}
.mapa-fic b { color: var(--warn); }

.mapa-regra {
  margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--navy-line);
  font-size: 14.5px; color: var(--text-2); line-height: 1.55;
}
.mapa-regra b { color: var(--text); }

.mapa .prose { margin-top: 22px; max-width: 720px; }

@media (max-width: 720px) {
  .mapa-grid { grid-template-columns: 1fr; }
  /* O SVG tem 760 de viewBox e não encolhe bem em 390px: vira esteira
     rolável, com a faixa de aviso FORA do scroll para nunca sair de vista. */
    .mapa-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ---- linha do tempo ----
   Vertical por padrão (celular) e horizontal a partir de 720px. Foi feita em
   HTML por isso: o SVG de largura fixa jogava o marco "sem data" para fora da
   área visível no celular, e ele é o argumento inteiro da peça. */
.lt { list-style: none; display: grid; gap: 0; margin: 0; padding: 0; }
.lt-item {
  position: relative; padding: 0 0 22px 26px;
  border-left: 2px solid var(--navy-line);
}
.lt-item:last-child { padding-bottom: 0; border-left-color: transparent; }
.lt-item::before {
  content: ""; position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue-soft); box-shadow: 0 0 0 4px var(--navy);
}
.lt-quando {
  display: block; font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3);
}
.lt-oque { display: block; font-size: 15px; font-weight: 600; color: var(--text); margin-top: 3px; }

/* O marco sem data é o único em âmbar: na página inteira âmbar marca o que
   está em aberto, e é exatamente isso que ele é. */
.lt-item--aberto::before { background: var(--warn); }
.lt-item--aberto .lt-quando { color: var(--warn); }
.lt-duvida {
  display: block; margin-top: 6px; font-size: 13.5px;
  color: var(--warn-soft); line-height: 1.5;
}
.lt-item--hoje::before { background: var(--whatsapp); }

@media (min-width: 720px) {
  .lt { grid-template-columns: repeat(4, 1fr); gap: 0 18px; margin-top: 10px; }
  .lt-item {
    padding: 26px 0 0; border-left: 0;
    border-top: 2px solid var(--navy-line);
  }
  .lt-item:last-child { border-top-color: transparent; }
  .lt-item::before { left: 0; top: -7px; }
}

/* ---- bloco de demonstração: as quatro vistas do mesmo caso ----
   A faixa de fictício abre o bloco e vale para as quatro. Não separar. */
.mapa-demo {
  margin-top: 34px; padding: 20px 20px 8px;
  border: 1px solid var(--border, #ffffff14); border-radius: var(--radius-lg, 24px);
  background: #ffffff05;
}
.dv { margin: 0 0 26px; padding-bottom: 24px; border-bottom: 1px solid var(--navy-line); }
.dv:last-child { border-bottom: 0; padding-bottom: 6px; }
.dv-cap {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--font-display); font-size: 16.5px; font-weight: 600;
  color: var(--text); margin-bottom: 14px;
}
.dv-n { font-size: 11px; letter-spacing: .12em; color: var(--blue-soft); opacity: .75; }
.dv-svg { width: 100%; height: auto; display: block; max-width: 460px; margin-inline: auto; }
.dv-leg { margin-top: 12px; font-size: 13.5px; line-height: 1.55; color: var(--text-3); }
.dv-leg b { color: var(--text-2); }

/* vocabulário gráfico compartilhado pelos três diagramas */
.dv-box { fill: var(--navy-card); stroke: var(--border, #ffffff1f); stroke-width: 1.2; }
.dv-box--quente { fill: #f5b0480d; stroke: #f5b04833; }
.dv-hub { fill: var(--blue-deep); stroke: var(--blue); stroke-width: 1.4; }
.dv-hubtxt { font: 600 12px var(--font-body); fill: #fff; letter-spacing: .08em; }
.dv-rot { font: 600 9px var(--font-mono); fill: var(--text-3); letter-spacing: .12em; }
.dv-rot--quente { fill: var(--warn); }
.dv-txt { font: 12.5px var(--font-body); fill: var(--text); }
.dv-min { font: 10.5px var(--font-body); fill: var(--text-3); }
.dv-liga { stroke: var(--blue-soft); stroke-width: 1.6; fill: none; opacity: .7; }
/* tracejado = hipótese. A distinção entre cheio e tracejado é o argumento
   do primeiro diagrama, não decoração: não uniformizar. */
.dv-hip { stroke: var(--warn); stroke-width: 1.5; fill: none; stroke-dasharray: 5 4; opacity: .85; }
.dv-hiptxt { font: 600 9px var(--font-mono); fill: var(--warn); letter-spacing: .1em; }

/* genograma: símbolos padrão da ferramenta */
.dv-sim { fill: none; stroke: var(--text-2); stroke-width: 1.8; }
.dv-eu { stroke: var(--blue-soft); stroke-width: 2; }
.dv-fio { stroke: var(--navy-line); stroke-width: 1.6; }
.dv-morto { stroke: var(--text-3); stroke-width: 1.6; }

/* ecomapa: a espessura do traço É a informação */
.dv-vin { stroke: var(--text-3); fill: none; }
.dv-vin--forte { stroke-width: 3.4; stroke: var(--blue-soft); opacity: .8; }
.dv-vin--novo { stroke-width: 2.6; stroke: var(--warn); opacity: .8; }
.dv-vin--rompido { stroke-width: 1.6; stroke-dasharray: 4 4; opacity: .55; }

@media (min-width: 720px) {
  .mapa-demo { padding: 26px 28px 12px; }
  .dv-cap { font-size: 18px; }
}

/* ---- estados iniciais dos diagramas ----
   TUDO sob .js-anim: sem JS, sem GSAP ou depois do failsafe de 4s, os
   diagramas aparecem completos. A animação nunca é dona da visibilidade
   final, só da entrada. */
.js-anim .dv-anim .dv-box,
.js-anim .dv-anim .dv-hub,
.js-anim .dv-anim .dv-sim,
.js-anim .dv-anim text { opacity: 0; }
/* Linha cheia entra desenhando (dashoffset). O JS mede o comprimento real
   de cada traço, então não há número mágico aqui. */
.js-anim .dv-anim .dv-liga,
.js-anim .dv-anim .dv-fio,
.js-anim .dv-anim .dv-vin,
.js-anim .dv-anim .dv-morto { opacity: 0; }
/* Tracejada NÃO desenha: ela aparece. Desenhar um traço que já é tracejado
   faz o padrão "correr", e além disso o sentido é outro: o sólido é fato e
   se constrói, o tracejado é hipótese e simplesmente surge. */
.js-anim .dv-anim .dv-hip,
.js-anim .dv-anim .dv-hiptxt { opacity: 0; }

.js-anim .lt-anim .lt-item { opacity: 0; }

.anim-failsafe .dv-anim *,
.anim-failsafe .lt-anim .lt-item {
  opacity: 1 !important; transform: none !important;
  stroke-dashoffset: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  .dv-anim *, .lt-anim .lt-item {
    opacity: 1 !important; transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* A régua de preço (.cam-*) e o detalhe do acompanhamento (.acomp-*) foram
   removidos em 17/08/2026: esta página não publica preço. O valor mora na
   agenda. Ver o comentário longo no lugar da seção, no index.html. */
