/* ============================================================
   GABRIELA ALVES — Landing de Funil (Reposicionamento de Marca Pessoal)
   Base: boutique-web-design (CSO) · adaptado pra CONVERSÃO
   Identidade: preto profundo + off-white/bege + verde inglês escuro
               + serif itálica display (Playfair) · corpo Sora · eyebrow Montserrat
   Tudo via tokens :root — nenhuma cor/raio hardcoded no HTML.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Cores-assinatura — verde inglês escuro (base premium) */
  --brand:        #1e3a2f;   /* verde inglês — acento/assinatura */
  --brand-strong: #2f5c47;   /* verde mais vivo — hover/realce */
  --brand-soft:   #d7e0da;   /* tint claro de verde p/ bordas no claro */
  --brand-tint:   rgba(47, 92, 71, .12);

  /* ⚡ VOLT — verde elétrico mais escuro/harmônico (sem aspecto "água") */
  --volt:         #1cc46a;   /* verde elétrico (emerald) — ímã de clique */
  --volt-2:       #109a59;   /* verde mais fundo p/ gradiente (sem ciano) */
  --volt-deep:    #0a3f28;   /* sombra escura do volt */
  --volt-ink:     #000000;   /* texto sobre volt — PRETO sólido, legível */
  --volt-glow:    rgba(28, 196, 106, .5);
  --volt-glow-soft: rgba(28, 196, 106, .2);

  /* Fundos */
  --bg:           #0c0c0c;   /* preto profundo — fundo dark base */
  --bg-2:         #f1ece6;   /* off-white bege — seção clara */
  --bg-2-soft:    #f7f3ee;   /* variação mais clara */

  /* Superfícies (cards) */
  --surface:        #161616;   /* card no escuro */
  --surface-border: #2a2a2a;   /* borda card no escuro */
  --surface-light:        #ffffff;   /* card no claro */
  --surface-light-border: #e3ddd4;   /* borda card no claro */

  /* Texto */
  --ink:        #f3efe9;   /* texto forte sobre escuro */
  --ink-soft:   #a9a39a;   /* texto suave sobre escuro */
  --ink-dark:   #161616;   /* texto forte sobre claro */
  --ink-dark-soft: #5c574f;/* texto suave sobre claro */

  /* Tipografia */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Sora", system-ui, -apple-system, sans-serif;
  --font-eyebrow: "Montserrat", "Sora", sans-serif;

  /* Raio / sombra / espaço */
  --radius:      6px;
  --radius-lg:   14px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.18);
  --shadow:      0 18px 50px rgba(0,0,0,.30);
  --shadow-light: 0 16px 44px rgba(12,12,12,.10);
  --shadow-brand: 0 16px 44px rgba(30,58,47,.30);
  --maxw:        1180px;
  --gutter:      clamp(20px, 5vw, 48px);
  --section-y:   clamp(64px, 9vw, 124px);
}

/* ---------- RESET / BASE ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.14; letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
em, .em { font-style: italic; }
p  { color: var(--ink-soft); }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section   { padding-block: var(--section-y); position: relative; }

/* Ritmo de cor — alterna escuro/claro pra matar espaço morto */
.section--dark  { background: var(--bg); color: var(--ink); }
.section--cream { background: var(--bg-2); color: var(--ink-dark); }
.section--cream p { color: var(--ink-dark-soft); }
.section--cream h2, .section--cream h3 { color: var(--ink-dark); }

/* Eyebrow / kicker — uppercase verde com tracking largo */
.eyebrow {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .7rem;
  font-weight: 600;
  color: var(--brand-strong);
  margin-bottom: 16px;
  display: inline-block;
}
.section--dark .eyebrow { color: #1cc46a; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 66px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 18px; font-size: 1.06rem; }
.section-head h2 em { color: var(--brand-strong); }
.section--dark .section-head h2 em { color: #1cc46a; }

/* Fio verde decorativo */
.rule { width: 60px; height: 2px; background: var(--brand-strong); border: 0; margin: 20px 0; }
.section--dark .rule { background: #1cc46a; }
.section-head.center .rule { margin-inline: auto; }

/* ---------- BOTÕES (⚡ elétricos — ímã de clique) ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .96rem;
  padding: 16px 32px; border-radius: var(--radius);
  cursor: pointer; border: 1.5px solid transparent;
  letter-spacing: .015em; will-change: transform;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .25s ease, color .2s ease, border-color .2s ease;
}
/* brilho que varre o botão */
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); transition: left .55s ease; pointer-events: none;
}
.btn:hover::after { left: 140%; }

/* PRIMÁRIO = volt sólido com glow pulsante */
.btn-brand {
  background: linear-gradient(135deg, var(--volt), var(--volt-2));
  color: var(--volt-ink);
  box-shadow: 0 0 0 0 var(--volt-glow), 0 10px 26px var(--volt-glow-soft), inset 0 1px 0 rgba(255,255,255,.35);
  animation: voltPulse 2.6s ease-in-out infinite;
}
.btn-brand:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 28px var(--volt-glow), 0 16px 40px var(--volt-glow-soft), inset 0 1px 0 rgba(255,255,255,.4);
  animation-play-state: paused;
}
.btn-brand:active { transform: translateY(-1px) scale(.96); box-shadow: 0 0 14px var(--volt-glow); }

/* OUTLINE = borda volt que acende */
.btn-outline {
  background: transparent; color: var(--volt);
  border-color: var(--volt); box-shadow: inset 0 0 0 0 var(--volt-glow-soft);
}
.btn-outline:hover {
  background: rgba(28,196,106,.10); color: var(--volt);
  border-color: var(--volt); transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 22px var(--volt-glow-soft), inset 0 0 24px rgba(28,196,106,.08);
}
.btn-outline:active { transform: translateY(-1px) scale(.96); }
.section--dark .btn-outline { color: var(--volt); border-color: rgba(28,196,106,.6); }
.section--dark .btn-outline:hover { background: rgba(28,196,106,.10); color: var(--volt); border-color: var(--volt); }
.section--cream .btn-outline { color: var(--volt-deep); border-color: var(--volt-deep); }
.section--cream .btn-outline:hover { background: rgba(10,74,46,.06); color: var(--volt-deep); border-color: var(--volt-deep); box-shadow: 0 8px 24px rgba(10,74,46,.18); }

.btn .arrow { transition: transform .22s ease; }
.btn:hover .arrow { transform: translateX(4px); }

@keyframes voltPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--volt-glow), 0 10px 26px var(--volt-glow-soft), inset 0 1px 0 rgba(255,255,255,.35); }
  50%      { box-shadow: 0 0 22px 2px var(--volt-glow), 0 10px 30px var(--volt-glow-soft), inset 0 1px 0 rgba(255,255,255,.35); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-brand { animation: none; }
  .btn { transition: background .2s ease, color .2s ease, border-color .2s ease; }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: rgba(8,8,8,.92);
  backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.navbar .brand {
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  font-style: italic; color: var(--ink); letter-spacing: -.01em;
}
.navbar .brand span { font-style: normal; font-family: var(--font-eyebrow); font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: #1cc46a; display: block; margin-top: -2px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--ink);
  transition: color .2s;
}
.nav-links a:hover { color: var(--volt); }
.nav-links .btn { padding: 11px 22px; color: #000; font-weight: 800; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.5rem; color: var(--ink); }

/* ---------- HERO ---------- */
.hero {
  padding-top: 150px; padding-bottom: var(--section-y);
  background:
    radial-gradient(900px 460px at 78% 0%, rgba(47,92,71,.16), transparent 62%),
    var(--bg);
}
.hero .container {
  display: grid; grid-template-columns: 1.05fr .92fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 { margin: 16px 0 22px; }
.hero h1 em { color: #1cc46a; }
.hero .lead { font-size: 1.16rem; max-width: 42ch; margin-bottom: 32px; color: var(--ink-soft); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-micro { margin-top: 20px; font-size: .82rem; color: var(--ink-soft); letter-spacing: .02em; }
.hero-micro::before { content: "—  "; color: #1cc46a; }
.hero-figure {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--surface-border);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ---------- FAIXA DE SELOS (substitui credbar de números) ---------- */
.sealbar { background: var(--surface); border-block: 1px solid var(--surface-border); }
.sealbar .container {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  padding-block: 36px; text-align: center;
}
.seal .ico { font-size: 1.1rem; color: #1cc46a; margin-bottom: 10px; letter-spacing: .2em; }
.seal .lbl { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; color: var(--ink); }
.seal .sub { font-size: .78rem; color: var(--ink-soft); margin-top: 4px; }

/* ---------- DOR (3 blocos) ---------- */
.grid-pain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pain {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg); padding: 36px 32px; position: relative;
  transition: transform .25s, border-color .25s;
}
.pain:hover { transform: translateY(-5px); border-color: #4c6b5b; }
.pain .step { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: #1cc46a; margin-bottom: 16px; }
.pain h3 { color: var(--ink); margin-bottom: 12px; }
.pain p { font-size: .98rem; color: var(--ink-soft); }

/* ---------- MECANISMO + 3 PILARES ---------- */
.mech-intro { max-width: 760px; }
.mech-intro p { font-size: 1.12rem; color: var(--ink-dark-soft); }
.grid-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: clamp(40px, 5vw, 60px); }
.pillar {
  background: var(--surface-light); border: 1px solid var(--surface-light-border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-light); border-color: var(--brand-soft); }
.pillar .num { font-family: var(--font-eyebrow); font-size: .72rem; letter-spacing: .2em; color: var(--brand-strong); font-weight: 600; }
.pillar h3 { margin: 14px 0 12px; color: var(--ink-dark); }
.pillar p { font-size: .96rem; color: var(--ink-dark-soft); }
.pillar .out { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--surface-light-border); font-size: .9rem; color: var(--brand-strong); font-style: italic; font-family: var(--font-display); }

/* ---------- PARALLAX / QUEBRA VISUAL ---------- */
.parallax {
  height: clamp(320px, 48vw, 520px);
  background-attachment: fixed; background-size: cover;
  background-position: center 30%; position: relative;
  display: grid; place-items: center;
}
.parallax::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,12,.55), rgba(12,12,12,.72)); }
.parallax .pq {
  position: relative; z-index: 2; max-width: 800px; text-align: center;
  padding-inline: var(--gutter);
}
.parallax .pq p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem); color: var(--ink); line-height: 1.45;
}
.parallax .pq cite { display: block; margin-top: 20px; font-family: var(--font-eyebrow); font-style: normal; font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: #1cc46a; }
@media (hover: none) { .parallax { background-attachment: scroll; } }

/* ---------- AUTORIDADE / SOBRE ---------- */
.about .container { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-figure { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--surface-border); }
.about-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-bio { font-size: 1.06rem; color: var(--ink-soft); margin-top: 18px; }
.cred-list { list-style: none; margin-top: 28px; display: grid; gap: 13px; }
.cred-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--ink); }
.cred-list li::before { content: "✦"; color: #1cc46a; font-size: .8rem; margin-top: 4px; }
.cred-list li .tbc { color: var(--ink-soft); font-style: italic; font-size: .82rem; }
.about-close { margin-top: 28px; font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: #1cc46a; }

/* ---------- DEPOIMENTOS ---------- */
.grid-depo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.depo {
  background: var(--surface-light); border: 1px solid var(--surface-light-border);
  border-radius: var(--radius-lg); padding: 34px 30px;
  display: flex; flex-direction: column; gap: 18px; position: relative;
}
.depo .mark { font-family: var(--font-display); font-size: 3rem; line-height: .4; color: var(--brand-soft); height: 22px; }
.depo blockquote { font-family: var(--font-display); font-size: 1.12rem; color: var(--ink-dark); font-style: italic; line-height: 1.5; }
.depo .who { font-size: .86rem; color: var(--ink-dark-soft); margin-top: auto; }
.depo .who b { color: var(--ink-dark); font-weight: 600; font-style: normal; }
.depo .who .tbc { display: block; font-size: .72rem; color: var(--brand-strong); letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.depo-foot { margin-top: clamp(36px, 5vw, 52px); text-align: center; max-width: 760px; margin-inline: auto; }
.depo-foot p { font-size: 1.08rem; color: var(--ink-dark-soft); }

/* O que muda (substitui prova social até depoimentos reais) */
.grid-change { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.change {
  background: var(--surface-light); border: 1px solid var(--surface-light-border);
  border-radius: var(--radius-lg); padding: 34px 30px;
  display: flex; flex-direction: column; gap: 12px; position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.change:hover { transform: translateY(-5px); border-color: var(--brand-soft); }
.change .ch-num { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--brand-strong); }
.change h3 { color: var(--ink-dark); font-size: 1.15rem; }
.change p { font-size: .98rem; color: var(--ink-dark-soft); line-height: 1.55; }

/* ---------- OFERTA / PRICING ---------- */
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  align-items: stretch;
}
.price {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; transition: transform .25s, border-color .25s;
}
.price:hover { transform: translateY(-4px); border-color: #4c6b5b; }
.price .phase { font-family: var(--font-eyebrow); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: #1cc46a; font-weight: 600; }
.price h3 { color: var(--ink); margin: 12px 0 14px; font-size: 1.28rem; }
.price .desc { font-size: .92rem; color: var(--ink-soft); flex-grow: 1; }
.price .res { font-size: .86rem; color: var(--ink); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--surface-border); }
.price .res b { color: #1cc46a; font-weight: 600; }
.price .val { font-family: var(--font-display); font-size: 2rem; color: var(--ink); margin: 20px 0 18px; }
.price .val small { font-family: var(--font-body); font-size: .8rem; color: var(--ink-soft); }
.price .btn { width: 100%; justify-content: center; }

/* Card destaque — dominante, verde inglês */
.offer-feature {
  margin-top: 30px;
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(47,92,71,.40), transparent 60%),
    var(--brand);
  border: 1.5px solid var(--brand-strong);
  border-radius: var(--radius-lg); padding: clamp(34px, 4.5vw, 52px);
  box-shadow: var(--shadow-brand); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.offer-feature .badge {
  position: absolute; top: 0; right: 0;
  background: #f3efe9; color: var(--brand);
  font-family: var(--font-eyebrow); font-size: .66rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 9px 20px; border-bottom-left-radius: var(--radius-lg);
}
.offer-feature .phase { color: #7fe0ab; }
.offer-feature h3 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 14px 0 16px; }
.offer-feature p { color: rgba(243,239,233,.86); font-size: 1rem; }
.offer-feature .incl { list-style: none; margin: 22px 0 0; display: grid; gap: 10px; }
.offer-feature .incl li { display: flex; gap: 11px; font-size: .94rem; color: #f3efe9; align-items: flex-start; }
.offer-feature .incl li::before { content: "✓"; color: #7fe0ab; font-weight: 700; }
.offer-anchor {
  background: rgba(12,12,12,.30); border: 1px solid rgba(243,239,233,.18);
  border-radius: var(--radius-lg); padding: 28px 26px; text-align: center;
}
.offer-anchor .strike { color: rgba(243,239,233,.6); text-decoration: line-through; font-size: .96rem; }
.offer-anchor .now { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.2rem); color: #fff; margin: 6px 0 4px; line-height: 1.05; }
.offer-anchor .now small { display: block; font-family: var(--font-body); font-size: .82rem; color: #7fe0ab; letter-spacing: .04em; margin-top: 8px; font-style: italic; }
.offer-anchor .btn { width: 100%; justify-content: center; margin-top: 22px; background: #f3efe9; color: var(--brand); box-shadow: none; }
.offer-anchor .btn:hover { background: #fff; transform: translateY(-2px); }
.offer-note { margin-top: 34px; max-width: 760px; font-size: .94rem; color: var(--ink-soft); border-left: 2px solid #4c6b5b; padding-left: 20px; }

/* ---------- PARA QUEM É / NÃO É ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit {
  background: var(--surface-light); border: 1px solid var(--surface-light-border);
  border-radius: var(--radius-lg); padding: 36px 34px;
}
.fit.fit-no { background: var(--bg-2-soft); }
.fit h3 { color: var(--ink-dark); margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.fit h3 .badge2 { font-family: var(--font-body); font-size: .9rem; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; }
.fit.fit-yes h3 .badge2 { background: var(--brand-tint); color: var(--brand-strong); }
.fit.fit-no h3 .badge2 { background: rgba(92,87,79,.12); color: var(--ink-dark-soft); }
.fit ul { list-style: none; display: grid; gap: 15px; }
.fit li { display: flex; gap: 12px; font-size: .98rem; color: var(--ink-dark); align-items: flex-start; }
.fit.fit-yes li::before { content: "✓"; color: var(--brand-strong); font-weight: 700; margin-top: 1px; }
.fit.fit-no li { color: var(--ink-dark-soft); }
.fit.fit-no li::before { content: "✕"; color: #b0a99e; font-weight: 700; margin-top: 1px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--surface-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1.18rem; color: var(--ink);
  padding: 26px 44px 26px 0; position: relative; line-height: 1.4;
}
.faq-q::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 1.5rem; color: #1cc46a; transition: transform .25s; font-weight: 300;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { font-size: 1rem; color: var(--ink-soft); padding-bottom: 26px; max-width: 70ch; }
.faq-a .tbc { font-style: italic; color: #1cc46a; }

/* ---------- CTA FINAL + FORM ---------- */
.final { position: relative; overflow: hidden; }
.final::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(115deg, rgba(12,12,12,.92) 38%, rgba(12,12,12,.55)), var(--final-bg);
  background-size: cover; background-position: right center;
}
.final .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.final-copy h2 { color: var(--ink); }
.final-copy h2 em { color: #1cc46a; }
.final-copy .sub { font-size: 1.1rem; color: var(--ink-soft); margin-top: 20px; max-width: 44ch; }
.form-card {
  background: rgba(22,22,22,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--surface-border); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow);
}
.form-card .form-micro { font-size: .86rem; color: var(--ink-soft); margin-bottom: 22px; }
.form-card label { display: block; font-family: var(--font-eyebrow); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #1cc46a; margin-bottom: 8px; }
.form-card .field { margin-bottom: 18px; }
.form-card input, .form-card textarea {
  width: 100%; font-family: var(--font-body); font-size: .96rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--surface-border); border-radius: var(--radius);
  background: rgba(12,12,12,.6); transition: border-color .2s, background .2s;
}
.form-card input::placeholder, .form-card textarea::placeholder { color: #6f6a62; }
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--brand-strong); background: rgba(12,12,12,.85); }
.form-card textarea { resize: vertical; min-height: 92px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-card .escassez { font-size: .82rem; color: var(--ink-soft); margin-top: 18px; line-height: 1.5; }
.form-ok { display: none; text-align: center; padding: 30px 10px; }
.form-ok.show { display: block; }
.form-ok .check { width: 56px; height: 56px; border-radius: 50%; background: var(--brand); color: #f3efe9; display: grid; place-items: center; margin: 0 auto 18px; font-size: 1.6rem; }
.form-ok h3 { color: var(--ink); margin-bottom: 8px; }
.form-ok p { color: var(--ink-soft); font-size: .94rem; }

/* ---------- FOOTER ---------- */
.footer { background: #080808; color: var(--ink-soft); border-top: 1px solid var(--surface-border); }
.footer .container { padding-block: 52px 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid var(--surface-border); }
.footer .brand { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.4rem; color: var(--ink); }
.footer .legal { padding-top: 22px; font-size: .8rem; color: #6f6a62; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- BOTÃO FLUTUANTE ---------- */
.float-cta {
  position: fixed; right: clamp(16px, 4vw, 28px); bottom: clamp(16px, 4vw, 28px);
  z-index: 55; box-shadow: var(--shadow-brand);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .35s, transform .35s;
}
.float-cta.show { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- ANIMAÇÃO FADE-IN AO ROLAR ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- RESPONSIVO ---------- */
@media (max-width: 940px) {
  .hero .container, .about .container, .final .container { grid-template-columns: 1fr; }
  .hero-figure, .about-figure { max-width: 440px; margin-inline: auto; }
  .grid-pain, .grid-pillars, .grid-depo, .grid-change, .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .sealbar .container { grid-template-columns: 1fr; gap: 22px; }
  .offer-feature { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .final::before { background-image: linear-gradient(180deg, rgba(12,12,12,.86), rgba(12,12,12,.94)), var(--final-bg); }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(12,12,12,.97); border-bottom: 1px solid var(--surface-border);
    padding: 8px 0; transform: translateY(-130%); transition: transform .3s; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 15px var(--gutter); width: 100%; }
  .nav-links .btn { margin: 12px var(--gutter); }
  .nav-toggle { display: block; }
  .grid-pain, .grid-pillars, .grid-depo, .grid-change, .offer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PERFORMANCE / CRO — CTAs densos, copy escaneável, prova, garantia, escassez
   ============================================================ */

/* Microcopy sob CTA (P9) */
.cta-micro { font-size: .82rem; color: var(--ink-soft); letter-spacing: .01em; margin-top: 14px; }
.cta-micro::before { content: "—  "; color: #1cc46a; }
.section--cream .cta-micro { color: var(--ink-dark-soft); }

/* CTA repetido por seção (P5) */
.section-cta { margin-top: clamp(40px, 6vw, 60px); text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-cta .cta-micro { text-align: center; }

/* Bloco de dor — lista escaneável */
.pain-list { list-style: none; display: grid; gap: 18px; max-width: 880px; }
.pain-list li {
  display: block; padding: 22px 26px; background: var(--surface); border: 1px solid var(--surface-border);
  border-left: 3px solid var(--brand-strong); border-radius: var(--radius);
  font-size: 1.02rem; color: var(--ink-soft); line-height: 1.55;
  transition: border-color .3s ease, transform .3s ease;
}
.pain-list li:hover { border-left-color: #1cc46a; transform: translateX(4px); }
.pain-list li b { color: var(--ink); font-weight: 600; }
.pain-close { margin-top: 34px; font-size: 1.25rem; font-family: var(--font-display); color: var(--ink); max-width: 760px; }
.pain-close em { color: #1cc46a; }

/* Como funciona — 3 passos */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: s; }
.stepc {
  background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; gap: 12px; position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.stepc:hover { transform: translateY(-5px); border-color: #4c6b5b; }
.stepc-n {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--bg);
  background: #1cc46a; margin-bottom: 6px;
}
.stepc h3 { color: var(--ink); font-size: 1.2rem; }
.stepc p { font-size: .98rem; color: var(--ink-soft); line-height: 1.55; }

/* Value stack — bullets nos cards de preço */
.stack-list { list-style: none; display: grid; gap: 10px; margin: 4px 0 20px; text-align: left; }
.stack-list li { display: flex; gap: 10px; font-size: .92rem; color: var(--ink-soft); line-height: 1.45; align-items: flex-start; }
.stack-list li::before { content: "✓"; color: #1cc46a; font-weight: 700; margin-top: 1px; }

/* Ancoragem de duas linhas — sem risco feio */
.offer-anchor .strike { text-decoration: none; opacity: .82; line-height: 1.4; }
.offer-anchor .strike small { font-size: .8rem; color: rgba(243,239,233,.5); font-style: italic; }

/* Garantia / reversão de risco (P8) */
.guarantee {
  margin-top: clamp(36px, 5vw, 52px); display: flex; gap: 22px; align-items: flex-start;
  background: var(--brand-tint); border: 1px solid #4c6b5b; border-radius: var(--radius-lg);
  padding: 30px 32px; max-width: 880px; margin-inline: auto;
}
.guarantee .g-ico {
  flex: none; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: #1cc46a; color: var(--bg); font-size: 1.4rem; font-weight: 700;
}
.guarantee h3 { color: var(--ink); font-size: 1.3rem; margin-bottom: 8px; }
.guarantee p { color: var(--ink-soft); font-size: .98rem; line-height: 1.6; }

/* Faixa de escassez ética (P10) */
.scarcity-band { background: var(--surface); border-block: 1px solid var(--surface-border); padding-block: clamp(40px, 6vw, 60px); }
.scarcity-band .container { max-width: 880px; text-align: center; }
.scarcity-band p { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.6; }
.scarcity-band p b { color: var(--ink); font-weight: 600; }

/* Responsivo */
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .guarantee { flex-direction: column; gap: 16px; }
}

/* ============================================================
   ⚡ CAMADA ELÉTRICA — acentos volt + motion + impacto
   (override no fim: ganha por ordem de cascata)
   ============================================================ */

/* Acentos no escuro viram volt */
.section--dark .eyebrow,
.eyebrow { color: var(--volt); }
.section--cream .eyebrow { color: var(--volt-deep); }
.hero h1 em,
.section--dark .section-head h2 em,
.pain-close em { color: var(--volt); text-shadow: 0 0 22px var(--volt-glow-soft); }
.section--dark .rule { background: var(--volt); box-shadow: 0 0 12px var(--volt-glow); }
.rule { background: var(--volt); }
.section--cream .rule { background: var(--volt-deep); box-shadow: none; }
.navbar .brand span { color: var(--volt); }
.hero-micro::before, .cta-micro::before { color: var(--volt); }
.section--dark .pillar .num, .pillar .num { color: var(--volt); }
.sealbar .seal .ico { color: var(--volt); text-shadow: 0 0 16px var(--volt-glow); }
.pain-list li { border-left-color: var(--volt); }
.pain-list li:hover { border-left-color: var(--volt); box-shadow: -6px 0 22px var(--volt-glow-soft); }
.pain-list li b { color: var(--volt); }
.stepc-n { background: linear-gradient(135deg, var(--volt), var(--volt-2)); color: var(--volt-ink); box-shadow: 0 0 22px var(--volt-glow-soft); }
.stack-list li::before { color: var(--volt); }
.guarantee { border-color: rgba(28,196,106,.4); background: rgba(28,196,106,.05); }
.guarantee .g-ico { background: linear-gradient(135deg, var(--volt), var(--volt-2)); color: var(--volt-ink); box-shadow: 0 0 22px var(--volt-glow-soft); }
.offer-feature .incl li::before, .offer-feature .phase { color: var(--volt); }
.change .ch-num, .stepc-n { text-shadow: none; }

/* Hero — glow elétrico animado no fundo */
.hero {
  background:
    radial-gradient(760px 420px at 80% 6%, var(--volt-glow-soft), transparent 60%),
    radial-gradient(620px 380px at 12% 90%, rgba(16,154,89,.10), transparent 60%),
    var(--bg);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(440px 320px at 78% 0%, var(--volt-glow-soft), transparent 65%);
  animation: heroGlow 6s ease-in-out infinite; opacity: .8;
}
.hero .container { position: relative; z-index: 1; }
@keyframes heroGlow { 0%,100% { opacity:.45; transform: scale(1); } 50% { opacity:.9; transform: scale(1.08); } }

/* Moldura volt na foto do hero */
.hero-figure { border-color: rgba(28,196,106,.35); box-shadow: var(--shadow), 0 0 50px var(--volt-glow-soft); }

/* Cards acendem borda volt no hover */
.pillar:hover, .change:hover, .stepc:hover, .price:hover { border-color: var(--volt) !important; box-shadow: 0 14px 40px var(--volt-glow-soft); }
.price { transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.price:hover { transform: translateY(-6px); }

/* Faixa de selos — linha volt no topo */
.sealbar { position: relative; }
.sealbar::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--volt), var(--volt-2), transparent); opacity: .8; }

/* Badge "Recomendado" — shimmer elétrico */
.offer-feature { border-color: rgba(28,196,106,.45) !important; box-shadow: 0 0 60px var(--volt-glow-soft); }
.offer-feature .badge {
  background: linear-gradient(135deg, var(--volt), var(--volt-2)) !important; color: var(--volt-ink) !important;
  box-shadow: 0 0 22px var(--volt-glow); overflow: hidden;
}
.offer-feature .badge::after {
  content: ""; position: absolute; inset: 0; left: -120%; width: 50%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.7), transparent); transform: skewX(-20deg);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0% { left: -120%; } 60%,100% { left: 160%; } }

/* Escassez — pulso de borda */
.scarcity-band { border-color: rgba(28,196,106,.3); background: linear-gradient(180deg, rgba(28,196,106,.04), transparent); }
.scarcity-band p b { color: var(--volt); }

/* CTA flutuante — anel de pulso elétrico */
.float-cta { box-shadow: 0 0 0 0 var(--volt-glow); animation: floatPulse 2.2s ease-in-out infinite; }
@keyframes floatPulse {
  0%,100% { box-shadow: 0 8px 26px var(--volt-glow-soft), 0 0 0 0 var(--volt-glow); }
  50%     { box-shadow: 0 8px 26px var(--volt-glow-soft), 0 0 0 12px rgba(28,196,106,0); }
}

/* Reveal — entrada com mais energia */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* Link de navegação — sublinhado volt que cresce */
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--volt); transition: width .25s ease; box-shadow: 0 0 8px var(--volt-glow); }
.nav-links a:not(.btn):hover::after { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .offer-feature .badge::after, .float-cta { animation: none; }
}

/* ============================================================
   📱 MOBILE — sem balançada lateral, CTA por dobra, harmonia
   ============================================================ */

/* Mata o scroll horizontal (a "balançada pro lado") */
html, body { max-width: 100%; overflow-x: hidden; }
.section, .hero, .sealbar, .scarcity-band, .parallax { overflow: hidden; }
img, .btn { max-width: 100%; }

@media (max-width: 600px) {
  /* CTA full-width = ímã de polegar, um por dobra */
  .section-cta { width: 100%; margin-top: clamp(30px, 8vw, 44px); }
  .section-cta .btn,
  .hero-cta .btn,
  .offer-anchor .btn,
  .footer-top .btn { width: 100%; }
  .hero-cta { width: 100%; }
  .btn { padding: 16px 22px; white-space: normal; text-align: center; line-height: 1.25; }

  /* Respiro e hierarquia */
  :root { --section-y: clamp(52px, 12vw, 72px); }
  .hero { padding-top: 116px; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .hero .lead { font-size: 1.05rem; }
  .section-head { margin-bottom: 30px; }

  /* Cards com padding menor pra não estourar */
  .pain-list li { padding: 18px 18px; }
  .stepc, .price, .pillar, .change, .depo { padding: 26px 22px; }
  .guarantee { padding: 24px 20px; }
  .offer-feature { padding: 26px 22px; }

  /* Faixas de texto centralizadas e legíveis */
  .scarcity-band p { font-size: 1.06rem; }
  .pain-close { font-size: 1.1rem; }

  /* Botão flutuante não cobre o conteúdo / não vaza */
  .float-cta { right: 16px; bottom: 16px; padding: 13px 20px; }

  /* Parallax mais curto no celular */
  .parallax { min-height: 320px; }
  .parallax .pq p { font-size: 1.3rem; }
}

/* Tablet: garante 1 coluna onde 2 ficam apertadas */
@media (max-width: 720px) {
  .steps, .grid-pillars, .grid-change, .offer-grid, .grid-pain { grid-template-columns: 1fr; }
}
