/* ============================================================
   WhatsApp que Atende Automático — Redesenho MAXXIMA (16 blocos)
   Cor por função: verde = solução · vermelho = dor ·
   amarelo = pico dentro de vermelho · laranja = SÓ tempo
   ============================================================ */

:root {
  /* solução */
  --green-500: #22C55E;
  --green-600: #16A34A;
  --green-700: #15803D;
  --green-50:  #ECFDF5;
  --green-100: #D1FAE5;
  /* dor */
  --red-600: #AD2B2D;
  --red-700: #8E2123;
  --red-50:  #FBEFEF;
  --red-100: #F5DCDC;
  /* pico dentro de caixa vermelha */
  --yellow: #FDFE45;
  /* tempo (só etiquetas de duração) */
  --orange-500: #F97316;
  --orange-50:  #FFEDD5;
  /* tinta */
  --ink-900: #0F172A;
  --ink-700: #334155;
  --ink-500: #475569;
  --ink-400: #64748B;
  --ink-300: #94A3B8;
  --ink-200: #CBD5E1;
  --ink-100: #E2E8F0;
  --ink-50:  #F1F5F9;
  --ink-25:  #F8FAFC;
  --white:   #FFFFFF;
  --alt:     #EAEFF4; /* fundo alternado de seção (separa blocos, padrão Maxxima) */
  --amber:   #F59E0B; /* seta antes→depois */

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-card: 0 2px 8px rgba(15,23,42,.06);
  --shadow-lift: 0 8px 24px rgba(15,23,42,.10);
  --shadow-pop:  0 16px 40px rgba(15,23,42,.14);
  --shadow-cta:  0 10px 26px rgba(34,197,94,.28);

  --font-head: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 800px;
  --maxw-wide: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--green-100); color: var(--ink-900); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: var(--maxw-wide); }

section { padding: 38px 0; }
@media (min-width: 768px) { section { padding: 52px 0; } }

/* ---------- tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink-900);
  text-wrap: balance;
}
h1 { font-size: clamp(30px, 6.6vw, 50px); }
h2 { font-size: clamp(25px, 5vw, 38px); }
h3 { font-size: clamp(19px, 3.2vw, 23px); line-height: 1.25; }

.ok   { color: var(--green-600); }
.dor  { color: var(--red-600); }
p { text-wrap: pretty; }

.micro {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-head .micro { display: block; margin-bottom: 14px; }
.section-head p { color: var(--ink-500); margin-top: 14px; font-size: 18px; }

/* ---------- botão de compra (sempre verde) ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-500);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 19px);
  letter-spacing: 0.02em;
  padding: 19px 34px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 120ms ease-out, transform 80ms ease-out;
}
.btn-cta:hover { background: var(--green-600); }
.btn-cta:active { transform: scale(0.98); }
.btn-cta svg { flex: none; }

/* ---------- botão de COMPRA com brilho (glow pulsante + shimmer) ---------- */
.btn-comprar {
  position: relative;
  overflow: hidden;
  animation: cta-pulse 1.8s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%   { box-shadow: 0 10px 26px rgba(34,197,94,.30), 0 0 0 0 rgba(34,197,94,.55); }
  70%  { box-shadow: 0 14px 34px rgba(34,197,94,.48), 0 0 0 16px rgba(34,197,94,0); }
  100% { box-shadow: 0 10px 26px rgba(34,197,94,.30), 0 0 0 0 rgba(34,197,94,0); }
}
/* faixa de brilho diagonal que varre o botão */
.btn-comprar::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 55%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.65) 50%, transparent 100%);
  transform: translateX(-236%) skewX(-20deg);
  pointer-events: none;
  animation: cta-shine 3s ease-in-out infinite;
}
@keyframes cta-shine {
  0%   { transform: translateX(-236%) skewX(-20deg); }
  55%  { transform: translateX(273%) skewX(-20deg); }
  100% { transform: translateX(273%) skewX(-20deg); }
}
.btn-comprar:hover { animation-play-state: paused; background: var(--green-600); }
@media (prefers-reduced-motion: reduce) {
  .btn-comprar { animation: none; }
  .btn-comprar::after { display: none; }
}

/* ---------- faixa de seção (verde, texto branco) ---------- */
.faixa {
  background: var(--green-600);
  padding: 22px 20px;
  text-align: center;
}
.faixa h2 { color: var(--white); max-width: 880px; margin: 0 auto; font-size: clamp(22px, 4vw, 32px); }
.faixa .micro { color: var(--green-100); display: block; margin-bottom: 8px; }

/* ---------- pill ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  color: var(--green-700);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
}

/* ============================================================
   BLOCO 1 — HERO
   ============================================================ */
.hero {
  padding: 16px 0 30px;
  background:
    radial-gradient(80% 60% at 50% -10%, var(--green-50) 0%, rgba(236,253,245,0) 70%),
    radial-gradient(50% 40% at 90% 30%, var(--ink-25) 0%, rgba(248,250,252,0) 70%),
    var(--white);
  text-align: center;
}
/* ---------- bloco de marca (logo + nome do produto) ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-align: left;
}
.brand-badge {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--green-500), var(--green-700));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-cta);
}
.brand-name { display: inline-block; text-align: left; }
.brand-kicker {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--green-600);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-size: 18px;
  word-spacing: 0.02em;
}
.wordmark em { font-style: italic; color: var(--green-600); }
.wordmark .dot { color: var(--green-500); }
.hero .micro { display: block; margin: 30px 0 18px; }
/* sobrancelha = faixa full-bleed (edge-to-edge) com a pergunta-gancho */
.sobrancelha {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 16px;
  margin-bottom: 18px;
  background: var(--red-600);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(19px, 3vw, 26px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
}
.sobrancelha mark { background: none; color: var(--yellow); font-weight: 800; }
.hero h1 { max-width: 860px; margin: 0 auto; }
.hero .sub {
  font-size: clamp(17px, 2.6vw, 21px);
  color: var(--ink-500);
  max-width: 640px;
  margin: 20px auto 16px;
}
.hero .sub strong { color: var(--ink-900); }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 16px auto 26px;
}
.hero-pills .pill svg { color: var(--green-600); }

/* figura da dor — celular lotado de madrugada */
.hero-fig {
  position: relative;
  max-width: 420px;
  margin: 56px auto 0;
}
.phone {
  background: var(--white);
  border: 9px solid var(--ink-900);
  border-radius: 38px;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  transform: rotate(-1.5deg);
  text-align: left;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0B3D33;
  color: rgba(255,255,255,.92);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 18px 0;
}
.phone-status .hora { font-variant-numeric: tabular-nums; }
.wa-header {
  background: #0B3D33;
  color: var(--white);
  padding: 10px 18px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wa-header .titulo { font-size: 19px; font-weight: 700; font-family: var(--font-head); }
.wa-badge {
  background: var(--red-600);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.chat-list { background: var(--white); }
.chat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--ink-50);
}
.chat-avatar {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--ink-100);
  color: var(--ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.chat-main { flex: 1; min-width: 0; }
.chat-nome { font-weight: 700; color: var(--ink-900); font-size: 15px; }
.chat-msg {
  color: var(--ink-400);
  font-size: 13.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-msg.perdido { color: var(--red-600); font-weight: 600; }
.chat-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.chat-hora { font-size: 12px; color: var(--ink-400); font-variant-numeric: tabular-nums; }
.chat-unread {
  background: var(--green-500);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fig-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red-600);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lift);
  white-space: nowrap;
}
.fig-chip svg { flex: none; }
.fig-chip--tr { top: -16px; right: -28px; transform: rotate(2deg); }
.fig-chip--bl { bottom: -14px; left: -28px; transform: rotate(-2deg); }
@media (max-width: 700px) {
  .fig-chip--tr { right: -4px; top: -12px; }
  .fig-chip--bl { left: -4px; bottom: -10px; }
}

/* hero — conversa do WhatsApp respondendo sozinho (a SOLUÇÃO, não a dor) */
.wa-header .wa-id { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1 1 auto; }
.wa-header .wa-badge { flex: none; }
.wa-ava { width: 36px; height: 36px; flex: none; border-radius: 50%; background: var(--green-500); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.wa-id-txt { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; text-align: left; }
.wa-id-txt b { font-family: var(--font-head); font-size: 15px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wa-id-txt i { font-style: normal; font-size: 11.5px; color: rgba(255,255,255,.8); }
.wa-badge--on { background: var(--green-500); }
.wa-thread { background: #ECE5DD; padding: 16px 13px; display: flex; flex-direction: column; gap: 9px; }
.wa-msg { max-width: 84%; padding: 8px 11px 6px; border-radius: 11px; font-size: 13px; line-height: 1.4; text-align: left; box-shadow: 0 1px 1px rgba(0,0,0,.08); }
.wa-msg--in { align-self: flex-start; background: #fff; border-top-left-radius: 3px; color: #1f2937; }
.wa-msg--out { align-self: flex-end; background: #DCF8C6; border-top-right-radius: 3px; color: #0f3d23; }
.wa-bot { display: block; font-size: 9.5px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; color: var(--green-700); margin-bottom: 2px; }
.wa-h { display: block; text-align: right; font-size: 10px; color: rgba(0,0,0,.38); margin-top: 1px; }
.fig-chip--ok { background: var(--green-600); }

/* ============================================================
   HERO — ANTES / DEPOIS (dois mockups de WhatsApp)
   ============================================================ */
.hero-ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 720px;
  margin: 48px auto 0;
}
@media (max-width: 760px) {
  /* mantém antes/depois LADO A LADO no celular (estilo cartilha) */
  .hero-ba { gap: 6px; max-width: 100%; }
  .ba-tag { font-size: 9px; letter-spacing: .02em; padding: 5px 10px; gap: 4px; margin-bottom: 8px; }
  .ba-tag svg { width: 11px; height: 11px; }
  .ba-arrow { width: 30px; height: 30px; }
  .ba-arrow svg { width: 15px; height: 15px; }
  .hero-ba .phone { border-width: 5px; border-radius: 22px; }
  .hero-ba .phone-status { font-size: 8.5px; padding: 5px 9px 0; }
  .hero-ba .wa-header { padding: 6px 9px 8px; }
  .hero-ba .wa-ava { width: 22px; height: 22px; font-size: 10px; }
  .hero-ba .wa-id { gap: 6px; }
  .hero-ba .wa-id-txt b { font-size: 9.5px; }
  .hero-ba .wa-id-txt i { font-size: 7.5px; }
  .hero-ba .wa-badge { font-size: 8px; padding: 3px 7px; }
  .hero-ba .wa-thread { padding: 9px 7px; gap: 6px; }
  .hero-ba .wa-msg { font-size: 9.5px; padding: 6px 8px 5px; max-width: 94%; border-radius: 8px; }
  .hero-ba .wa-bot { font-size: 7px; }
  .hero-ba .wa-h { font-size: 7.5px; }
  .hero-ba .ba-chips { height: 92px; margin-top: 10px; gap: 6px; }
  .hero-ba .ba-chip { font-size: 12px; padding: 7px 11px; gap: 6px; }
  .hero-ba .ba-chip svg { width: 13px; height: 13px; }
  .brand-badge { width: 38px; height: 38px; border-radius: 11px; }
  .brand-badge svg { width: 22px; height: 22px; }
  .wordmark { font-size: 16px; }
  .brand-kicker { font-size: 9.5px; }
  .hero { padding: 12px 0 24px; }
  .hero h1 { font-size: clamp(24px, 7vw, 33px); }
  .sobrancelha { font-size: clamp(16px, 4.4vw, 20px); margin-top: 12px; margin-bottom: 14px; padding: 12px 16px; line-height: 1.3; }
  .hero-pills { margin: 12px auto 16px; }
}
.ba-col { position: relative; margin: 0; min-width: 0; display: flex; flex-direction: column; align-items: center; }
.ba-col .phone { flex: 1 1 auto; display: flex; flex-direction: column; }
.ba-col .wa-thread { flex: 1 1 auto; }
.ba-arrow { align-self: center; }
.ba-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 800; font-size: 12.5px;
  letter-spacing: .05em; text-transform: uppercase; color: var(--white);
  padding: 7px 16px; border-radius: var(--radius-full); margin-bottom: 14px;
}
.ba-tag svg { width: 15px; height: 15px; flex: none; }
.ba-tag--antes { background: var(--red-600); }
.ba-tag--depois { background: var(--green-600); }
.ba-col .phone { width: 100%; max-width: 290px; }
.ba-col--antes .phone { transform: rotate(-1.5deg); }
.ba-col--depois .phone { transform: rotate(1.5deg); }
.phone--off .phone-status,
.phone--off .wa-header { background: #586577; }
.phone--off .wa-ava { background: #9aa6b2; }
.wa-badge--off { background: rgba(255,255,255,.2); }
.ba-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex: none; border-radius: 50%;
  background: var(--ink-900); color: var(--white); margin: 0 auto;
  box-shadow: var(--shadow-lift);
}
.ba-arrow svg { width: 24px; height: 24px; }
.ba-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 19px; color: var(--white);
  padding: 12px 22px; border-radius: var(--radius-full);
  box-shadow: var(--shadow-lift); text-align: center; max-width: 100%;
}
.ba-chip svg { width: 20px; height: 20px; flex: none; }
.ba-chip--bad { background: var(--red-600); }
.ba-chip--good { background: var(--green-600); }
.ba-chips {
  margin-top: 16px;
  height: 106px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start; gap: 8px;
}

/* ============================================================
   BLOCO 2 — ANTES / DEPOIS
   ============================================================ */
.ad-grid {
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .ad-grid { grid-template-columns: 1fr; }
  .ad-seta { transform: rotate(90deg); margin: -6px auto; }
}
.ad-card { border-radius: var(--radius-lg); padding: 28px; }
.ad-card--antes { background: var(--red-50); border: 1.5px solid var(--red-100); }
.ad-card--depois { background: var(--green-50); border: 1.5px solid var(--green-100); }
.ad-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.ad-card--antes .ad-badge { background: var(--red-600); }
.ad-card--depois .ad-badge { background: var(--green-600); }
.ad-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.ad-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 16.5px; font-weight: 600; }
.ad-card--antes .ad-list li { color: var(--red-700); }
.ad-card--depois .ad-list li { color: var(--green-700); }
.ad-list li svg { flex: none; margin-top: 4px; }
.ad-seta { display: flex; align-items: center; justify-content: center; }

/* --- variação MAXXIMA: selos circulares + números sublinhados + seta curva --- */
.ad2-wrap {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 14px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .ad2-wrap { grid-template-columns: 1fr; gap: 6px; }
  .ad2-seta { transform: rotate(90deg); margin: 2px auto; padding: 0 !important; }
}
.ad2-col { display: flex; flex-direction: column; align-items: center; }
.ad2-selo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 22px 9px 10px;
  border-radius: var(--radius-full);
  background: var(--white);
  box-shadow: var(--shadow-lift);
  margin-bottom: -24px;
  position: relative;
  z-index: 2;
}
.ad2-icone {
  width: 48px; height: 48px;
  flex: none;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.ad2-col--antes .ad2-icone { background: var(--red-600); }
.ad2-col--depois .ad2-icone { background: var(--green-500); }
.ad2-icone svg { width: 26px; height: 26px; }
.ad2-tit { font-family: var(--font-head); font-weight: 800; font-size: 15.5px; line-height: 1.08; letter-spacing: 0.02em; }
.ad2-col--antes .ad2-tit { color: var(--red-600); }
.ad2-col--depois .ad2-tit { color: var(--green-700); }
.ad2-card {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px 24px 22px;
}
.ad2-col--antes .ad2-card { background: var(--red-50); border-color: var(--red-100); }
.ad2-col--depois .ad2-card { background: var(--green-50); border-color: var(--green-100); }
.ad2-row { padding: 13px 0; text-align: center; }
.ad2-row + .ad2-row { border-top: 1px solid rgba(15,23,42,.06); }
.ad2-cap { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 5px; }
.ad2-num { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: clamp(21px, 3.4vw, 27px); padding-bottom: 9px; position: relative; }
.ad2-col--antes .ad2-num { color: var(--red-700); }
.ad2-col--depois .ad2-num { color: var(--green-700); }
.ad2-num::after { content: ""; position: absolute; left: 12%; right: 12%; bottom: 0; height: 5px; border-radius: 3px; }
.ad2-col--antes .ad2-num::after { background: var(--red-600); }
.ad2-col--depois .ad2-num::after { background: var(--green-500); }
.ad2-seta { display: flex; align-items: center; justify-content: center; color: var(--amber); padding-top: 104px; }
.ad2-seta svg { width: 72px; height: auto; filter: drop-shadow(0 3px 5px rgba(245,158,11,.35)); }

/* ============================================================
   BLOCO 3 — RESULTADO ESPERADO (timeline)
   ============================================================ */
.marcos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 820px) { .marcos { grid-template-columns: 1fr; max-width: 460px; } }
.marco {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.marco-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  color: var(--green-100);
  -webkit-text-stroke: 1.5px var(--green-500);
}
.tag-tempo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-50);
  color: var(--orange-500);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin: 16px 0 12px;
}
.marco h3 { margin-bottom: 8px; }
.marco p { color: var(--ink-500); font-size: 15.5px; }

/* ============================================================
   BLOCO 4 — RUMINAÇÃO
   ============================================================ */
.ruminacao { background: var(--alt); }
.rum-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 36px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 820px) { .rum-grid { grid-template-columns: 1fr; } }
.rum-foto { position: relative; }
.rum-baloes { display: flex; flex-direction: column; gap: 16px; }
.balao {
  position: relative;
  background: var(--red-600);
  color: var(--white);
  font-size: clamp(16px, 2.2vw, 18.5px);
  font-weight: 600;
  line-height: 1.45;
  padding: 16px 22px;
  border-radius: 18px 18px 18px 4px;
  box-shadow: var(--shadow-card);
  max-width: 520px;
}
.balao::before {
  content: "";
  position: absolute;
  left: -9px;
  bottom: 0;
  border: 10px solid transparent;
  border-bottom-color: var(--red-600);
  border-right-color: var(--red-600);
}
.balao:nth-child(even) { margin-left: 28px; }
.balao mark { background: none; color: var(--yellow); font-weight: 800; }

/* ruminação estilo MAXXIMA: balões sobre a foto, empilhados à esquerda */
.rum-stage { position: relative; max-width: 860px; margin: 0 auto; }
.rum-foto-r { width: 62%; margin: 0 auto; }
.rum-foto-r img { width: 100%; height: 580px; object-fit: cover; object-position: center; border-radius: 22px; display: block; box-shadow: 0 24px 50px rgba(15,23,42,.18); }
.rum-baloes-over { position: absolute; inset: 0; z-index: 2; }
.rum-baloes-over .balao {
  position: absolute; width: auto; max-width: 42%; margin: 0;
  font-size: clamp(17px, 1.9vw, 22px);
  box-shadow: 0 14px 30px rgba(0,0,0,.30);
}
.rum-baloes-over .balao:nth-child(1) { top: 6%; left: 0; }
.rum-baloes-over .balao:nth-child(2) { top: 32%; left: 0; }
.rum-baloes-over .balao:nth-child(3) { bottom: 32%; right: 0; }
.rum-baloes-over .balao:nth-child(4) { bottom: 6%; right: 0; }
/* sem cauda na ruminação — balões como cards limpos (estilo MAXXIMA) */
.rum-baloes-over .balao::before { display: none; }
.rum-baloes-over .balao { border-radius: 16px; }
@media (max-width: 820px) {
  /* balões nos 4 cantos: 2 em cima, 2 embaixo (rosto livre no meio) */
  .rum-stage { display: block; max-width: 460px; }
  .rum-foto-r { width: 100%; }
  .rum-foto-r img { height: 520px; object-position: center 16%; }
  .rum-baloes-over .balao {
    max-width: 70%; font-size: 16px; padding: 10px 13px; box-shadow: 0 8px 18px rgba(0,0,0,.34);
  }
  .rum-baloes-over .balao:nth-child(1) { top: 14px; left: 10px; }
  .rum-baloes-over .balao:nth-child(2) { top: 104px; left: 10px; }
  .rum-baloes-over .balao:nth-child(3) { bottom: 100px; right: 10px; }
  .rum-baloes-over .balao:nth-child(4) { bottom: 14px; right: 10px; }
}
.rum-fecho {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 23px);
  color: var(--ink-900);
  max-width: 640px;
  margin: 48px auto 0;
}

/* ============================================================
   BLOCO 5 — GATILHO DE DECISÃO
   ============================================================ */
.gatilho-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
  background: var(--red-600);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: var(--shadow-lift);
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 640px) { .gatilho-box { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 32px 24px; } }
.gatilho-icone { color: var(--yellow); }
.gatilho-box h2 {
  color: var(--yellow);
  font-size: clamp(22px, 3.6vw, 30px);
  margin-bottom: 12px;
}
.gatilho-box p {
  color: var(--white);
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.55;
}
.gatilho-box p strong { font-weight: 800; }
.gatilho-box p + p { margin-top: 14px; }
.gatilho-box .sim { color: var(--yellow); font-weight: 800; }
.gatilho-fecho {
  text-align: center; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(21px, 3.6vw, 30px); line-height: 1.3; color: var(--ink-900);
  max-width: 800px; margin: 34px auto 0;
}
.gatilho-fecho .sim { color: var(--green-600); }
.gatilho-fecho strong { color: var(--green-700); }

/* ============================================================
   BLOCO 6 — BENEFÍCIOS
   ============================================================ */
.beneficios { background: var(--white); padding-top: 38px; }
.benef-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) { .benef-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benef-grid { grid-template-columns: 1fr; gap: 11px; } }
.benef-card {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benef-card .icone {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(15,23,42,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  line-height: 1;
}
.benef-card strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17.5px;
  line-height: 1.35;
  color: var(--ink-900);
}
/* mobile: cards de benefício compactos (ícone à esquerda + texto) */
@media (max-width: 560px) {
  .benef-card { flex-direction: row; align-items: center; gap: 14px; padding: 15px 17px; }
  .benef-card .icone { width: 48px; height: 48px; flex: none; font-size: 24px; }
  .benef-card strong { font-size: 16px; line-height: 1.3; }
}

/* ============================================================
   BLOCO 7 / 8 — ENTREGÁVEIS + BÔNUS (mockups + selo)
   ============================================================ */
.entregavel {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 44px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: var(--shadow-card);
  max-width: 940px;
  margin: 0 auto 26px;
}
.entregavel:nth-child(even) { direction: rtl; }
.entregavel:nth-child(even) > * { direction: ltr; }
@media (max-width: 820px) {
  .entregavel { grid-template-columns: 1fr; padding: 30px 24px; }
  .entregavel:nth-child(even) { direction: ltr; }
}
.entregavel h3 { color: var(--green-600); font-size: clamp(20px, 3vw, 25px); margin: 10px 0 10px; }
.entregavel .micro { color: var(--ink-400); }
.entregavel p { color: var(--ink-500); font-size: 18px; }

.mock-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  perspective: 1000px;
}
/* selo redondo FEITO POR */
.selo-feito {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 112px;
  height: 112px;
  z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(15,23,42,.18));
}
/* cartilha = livro 3D com a capa real */
.mock-livro {
  position: relative;
  width: 280px;
  transform: rotateY(-16deg) rotateX(3deg) rotate(-1deg);
  transform-style: preserve-3d;
  border-radius: 6px 14px 14px 6px;
  box-shadow: -18px 22px 36px rgba(15,23,42,.22);
}
.mock-livro img { border-radius: 6px 14px 14px 6px; border: 1px solid var(--ink-100); }
.mock-livro::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 2px;
  bottom: 2px;
  width: 12px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
  border-radius: 4px 0 0 4px;
  transform: rotateY(34deg);
  transform-origin: right;
}
/* painel = planilha 3D */
.mock-painel {
  width: 340px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  overflow: hidden;
  transform: rotateY(14deg) rotateX(4deg) rotate(1deg);
  box-shadow: 20px 22px 36px rgba(15,23,42,.20);
  font-size: 13.5px;
}
.mock-painel .barra {
  background: var(--green-600);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-painel table { width: 100%; border-collapse: collapse; }
.mock-painel th {
  text-align: left;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
  background: var(--ink-25);
  padding: 7px 10px;
  border-bottom: 1px solid var(--ink-100);
}
.mock-painel td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--ink-50);
  color: var(--ink-700);
}
.mock-painel td.cat { color: var(--green-600); font-weight: 700; white-space: nowrap; }
/* checklist = folha 3D */
.mock-check {
  width: 296px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 20px 22px;
  transform: rotateY(-13deg) rotateX(4deg) rotate(-1deg);
  box-shadow: -18px 22px 36px rgba(15,23,42,.20);
}
.mock-check .mc-titulo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16.5px;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.mock-check .mc-sub { font-size: 12px; color: var(--ink-400); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.mc-item { display: flex; align-items: center; gap: 9px; padding: 6px 0; border-bottom: 1px dashed var(--ink-100); }
.mc-item:last-child { border-bottom: none; }
.mc-box {
  flex: none;
  width: 19px;
  height: 19px;
  border-radius: 4px;
  border: 1.5px solid var(--ink-200);
}
.mc-box.feito {
  background: var(--green-500);
  border-color: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.mc-item span { font-size: 14px; color: var(--ink-700); }
.mc-item .mc-faixa { height: 7px; border-radius: 4px; background: var(--ink-100); flex: 1; }

/* bônus */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 860px) { .bonus-grid { grid-template-columns: 1fr; max-width: 460px; } }
.bonus-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bonus-tag {
  align-self: flex-start;
  background: var(--green-600);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 13px;
  border-radius: var(--radius-full);
}
.bonus-card .icone { color: var(--green-600); }
.bonus-card h3 { font-size: 21px; }
.bonus-card p { color: var(--ink-500); font-size: 17.5px; }

/* mockups dos bônus */
.bonus-mock { display: flex; justify-content: center; align-items: center; min-height: 212px; margin-bottom: 6px; }
.mock-doc {
  width: 264px; background: var(--white);
  border: 1px solid var(--ink-100); border-radius: 12px;
  padding: 17px 20px; box-shadow: -12px 16px 30px rgba(15,23,42,.16);
  transform: rotate(-2deg);
}
.mock-doc .md-tit {
  font-family: var(--font-head); font-weight: 800; font-size: 15.5px;
  color: var(--red-600); margin-bottom: 12px;
  display: flex; align-items: center; gap: 7px;
}
.md-row {
  display: flex; align-items: center; gap: 10px; padding: 7px 0;
  border-bottom: 1px dashed var(--ink-100); font-size: 13.5px; color: var(--ink-700);
}
.md-row:last-child { border-bottom: none; }
.md-n {
  flex: none; width: 21px; height: 21px; border-radius: 50%;
  background: var(--red-50); color: var(--red-600);
  font-weight: 800; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.mock-bot {
  width: 272px; background: #ECE5DD; border-radius: 18px; overflow: hidden;
  border: 6px solid var(--ink-900); box-shadow: 16px 18px 32px rgba(15,23,42,.18);
  transform: rotate(2deg);
}
.mock-bot .bot-top {
  background: #0B3D33; color: var(--white);
  display: flex; align-items: center; gap: 9px;
  padding: 11px 14px; font-size: 14px; font-weight: 700;
}
.bot-ava {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  background: var(--green-500); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.bot-body { padding: 13px 12px; display: flex; flex-direction: column; gap: 8px; }
.bot-msg {
  max-width: 86%; font-size: 13px; line-height: 1.35;
  padding: 8px 11px 6px; border-radius: 10px; box-shadow: 0 1px 1px rgba(0,0,0,.08);
}
.bot-msg--in { align-self: flex-start; background: var(--white); color: #1f2937; border-top-left-radius: 3px; }
.bot-msg--out { align-self: flex-end; background: #DCF8C6; color: #0f3d23; border-top-right-radius: 3px; }

/* ============================================================
   BLOCO 10 — PARA QUEM É / NÃO É
   ============================================================ */
.pq-grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: 36px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 860px) { .pq-grid { grid-template-columns: 1fr; } }
.pq-cols { display: grid; gap: 18px; }
.pq-card { border-radius: var(--radius-lg); padding: 26px 28px; }
.pq-card--sim { background: var(--green-50); border: 1.5px solid var(--green-100); }
.pq-card--nao { background: var(--red-50); border: 1.5px solid var(--red-100); }
.pq-card h3 { font-size: 17px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.pq-card--sim h3 { color: var(--green-700); }
.pq-card--nao h3 { color: var(--red-600); }
.pq-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pq-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 17.5px; color: var(--ink-700); }
.pq-list li svg { flex: none; margin-top: 3px; }
.pq-card--sim .pq-list svg { color: var(--green-600); }
.pq-card--nao .pq-list svg { color: var(--red-600); }

/* ============================================================
   BLOCO 11 — CTA INTERMEDIÁRIO
   ============================================================ */
.cta-meio { text-align: center; background: var(--green-50); }
.cta-meio .l1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 28px);
  color: var(--ink-900);
}
.cta-meio .l2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(20px, 3.4vw, 28px);
  color: var(--green-600);
  margin: 6px 0 30px;
}

/* ============================================================
   BLOCO 12 — VALUE-STACK
   ============================================================ */
.stack-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  padding: 38px 42px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 600px) { .stack-card { padding: 28px 20px; } }
.stack-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--ink-50);
}
.stack-row svg { flex: none; color: var(--green-600); align-self: center; }
.stack-row .nome { font-weight: 600; color: var(--ink-900); font-size: 16.5px; }
.stack-row .leader { flex: 1; border-bottom: 2px dotted var(--ink-200); transform: translateY(-4px); min-width: 24px; }
.stack-row .preco {
  color: var(--red-600);
  font-weight: 700;
  text-decoration: line-through;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: var(--ink-900);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-top: 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(15px, 2.4vw, 18px);
  flex-wrap: wrap;
}
.stack-total .soma { color: var(--yellow); font-size: clamp(20px, 3vw, 26px); font-weight: 800; text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: var(--red-600); }

/* ============================================================
   BLOCO 13 — OFERTA / PREÇO
   ============================================================ */
.oferta-wrap {
  position: relative;
  overflow: hidden;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .oferta-wrap { grid-template-columns: 1fr; padding: 40px 22px; } }
.ribbon {
  position: absolute;
  top: 26px;
  right: -44px;
  transform: rotate(40deg);
  background: var(--green-600);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  padding: 9px 60px;
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.oferta-mockups img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }

/* figura "tudo junto" — leque dos 5 entregáveis */
.kit-junto {
  position: relative; height: 430px; max-width: 720px;
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
}
.kit-junto .kj { position: absolute; }
.kit-junto .kj-capa { z-index: 6; transform: translateY(-2px); }
.kit-junto .kj-capa .mock-livro { width: 210px; }
.kit-junto .kj-planilha { z-index: 3; transform: translate(-206px,-28px) scale(.78); }
.kit-junto .kj-check    { z-index: 3; transform: translate(206px,-22px) scale(.80); }
.kit-junto .kj-doc      { z-index: 5; transform: translate(-228px,128px) scale(.64) rotate(-3deg); }
.kit-junto .kj-bot      { z-index: 5; transform: translate(232px,130px) scale(.64) rotate(3deg); }
.oferta-mockups .mock-doc { box-shadow: -12px 16px 30px rgba(15,23,42,.22); }
@media (max-width: 900px) {
  .kit-junto { transform: scale(.92); }
}
@media (max-width: 560px) {
  .kit-junto { transform: scale(.62); height: 300px; margin: -40px auto -20px; }
}
.preco-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 34px 32px;
  text-align: center;
}
.preco-card .wordmark { font-size: 17px; }
.preco-de {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-500);
}
.preco-de s { color: var(--red-600); font-weight: 700; }
.preco-parcela {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 52px);
  line-height: 1.05;
  color: var(--green-600);
  letter-spacing: -0.02em;
  margin: 6px 0 2px;
}
.preco-parcela small { font-size: 0.45em; font-weight: 700; }
.preco-vista { color: var(--ink-500); font-weight: 600; font-size: 16px; margin-bottom: 22px; }
.preco-card .btn-cta { width: 100%; }
.selos {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.selo { display: inline-flex; align-items: center; gap: 9px; }
.selo .selo-t { font-size: 13px; font-weight: 500; color: var(--ink-400); line-height: 1.15; text-align: left; }
.selo .selo-t b { display: block; font-weight: 800; color: var(--ink-700); font-size: 14.5px; }
.selos svg { color: var(--green-600); flex: none; width: 26px; height: 26px; }

/* ============================================================
   BLOCO 14 — COMO ACESSAR
   ============================================================ */
.passos-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .passos-grid { grid-template-columns: 1fr; max-width: 420px; }
  .passo-seta { transform: rotate(90deg); justify-self: center; }
}
.passo {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.passo-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: var(--radius-full);
  background: var(--green-500);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.passo h3 { font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.passo p { color: var(--ink-500); font-size: 16.5px; }
.passo-seta { color: var(--green-500); }

/* ============================================================
   BLOCO 15 — AUTORIDADE
   ============================================================ */
.autoridade { background: var(--green-600); }
.aut-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .aut-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; } }
.aut-foto img {
  border-radius: var(--radius-xl);
  border: 5px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-pop);
}
.autoridade .micro { color: var(--green-100); display: block; margin-bottom: 10px; }
.autoridade h2 { color: var(--green-50); margin-bottom: 16px; }
.autoridade p { color: rgba(255,255,255,.94); font-size: 17px; line-height: 1.65; }
.autoridade p strong { color: var(--white); }
.aut-pendente {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--green-100);
  border: 1px dashed rgba(255,255,255,.5);
  border-radius: var(--radius-full);
  padding: 6px 14px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { flex: none; color: var(--green-600); transition: transform 200ms ease-out; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item .resposta { padding: 0 22px 18px; color: var(--ink-500); font-size: 18px; }

/* ============================================================
   BLOCO 16 — 2 OPÇÕES + CTA FINAL
   ============================================================ */
.opcoes { background: var(--alt); }
.op-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 760px) { .op-grid { grid-template-columns: 1fr; } }
.op-card { border-radius: var(--radius-lg); padding: 32px 30px; }
.op-card--1 { background: var(--red-50); border: 1.5px solid var(--red-100); }
.op-card--2 { background: var(--green-50); border: 1.5px solid var(--green-100); }
.op-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.op-card--1 .op-badge { background: var(--red-600); }
.op-card--2 .op-badge { background: var(--green-600); }
.op-card p { font-size: 18px; line-height: 1.6; }
.op-card--1 p { color: var(--red-700); }
.op-card--2 p { color: var(--green-700); }
.op-card p strong { font-weight: 800; }
.op-fecho {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(19px, 3vw, 24px);
  font-weight: 700;
  color: var(--ink-900);
  max-width: 560px;
  margin: 44px auto 56px;
}
.op-fecho .ok { font-weight: 800; }

/* ============================================================
   RODAPÉ
   ============================================================ */
footer {
  background: var(--green-700);
  color: var(--green-100);
  text-align: center;
  padding: 48px 20px 40px;
}
footer .wordmark { color: var(--white); }
footer .wordmark em { color: var(--green-100); }
footer .contato { margin: 18px 0 26px; font-size: 15px; }
footer .contato a { color: var(--white); font-weight: 700; text-decoration: none; }
footer .contato a:hover { text-decoration: underline; }
footer .disclaimer {
  max-width: 680px;
  margin: 0 auto 22px;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}
footer .legal { font-size: 12.5px; color: rgba(255,255,255,.85); }

/* entrada suave */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity 480ms ease-out, transform 480ms ease-out; }
  .reveal.on { opacity: 1; transform: none; }
}
