/* =========================================================================
   Zclic Tecnologia · Agenda de Implante Previsível
   Estrutura e efeitos: template Novara Editorial.
   Tokens (cores, fonte, logos, botões): Design System Zclic v1.0.
   ========================================================================= */

/* ---------- Tokens (Design System Zclic) ---------- */
:root {
  --brand: #003CF0;        /* primary */
  --accent: #265CFF;       /* fim do gradiente CTA, realces */
  --deep: #002596;         /* fim escuro do gradiente */
  --deep-hover: #002CB4;   /* hover de CTA */
  --bg: #000000;
  --paper: #F4F4F1;        /* bg do tema claro, usado em superfícies claras */

  /* Tinta da marca para texto pequeno sobre preto (contraste AA > 4.5:1) */
  --brand-ink: #7F9CFF;

  --grad: linear-gradient(90deg, #003CF0, #002596);
  --grad-135: linear-gradient(135deg, #265CFF, #003CF0 45%, #002596);

  /* Escala de texto (opacidades sobre o fundo) */
  --t1: #ffffff;
  --t2: rgba(255, 255, 255, .72);
  --t3: rgba(255, 255, 255, .6);
  --t4: rgba(255, 255, 255, .48);
  --line: rgba(255, 255, 255, .1);
  --line-soft: rgba(255, 255, 255, .06);
  --fill: rgba(255, 255, 255, .03);
  --fill-2: rgba(255, 255, 255, .05);

  --radius: 4px;           /* DS: cards e botões */
  --container: 74rem;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);

  --ease-apple: cubic-bezier(.16, 1, .3, 1);
  --ease-expo: cubic-bezier(.19, 1, .22, 1);

  --font: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--t1);
  background:
    radial-gradient(ellipse at 72% 8%, rgba(0, 60, 240, .16), transparent 35%),
    radial-gradient(ellipse at 12% 70%, rgba(38, 92, 255, .07), transparent 30%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
::selection { background: var(--brand); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--brand-ink); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 200; padding: .75rem 1rem; background: #fff; color: #000; border-radius: var(--radius); font-weight: 700; }
.skip-link:focus { top: 1rem; }

.i { width: 1em; height: 1em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.i-fill { fill: currentColor; stroke: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { width: 100%; max-width: 85rem; margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--section-y); border-top: 1px solid var(--line-soft); }

/* ---------- Tipografia ---------- */
.display {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .92;
}
.h-xl { font-size: clamp(2.6rem, 8vw, 6.5rem); }
.h-lg { font-size: clamp(2.2rem, 6vw, 4.75rem); }
.h-md { font-size: clamp(1.8rem, 4.2vw, 3.25rem); }
.h-sm { font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1; }
.muted { color: rgba(255, 255, 255, .38); }
/* Complemento do título (parte cinza): linha própria, menor, sem caixa alta e sem negrito */
.display .muted {
  display: block; margin-top: .55em;
  font-size: .48em; font-weight: 400; text-transform: none;
  letter-spacing: -.01em; line-height: 1.2; color: rgba(255, 255, 255, .62); text-wrap: balance;
}
.overline {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--brand-ink);
}
.overline--dim { color: var(--t4); }
.lead { font-size: clamp(1rem, 1.3vw, 1.125rem); line-height: 1.8; color: var(--t2); max-width: 36rem; }
.body { color: var(--t3); line-height: 1.75; }
.small { font-size: .875rem; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Botões (DS) ---------- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; padding: .9rem 1.8rem;
  border-radius: var(--radius);
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; line-height: 1.2;
  text-align: center;
  transition: transform .3s var(--ease-apple), border-color .2s linear, color .2s linear, background-color .2s linear;
}
.btn .i { width: 1rem; height: 1rem; }
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s var(--ease-apple);
}
.btn:hover { transform: translateY(-1px); }
.btn:hover::before { transform: scaleY(1); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 18px 45px rgba(0, 60, 240, .28); }
.btn--primary::before { background: var(--deep-hover); }
.btn--outline { border: 1px solid rgba(255, 255, 255, .22); color: #fff; background: rgba(255, 255, 255, .03); backdrop-filter: blur(12px); }
.btn--outline::before { background: rgba(255, 255, 255, .08); }
.btn--outline:hover { border-color: rgba(255, 255, 255, .5); }
.btn--solid { background: #fff; color: var(--deep); }
.btn--solid::before { background: var(--paper); }
.btn--block { width: 100%; }
.btn--sm { min-height: 44px; padding: .7rem 1.1rem; font-size: .66rem; }
.link-quiet {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--t2);
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.link-quiet:hover { color: #fff; }
.link-quiet .i { width: .9rem; height: .9rem; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .3rem .8rem; border: 1px solid rgba(255, 255, 255, .12); border-radius: 9999px;
  font-size: .75rem; color: var(--t3); background: rgba(255, 255, 255, .02);
}
.chip .i { width: .85rem; height: .85rem; color: var(--brand-ink); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }

/* ---------- Placeholders [INSERIR ...] ---------- */
.ph {
  display: inline-block;
  padding: .15rem .5rem;
  border: 1px dashed #FFC24B;
  border-radius: var(--radius);
  background: rgba(255, 194, 75, .08);
  color: #FFD27A;
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: .8rem; font-weight: 500; letter-spacing: 0; text-transform: none; line-height: 1.5;
}
.ph-block {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 1.25rem; min-height: 5rem;
  border: 1px dashed rgba(255, 194, 75, .7); border-radius: var(--radius);
  background: rgba(255, 194, 75, .05);
  color: #FFD27A; font-family: ui-monospace, 'Cascadia Code', Consolas, monospace; font-size: .8rem; line-height: 1.5;
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--fill);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

/* =========================================================================
   Barra de progresso + indicador de capítulo (template)
   ========================================================================= */
.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 80; height: 2px; pointer-events: none; background: rgba(255, 255, 255, .08); }
.scroll-progress__bar {
  display: block; width: 100%; height: 100%;
  transform: scaleX(0); transform-origin: left center;
  background: linear-gradient(90deg, var(--deep), var(--brand) 52%, #9FB4FF);
  box-shadow: 0 0 20px rgba(38, 92, 255, .8);
}
.chapter-indicator {
  position: fixed; right: clamp(1rem, 2vw, 2rem); top: 50%; z-index: 45;
  display: none; align-items: center; gap: .8rem;
  transform: translateY(-50%); pointer-events: none; mix-blend-mode: difference;
}
.chapter-indicator__label {
  max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0;
  color: #fff; font-size: 9px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  transition: max-width .5s ease, opacity .35s ease;
}
.chapter-indicator.is-visible .chapter-indicator__label { max-width: 13rem; opacity: .68; }
.chapter-indicator__rail { width: 1px; height: 88px; background: rgba(255, 255, 255, .25); overflow: hidden; }
.chapter-indicator__fill { display: block; width: 100%; height: 100%; transform: scaleY(0); transform-origin: top center; background: #fff; }
@media (min-width: 960px) { .chapter-indicator { display: flex; } }
@media (max-width: 1699px) { .chapter-indicator__label { display: none; } }

/* =========================================================================
   Preloader (template)
   ========================================================================= */
#preloader {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; text-align: center;
  padding: 1.5rem;
  background: #020308;
}
#preloader .loader-word { overflow: hidden; }
#preloader .loader-word img { width: clamp(9rem, 22vw, 15rem); height: auto; transform: translateY(110%); }
#preloader .loader-meta { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
#preloader .loader-label { font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: var(--t4); }
#preCount { font-weight: 900; font-size: clamp(3.5rem, 9vw, 6rem); line-height: 1; font-variant-numeric: tabular-nums; }
@media (min-width: 640px) {
  #preloader { flex-direction: row; align-items: flex-end; justify-content: space-between; text-align: left; padding: 2rem 2.5rem; }
  #preloader .loader-meta { align-items: flex-end; }
}
.no-js #preloader { display: none; }

/* =========================================================================
   Header
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem var(--gutter);
  background: linear-gradient(90deg, rgba(1, 4, 16, .86), rgba(3, 3, 3, .72));
  border-bottom: 1px solid rgba(38, 92, 255, .16);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .04), 0 18px 60px rgba(0, 0, 0, .32);
  backdrop-filter: blur(14px);
}
.nav__logo img { width: auto; height: 30px; }
.nav__links { display: none; align-items: center; gap: 2rem; font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--t3); }
.nav__links a { position: relative; padding-block: .5rem; transition: color .2s; }
.nav__links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--brand-ink); transform: scaleX(0); transition: transform .3s var(--ease-apple); }
.nav__links a:hover, .nav__links a.is-active { color: #fff; }
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: .5rem; }
.nav__cta .cta-long { display: none; }
.nav__toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); }
.nav__toggle .i { width: 1.2rem; height: 1.2rem; }
.nav__menu {
  position: fixed; top: var(--nav-h, 68px); left: 0; right: 0; z-index: 59;
  display: grid; gap: .25rem; padding: 1rem var(--gutter) 1.5rem;
  background: rgba(2, 4, 12, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px);
  transform: translateY(-110%); visibility: hidden; transition: transform .45s var(--ease-apple), visibility .45s;
}
.nav__menu.is-open { transform: none; visibility: visible; }
.nav__menu a { display: flex; align-items: center; justify-content: space-between; min-height: 52px; border-bottom: 1px solid var(--line-soft); font-size: 1.1rem; font-weight: 600; }
.nav__menu a .i { color: var(--brand-ink); }
@media (min-width: 400px) { .nav__logo img { height: 34px; } }
@media (min-width: 900px) {
  .nav { padding-block: 1rem; }
  .nav__links { display: flex; }
  .nav__toggle, .nav__menu { display: none; }
  .nav__cta .cta-long { display: inline; }
  .nav__cta .cta-short { display: none; }
}

/* =========================================================================
   Hero (fundo estático com imagens + título com split de letras)
   ========================================================================= */
#hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 100vh; min-height: 100svh;
  background: #02030a;
}
/* Fundo estático do hero: dentista ajustando a agenda à esquerda (atrás do texto) + implante à direita (atrás do formulário) */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg img { position: absolute; max-width: none; }
.hero-bg__dentist {
  inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 14% center; opacity: .42;
}
.hero-bg__implant { display: none; }
@media (min-width: 960px) {
  .hero-bg__dentist {
    inset: 0 auto 0 0; width: auto; height: 100%; aspect-ratio: 16 / 9; object-fit: cover; opacity: .72;
    -webkit-mask-image: linear-gradient(90deg, #000 40%, transparent 72%);
    mask-image: linear-gradient(90deg, #000 40%, transparent 72%);
  }
  /* Implante menor, à direita; o preto some no "screen" */
  .hero-bg__implant {
    display: block; bottom: 0; right: -17vh; width: auto; height: 90%;
    object-fit: contain; opacity: .9; mix-blend-mode: screen;
    -webkit-mask-image: radial-gradient(ellipse 42% 62% at 80% 50%, #000 55%, transparent 100%);
    mask-image: radial-gradient(ellipse 42% 62% at 80% 50%, #000 55%, transparent 100%);
  }
}
#hero::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(0, 0, 0, .55) 0 22%, rgba(0, 0, 0, .35) 60%, rgba(0, 0, 0, .85) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(0, 60, 240, .22), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .05) 42%, rgba(0, 0, 0, .8) 100%);
}
#hero::after {
  content: ''; position: absolute; inset: 12% 1rem 9vh; z-index: 2; pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .1); opacity: .7;
}
.hero-content {
  position: relative; z-index: 3; flex: 1;
  display: grid; align-items: center; gap: 2.5rem;
  width: 100%; max-width: 86rem; margin-inline: auto;
  padding: clamp(6rem, 12vh, 7.5rem) var(--gutter) clamp(2rem, 5vh, 3.5rem);
}
/* Conteúdo alinhado à esquerda */
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; text-align: left; min-width: 0; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .62rem 1rem;
  border: 1px solid rgba(255, 255, 255, .16); border-radius: 9999px;
  background: rgba(2, 4, 14, .5); backdrop-filter: blur(14px);
  font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, .8);
}
.hero-kicker::before { content: ''; width: .38rem; height: .38rem; flex: none; border-radius: 50%; background: var(--accent); box-shadow: 0 0 20px rgba(38, 92, 255, .95); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }

#heroTitle {
  margin: clamp(1.4rem, 3.5vh, 2.5rem) 0 clamp(1.2rem, 3vh, 2rem);
  font-weight: 900; text-transform: uppercase; line-height: .86;
  text-shadow: 0 2px 0 rgba(255, 255, 255, .12), 0 0 40px rgba(0, 60, 240, .25), 0 28px 70px rgba(0, 0, 0, .8);
}
#heroTitle .t-line { display: block; }
#heroTitle .t-top { font-size: clamp(1.05rem, 3.6vw, 3.1rem); font-weight: 300; letter-spacing: .16em; white-space: nowrap; color: rgba(255, 255, 255, .86); margin-bottom: .35em; }
#heroTitle .t-main { font-size: clamp(2.7rem, 12.4vw, 11.5rem); letter-spacing: -.035em; white-space: nowrap; }
#heroTitle .char-mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .04em; }
#heroTitle .char { display: inline-block; will-change: transform; }
#heroSub { max-width: 38rem; font-size: clamp(1rem, 1.25vw, 1.12rem); line-height: 1.75; color: rgba(255, 255, 255, .78); text-shadow: 0 2px 18px rgba(0, 0, 0, .8); }
#heroCta { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; width: min(100%, 22rem); margin-top: clamp(1.75rem, 4vh, 2.75rem); }
#heroCta .btn { width: 100%; }
.hero-proof { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: .5rem; margin-top: 1.25rem; }
.hero-proof .chip { background: rgba(2, 4, 14, .55); color: rgba(255, 255, 255, .8); backdrop-filter: blur(10px); }
#heroFooter {
  position: relative; z-index: 3;
  display: none; align-items: flex-end; justify-content: space-between;
  padding: 0 var(--gutter) clamp(1.25rem, 3vh, 2rem);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .6);
}
#heroFooter .hf-box { padding: .85rem 1rem; border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--radius); background: rgba(255, 255, 255, .025); backdrop-filter: blur(14px); }
#heroFooter .hf-scroll { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
#heroFooter .hf-scroll .i { width: 1rem; height: 1rem; animation: bounce 1.6s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(-20%); } 50% { transform: none; } }
[data-hero-fade], #heroSub, #heroCta, #heroFooter, .hero-proof { will-change: transform, opacity; }
@media (min-width: 640px) {
  #heroCta { flex-direction: row; width: auto; gap: 1rem; }
  #heroCta .btn { width: auto; }
  .hero-kicker { font-size: .68rem; letter-spacing: .3em; }
}
@media (min-width: 960px) {
  #heroFooter { display: flex; }
  #hero::after { inset: 10% 7vw 12vh; }
}

/* ---------- Formulário do hero ---------- */
.hero-form { position: relative; z-index: 3; width: 100%; padding: clamp(1.25rem, 2.2vw, 1.75rem); background: rgba(3, 6, 18, .72); border-color: rgba(38, 92, 255, .28); backdrop-filter: blur(18px); box-shadow: 0 30px 90px rgba(0, 0, 0, .55), 0 0 60px rgba(0, 60, 240, .12); scroll-margin-top: 90px; }
.hero-form form { gap: 1rem; }
.hero-form .opt span { min-height: 42px; padding: .45rem .9rem; font-size: .88rem; }
select.input {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237F9CFF' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center;
}
select.input:invalid { color: rgba(255, 255, 255, .45); }
select.input option { background: #05070f; color: #fff; }
@media (min-width: 1024px) {
  .hero-content { grid-template-columns: minmax(0, 1fr) minmax(30rem, 36rem); gap: clamp(2rem, 4vw, 4rem); }
  /* Bloco do título menor pra dar espaço ao formulário */
  .hero-kicker { font-size: .6rem; letter-spacing: .22em; padding: .5rem .85rem; }
  #heroTitle { margin: 1.25rem 0 1.25rem; }
  #heroTitle .t-top { font-size: clamp(1.1rem, 1.75vw, 1.9rem); }
  #heroTitle .t-main { font-size: clamp(3.25rem, 5.6vw, 6.5rem); }
  #heroSub { font-size: 1rem; max-width: 34rem; }
  .hero-cta-mobile { display: none !important; }
  .hero-content { padding-top: clamp(5.75rem, 11vh, 7rem); padding-bottom: clamp(1.5rem, 4vh, 3rem); }
  /* Rodapé do hero sobreposto (não soma altura); o quadro da direita ficaria atrás do formulário */
  #heroFooter { position: absolute; left: 0; right: 0; bottom: 0; pointer-events: none; }
  #heroFooter > :last-child { visibility: hidden; }
  /* Escurece o lado do texto pra manter o contraste com a imagem */
  #hero .hero-content::before { content: ''; position: absolute; inset: 0 40% 0 -20vw; z-index: -1; pointer-events: none; background: radial-gradient(ellipse at 30% 50%, rgba(0, 0, 0, .55), transparent 70%); }
}

/* =========================================================================
   Prova social (contadores)
   ========================================================================= */
.proof { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: rgba(0, 60, 240, .035); }
.proof__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.proof__item { padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 2.5vw, 2rem); border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.proof__item:nth-child(2n) { border-right: 0; }
.proof__num { display: flex; align-items: baseline; gap: .1em; font-weight: 900; font-size: clamp(2.2rem, 6vw, 4.25rem); line-height: 1; letter-spacing: -.035em; }
.proof__num .unit { color: var(--brand-ink); }
.proof__num .star { color: var(--accent); font-size: .7em; }
.proof__label { margin-top: .75rem; font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--t3); }
@media (min-width: 960px) {
  .proof__grid { grid-template-columns: repeat(4, 1fr); }
  .proof__item { border-bottom: 0; }
  .proof__item:nth-child(2n) { border-right: 1px solid var(--line-soft); }
  .proof__item:last-child { border-right: 0; }
}

/* =========================================================================
   Statement (template: bloco central)
   ========================================================================= */
.statement { padding-block: clamp(5rem, 11vw, 9rem); text-align: center; }
.statement h2 { max-width: 60rem; margin-inline: auto; }
.statement .lead { margin: 1.75rem auto 0; }
.statement .btn { margin-top: 2.5rem; }

/* =========================================================================
   Dores (template: testimonials cinematic)
   ========================================================================= */
#dores { position: relative; border-top: 1px solid var(--line-soft); }
.pain-stage { position: relative; isolation: isolate; padding: var(--section-y) var(--gutter); }
.pain-stage .fold-bg { max-height: none; }
.pain-title-wrap { position: relative; max-width: 82.5rem; margin: 0 auto 2.5rem; pointer-events: none; }
.pain-title { font-weight: 900; text-transform: uppercase; text-align: center; white-space: nowrap; font-size: clamp(2.6rem, 11.5vw, 11rem); line-height: .85; letter-spacing: -.03em; }
.pain-title .accent { color: var(--accent); }
.pain-cursor { position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--accent); opacity: 0; box-shadow: 0 0 20px rgba(38, 92, 255, .9); }
.pain-field { display: grid; gap: 1rem; max-width: 46rem; margin-inline: auto; }
.pain-card { padding: 1.5rem; border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); background: rgba(10, 12, 22, .92); box-shadow: 0 30px 80px rgba(0, 0, 0, .55); }
.pain-card blockquote { margin: 0; font-size: 1.05rem; line-height: 1.6; color: #fff; }
.pain-card blockquote::before { content: '\201C'; display: block; margin-bottom: .25rem; font-size: 2.2rem; line-height: 1; font-weight: 900; color: var(--accent); }
.pain-card footer { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--t4); }
/* Modo cinematográfico (ativado via JS quando há GSAP e movimento permitido) */
#dores.is-cinematic { height: 300vh; }
#dores.is-cinematic .pain-stage { position: sticky; top: 0; height: 100vh; height: 100svh; padding: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
#dores.is-cinematic .pain-title-wrap { position: absolute; top: 50%; left: 50%; width: 94vw; margin: 0; transform: translate(-50%, -50%); }
#dores.is-cinematic .pain-title { clip-path: inset(0 100% 0 0); will-change: transform, opacity, clip-path; }
#dores.is-cinematic .pain-field { position: relative; z-index: 2; display: block; width: min(1160px, 100%); max-width: none; height: 100%; pointer-events: none; }
#dores.is-cinematic .pain-card { position: absolute; top: 58%; left: 5%; width: 90%; pointer-events: auto; will-change: transform, opacity; }
@media (min-width: 768px) { #dores.is-cinematic .pain-card { width: min(430px, 90vw); padding: 1.6rem; } }

/* CTA band */
.cta-band { padding-block: clamp(3rem, 6vw, 4.5rem); border-top: 1px solid var(--line-soft); }
.cta-band__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
.cta-band__inner p { max-width: 34rem; font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.4; font-weight: 500; color: var(--t2); }
.cta-band__inner p strong { color: #fff; font-weight: 700; }
@media (min-width: 900px) { .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* =========================================================================
   Virada (template: painéis sticky "dobras")
   ========================================================================= */
#virada { position: relative; }
.virada-intro { padding-bottom: clamp(3rem, 6vw, 5rem); }
.work-panel { display: block; position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; transform-origin: center top; will-change: transform, filter; cursor: pointer; }
.work-panel .work-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.work-panel .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, .85), rgba(0, 0, 0, .05) 42%, rgba(0, 0, 0, .28)); }
.work-panel::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 50% 32%, rgba(0, 60, 240, .16), transparent 34%), radial-gradient(circle at 50% 35%, transparent 0 40%, rgba(0, 0, 0, .18) 75%, rgba(0, 0, 0, .55) 100%); }
.work-panel .wp-text { position: absolute; z-index: 1; left: var(--gutter); right: var(--gutter); bottom: clamp(2rem, 6vh, 3.5rem); max-width: 50rem; }
.work-panel h3 { font-weight: 900; text-transform: uppercase; font-size: clamp(2.2rem, 7vw, 5.5rem); line-height: .9; letter-spacing: -.04em; text-shadow: 0 20px 60px rgba(0, 0, 0, .8); }
.work-panel p { margin-top: 1rem; max-width: 30rem; font-size: clamp(1rem, 1.3vw, 1.125rem); line-height: 1.6; color: rgba(255, 255, 255, .85); }
.work-panel .wp-index { position: absolute; z-index: 1; right: var(--gutter); top: clamp(5.5rem, 12vh, 7rem); font-weight: 900; font-size: clamp(1.3rem, 2.6vw, 2.2rem); color: rgba(255, 255, 255, .8); }
/* Crossfade (ativado pelo JS): um palco fixo onde cada imagem aparece por cima da anterior.
   A anterior fica 100% visível até a nova cobrir, então a tela nunca escurece na troca. */
#virada.is-xfade .virada-track { position: relative; }
#virada.is-xfade .virada-stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; background: #000; }
#virada.is-xfade .work-panel { position: absolute; inset: 0; height: 100%; will-change: opacity; }
#virada.is-xfade .work-panel .work-img { transform-origin: 60% 50%; filter: brightness(1.12) contrast(1.05); }
@media (max-width: 767px) { .work-panel .work-img { object-position: 68% center; } }
#ticks { position: fixed; left: 1.25rem; top: 50%; z-index: 40; display: none; flex-direction: column; gap: .5rem; transform: translateY(-50%); opacity: 0; pointer-events: none; }
#ticks .tick { width: 1.25rem; height: 1px; background: #fff; opacity: .3; }
#viewMore {
  position: fixed; left: 0; top: 0; z-index: 55; pointer-events: none; opacity: 0;
  display: none; align-items: center; gap: .4rem; padding: .55rem 1rem;
  border-radius: 9999px; background: #fff; color: var(--deep);
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  transform: translate(-50%, -50%);
}
@media (hover: hover) and (min-width: 960px) { #viewMore { display: inline-flex; } #ticks { display: flex; } }

/* =========================================================================
   Comparativo (template: cabeçalho do pricing + tabela)
   ========================================================================= */
.split-head { display: grid; gap: 1.75rem; align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.split-head .overline { margin-bottom: 1.25rem; }
@media (min-width: 960px) { .split-head { grid-template-columns: 1.1fr .9fr; gap: 5rem; } .split-head > :last-child { justify-self: end; max-width: 30rem; } }
.bg-grid { position: absolute; inset: 0; pointer-events: none; opacity: .5; background: linear-gradient(to right, rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 92px 92px; mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%); }
.bg-glow { position: absolute; pointer-events: none; border-radius: 50%; background: rgba(0, 60, 240, .16); filter: blur(80px); }

/* Fundo temático por dobra (imagens Higgsfield, mesmo padrão do carrossel: preto, vidro fosco, luz cobalto).
   Fica atrás de todo o conteúdo (z-index -1 dentro de um contexto isolado) e some nas bordas. */
.has-bg { isolation: isolate; }
.fold-bg {
  position: absolute; top: 0; left: 0; right: 0; z-index: -1;
  height: 100%; max-height: 110vh; pointer-events: none; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 64%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 64%, transparent 100%);
}
.fold-bg--bottom { top: auto; bottom: 0; }
.fold-bg img { width: 100%; height: 100%; object-fit: cover; object-position: var(--bg-pos, center); opacity: var(--bg-o, .5); }
#problema    { --bg-pos: center bottom; --bg-o: .5; }
/* Statement alinhado à esquerda (dobra "O problema") */
.statement--left { text-align: left; }
.statement--left h2 { max-width: 44rem; margin-inline: 0; }
.statement--left .lead { margin-inline: 0; max-width: 34rem; }
@media (min-width: 960px) {
  /* Cadeira ancorada à direita; a borda esquerda da imagem some no preto, atrás do texto */
  #problema .fold-bg img {
    position: absolute; left: 3%; bottom: -12%; width: 125%; height: auto; max-width: none;
    opacity: .7;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 38%);
    mask-image: linear-gradient(90deg, transparent 0, #000 38%);
  }
}
#dores       { --bg-pos: 82% center; --bg-o: .55; }
#comparativo { --bg-pos: center 72%; --bg-o: .5; }
#solucao     { --bg-pos: 80% center; --bg-o: .55; }
#como-funciona { --bg-pos: 70% bottom; --bg-o: .55; }
#resultados  { --bg-pos: 78% center; --bg-o: .5; }
#garantia    { --bg-pos: center 70%; --bg-o: .5; }
#para-quem   { --bg-pos: 75% center; --bg-o: .42; }
#duvidas     { --bg-pos: center; --bg-o: .55; }
#analise     { --bg-pos: 10% bottom; --bg-o: .5; }
@media (max-width: 767px) { .fold-bg img { opacity: calc(var(--bg-o, .5) * .75); } }

.compare { width: 100%; border-collapse: separate; border-spacing: 0; }
.compare caption { text-align: left; }
.compare th, .compare td { text-align: left; vertical-align: middle; }
.compare .val { display: inline-flex; align-items: center; gap: .55rem; font-weight: 500; }
.compare .val .i { width: 1.05rem; height: 1.05rem; }
.val--yes .i { color: var(--brand-ink); }
.val--no { color: var(--t4); }
.val--no .i { color: rgba(255, 255, 255, .35); }
.val--mid { color: var(--t3); }
.val--mid .i { color: rgba(255, 255, 255, .5); }
.compare .is-zclic .val { color: #fff; font-weight: 700; }
.compare .is-zclic .val .i { color: #fff; }
/* Mobile: cada critério vira um card */
.compare thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.compare tbody { display: grid; gap: 1rem; }
.compare tr { display: grid; border: 1px solid var(--line); border-radius: var(--radius); background: var(--fill); overflow: hidden; }
.compare tbody th { padding: 1.1rem 1.25rem; font-size: 1.05rem; font-weight: 700; line-height: 1.35; border-bottom: 1px solid var(--line); }
.compare td { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1.25rem; border-bottom: 1px solid var(--line-soft); }
.compare td:last-child { border-bottom: 0; }
.compare td::before { content: attr(data-label); font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--t4); }
.compare td.is-zclic { background: var(--grad); }
.compare td.is-zclic::before { color: rgba(255, 255, 255, .8); }
@media (min-width: 900px) {
  .compare { display: table; table-layout: fixed; }
  .compare thead { position: static; width: auto; height: auto; overflow: visible; clip: auto; display: table-header-group; }
  .compare tbody { display: table-row-group; }
  .compare tr { display: table-row; border: 0; background: none; }
  .compare th, .compare td { display: table-cell; padding: 1.35rem 1.5rem; border-bottom: 1px solid var(--line); }
  .compare td::before { content: none; }
  .compare thead th { padding-block: 1.5rem; font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--t3); }
  .compare thead th:first-child { width: 34%; }
  .compare tbody th { font-size: 1rem; font-weight: 600; }
  .compare .is-zclic { background: var(--grad); border-bottom-color: rgba(255, 255, 255, .14); box-shadow: 0 0 80px rgba(0, 60, 240, .15); }
  .compare thead .is-zclic { color: #fff; border-radius: var(--radius) var(--radius) 0 0; }
  .compare tbody tr:last-child .is-zclic { border-radius: 0 0 var(--radius) var(--radius); border-bottom: 0; }
  .compare tbody tr { transition: background-color .3s; }
  .compare tbody tr:hover { background: rgba(255, 255, 255, .025); }
}
.badge-zclic { display: inline-flex; align-items: center; gap: .5rem; }
.badge-zclic img { height: 16px; width: auto; }

/* =========================================================================
   Solução (template: marquee + service rows)
   ========================================================================= */
.marquee { padding-block: 2.5rem; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-block; font-weight: 900; text-transform: uppercase; font-size: clamp(3rem, 11vw, 10rem); line-height: 1; letter-spacing: -.035em; will-change: transform; }
.marquee__track .o { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .45); }
.marquee__track .dot { color: var(--accent); }
.service-list { border-top: 1px solid var(--line-soft); }
.service-row { position: relative; display: grid; gap: 1.25rem; padding-block: 2.25rem; border-bottom: 1px solid var(--line-soft); transition: color .35s ease; }
.service-row::before {
  content: ''; position: absolute; inset: 0 -1.25rem; z-index: 0; border-radius: var(--radius); pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 60, 240, .18), rgba(0, 37, 150, .06) 55%, transparent 82%);
  opacity: 0; transform: scaleX(.96); transition: opacity .45s ease, transform .45s ease;
}
.service-row.is-active::before { opacity: 1; transform: scaleX(1); }
.service-row > * { position: relative; z-index: 1; }
.service-row .sr-num { font-size: .75rem; font-weight: 600; color: var(--t4); letter-spacing: .1em; }
.service-row .sr-img { overflow: hidden; border-radius: var(--radius); }
.service-row .sr-img img { width: 100%; height: 9rem; object-fit: cover; }
.service-row h3 { font-weight: 900; text-transform: uppercase; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1; letter-spacing: -.02em; }
.service-row p { margin-top: .6rem; color: var(--t3); line-height: 1.7; }
@media (min-width: 900px) {
  .service-row { grid-template-columns: 1fr 3fr 5fr 3fr; align-items: center; gap: 1.5rem; padding-block: 2.5rem; }
  .service-row .chips { justify-content: flex-end; }
  .service-row .sr-img img { height: 8rem; }
}
.solution-close { display: grid; gap: 1.5rem; align-items: center; margin-top: clamp(3rem, 6vw, 4.5rem); padding: clamp(1.75rem, 4vw, 2.5rem); }
.solution-close p { font-size: clamp(1.4rem, 3vw, 2.25rem); line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }
.solution-close p span { color: var(--brand-ink); }
@media (min-width: 900px) { .solution-close { grid-template-columns: 1fr auto; } }

/* =========================================================================
   Como funciona (template: coluna sticky + process cards)
   ========================================================================= */
.process-grid { display: grid; gap: 3rem; }
.process-aside .lead { margin-top: 1.5rem; }
.process-aside .btn { margin-top: 2rem; }
.process-list { display: grid; gap: 1rem; counter-reset: step; }
.process-card { display: flex; gap: 1.25rem; padding: clamp(1.4rem, 3vw, 2rem); }
.process-card .num { display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; flex: none; border-radius: 50%; border: 1px solid rgba(38, 92, 255, .5); font-size: .8rem; font-weight: 700; color: var(--brand-ink); background: rgba(0, 60, 240, .08); }
.process-card h3 { font-weight: 900; text-transform: uppercase; font-size: 1.35rem; line-height: 1.1; letter-spacing: -.01em; }
.process-card p { margin-top: .5rem; color: var(--t3); line-height: 1.7; }
.process-card.is-key { border-color: rgba(38, 92, 255, .45); background: linear-gradient(135deg, rgba(0, 60, 240, .16), rgba(255, 255, 255, .02)); }
.process-note { margin-top: 1.5rem; font-size: .8rem; line-height: 1.6; color: var(--t4); }
@media (min-width: 960px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .process-aside { position: sticky; top: 8rem; align-self: start; }
}

/* =========================================================================
   Resultados (template: product + creator-system + logo boxes)
   ========================================================================= */
.results-grid { display: grid; gap: 1rem; }
.results-main { max-width: 56rem; margin-bottom: clamp(1rem, 3vw, 2rem); }
.results-main .overline { margin-bottom: 1.25rem; }
.results-main h2 { font-size: clamp(2.3rem, 5.6vw, 4.6rem); line-height: .86; letter-spacing: -.045em; }
.results-main .lead { margin-top: 1.5rem; }
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.stat-row .v { font-weight: 900; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1; letter-spacing: -.03em; }
.stat-row .l { margin-top: .5rem; font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--t4); }
.results-side { display: grid; gap: 1rem; }
.case-figure { position: relative; min-height: 26rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #05070f; }
.case-figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .7s, transform .7s var(--ease-apple); }
.case-figure:hover img { filter: grayscale(0); transform: scale(1.03); }
.case-figure .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, .92), rgba(0, 0, 0, .25) 55%, rgba(0, 20, 90, .25)); }
.case-figure figcaption { position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; }
.case-figure .case-big { display: block; margin-top: .5rem; font-weight: 900; font-size: clamp(3.5rem, 8vw, 6rem); line-height: .85; letter-spacing: -.05em; }
.case-figure .case-big small { display: block; margin-top: .4rem; font-size: .8rem; font-weight: 600; letter-spacing: .2em; color: var(--t2); }
.case-figure .case-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.case-figure .case-quote { margin-top: 1.25rem; font-size: 1.05rem; font-weight: 600; color: #fff; }
.case-figure--sm { min-height: 22rem; }
.case-figure--sm .case-big { font-size: clamp(3rem, 6vw, 4.5rem); }
.case-card { display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; padding: 1.5rem; }
.case-card .case-big { font-weight: 900; font-size: clamp(3rem, 6vw, 4.5rem); line-height: .85; letter-spacing: -.05em; }
.case-card .case-big small { display: block; margin-top: .5rem; font-size: .75rem; font-weight: 600; letter-spacing: .2em; color: var(--t3); }
.testi-grid { display: grid; gap: 1rem; margin-top: 1rem; }
.testi-card { display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; min-height: 13rem; padding: 1.5rem; }
.testi-card .overline { font-size: .62rem; }
/* Card de resultado de cliente (mesmo formato do site principal) */
.result-card {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
  min-height: 25rem; padding: 1.5rem;
  border: 1px solid var(--line); border-radius: 14px; background: #05070f;
}
.result-card > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; filter: brightness(.62) saturate(.9); transition: transform .7s var(--ease-apple); }
.result-card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .1) 35%, rgba(0, 0, 0, .88) 72%, rgba(0, 0, 0, .95) 100%); }
.result-card:hover > img { transform: scale(1.04); }
.result-card__head { display: flex; align-items: flex-start; gap: .65rem; }
.result-card__head .i { width: 1.25rem; height: 1.25rem; margin-top: .15rem; }
.result-card__head h3 { font-size: .95rem; font-weight: 700; line-height: 1.25; }
.result-card__head p { font-size: .78rem; color: var(--t2); }
.result-card__value { font-weight: 900; font-size: clamp(2rem, 3.2vw, 2.6rem); line-height: 1; letter-spacing: -.03em; }
.result-card__label { margin-top: .4rem; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--t2); }
.result-card__text { margin-top: 1rem; font-size: .92rem; line-height: 1.7; color: var(--t2); }
.result-card .pill { display: inline-block; padding: .05rem .5rem; border-radius: 4px; background: var(--brand); color: #fff; font-weight: 700; white-space: nowrap; }
.result-card__list { margin: 1rem 0 0; border-top: 1px solid var(--line); }
.result-card__list div { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--line-soft); font-size: .82rem; }
.result-card__list dt { color: var(--t3); }
.result-card__list dd { margin: 0; font-weight: 700; color: #fff; text-align: right; white-space: nowrap; }
.logo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-top: 1rem; }
.logo-box { display: flex; align-items: center; justify-content: center; height: 4.5rem; padding: .75rem; border: 1px dashed rgba(255, 194, 75, .5); border-radius: var(--radius); background: rgba(255, 194, 75, .04); color: #FFD27A; font-family: ui-monospace, Consolas, monospace; font-size: .7rem; text-align: center; }
@media (min-width: 640px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
.logo-grid--clients { grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.logo-grid--clients .logo-box { height: 6rem; padding: 1rem 1.5rem; border: 1px solid var(--line); background: rgba(255, 255, 255, .03); }
.logo-grid--clients .logo-box img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; opacity: .8; transition: opacity .3s; }
.logo-grid--clients .logo-box:hover img { opacity: 1; }
@media (max-width: 639px) { .logo-grid--clients .logo-box { height: 4.5rem; padding: .6rem; } }
@media (min-width: 960px) {
  .results-grid { grid-template-columns: .85fr 1.15fr; gap: 1.25rem; }
  .results-side { grid-template-columns: 7fr 5fr; }
  .case-figure { min-height: 34rem; }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-grid { grid-template-columns: repeat(6, 1fr); }
  .logo-grid--clients { grid-template-columns: repeat(3, 1fr); }
}
.results-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 640px) { .results-cta { flex-direction: row; align-items: center; } }

/* =========================================================================
   Garantia (template: pricing com card de destaque)
   ========================================================================= */
.guarantee-grid { display: grid; gap: 1rem; align-items: stretch; }
.g-card { display: flex; flex-direction: column; padding: clamp(1.6rem, 3vw, 2.2rem); transition: transform .5s var(--ease-apple), border-color .3s; }
.g-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, .25); }
.g-card .g-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.g-card .g-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: var(--radius); background: var(--grad-135); padding: 1px; }
.g-card .g-icon span { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; border-radius: 3px; background: #04060f; }
.g-card .g-icon .i { width: 1.2rem; height: 1.2rem; color: var(--brand-ink); }
.g-card h3 { margin-top: 2rem; font-weight: 900; text-transform: uppercase; font-size: clamp(1.6rem, 2.4vw, 2rem); line-height: .95; letter-spacing: -.02em; }
.g-card p { margin-top: 1rem; color: var(--t3); line-height: 1.7; }
.g-card--hero { background: var(--grad); border-color: rgba(255, 255, 255, .2); box-shadow: 0 0 90px rgba(0, 60, 240, .28); }
.g-card--hero:hover { border-color: rgba(255, 255, 255, .45); }
.g-card--hero .g-tag { padding: .45rem .9rem; border-radius: 9999px; background: #fff; color: var(--deep); font-size: .6rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.g-card--hero .g-big { margin-top: 2.5rem; font-weight: 900; font-size: clamp(6rem, 16vw, 10rem); line-height: .8; letter-spacing: -.06em; }
.g-card--hero .g-big small { display: block; margin-top: .5rem; font-size: .8rem; font-weight: 700; letter-spacing: .3em; color: rgba(255, 255, 255, .8); }
.g-card--hero h3 { margin-top: 2rem; }
.g-card--hero p { color: rgba(255, 255, 255, .86); }
.g-card--hero .g-rule { height: 1px; margin-block: 2rem; background: rgba(255, 255, 255, .2); }
.g-card--hero .btn { margin-top: auto; }
.g-col { display: grid; gap: 1rem; }
.guarantee-note { display: flex; align-items: flex-start; gap: .75rem; margin-top: 1.5rem; font-size: .85rem; line-height: 1.6; color: var(--t4); }
.guarantee-note .i { margin-top: .2rem; color: var(--brand-ink); }
@media (min-width: 960px) {
  .guarantee-grid { grid-template-columns: .8fr 1.25fr .8fr; gap: 1.25rem; }
  .g-card--hero { margin-block: -1.5rem; }
}

/* =========================================================================
   Para quem é
   ========================================================================= */
.fit-grid { display: grid; gap: 1rem; }
.fit-card { padding: clamp(1.75rem, 4vw, 2.5rem); }
.fit-card h3 { display: flex; align-items: center; gap: .75rem; font-weight: 900; text-transform: uppercase; font-size: clamp(1.4rem, 2.5vw, 1.9rem); letter-spacing: -.02em; line-height: 1; }
.fit-card ul { display: grid; gap: 0; margin-top: 1.75rem; }
.fit-card li { display: flex; gap: .9rem; padding-block: 1rem; border-top: 1px solid var(--line-soft); font-size: 1.02rem; line-height: 1.55; color: var(--t2); }
.fit-card li .i { width: 1.15rem; height: 1.15rem; margin-top: .2rem; }
.fit-card--yes { border-color: rgba(38, 92, 255, .45); background: linear-gradient(160deg, rgba(0, 60, 240, .18), rgba(255, 255, 255, .02) 60%); }
.fit-card--yes li .i { color: var(--brand-ink); }
.fit-card--no li { color: var(--t3); }
.fit-card--no li .i { color: rgba(255, 255, 255, .4); }
.fit-mark { display: inline-flex; align-items: center; justify-content: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; }
.fit-card--yes .fit-mark { background: var(--grad); }
.fit-card--no .fit-mark { border: 1px solid var(--line); }
.fit-mark .i { width: 1rem; height: 1rem; }
@media (min-width: 960px) { .fit-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }

/* =========================================================================
   Sobre (template: seção com fundo em parallax)
   ========================================================================= */
#sobre { position: relative; overflow: hidden; }
#sobre .team-bg { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; opacity: .28; filter: grayscale(.4); }
#sobre .team-shade { position: absolute; inset: 0; background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .55) 30%, rgba(0, 0, 0, .55) 70%, #000 100%), radial-gradient(ellipse at 50% 50%, rgba(0, 60, 240, .2), transparent 60%); }
.about { position: relative; z-index: 1; padding-block: clamp(6rem, 14vw, 10rem); text-align: center; }
.about h2 { font-size: clamp(2.6rem, 8vw, 6.5rem); }
.about .lead { margin: 1.75rem auto 0; max-width: 40rem; }
.about .lead + .lead { margin-top: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; max-width: 50rem; margin: 3.5rem auto 0; text-align: left; }
.about-stats .v { font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.4rem); line-height: 1; letter-spacing: -.02em; }
.about-stats .l { margin-top: .5rem; font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--t3); }
/* Equipe: imagem geral + cards com foto e currículo */
.team-photo { position: relative; max-width: 64rem; margin: 3.5rem auto 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.team-photo img { width: 100%; height: auto; aspect-ratio: 1920 / 823; object-fit: cover; }
.team-photo::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .55)); }
.team-grid { display: grid; gap: 1rem; max-width: 64rem; margin: 1rem auto 0; text-align: left; }
.team-card { display: grid; grid-template-columns: 6.5rem 1fr; gap: 1.25rem; align-items: start; padding: 1.25rem; background: rgba(6, 8, 18, .72); }
.team-card__photo { width: 100%; aspect-ratio: 4 / 5; height: auto; object-fit: cover; border-radius: var(--radius); }
.team-card h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.2; }
.team-card__role { margin-top: .3rem; font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-ink); }
.team-card__role + p { margin-top: .85rem; font-size: .92rem; line-height: 1.65; color: var(--t2); }
@media (max-width: 639px) {
  /* Celular: foto pequena ao lado do nome/cargo, currículo na largura toda */
  .team-card { grid-template-columns: 4.75rem 1fr; column-gap: 1rem; row-gap: 0; }
  .team-card__photo { grid-row: 1 / span 2; }
  .team-card__body { display: contents; }
  .team-card h3 { align-self: end; }
  .team-card__role { align-self: start; }
  .team-card__role + p { grid-column: 1 / -1; margin-top: 1rem; }
}
@media (min-width: 640px) { .team-card { grid-template-columns: 8.5rem 1fr; padding: 1.5rem; } }
@media (min-width: 960px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media (min-width: 900px) { .about-stats { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================================
   FAQ (template: details)
   ========================================================================= */
.faq { max-width: 48rem; margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 44px; padding-block: 1.5rem; cursor: pointer; list-style: none; font-size: clamp(1.05rem, 1.6vw, 1.2rem); font-weight: 600; line-height: 1.4; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .i { width: 1.1rem; height: 1.1rem; color: var(--brand-ink); transition: transform .35s var(--ease-apple); }
.faq details[open] summary .i { transform: rotate(45deg); }
.faq details p { padding-bottom: 1.5rem; max-width: 42rem; color: var(--t3); line-height: 1.75; }

/* =========================================================================
   Formulário final
   ========================================================================= */
#analise { overflow: hidden; }
.form-grid { position: relative; z-index: 1; display: grid; gap: 3rem; }
.form-aside h2 { font-size: clamp(2.2rem, 5.2vw, 4.25rem); line-height: .9; letter-spacing: -.04em; }
.form-aside .lead { margin-top: 1.5rem; }
.form-aside .wa-alt { margin-top: 2rem; }
.form-aside .wa-alt p { margin-bottom: .75rem; font-size: .8rem; color: var(--t4); }
.form-card { padding: clamp(1.5rem, 4vw, 2.5rem); }
.form-card form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: .5rem; }
.field-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field > label:not(.consent), .field legend { padding: 0; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--t3); }
.field fieldset { margin: 0; padding: 0; border: 0; display: grid; gap: .6rem; }
.input {
  width: 100%; min-height: 50px; padding: .8rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--fill);
  font-size: 1rem; color: #fff; transition: border-color .2s, background-color .2s;
}
.input::placeholder { color: rgba(255, 255, 255, .35); }
.input:focus { outline: none; border-color: var(--accent); background: rgba(0, 60, 240, .06); box-shadow: 0 0 0 3px rgba(38, 92, 255, .2); }
.field.has-error .input, .field.has-error .opt span { border-color: #FF6B6B; }
.field .err { display: none; font-size: .8rem; color: #FF8A8A; }
.field.has-error .err { display: block; }
.opts { display: flex; flex-wrap: wrap; gap: .5rem; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.opt span { display: inline-flex; align-items: center; min-height: 44px; padding: .55rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--fill); font-size: .9rem; color: var(--t2); cursor: pointer; transition: border-color .2s, background-color .2s, color .2s; }
.opt span:hover { border-color: rgba(255, 255, 255, .3); }
.opt input:checked + span { border-color: var(--accent); background: rgba(0, 60, 240, .2); color: #fff; }
.opt input:focus-visible + span { outline: 2px solid var(--brand-ink); outline-offset: 2px; }
.consent { display: flex; gap: .75rem; align-items: flex-start; font-size: .82rem; line-height: 1.55; color: var(--t3); cursor: pointer; }
.consent input { width: 1.15rem; height: 1.15rem; margin-top: .15rem; flex: none; accent-color: var(--brand); }
.consent a { color: var(--brand-ink); text-decoration: underline; text-underline-offset: 2px; }
.form-foot { font-size: .8rem; color: var(--t4); text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success { display: none; padding: 1rem 0; text-align: center; }
.form-success .ok { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--grad); }
.form-success .ok .i { width: 1.5rem; height: 1.5rem; }
.form-success h3 { margin-top: 1.5rem; font-weight: 900; text-transform: uppercase; font-size: 1.6rem; letter-spacing: -.02em; }
.form-success p { margin: 1rem auto 0; max-width: 26rem; color: var(--t2); }
.form-success .form-countdown { margin-top: 1.5rem; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--t3); font-variant-numeric: tabular-nums; }
.form-card.is-sent form { display: none; }
.form-card.is-sent .form-success { display: block; }
.btn[disabled] { opacity: .6; pointer-events: none; }
@media (min-width: 960px) {
  .form-grid { grid-template-columns: .9fr 1.1fr; gap: 4.5rem; }
  .form-aside { position: sticky; top: 8rem; align-self: start; }
}

/* =========================================================================
   Rodapé (template: colunas + wordmark gigante)
   ========================================================================= */
.footer { position: relative; overflow: hidden; border-top: 1px solid var(--line-soft); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer .bg-grid { opacity: .25; }
.footer-cols { position: relative; display: grid; border-block: 1px solid var(--line); font-size: .92rem; color: var(--t3); }
.footer-col { padding-block: 2.25rem; border-bottom: 1px solid var(--line); }
.footer-col:last-child { border-bottom: 0; }
.footer-col h3 { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; font-size: .66rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--t2); }
.footer-col h3::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.footer-col ul { display: grid; gap: .5rem; }
.footer-col a { display: inline-flex; align-items: center; gap: .6rem; min-height: 36px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col a .i { width: 1rem; height: 1rem; }
.footer-brand img { height: 36px; width: auto; }
.footer-brand p { margin-top: 1.25rem; max-width: 18rem; line-height: 1.6; }
.footer-meta { position: relative; display: grid; gap: .75rem; padding-block: 1.75rem; font-size: .75rem; color: var(--t4); }
.footer-meta a { text-decoration: underline; text-underline-offset: 2px; }
.footer-meta a:hover { color: #fff; }
.wordmark { position: relative; height: clamp(7rem, 24vw, 22rem); margin-top: -1rem; overflow: hidden; }
.wordmark > span { position: absolute; left: 50%; bottom: -6vw; transform: translateX(-50%); width: 100%; text-align: center; white-space: nowrap; font-weight: 900; font-size: clamp(8rem, 32vw, 46rem); line-height: 1; letter-spacing: -.02em; user-select: none; }
.wordmark .solid { color: #fff; text-shadow: 0 0 48px rgba(38, 92, 255, .55); }
.wordmark .stroke { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .6); }
@media (min-width: 900px) {
  .footer-cols { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .footer-col { padding: 2.75rem 2rem; border-bottom: 0; border-right: 1px solid var(--line); }
  .footer-col:first-child { padding-left: 0; }
  .footer-col:last-child { border-right: 0; }
  .footer-meta { grid-template-columns: 1fr auto 1fr; align-items: center; }
  .footer-meta > :nth-child(2) { text-align: center; }
  .footer-meta > :last-child { text-align: right; }
}

/* =========================================================================
   WhatsApp flutuante + banner de cookies
   ========================================================================= */
.wa-float {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 70;
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--grad); color: #fff;
  box-shadow: 0 12px 40px rgba(0, 60, 240, .5), 0 0 0 1px rgba(255, 255, 255, .15) inset;
  transition: transform .3s var(--ease-apple);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float .i { width: 28px; height: 28px; }
.wa-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--accent); animation: ring 2.6s ease-out infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.55); opacity: 0; } }
.wa-float .wa-tip { position: absolute; right: calc(100% + .75rem); padding: .45rem .8rem; border-radius: var(--radius); background: #fff; color: var(--deep); font-size: .72rem; font-weight: 700; white-space: nowrap; opacity: 0; transform: translateX(6px); transition: opacity .25s, transform .25s; pointer-events: none; }
.wa-float:hover .wa-tip, .wa-float:focus-visible .wa-tip { opacity: 1; transform: none; }
@media (min-width: 640px) { .wa-float { right: 1.5rem; bottom: 1.5rem; } }

.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 75;
  display: none; flex-direction: column; gap: 1rem;
  max-width: 26rem; padding: 1.25rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(6, 8, 18, .96); backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  font-size: .85rem; line-height: 1.55; color: var(--t2);
}
.cookie.is-visible { display: flex; }
.cookie-open .wa-float { bottom: calc(var(--cookie-h, 0px) + 1.75rem); }
@media (max-width: 639px) {
  .cookie { left: .75rem; right: .75rem; bottom: .75rem; gap: .75rem; padding: .9rem 1rem; font-size: .78rem; line-height: 1.45; }
  .cookie .cookie-actions .btn { min-height: 40px; padding-block: .5rem; }
}
.cookie a { color: var(--brand-ink); text-decoration: underline; }
.cookie .cookie-actions { display: flex; gap: .5rem; }
.cookie .cookie-actions .btn { flex: 1; }
@media (min-width: 640px) { .cookie { right: auto; left: 1.5rem; bottom: 1.5rem; } }

/* =========================================================================
   Movimento reduzido
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .chapter-indicator, #viewMore { display: none !important; }
}
