/* ---- Fontes self-hosted (elimina render-block do Google Fonts + CLS de swap) ---- */
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 500; font-display: optional; src: url(/assets/fonts/fraunces-500.woff2) format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 600; font-display: optional; src: url(/assets/fonts/fraunces-600.woff2) format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 700; font-display: optional; src: url(/assets/fonts/fraunces-700.woff2) format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: optional; src: url(/assets/fonts/inter-400.woff2) format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: optional; src: url(/assets/fonts/inter-500.woff2) format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: optional; src: url(/assets/fonts/inter-600.woff2) format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: optional; src: url(/assets/fonts/inter-700.woff2) format('woff2'); }

/* ============================================================
   BigDuckAI — landing self-serve (gerador de posts pro Instagram)
   Paleta creme/terracota + Fraunces/Inter.
   ============================================================ */

:root {
  --accent: #bc532f;
  --accent-dark: #8e3417;
  --accent-soft: #faf4ec;
  --ink: #161616;
  --ink-soft: #3a3a36;
  --muted: #6b6660;
  --line: #d8d3c8;
  --bg: #fbf7f0;
  --paper: #ffffff;
  --good: #2f6a45;
  --good-soft: #e4f1ea;
  --warn: #8a6314;
  --warn-soft: #faf0d5;
  --bad-soft: #fbe9e5;

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 22px;
  --shadow-card: 0 1px 0 var(--line), 0 30px 60px -40px rgba(22,22,22,.18);

  --container: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.55 var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

/* ---------- Utilidades ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(26px, 5vw, 40px);
  padding-right: clamp(26px, 5vw, 40px);
}
.skip {
  position: absolute; left: -9999px; top: 8px;
  background: var(--ink); color: var(--paper);
  padding: 8px 14px; border-radius: 6px;
  font-weight: 600; z-index: 999;
}
.skip:focus { left: 12px; }

.eyebrow {
  display: inline-block;
  font: 600 11px/1.3 var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dark); /* AA em texto pequeno sobre creme (~7:1) */
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  margin: 0 0 18px;
}
.eyebrow--center { display: block; width: max-content; margin-left: auto; margin-right: auto; }

.section__h {
  font: 600 clamp(28px, 4vw, 44px)/1.1 var(--font-serif);
  letter-spacing: -.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.section__h--center { text-align: center; }
.section__lede {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0 0 36px;
}
.section__lede--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font: 600 15px/1 var(--font-sans);
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  border: 1.4px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 10px 30px -16px rgba(188,83,47,.7);
}
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--small { padding: 9px 14px; font-size: 13px; }
.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Trust checklist ---------- */
.trust {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: 13px; color: var(--muted);
}
.trust li { position: relative; padding-left: 20px; }
.trust li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 700; }
.trust--center { justify-content: center; }

/* ---------- Faux Instagram post (reaproveitado no herói, marca e galeria) ---------- */
.post {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.post__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 16px;
  color: #fff;
  text-align: center;
}
.post__photo--g1 { background: linear-gradient(140deg, #bc532f, #8e3417); }
.post__photo--g2 { background: linear-gradient(140deg, #d98a3d, #b56a1f); }
.post__photo--g3 { background: linear-gradient(140deg, #c9605a, #9c3f3a); }
.post__photo--g4 { background: linear-gradient(140deg, #6b8f71, #3f6a4b); }
.post__photo--g5 { background: linear-gradient(140deg, #7a5230, #4a3016); }
.post__photo--g6 { background: linear-gradient(140deg, #b56aa0, #824a72); }
.post__photo--g7 { background: linear-gradient(140deg, #5f8a86, #3a5f5c); }
.post__photo--g8 { background: linear-gradient(140deg, #cf7a52, #a5502c); }
.post__brand {
  position: absolute; top: 12px; left: 12px;
  font: 600 11px/1 var(--font-sans);
  background: rgba(0,0,0,.30); color: #fff;
  padding: 5px 10px; border-radius: 999px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.post__flash {
  position: absolute; top: 12px; right: 12px;
  background: #fff; color: var(--accent);
  font: 700 12px/1 var(--font-sans);
  padding: 6px 9px; border-radius: 999px;
}
.post__hero-title {
  font: 700 34px/1.02 var(--font-serif);
  letter-spacing: -.01em;
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}
.post__hero-title--sm { font-size: 23px; }
/* imagem real do post (exemplo gerado pelo gpt-image-2). Cai no gradiente
   de fallback (.post__photo--gN) caso a imagem não carregue. */
.post__img {
  display: block; width: 100%; height: auto; aspect-ratio: 1 / 1;
  object-fit: cover; background: linear-gradient(140deg, var(--accent-soft), var(--bg));
}
.post__cap { padding: 12px 14px 14px; }
.post__caption { margin: 0 0 6px; font-size: 13px; line-height: 1.4; color: var(--ink); }
.post__tags { margin: 0; font-size: 12px; color: var(--accent-dark); font-weight: 500; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0;
  background: rgba(251,247,240,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font: 600 16px/1 var(--font-serif);
}
.brand__mark {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  background: var(--ink); color: var(--paper);
  border-radius: 7px;
  font: 700 12px/1 var(--font-sans);
  letter-spacing: .04em;
}
.topnav { display: none; gap: 26px; }
.topnav a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 14px; font-weight: 500;
}
.topnav a:hover { color: var(--accent); }
@media (min-width: 920px) { .topnav { display: inline-flex; } }
.topbar__actions { display: flex; align-items: center; gap: 14px; }
/* Em telas bem estreitas o CTA (nowrap) estourava a largura → esconde;
   o botão do herói e a barra fixa inferior cobrem a conversão. */
@media (max-width: 380px) { .topbar__actions .btn--primary { display: none; } }
.topbar__login {
  display: none;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft); text-decoration: none;
}
.topbar__login:hover { color: var(--accent); }
@media (min-width: 560px) { .topbar__login { display: inline; } }

/* ============================================================
   1. HERO
   ============================================================ */
.hero { padding: clamp(44px, 6vw, 88px) 0 clamp(40px, 6vw, 76px); }
.hero__grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 60px); align-items: center;
}
@media (min-width: 920px) { .hero__grid { grid-template-columns: 1.15fr 1fr; } }
.hero__h1 {
  font: 600 clamp(32px, 5vw, 54px)/1.05 var(--font-serif);
  letter-spacing: -.018em;
  margin: 0 0 20px;
  color: var(--ink);
}
.hero__lede {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 26px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__ctas--center { justify-content: center; }

/* hero demo: input chip -> phone com post + seletor */
.hero__demo { display: flex; justify-content: center; }
.flow {
  width: min(340px, 92vw);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.flow__in { width: 100%; }
.flow__chip {
  /* altura fixa: ao ciclar os nichos o texto muda de tamanho — sem min-height
     o herói mudava de altura e gerava CLS (0.25). Reserva 2 linhas sempre. */
  display: flex; align-items: center; min-height: 68px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 16px;
  font-size: 14px; line-height: 1.4; color: var(--ink);
  box-shadow: var(--shadow-card);
}
.flow__arrow { color: var(--accent); font-size: 22px; font-weight: 700; line-height: 1; }
.flow__note { font-size: 11px; color: var(--muted); margin: 6px 0 0; text-align: center; }

.phone {
  width: min(300px, 84vw);
  background: #1c1a17;
  border-radius: 30px;
  padding: 12px 12px 10px;
  box-shadow: 0 24px 54px -26px rgba(22,22,22,.55);
}
.phone__bar { display: flex; gap: 5px; justify-content: center; padding: 2px 0 10px; }
.phone__bar span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.28); }
.phone__pick { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 0 2px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.35); transition: width .2s ease; }
.dot--on { background: #fff; width: 20px; border-radius: 999px; }
.phone__pick-label { margin-left: 8px; font-size: 11px; color: rgba(255,255,255,.7); }

/* ============================================================
   2. ESPELHO
   ============================================================ */
.espelho {
  padding: clamp(44px, 6vw, 80px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-top: 26px;
}
.dor {
  margin: 0; padding: 20px 22px;
  background: var(--bg);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
}
.dor p {
  font: 500 17px/1.4 var(--font-serif);
  font-style: italic; color: var(--ink); margin: 0;
}
.espelho__resolve {
  max-width: 62ch; margin: 28px auto 0; text-align: center;
  font-size: 17px; line-height: 1.55; color: var(--ink);
}

/* ============================================================
   3. COMO FUNCIONA — 3 passos
   ============================================================ */
.como { padding: clamp(60px, 8vw, 110px) 0; }
.steps {
  list-style: none; margin: 36px 0 0; padding: 0;
  display: grid; gap: 20px; grid-template-columns: 1fr;
}
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.stepc {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.stepc__num {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font: 600 18px/1 var(--font-serif); margin-bottom: 16px;
}
.stepc__h { font: 600 20px/1.2 var(--font-serif); margin: 0 0 8px; color: var(--ink); }
.stepc p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.stepc__art { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.mini-chip {
  font: 600 12px/1 var(--font-sans);
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 12px; color: var(--ink-soft);
}
.mini-chip--accent { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-dark); }
.stepc__art--pick { gap: 10px; }
.thumb { width: 44px; height: 56px; border-radius: 8px; border: 1px solid var(--line); }
.thumb--g1 { background: linear-gradient(140deg, #bc532f, #8e3417); }
.thumb--g2 { background: linear-gradient(140deg, #d98a3d, #b56a1f); }
.thumb--g3 { background: linear-gradient(140deg, #6b8f71, #3f6a4b); }
.thumb--on { outline: 3px solid var(--accent); outline-offset: 2px; }
.como__cta { text-align: center; margin-top: 40px; }

/* ============================================================
   4. MARCA — a IA aprende a cara do negócio
   ============================================================ */
.marca {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marca__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .marca__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.marca__lede { font-size: 17px; color: var(--ink-soft); margin: 0 0 18px; line-height: 1.55; }
.marca__list { margin-top: 8px; }
.marca__demo-h {
  font: 600 12px/1 var(--font-sans); text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted); margin: 0 0 14px;
}
.marca__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 380px) { .marca__pair { grid-template-columns: 1fr; } }
.marca__pair .post { box-shadow: var(--shadow-card); }
.post--sm .post__cap { padding: 10px 12px 12px; }
.post--sm .post__caption { font-size: 12px; }

/* ============================================================
   5. GALERIA de saída (scroll horizontal)
   ============================================================ */
.galeria {
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}
.galeria__scroll {
  display: flex; gap: 16px;
  overflow-x: auto;
  padding: 30px clamp(26px, 5vw, 40px);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.galeria__scroll .post {
  flex: 0 0 min(230px, 70vw);
  scroll-snap-align: center;
  box-shadow: var(--shadow-card);
}
.galeria__cta { text-align: center; margin-top: 16px; }
.galeria__cta .flow__note { margin-top: 12px; }

/* ============================================================
   6. PARA QUEM
   ============================================================ */
.paraquem { padding: clamp(60px, 8vw, 110px) 0; }
.segments {
  list-style: none; padding: 0; margin: 32px auto 0; max-width: 760px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 640px) { .segments { grid-template-columns: repeat(4, 1fr); } }
.segments li {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px;
  font-weight: 500; font-size: 15px;
}
.segments__emoji { font-size: 20px; line-height: 1; }

/* ============================================================
   7. PREÇOS
   ============================================================ */
.precos {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.credito-box {
  max-width: 680px; margin: 22px auto 36px; text-align: center;
  background: var(--accent-soft); border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 22px 26px;
}
.credito-box__eq { display: inline-block; font: 700 20px/1.1 var(--font-serif); color: var(--accent); margin-bottom: 8px; }
.credito-box__desc { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }

.plans {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  max-width: 820px; margin: 0 auto;
}
@media (min-width: 760px) { .plans { grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; } }
.plan {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
}
.plan--pro {
  background: var(--paper); border: 2px solid var(--accent);
  box-shadow: 0 26px 54px -30px rgba(188,83,47,.6); position: relative;
}
.plan__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.plan__name { font: 600 22px/1 var(--font-serif); margin: 0; }
.plan__badge {
  font: 700 11px/1 var(--font-sans); text-transform: uppercase; letter-spacing: .06em;
  background: var(--accent); color: #fff; padding: 6px 10px; border-radius: 999px;
}
.plan__badge--soft { background: var(--good-soft); color: var(--good); }
.plan__price { margin: 4px 0; }
.plan__big { font: 700 clamp(34px, 4.5vw, 46px)/1 var(--font-serif); color: var(--ink); letter-spacing: -.02em; }
.plan--pro .plan__big { color: var(--accent); }
.plan__per { font: 500 15px/1 var(--font-sans); color: var(--muted); }
.plan__benefit { font-size: 14.5px; color: var(--ink-soft); margin: 8px 0 18px; }
.plan__feats { margin-bottom: 24px; }
.plan .btn { margin-top: auto; }

/* recargas PIX — bloco separado */
.topups {
  max-width: 820px; margin: 30px auto 0; text-align: center;
  background: var(--bg); border: 1px dashed var(--accent);
  border-radius: var(--radius-lg); padding: 28px;
}
.topups__head { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.topups__h { font: 600 20px/1.1 var(--font-serif); margin: 0; }
.topups__badge {
  font: 700 11px/1 var(--font-sans); text-transform: uppercase; letter-spacing: .06em;
  background: var(--good); color: #fff; padding: 6px 10px; border-radius: 999px;
}
.topups__lede { max-width: 56ch; margin: 0 auto 22px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.topups__grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 22px; }
@media (min-width: 560px) { .topups__grid { grid-template-columns: repeat(3, 1fr); } }
.pack {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 16px;
}
.pack--best { border-color: var(--accent); }
.pack__tag {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font: 700 10px/1 var(--font-sans); text-transform: uppercase; letter-spacing: .06em;
  background: var(--accent); color: #fff; padding: 5px 9px; border-radius: 999px; white-space: nowrap;
}
.pack__cr { font: 600 15px/1 var(--font-sans); color: var(--ink); margin: 0 0 6px; }
.pack__price { font: 700 26px/1 var(--font-serif); color: var(--accent); margin: 0 0 3px; }
.pack__note { font-size: 12px; color: var(--muted); margin: 0; }

.reassure {
  list-style: none; padding: 0; margin: 26px auto 0; max-width: 780px;
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center;
  font-size: 13px; color: var(--muted);
}
.reassure li { position: relative; padding-left: 18px; }
.reassure li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 700; }

.dfy { text-align: center; margin: 30px auto 0; font-size: 15px; color: var(--muted); }
.dfy a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.dfy a:hover { color: var(--accent); }

/* ---------- check list (marca + planos) ---------- */
.check { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check li { position: relative; padding-left: 28px; font-size: 14.5px; line-height: 1.45; }
.check li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 20px; height: 20px; display: grid; place-items: center;
  background: var(--good); color: var(--paper); border-radius: 50%;
  font: 700 11px/1 var(--font-sans);
}
.plan--pro .check li::before { background: var(--accent); }

/* ============================================================
   8. FAQ
   ============================================================ */
.faq {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq__list { max-width: 820px; margin: 28px auto 0; display: grid; gap: 12px; }
.qa { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.qa summary {
  list-style: none; cursor: pointer;
  padding: 20px 56px 20px 22px;
  font: 600 16px/1.4 var(--font-sans); color: var(--ink); position: relative;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; display: grid; place-items: center;
  background: var(--accent); color: var(--paper); border-radius: 50%;
  font: 700 18px/1 var(--font-sans); transition: transform .25s ease;
}
.qa[open] summary::after { content: "−"; }
.qa__body { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.qa__body p { margin: 0; }
.qa__body a { color: var(--accent); font-weight: 600; }

/* ============================================================
   9. CTA FINAL
   ============================================================ */
.cta-final {
  padding: clamp(60px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 0% 0%, var(--accent-soft) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, var(--accent-soft) 0%, transparent 50%),
    var(--bg);
}
.cta-final__box { max-width: 720px; text-align: center; margin: 0 auto; }
.cta-final p { font-size: 17px; color: var(--ink-soft); max-width: 54ch; margin: 0 auto 26px; }
.cta-final .trust { margin-top: 18px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: 48px 0 90px; background: var(--ink); color: rgba(255,255,255,.7); }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 820px) { .footer__inner { grid-template-columns: 1.5fr 1fr 1.3fr; align-items: start; } }
.footer__brand { font: 600 18px/1 var(--font-serif); color: var(--paper); margin: 0 0 8px; }
.footer__line { margin: 0; font-size: 14px; }
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 14px 18px; }
.footer__links a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px; }
.footer__links a:hover { color: var(--accent); }
.footer__verticals { font-size: 13px; }
.footer__verticals-h {
  font: 500 11px/1 var(--font-sans); letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin: 0 0 10px;
}
.footer__verticals ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.footer__verticals a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 13px; }
.footer__verticals a:hover { color: var(--accent); }
.footer__legal { grid-column: 1 / -1; margin: 0; font-size: 12px; color: rgba(255,255,255,.5); }
.footer__legal a { color: rgba(255,255,255,.7); }

/* ============================================================
   Sticky CTA mobile
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251,247,240,.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(120%); transition: transform .3s ease; z-index: 60;
}
.sticky-cta--show { transform: translateY(0); }
@media (min-width: 920px) { .sticky-cta { display: none; } }

/* ============================================================
   Banner LGPD
   ============================================================ */
.consent {
  position: fixed; left: 50%; bottom: 20px;
  transform: translate(-50%, calc(100% + 40px));
  width: min(960px, calc(100% - 24px));
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(22,22,22,.28);
  padding: 18px 20px; z-index: 80; transition: transform .35s ease;
}
.consent--show { transform: translate(-50%, 0); }
.consent__inner { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: center; }
@media (min-width: 760px) { .consent__inner { grid-template-columns: 1fr auto; gap: 22px; } }
.consent__title { margin: 0 0 4px; font: 600 14px/1.2 var(--font-sans); color: var(--ink); }
.consent__desc { margin: 0; font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
.consent__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.consent__link { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.consent__link:hover { color: var(--accent-dark); }
body.consent-open .sticky-cta { bottom: 110px; }

/* ============================================================
   FAB WhatsApp
   ============================================================ */
:root { --wa-fab-bottom: 24px; }
@media (max-width: 920px) { :root { --wa-fab-bottom: 90px; } }
.wa-fab {
  position: fixed; right: 20px; bottom: var(--wa-fab-bottom); z-index: 65;
  width: 58px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff; border-radius: 50%; text-decoration: none;
  box-shadow: 0 12px 28px -10px rgba(37,211,102,.55), 0 6px 14px -6px rgba(22,22,22,.18);
  transition: transform .18s ease, box-shadow .2s ease, bottom .25s ease;
  animation: wa-fab-pulse 3.4s ease-out infinite;
}
.wa-fab:hover { transform: scale(1.06); box-shadow: 0 16px 36px -8px rgba(37,211,102,.72); }
.wa-fab:active { transform: scale(0.98); }
.wa-fab:focus-visible { outline: 3px solid rgba(37,211,102,.45); outline-offset: 4px; }
.wa-fab__icon { width: 30px; height: 30px; display: block; }
.wa-fab__label { position: absolute; left: -9999px; }
@keyframes wa-fab-pulse {
  0%, 70%, 100% { box-shadow: 0 12px 28px -10px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.38); }
  85%           { box-shadow: 0 12px 28px -10px rgba(37,211,102,.55), 0 0 0 14px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-fab { animation: none; } }
body.consent-open .wa-fab { opacity: 0; pointer-events: none; transform: translateY(20px); }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   WOW / efeitos — dinamismo (tudo composited: transform/opacity)
   ============================================================ */

/* ---- Barra de progresso de scroll ---- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 90;
  pointer-events: none; background: transparent;
}
.scroll-progress span {
  display: block; height: 100%; width: var(--sp, 0%);
  background: linear-gradient(90deg, var(--accent), #e0913f);
  box-shadow: 0 0 10px -1px rgba(188,83,47,.6);
  transition: width .08s linear;
}

/* ---- Hero: contexto + aurora animada ---- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero > .container { position: relative; z-index: 1; }
.aurora {
  position: absolute; inset: -25% -12%; z-index: 0;
  filter: blur(64px); opacity: .5; pointer-events: none;
}
.aurora span { position: absolute; display: block; border-radius: 50%; }
.aurora span:nth-child(1) {
  width: 44vw; height: 44vw; left: 52%; top: -14%;
  background: radial-gradient(circle, #e8a374 0%, transparent 68%);
  animation: aur-a 20s ease-in-out infinite;
}
.aurora span:nth-child(2) {
  width: 38vw; height: 38vw; left: 6%; top: 18%;
  background: radial-gradient(circle, #d98a86 0%, transparent 66%);
  animation: aur-b 24s ease-in-out infinite;
}
.aurora span:nth-child(3) {
  width: 30vw; height: 30vw; left: 70%; top: 42%;
  background: radial-gradient(circle, #eac07a 0%, transparent 70%);
  animation: aur-c 17s ease-in-out infinite;
}
@keyframes aur-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6%, 8%) scale(1.15); } }
@keyframes aur-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(8%, -6%) scale(1.1); } }
@keyframes aur-c { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-8%, -8%) scale(1.2); } }
@media (max-width: 640px) { .aurora { opacity: .38; filter: blur(48px); } }

/* ---- Palavra em gradiente animado no H1 ---- */
.hero__h1 .hl {
  background: linear-gradient(100deg, var(--accent) 0%, #e0913f 45%, var(--accent) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: hl-shine 6s ease-in-out infinite;
}
@keyframes hl-shine { 0%,100% { background-position: 0 0; } 50% { background-position: 180% 0; } }

/* ---- Telefone: halo + tilt 3D (JS aplica o transform no mousemove) ---- */
.phone { position: relative; transition: transform .3s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.phone__glow {
  position: absolute; inset: -28px; z-index: -1; border-radius: 46px;
  background: radial-gradient(closest-side, rgba(188,83,47,.55), transparent 78%);
  filter: blur(20px); animation: glow-pulse 4.6s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

/* ---- Crossfade do herói dinâmico (cicla nichos) ---- */
.post--hero .post__img { transition: opacity .45s ease; }
.hero__demo.is-fading .post--hero .post__img { opacity: 0; }

/* ---- Scroll-reveal (IntersectionObserver adiciona .in) ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Card Pro: borda em gradiente animada + glow ---- */
.plan--pro { position: relative; }
.plan--pro::before {
  content: ""; position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
  background: linear-gradient(120deg, var(--accent), #e0913f, var(--accent));
  background-size: 220% 100%; animation: pro-glow 5s linear infinite;
}
@keyframes pro-glow { to { background-position: 220% 0; } }

/* ---- Brilho no botão primário (sweep no hover) ---- */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg); pointer-events: none; transition: left .55s ease;
}
.btn--primary:hover::after { left: 130%; }

/* ---- Micro-lift em cards ---- */
.stepc, .segments li, .galeria__scroll .post, .pack, .dor {
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.stepc:hover, .galeria__scroll .post:hover {
  transform: translateY(-5px); box-shadow: 0 20px 44px -24px rgba(22,22,22,.32);
}
.segments li:hover {
  transform: translateY(-3px); border-color: var(--accent);
  box-shadow: 0 12px 26px -16px rgba(188,83,47,.5);
}
.pack:hover { transform: translateY(-3px); }
.segments__emoji { display: inline-block; transition: transform .2s ease; }
.segments li:hover .segments__emoji { transform: scale(1.2) rotate(-6deg); }

/* ---- prefers-reduced-motion: desliga tudo que se mexe ---- */
@media (prefers-reduced-motion: reduce) {
  .aurora span, .hero__h1 .hl, .phone__glow, .plan--pro::before, .scroll-progress span { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .phone { transform: none !important; }
  .btn--primary::after { display: none; }
}
