/* ============================================================
   TRIAGEM 360° — identidade visual padrão do domínio (§3.2)
   Tema dark navy da /consulta · arco de cor: âmbar (dor) →
   azul (método) → verde (exclusivo WhatsApp)
   Fraunces (display) · Inter (corpo) · JetBrains Mono (rótulos)
   ============================================================ */

:root {
  /* base (tokens espelhados da /consulta) */
  --navy:        #0a1628;
  --navy-2:      #0c1422;
  --navy-3:      #0f1b2d;
  --navy-card:   #122036;
  --navy-card-2: #16263f;
  --navy-deep:   #060c16;

  --blue:      #1e90ff;
  --blue-soft: #4fb0ff;
  --blue-deep: #0a4d96;
  --blue-glow: #1e90ff55;
  --warn:      #f5b048;
  --warn-soft: #ffc977;
  --whatsapp:  #25d366;

  --text:   #e8eef7;
  --text-2: #a6b3c7;
  --text-3: #7d8ba3;

  --line:   #ffffff14;
  --line-2: #ffffff0d;

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

  --w: min(1120px, 92vw);
  --radius: 14px;
}

/* Propriedades animáveis pelo GSAP. Registradas com @property pra
   interpolarem como número (sem isso o browser trata como string e
   o traço "pula" em vez de crescer). Valor inicial = estado final,
   então sem JS tudo aparece desenhado. */
@property --regua { syntax: "<number>"; inherits: false; initial-value: 1; }
@property --traco { syntax: "<number>"; inherits: false; initial-value: 1; }
@property --ponto { syntax: "<number>"; inherits: false; initial-value: 1; }

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(1rem, .95rem + .3vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* gradientes radiais sutis + noise (assinatura do domínio) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 600px at 85% -5%, #1e90ff10, transparent 60%),
    radial-gradient(800px 500px at -10% 40%, #f5b04808, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

main { position: relative; z-index: 1; }

.container { width: var(--w); margin-inline: auto; }
.container.narrow { max-width: 780px; }
.center { text-align: center; }

::selection { background: var(--blue-glow); color: #fff; }

/* ---------- Tipografia ---------- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 2rem + 3.6vw, 4.4rem); }
h2 { font-size: clamp(1.85rem, 1.5rem + 2.2vw, 3rem); margin-top: 14px; }
h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; letter-spacing: -.01em; }

.hl-italic { font-style: italic; font-weight: 400; color: var(--warn); }
.hl-blue { color: var(--blue-soft); }

/* Único rótulo mono da página fora das fichas: o carimbo de protocolo do hero.
   (Eyebrow em toda seção é gramática de IA — banido; ver DESIGN.md.) */
.hero-tag {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--blue-soft);
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before {
  content: ""; width: 34px; height: 1px; background: var(--blue); flex: none;
  transform: scaleX(var(--regua)); transform-origin: left center;
}

.lede { font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem); color: var(--text-2); max-width: 62ch; margin-top: 20px; }
.lede.center { margin-inline: auto; text-align: center; }
.mono { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.micro { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; color: var(--text-3); margin-top: 16px; }
/* callout de nota: tint + borda completa (side-stripe é banido no domínio) */
.note { font-size: .88rem; color: var(--text-2); background: #f5b04810; border: 1px solid #f5b04833; border-radius: 10px; padding: 13px 16px; margin-top: 26px; max-width: 60ch; }
.note.center { background: transparent; border: 0; padding: 0; text-align: center; margin-inline: auto; color: var(--text-3); }
.note a { color: var(--whatsapp); font-weight: 600; }

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

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  color: #fff; background: var(--blue);
  border: 1px solid var(--blue);
  padding: 15px 28px; border-radius: 999px;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 30px -14px var(--blue-glow);
}
.btn:hover { background: var(--blue-deep); border-color: var(--blue-deep); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn span { transition: transform .25s ease; }
.btn:hover span { transform: translateX(3px); }
.btn-ghost {
  background: transparent; color: var(--blue-soft);
  border-color: var(--line); box-shadow: none;
}
.btn-ghost:hover { background: #1e90ff14; border-color: var(--blue-deep); }
.btn-sm { padding: 10px 20px; font-size: .88rem; }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #0a1628d9;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  width: var(--w); margin-inline: auto;
  display: flex; align-items: center; gap: 18px;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-ring { width: 30px; height: 30px; transform: rotate(-90deg); }
.ring-bg, .ring-fg { fill: none; stroke-width: 2.6; }
.ring-bg { stroke: var(--line); }
.ring-fg { stroke: var(--blue); stroke-dasharray: 97.4; stroke-dashoffset: 97.4; }
.brand-name { font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; letter-spacing: -.01em; }
.brand-name em { font-style: italic; font-weight: 400; color: var(--blue-soft); }
.nav-meta { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; color: var(--text-3); margin-left: auto; }
.nav-meta strong { color: var(--text-2); font-weight: 500; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(64px, 10vh, 120px) 0 clamp(56px, 8vh, 100px); overflow: hidden; }
#orbita {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Carrossel orbital dos instrumentos: camada decorativa atrás do conteúdo.
   Os .oi nascem invisíveis; o triagem.js posiciona e anima (elipse + loop).
   Sem JS ou com reduced-motion, a camada simplesmente não aparece. */
.orbita-ring { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orbita-ring .oi {
  position: absolute; left: 0; top: 0; opacity: 0;
  font-family: var(--font-mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3); white-space: nowrap;
}
.orbita-ring .oi.oi--foco { color: var(--blue-soft); }
@media (max-width: 640px) { .orbita-ring { display: none; } }
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.35fr .85fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-copy h1 { margin-top: 18px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ficha técnica */
.ficha {
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 20px;
  box-shadow: 0 24px 60px -34px #00000090;
}
.ficha-head {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue-soft);
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-2);
}
.ficha-head .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px #1e90ff22; }
.ficha dl { display: flex; flex-direction: column; }
.ficha dl div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--line-2);
}
.ficha dl div:last-child { border-bottom: 0; }
.ficha dt { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text-3); }
.ficha dd { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--text); text-align: right; }
.ficha dd.big { font-size: 1.5rem; font-style: normal; font-weight: 600; color: var(--blue-soft); }
.ficha-foot { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; color: var(--text-3); margin-top: 14px; text-transform: uppercase; }

/* ---------- Seções ---------- */
/* o carimbo do relatório fica em right:-10px e a folha tem sombra deslocada:
   no mobile isso somava ~40px de scroll lateral. `clip` corta sem criar
   contexto de rolagem (ao contrário de `hidden`), então nada mais muda. */
main { overflow-x: clip; }
.section { padding: clamp(72px, 11vh, 130px) 0; position: relative; }
.section-alt { background: var(--navy-3); }
.section-alt::before, .section-alt::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--line-2);
}
.section-alt::before { top: 0; } .section-alt::after { bottom: 0; }

/* ---------- Vinhetas (espelhos): cascata assimétrica, sem cards ---------- */
.vinhetas { margin: 56px 0 0; display: flex; flex-direction: column; gap: clamp(30px, 5vh, 48px); }
.vinheta { max-width: 56ch; padding-top: 22px; position: relative; }
/* régua superior: pseudo em vez de border, pra poder ser traçada */
.vinheta::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--line);
  transform: scaleX(var(--regua)); transform-origin: left center;
}
.vinheta:nth-child(2) { margin-left: clamp(0px, 12%, 140px); }
.vinheta:nth-child(3) { margin-left: clamp(0px, 24%, 280px); }
.vinheta h3 {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(1.3rem, 1.15rem + .9vw, 1.7rem);
  color: var(--warn-soft); letter-spacing: -.01em; margin-bottom: 10px;
}
.vinheta p { color: var(--text-2); }
.vinhetas-fecho { margin-top: clamp(40px, 6vh, 64px); }

/* ---------- Split (recebe / bio) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.checks { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.checks li { padding-left: 34px; position: relative; color: var(--text-2); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-soft);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* relatório mock — documento de papel claro sobre o navy (proposital) */
.report { position: relative; justify-self: center; width: min(420px, 100%); }
.report-page {
  background: #fffdf6;
  color: #1c2733;
  border: 1px solid #00000022;
  border-radius: 10px;
  padding: 30px 28px;
  box-shadow:
    0 30px 70px -30px #000000c0,
    8px 10px 0 -4px var(--navy-card-2), 8px 10px 0 -3px var(--line);
  transform: rotate(-.6deg);
}
.report-top { display: flex; justify-content: space-between; border-bottom: 1px solid #00000014; padding-bottom: 12px; }
.report-top .mono { color: #6a7686; }
.report-top .mono:first-child { color: var(--blue-deep); font-weight: 500; }
.report-kicker { margin-top: 20px; color: #a3690e; }
.report-title { font-family: var(--font-display); font-size: 1.7rem; margin: 6px 0 18px; letter-spacing: -.01em; color: #14202e; }
.report-title em { color: var(--blue-deep); }
.report-lines { display: flex; flex-direction: column; gap: 9px; margin: 14px 0; }
.report-lines i { display: block; height: 8px; border-radius: 4px; background: #e9e3d5; width: 100%; }
.report-lines.slim i { height: 6px; }

/* Sumário real do relatório. Substitui as barras cinzas: um índice de seções
   não é conteúdo sigiloso e prova muito mais do que rabisco de placeholder. */
.report-sumario { list-style: none; margin: 16px 0 4px; padding: 0; }
.report-sumario li {
  display: grid; grid-template-columns: 24px 1fr; gap: 9px; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid #00000010;
  font-size: .82rem; line-height: 1.35; color: #2b3a4c;
}
.report-sumario li:last-child { border-bottom: 0; }
.report-sumario .rs-n {
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .06em; color: #a3690e;
}
.report-sumario .rs-forte { color: var(--blue-deep); font-weight: 600; }

/* A frase que nenhum teste online consegue copiar, colada no botão em vez de
   enterrada na bio: é o último argumento antes do clique. */
.final-assinatura {
  max-width: 30ch;
  margin: 30px auto 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.12rem, 2.6vw, 1.42rem);
  line-height: 1.32;
  color: var(--text);
}
.report-box { border: 1px solid #1e90ff45; background: #1e90ff0d; border-radius: 8px; padding: 14px 16px; margin: 18px 0; }
.report-box .mono { color: var(--blue-deep); }
.report-sign { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid #00000014; padding-top: 16px; margin-top: 22px; }
.report-sign .mono { color: #6a7686; }
.sign-name { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; margin-top: 4px; }
.stamp {
  position: absolute; top: -14px; right: -10px;
  font-family: var(--font-mono); font-size: .66rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--warn); border: 1.5px solid var(--warn);
  padding: 7px 12px; border-radius: 6px;
  background: var(--navy-2);
  transform: rotate(4deg);
}

/* ---------- Protocolo de instrumentos (ficha clínica, não grid de cards) ---------- */
.protocolo {
  margin: 44px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy-card);
  overflow: hidden;
}
.prot-grupo + .prot-grupo { border-top: 1px solid var(--line); }
.prot-head {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  padding: 18px 24px 14px;
  background: #ffffff05;
  border-bottom: 1px solid var(--line-2);
}
.prot-head h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--text); }
.prot-head h3::before {
  content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--warn); margin-right: 10px; vertical-align: 2px;
  transform: scale(var(--ponto));
}
.prot-grupo--adapt .prot-head h3::before { background: var(--blue); box-shadow: 0 0 0 4px #1e90ff22; }
.prot-head p { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); }
.prot-lista { list-style: none; }
.prot-lista li {
  display: grid;
  grid-template-columns: minmax(150px, .9fr) minmax(96px, .55fr) 72px 1.6fr;
  gap: 18px; align-items: baseline;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line-2);
  font-size: .92rem;
}
.prot-lista li:last-child { border-bottom: 0; }
.prot-lista strong { color: var(--text); font-weight: 600; }
.prot-instr { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; color: var(--blue-soft); white-space: nowrap; }
.prot-n { font-family: var(--font-mono); font-size: .7rem; color: var(--text-3); white-space: nowrap; text-align: right; }
.prot-desc { color: var(--text-2); }
/* a fala do paciente entra em itálico antes da explicação técnica:
   o rótulo é o que ele diz, o construto é só o crachá do instrumento */
.prot-desc em { font-style: italic; color: var(--text); }
.steps--tail { margin-top: 44px; }

/* ---------- Etapas ---------- */
.steps { list-style: none; margin-top: 48px; position: relative; max-width: 720px; }
.steps::before {
  content: ""; position: absolute; left: 23px; top: 10px; bottom: 10px;
  width: 1px; background: var(--line);
  transform: scaleY(var(--traco)); transform-origin: top center;
}
.step { display: flex; gap: 26px; padding: 20px 0; position: relative; }
.step .num {
  flex: none; width: 47px; height: 47px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-card); border: 1px solid var(--line);
  color: var(--blue-soft); font-size: .78rem; font-weight: 500;
  position: relative; z-index: 1;
}
.step:last-child .num { background: var(--blue); color: #fff; border-color: var(--blue); }
.step h3 { margin-bottom: 6px; color: var(--text); }
.step p { color: var(--text-2); font-size: .95rem; max-width: 52ch; }

/* ---------- Bio ---------- */
.split-bio { align-items: start; }
.bio-photo { position: relative; }
.bio-photo img {
  width: 100%; height: auto; max-width: 440px; display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.bio-photo figcaption {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--navy-card); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 18px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 14px 34px -20px #000000c0;
}
.bio-photo figcaption strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.bio-text { color: var(--text-2); margin-top: 20px; }
.bio-text strong { color: var(--text); }
/* citação com aspas penduradas (sem filete lateral) */
.bio-quote { position: relative; padding: 6px 0 6px 44px; margin-top: 26px; }
.bio-quote::before {
  content: "\201C"; position: absolute; left: 0; top: -6px;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 3.4rem; line-height: 1; color: var(--blue-soft);
}
.bio-quote p { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; line-height: 1.35; color: var(--text); }
.bio-ficha { margin-top: 30px; border-top: 1px solid var(--line); }
.bio-ficha div { display: grid; grid-template-columns: 130px 1fr; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line-2); }
.bio-ficha dt { font-family: var(--font-mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text-3); padding-top: 3px; }
.bio-ficha dd { font-size: .92rem; color: var(--text-2); }

/* ---------- Ponte Método 360 (painel azul do método) ---------- */
.section-dark { background: var(--navy-deep); color: var(--text); border-block: 1px solid var(--line-2); }
.section-dark .hl-italic { color: var(--blue-soft); }
.section-dark .lede { color: var(--text-2); }
/* auto-fit: acomoda 2 ou 3 caminhos sem deixar item órfão numa segunda linha */
.bridge-paths { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 34px; }
.path {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; background: var(--navy-card);
}
.path .mono { color: var(--blue-soft); }
.path p { margin-top: 10px; font-size: .96rem; color: var(--text-2); }
.path strong { color: var(--text); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; color: var(--blue-soft); font-weight: 600; font-size: .95rem;
  text-decoration: none; border-bottom: 1px solid var(--blue-deep); padding-bottom: 3px;
}
.link-arrow span { transition: transform .25s ease; }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- Honestidade: declarações empilhadas, sem cards ---------- */
.nots { margin-top: 40px; border-top: 1px solid var(--line); }
.not {
  display: grid; grid-template-columns: minmax(200px, .8fr) 1.6fr;
  gap: clamp(16px, 3vw, 40px); align-items: start;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.not h3 { color: var(--warn); font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; }
.not h3::before { content: "✕"; font-weight: 700; margin-right: 12px; font-family: var(--font-body); font-size: 1rem; }
.not p { color: var(--text-2); font-size: .95rem; }
/* a linha que assume o próprio interesse — destacada porque é ela que
   transforma a declaração ao lado em prova, e não em defesa */
/* grid-column: 2 porque o .not é grid de duas colunas (rótulo | texto) e um
   segundo <p> cairia na coluna do rótulo, desalinhado do parágrafo que ele
   completa. No mobile o grid vira 1 coluna e isto se desfaz sozinho. */
.not-custo {
  grid-column: 2;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  color: var(--text) !important; font-weight: 500;
}
@media (max-width: 760px) { .not-custo { grid-column: 1; } }

/* ---------- Para quem não serve ----------
   Coerente com o ângulo: a página que se vende por poder dizer "não"
   diz não antes da compra. Também é filtro comercial — o reembolso é
   integral mesmo com o formulário iniciado. */
.nao-agora {
  margin-top: 40px; padding: clamp(22px, 3.5vw, 32px);
  border: 1px solid #f5b04833; border-radius: 16px;
  background: linear-gradient(150deg, #f5b04810, #ffffff03);
}
.nao-agora h3 {
  color: var(--warn-soft); font-family: var(--font-display);
  font-weight: 500; font-size: 1.2rem; margin-bottom: 16px;
}
.nao-agora ul { list-style: none; display: grid; gap: 14px; }
.nao-agora li {
  position: relative; padding-left: 22px;
  color: var(--text-2); font-size: .95rem; line-height: 1.6;
}
.nao-agora li::before {
  content: ""; position: absolute; left: 2px; top: .62em;
  width: 9px; height: 1.5px; background: var(--warn); opacity: .8;
}
.nao-agora li b { color: var(--text); font-weight: 600; }
.nao-agora li a { color: var(--blue-soft); text-decoration: underline; text-underline-offset: 3px; }
.nao-agora li a:hover { color: #8ec2ff; }

/* ---------- FAQ ---------- */
.faqs { margin-top: 40px; border-top: 1px solid var(--line); }
.faqs details { border-bottom: 1px solid var(--line); }
.faqs summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.18rem; font-weight: 500;
  padding: 20px 44px 20px 0; position: relative;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 1.2rem; color: var(--blue-soft);
  transition: transform .3s ease;
}
.faqs details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faqs details p { padding: 0 0 22px; color: var(--text-2); max-width: 64ch; }
.faqs details a { color: var(--blue-soft); font-weight: 600; }

/* ---------- Final ---------- */
.final { padding-bottom: clamp(90px, 13vh, 150px); }
.final .btn-lg { margin-top: 30px; }
.legal { font-size: .8rem; color: var(--text-3); max-width: 56ch; margin: 30px auto 0; }

/* ---------- Footer ---------- */
.footer { position: relative; background: var(--navy-2); border-top: 1px solid var(--line-2); overflow: hidden; }
.footer-mark {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(9rem, 24vw, 20rem); line-height: .8;
  color: transparent; -webkit-text-stroke: 1px #ffffff10;
  text-align: center; user-select: none; pointer-events: none;
  margin-top: 30px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 30px;
  padding: 10px 0 46px; flex-wrap: wrap;
}
.footer-inner .brand-name { font-size: 1.4rem; }
.footer-inner .mono { margin-top: 6px; display: block; text-transform: none; letter-spacing: .04em; }
.footer-inner nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-inner nav a { font-size: .9rem; color: var(--text-2); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.footer-inner nav a:hover { color: var(--blue-soft); border-color: var(--blue-deep); }

/* ---------- Motion ----------
   Não há esconde-revela em CSS: o GSAP aplica os estados iniciais em
   runtime (triagem.js). Se o JS não rodar, a página fica inteira e
   visível — nenhum conteúdo depende de animação pra existir.
   Toda a coreografia está sob (prefers-reduced-motion: no-preference)
   via gsap.matchMedia(); quem pede menos movimento recebe a página
   estática, só com o anel de leitura da nav. */
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .ficha { max-width: 480px; }
  .split { grid-template-columns: 1fr; }
  .report { margin-top: 10px; }
  .bridge-paths { grid-template-columns: 1fr; }
  .vinheta:nth-child(2), .vinheta:nth-child(3) { margin-left: 0; }
  .not { grid-template-columns: 1fr; gap: 8px; }
  .prot-lista li { grid-template-columns: 1fr auto; gap: 4px 14px; }
  .prot-lista strong { grid-column: 1; }
  .prot-lista .prot-instr { grid-column: 2; text-align: right; }
  .prot-lista .prot-n { grid-column: 2; grid-row: 2; }
  .prot-lista .prot-desc { grid-column: 1; grid-row: 2; font-size: .86rem; }
  .nav-meta { display: none; }
  #orbita { opacity: .4; }
}
@media (max-width: 560px) {
  .bio-ficha div { grid-template-columns: 1fr; gap: 2px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* Área de toque no celular: os links do rodapé ficavam entre 19 e 26px de
   altura, e o dedo pede 44. Padding vertical resolve sem mudar o visual além
   do espaçamento. Vale para /triagem, /triagem/infantil e /triagem/privacidade,
   que compartilham este arquivo. */
@media (max-width: 640px) {
  .footer-inner nav { gap: 4px 22px; }
  .footer-inner nav a { display: inline-block; padding-block: 14px; }
}
