/* ============================================================================
   Tema inLead do funil riseme.life, replicado dos tokens REAIS do original:
   themeColor #f472b6 · titleColor #020617 · contentColor #6b7280 · bg #fafafa
   Montserrat (títulos) + Nunito (conteúdo) · rounded-lg · container 44rem.
   Cores de destaque capturadas ao vivo: rosa #f472b6 · verde #16a34a ·
   vermelho #dc2626 · caixa azul #e3eeff/#1c72f1 · alerta #ffe6e3.
   ========================================================================= */
:root {
  --rosa: #f472b6;
  --rosa-escuro: #ec4899;
  --rosa-suave: #fdf2f8;
  --rosa-borda: #fbcfe8;
  --titulo: #020617;
  --texto: #6b7280;
  --fundo: #fafafa;
  --card: #ffffff;
  --verde: #16a34a;
  --verde-claro: #22c55e;
  --vermelho: #dc2626;
  --radius: 0.5rem;
  --container: 44rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
* { scrollbar-width: none; -ms-overflow-style: none; }
*::-webkit-scrollbar { display: none; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--fundo);
  color: var(--texto);
  font-size: 16px;
  min-height: 100vh;
  min-height: 100dvh;
}
img { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
h1, h2, h3, .font-titulo { font-family: 'Montserrat', system-ui, sans-serif; color: var(--titulo); }

.rosa { color: var(--rosa); }
.verde { color: var(--verde); }
.vermelho { color: var(--vermelho); }

/* --- topo: voltar + progresso flat --------------------------------------- */
.topo {
  position: sticky; top: 0; z-index: 40;
  background: var(--fundo);
  padding: 0.6rem 1rem 0.4rem;
}
.topo-linha { display: flex; align-items: center; gap: 0.75rem; width: 100%; max-width: var(--container); margin: 0 auto; }
.voltar { color: var(--titulo); font-size: 1.3rem; line-height: 1; padding: 0.25rem; visibility: hidden; }
.progresso { flex: 1; height: 6px; border-radius: 99px; background: #fce7f3; overflow: hidden; }
.progresso-fill { height: 100%; width: 0; background: var(--rosa); border-radius: 99px; transition: width .4s ease; }

/* --- logo ------------------------------------------------------------------ */
.logo { display: flex; justify-content: center; padding: 0.4rem 0 0; }
.logo img { height: 52px; width: auto; }

/* --- balão de notificação (prova social) ---------------------------------- */
.notif {
  position: fixed; top: 10px; left: 50%; transform: translateX(-50%) translateY(-130%);
  z-index: 90; width: calc(100% - 2rem); max-width: 340px;
  border-radius: 0.6rem; padding: 0.7rem 1rem;
  color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transition: transform .45s cubic-bezier(.34,1.3,.64,1);
}
.notif.is-on { transform: translateX(-50%) translateY(0); }
.notif.estilo-alerta { background: #ef4444; }
.notif.estilo-inscripcion { background: var(--verde-claro); }
.notif b { display: block; font-size: .95rem; }
.notif span { font-size: .85rem; opacity: .95; }

/* --- tela: conteúdo centralizado na vertical como o original --------------- */
main { display: flex; flex-direction: column; }
.tela {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.75rem 1rem 2.2rem;
  min-height: calc(100dvh - 64px);
  display: flex; flex-direction: column;
  animation: aparecer .3s ease-out;
}
.tela-miolo { margin: auto 0; width: 100%; }
@keyframes aparecer { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.pre { text-align: center; font-weight: 800; color: var(--rosa); font-family: 'Montserrat',sans-serif; font-size: 1.5rem; line-height: 1.2; margin-bottom: .2rem; }
.pre-sub { text-align: center; font-weight: 700; color: var(--titulo); font-size: .92rem; margin-bottom: .3rem; }
.pre-nota { text-align: center; font-size: .88rem; margin-bottom: .5rem; }
.titulo {
  font-size: 1.75rem; line-height: 1.22; font-weight: 800;
  text-align: center; margin: 1rem 0 0.6rem;
}
.titulo em { font-style: italic; }
.sub { text-align: center; font-size: .98rem; margin-bottom: 1rem; }
.texto { font-size: .98rem; line-height: 1.6; margin: 0 0 1rem; text-align: center; }
.nota { font-size: .78rem; color: #9ca3af; text-align: center; margin-top: 1rem; }
.destaque-grande {
  text-align: center; font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; line-height: 1.25; font-weight: 800; color: var(--rosa); margin: .6rem 0 1rem;
}

/* ajustes por tela, replicando o original (data-n = número da tela) */
.tela[data-n="2"] .pre { color: var(--titulo); font-size: 1rem; }
.tela[data-n="2"] .titulo { color: var(--rosa); font-size: 1.55rem; }
.tela[data-n="6"] .pre { font-size: 1.7rem; }
.tela[data-n="20"] .texto, .tela[data-n="20"] .sub { font-weight: 700; color: #09090b; }
.tela[data-n="34"] .pre, .tela[data-n="34"] .titulo { text-align: left; }
.tela[data-n="34"] .pre { font-size: 1.9rem; font-weight: 700; margin-top: .8rem; }
.tela[data-n="34"] .titulo { margin-top: 0; }

/* --- opções ---------------------------------------------------------------- */
.opts { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.1rem; }
.opts.grid2 { display: grid; grid-template-columns: 1fr 1fr; }
.opt {
  display: flex; align-items: center; gap: .8rem; text-align: left;
  background: var(--rosa-suave);
  border: 1.5px solid var(--rosa-borda);
  border-radius: var(--radius);
  min-height: 62px; padding: .85rem 1rem;
  font-size: .97rem; color: var(--titulo); font-weight: 600;
  transition: transform .12s, border-color .15s, background .15s;
}
.opt:active { transform: scale(.98); }
.opt.is-sel { border-color: var(--rosa-escuro); background: #fce7f3; }
.opt-emoji { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.opt-radio {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid #e5c3d5; background: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.opt.is-sel .opt-radio { border-color: var(--rosa-escuro); }
.opt.is-sel .opt-radio::after { content: ''; width: 13px; height: 13px; border-radius: 50%; background: var(--rosa-escuro); }
.opt-check {
  width: 24px; height: 24px; border-radius: .3rem;
  border: 2px solid #e5c3d5; background: #fff; flex-shrink: 0;
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem;
}
.opt.is-sel .opt-check { background: var(--rosa-escuro); border-color: var(--rosa-escuro); }
.opt-label { flex: 1; }
/* multi com foto: a foto sangra na borda esquerda do cartão (original) */
.opt.tem-foto { padding: 0; overflow: hidden; min-height: 76px; }
.opt.tem-foto .opt-foto { width: 78px; align-self: stretch; object-fit: cover; border-radius: 0; flex-shrink: 0; }
.opt.tem-foto .opt-check { margin-left: .2rem; }
.opt.tem-foto .opt-label { padding: .85rem .9rem .85rem 0; }

/* cards 2×2 com foto e rodapé rosa com seta (telas 3, 6, 12) ---------------- */
.cards2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 1.1rem; }
.card-op {
  /* fundo BRANCO por decisão do Bruno (01/08): o original usava rosa estourado
     atrás dos avatares, mas ele prefere branco — mais agradável */
  background: var(--card); border: 1px solid #f3d4e3; border-radius: .6rem;
  overflow: hidden; display: flex; flex-direction: column; padding: 0; text-align: left;
  transition: transform .12s;
}
.card-op:active { transform: scale(.98); }
.card-op img { width: 100%; aspect-ratio: 1 / 1.15; object-fit: cover; object-position: top; }
.card-rotulo {
  background: var(--rosa-escuro); color: #fff;
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem .7rem; font-weight: 600; font-size: .9rem;
}
.card-rotulo .chev {
  width: 22px; height: 22px; border: 1.5px solid rgba(255,255,255,.85); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-style: normal; font-size: .95rem; line-height: 1; flex-shrink: 0;
}

/* imagens da tela ----------------------------------------------------------- */
.img-solta { border-radius: .7rem; margin: 1.2rem auto 0; }
.img-hero { width: calc(100% + 2rem); max-width: none; margin: 1.2rem -1rem -2.2rem; }

/* --- CTA ------------------------------------------------------------------- */
.cta-area { margin-top: 1.6rem; }
.cta-area.is-fixa {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--container);
  padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--fundo) 70%, transparent);
  z-index: 50; margin: 0;
}
.cta {
  display: block; width: 100%;
  background: var(--rosa); color: #fff;
  border-radius: .55rem;
  border-bottom: 4px solid #db2777;
  min-height: 56px; padding: .95rem 1rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
  text-align: center;
  transition: filter .15s, transform .12s, opacity .15s;
  text-decoration: none;
}
.cta:hover { filter: brightness(1.05); }
.cta:active { transform: scale(.985); }
.cta:disabled { background: #f9a8d4; border-bottom-color: #f48fc4; cursor: not-allowed; }

/* --- inputs ---------------------------------------------------------------- */
.unidades { display: flex; justify-content: center; margin: 1rem 0; }
.unidades-pill { background: #f3f4f6; border-radius: 99px; padding: 4px; display: flex; gap: 2px; }
.unidades-pill button {
  padding: .45rem 1.3rem; border-radius: 99px; font-weight: 700; font-size: .9rem; color: #9ca3af;
}
.unidades-pill button.is-on { background: var(--rosa); color: #fff; }
.valor-grande { display: flex; align-items: baseline; justify-content: center; gap: .3rem; margin: 1.2rem 0; }
.valor-grande input {
  width: 130px; border: 0; background: transparent; outline: none;
  font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 600;
  color: var(--texto); text-align: right;
}
.valor-grande input::placeholder { color: #d1d5db; }
.valor-grande .sufixo { font-size: 1.1rem; color: var(--texto); }
.campo-texto {
  width: 100%; max-width: 26rem; margin: 1.2rem auto; display: block;
  border: 1.5px solid #e5e7eb; border-radius: var(--radius);
  padding: 1rem; font: inherit; font-size: 1rem; text-align: center;
  background: var(--card);
}
.campo-texto::placeholder { font-style: italic; color: #9ca3af; }
.campo-texto:focus { outline: none; border-color: var(--rosa); }

/* --- carrossel (1 por vez + bolinhas, legenda dentro do cartão) ------------ */
.carrossel-wrap { margin: 1.1rem 0; }
.carrossel { display: flex; gap: .8rem; overflow-x: auto; scroll-snap-type: x mandatory; }
.carrossel-item {
  flex: 0 0 100%; scroll-snap-align: center;
  background: var(--card); border: 1px solid #eee; border-radius: .7rem; overflow: hidden;
}
.carrossel-item img { width: 100%; }
.carrossel-item figcaption { text-align: center; font-size: .9rem; padding: .7rem; border-top: 1px solid #f3f4f6; color: var(--texto); }
.dots { display: flex; justify-content: center; gap: .45rem; margin-top: .7rem; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #e9d5e1; }
.dot.is-on { background: var(--rosa-escuro); }

/* --- caixas ---------------------------------------------------------------- */
.caja-info {
  background: #e3eeff; border: 1px solid #c7dcfe; border-radius: 8px;
  padding: .9rem 1rem; margin: 1rem 0; font-size: .88rem; line-height: 1.5;
  color: #1c72f1; text-align: center;
}
.caja-info b { display: block; margin-bottom: .25rem; }
.caja-destaque {
  background: #dcfce7; border: 1px solid #bbf7d0; border-radius: var(--radius);
  padding: 1rem; margin: 1rem 0; text-align: center; color: var(--verde); font-size: .95rem;
}
.caja-destaque b { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--verde); margin-bottom: .35rem; }
.alerta-box {
  background: #ffe6e3; border: 1px solid #fecdc8; border-radius: 8px;
  padding: 1rem; margin: 1rem 0; text-align: left;
}
.alerta-box b { color: #09090b; display: block; margin-bottom: .3rem; }
.alerta-box p { font-size: .9rem; color: #09090b; }

/* tela 29: cartão rosa do IMC + seção + nível de êxito ---------------------- */
.destaque-card {
  background: #fee5f0; border: 1px solid #fecae1; border-radius: 8px;
  padding: 1rem; margin: 1rem 0; text-align: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--rosa); font-size: 1.05rem;
}
.destaque-card .valor-imc { display: block; color: var(--vermelho); font-size: 1.45rem; font-weight: 800; margin-top: .25rem; }
.sub-secao { text-align: center; font-size: 1.05rem; font-weight: 800; margin: 1.4rem 0 1rem; }
.nivel { margin: 1.4rem 0; }
.nivel b { display: block; color: var(--titulo); font-size: .95rem; margin-bottom: .3rem; }
.nivel-linha { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; font-size: .78rem; }
.nivel-pct { font-weight: 800; color: var(--titulo); font-size: .95rem; }
.nivel-barra { height: 10px; border-radius: 99px; background: #e5e7eb; margin-top: .4rem; }
.nivel-fill { height: 100%; border-radius: 99px; background: var(--verde-claro); position: relative;
  transition: width 1.3s cubic-bezier(.35,.9,.35,1) .35s; }
.nivel-knob {
  position: absolute; right: -2px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,.3);
}

/* --- estatísticas com barra vertical (tela 5) ------------------------------ */
.stats-barras { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 1.4rem 0; }
.stat-b {
  background: var(--card); border: 1px solid #eee; border-radius: .7rem;
  padding: 1rem .8rem; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.stat-b-col { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.stat-b-chip { background: #f3f4f6; border-radius: .3rem; font-size: .78rem; font-weight: 700; color: var(--titulo); padding: .15rem .5rem; }
.stat-b-track { width: 44px; height: 128px; background: #e5e7eb; border-radius: 5px; display: flex; align-items: flex-end; overflow: hidden; }
.stat-b-fill { width: 100%; border-radius: 0; animation: sobe .9s ease-out; transform-origin: bottom; }
@keyframes sobe { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.stat-b p { font-size: .82rem; margin-top: .7rem; line-height: 1.45; }
.stat-b p b { color: #374151; }

/* --- escala de BMI (tela 29 — sem cartão, direto no fundo) ----------------- */
.imc-caixa { margin: 1rem 0 1.4rem; }
.imc-caixa h3 { font-size: .95rem; margin-bottom: .2rem; }
.imc-fonte { font-size: .75rem; color: #9ca3af; margin-bottom: 1.5rem; }
.imc-marcador-wrap { position: relative; height: 1.7rem; }
.imc-marcador {
  position: absolute; transform: translateX(-50%);
  transition: left 1.3s cubic-bezier(.35,.9,.35,1) .25s;
  background: #18181b; color: #fff; font-size: .75rem; font-weight: 700;
  padding: .18rem .6rem; border-radius: .3rem; white-space: nowrap;
}
.imc-marcador::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: #18181b;
}
.imc-barra {
  position: relative; height: .7rem; border-radius: 99px; margin-top: .3rem;
  background: linear-gradient(to right, #22c55e, #facc15 42%, #f97316 70%, #ef4444);
}
.imc-knob {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  transition: left 1.3s cubic-bezier(.35,.9,.35,1) .25s;
  width: 18px; height: 18px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,.35);
}
.imc-rangos { display: flex; justify-content: space-between; font-size: .72rem; margin-top: .4rem; }

/* --- gráfico de projeção (degradê vermelho→verde, telas 31/34) ------------- */
.grafico { position: relative; margin: 1.4rem 0; }
.grafico.com-eixo-y { display: flex; gap: .5rem; }
.graf-eixo-y { display: flex; flex-direction: column; justify-content: space-between; font-size: .72rem; color: #9ca3af; padding: .4rem 0 1.6rem; }
.graf-miolo { position: relative; flex: 1; }
.grafico svg { width: 100%; height: auto; overflow: visible; }
.graf-tag {
  position: absolute; font-size: .78rem; font-weight: 700; color: var(--titulo);
  background: #fff; border: 1px solid #e5e7eb; border-radius: .4rem;
  padding: .25rem .6rem; box-shadow: 0 2px 8px rgba(0,0,0,.08); white-space: nowrap;
}
.graf-tag.is-verde { background: var(--verde-claro); color: #fff; border: 0; }
.graf-eixo { display: flex; justify-content: space-between; font-size: .72rem; color: #9ca3af; margin-top: .35rem; letter-spacing: .02em; }
.desenha { stroke-dasharray: 1; stroke-dashoffset: 1; animation: desenhar 1.1s ease-out forwards; }
@keyframes desenhar { to { stroke-dashoffset: 0; } }
.graf-area { opacity: 0; animation: surgir .6s ease-out .5s forwards; }
.graf-pop { opacity: 0; animation: pop .4s cubic-bezier(.34,1.56,.64,1) forwards; }
@keyframes surgir { to { opacity: .55; } }
@keyframes pop { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .desenha, .graf-area, .graf-pop, .stat-b-fill { animation: none; stroke-dashoffset: 0; opacity: 1; transform: none; }
  .imc-marcador, .imc-knob, .nivel-fill { transition: none; }
}

/* --- loading --------------------------------------------------------------- */
.loader-topo { display: flex; justify-content: space-between; font-size: .9rem; font-weight: 700; color: var(--titulo); }
.loader-barra { height: 10px; border-radius: 99px; background: #f3e8ee; overflow: hidden; margin: .45rem 0 .7rem; }
.loader-fill { height: 100%; width: 0; background: var(--rosa); border-radius: 99px; transition: width .18s linear; }
.loader-estado { text-align: center; font-size: .92rem; font-weight: 700; margin-bottom: .2rem; color: var(--titulo); }
.loader-espera { text-align: center; font-size: .8rem; font-weight: 700; font-style: italic; margin-bottom: 1rem; }

/* --- depoimentos (loading: vizinho aparece nas beiradas) ------------------- */
.depos { display: flex; gap: .8rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .6rem; margin: 0 -1rem; padding-left: 2rem; padding-right: 2rem; }
.depo {
  flex: 0 0 88%; scroll-snap-align: center;
  background: var(--card); border: 1px solid #f3f4f6; border-radius: .7rem;
  padding: 1rem; box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.depo .estrelas { color: #f59e0b; letter-spacing: .1em; margin-bottom: .3rem; }
.depo b { color: var(--titulo); display: block; margin-bottom: .15rem; }
.depo .autor { font-size: .8rem; color: #9ca3af; margin-bottom: .4rem; }
.depo p { font-size: .87rem; line-height: 1.5; }

/* --- VSL / página de vendas ------------------------------------------------ */
.tela[data-n="35"] { padding-bottom: 6.5rem; } /* espaço pro CTA fixo verde */
.vsl-h {
  text-align: center; font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem; line-height: 1.25; font-weight: 800; color: var(--titulo);
  margin: 2.2rem 0 1rem;
}
.vsl-h.rosa { color: var(--rosa); }
.vsl-h.vermelho { color: var(--vermelho); }
.vsl-h.verde { color: var(--verde); }
.tela[data-n="35"] .vsl-h:first-of-type { margin-top: .6rem; }

.vsl-player { border-radius: .8rem; overflow: hidden; background: #111; min-height: 220px; margin: 1rem 0; position: relative; }
.vsl-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 220px; color: #9ca3af; gap: .4rem; font-size: .85rem;
}
.vsl-placeholder span { font-size: 2.4rem; }

/* card de oferta VERDE (layout do original) --------------------------------- */
.oferta-card {
  background: var(--card); border: 2px solid var(--verde-claro); border-radius: .8rem;
  margin: 1rem 0 1.6rem; overflow: hidden; text-align: center;
}
.oferta-badge {
  background: var(--verde-claro); color: #fff; font-weight: 800; font-size: .8rem;
  letter-spacing: .05em; padding: .55rem;
}
.oferta-corpo { display: flex; justify-content: space-between; align-items: center; gap: .8rem; padding: 1rem 1rem .3rem; }
.oferta-esq { text-align: left; }
.oferta-plan { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--verde); margin-bottom: .35rem; }
.oferta-precos { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--titulo); }
.oferta-precos s { color: #9ca3af; font-weight: 700; }
.oferta-precos .novo { color: var(--verde); font-size: 1.35rem; }
.oferta-dia { background: #f3f4f6; border-radius: .6rem; padding: .55rem .8rem; text-align: right; flex-shrink: 0; }
.oferta-dia .dia-pre, .oferta-dia .dia-pos { display: block; font-size: .72rem; color: #9ca3af; }
.oferta-dia .dia-num { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.45rem; color: #111827; }
.cta-verde {
  display: block; margin: .7rem 1rem 0; background: var(--verde); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 1rem; border-radius: .55rem; text-align: center; text-decoration: none;
  transition: filter .15s, transform .12s;
}
.cta-verde:hover { filter: brightness(1.06); }
.cta-verde:active { transform: scale(.985); }
.oferta-selo { color: var(--verde); font-weight: 800; font-size: .85rem; margin: .7rem 0 .2rem; }
.oferta-nota { margin: .6rem 1rem 1rem; text-align: left; }
.cta-fixa-verde {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--container);
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  z-index: 60;
}
.cta-fixa-verde .cta-verde { margin: 0; box-shadow: 0 -4px 22px rgba(0,0,0,.18); }

/* benefícios: cartão rosa com ✅ e itens rosas ------------------------------ */
.beneficios-card { background: #fce7f3; border-radius: .8rem; padding: 1.3rem 1.1rem; margin: 1.6rem 0; }
.beneficios-card h3 { text-align: center; font-size: 1.08rem; line-height: 1.35; margin-bottom: .9rem; }
.lista-check { list-style: none; }
.lista-check li { padding: .32rem 0; font-size: .95rem; color: var(--rosa); }

/* rosquinhas (Números que nos enorgullecen) --------------------------------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 1.2rem 0; }
.stat {
  background: var(--card); border: 1px solid #f3f4f6; border-radius: .7rem;
  padding: 1.2rem .9rem; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.donut { position: relative; width: 96px; margin: 0 auto .6rem; }
.donut svg { width: 100%; height: auto; }
.donut span {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--titulo);
}
.stat p { font-size: .82rem; line-height: 1.45; }
.stat p b { color: #374151; }

/* ¿Qué recibirás? — cartão branco com ícones -------------------------------- */
.recibe-card { background: var(--card); border-radius: .8rem; padding: 1.2rem 1rem; margin: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.recibe-item { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1.1rem; }
.recibe-item:last-child { margin-bottom: 0; }
.recibe-icone {
  width: 46px; height: 46px; border-radius: 50%; background: #f3f4f6; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}
.recibe-item b { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .95rem; color: #111; line-height: 1.3; }
.recibe-item p { font-size: .92rem; line-height: 1.45; margin-top: .15rem; }

/* ¿Cómo voy a recibir…? — cartão rosado com bolinhas vermelhas -------------- */
.como-card { background: #fdeae7; border-radius: .8rem; padding: .2rem 1.2rem 1.2rem; margin: 1.6rem 0; }
.como-card .vsl-h { margin-top: 1.2rem; font-size: 1.4rem; }
.como-lista { list-style: none; }
.como-lista li { position: relative; padding-left: 1.1rem; margin-bottom: .9rem; font-size: .95rem; line-height: 1.55; color: #374151; }
.como-lista li::before { content: ''; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: #ef4444; }

/* comparativo Hoy/Después --------------------------------------------------- */
.comparativo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.6rem 0; }
.comp-chip { border-radius: .6rem; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.15rem; text-align: center; padding: .55rem; margin-bottom: .7rem; color: #111; }
.comp-chip.is-hoy { background: #fde7e4; }
.comp-chip.is-despues { background: #dbeafe; }
.comp-img { height: 185px; object-fit: contain; margin: 0 auto .7rem; }
.comp-item { margin-bottom: .9rem; }
.comp-item .rotulo { display: flex; justify-content: space-between; gap: .4rem; font-size: .8rem; color: #111; }
.comp-item .rotulo b { font-weight: 700; }
.comp-segs { position: relative; display: flex; gap: 4px; margin-top: .4rem; }
.seg { flex: 1; height: 9px; border-radius: 99px; background: #e5e7eb; position: relative; overflow: hidden; }
.seg-fill { position: absolute; inset: 0; width: 0; border-radius: 99px; display: block; }
.seg-fill.seg-cinza { background: #9ca3af; }
.seg-fill.seg-rosa { background: var(--rosa-escuro); }
.comp-knob {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  width: 17px; height: 17px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* depoimentos antes/depois (carrossel da página de vendas) ------------------ */
.carrossel-depos .depo-antes {
  flex: 0 0 100%; scroll-snap-align: center;
  background: var(--card); border: 1px solid #f3f4f6; border-radius: .7rem; overflow: hidden;
}
.depo-antes img { width: 100%; }
.depo-antes b { display: block; text-align: center; padding: .75rem .8rem .3rem; color: #111; }
.depo-antes p { padding: .3rem 1rem; font-size: .92rem; line-height: 1.55; }
.depo-antes p:last-child { padding-bottom: 1rem; }

/* FAQ — sem cartão, itens separados por linha ------------------------------- */
.faq { margin: 1rem 0 1.6rem; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: .6rem; padding: 1rem 0; font-weight: 700; color: var(--titulo); text-align: left; font-size: .98rem; }
.faq-a { display: none; padding: 0 0 1rem; font-size: .9rem; line-height: 1.55; }
.faq-item.is-open .faq-a { display: block; }
.faq-item.is-open .faq-q .seta { transform: rotate(180deg); }
.faq-q .seta { transition: transform .2s; color: #9ca3af; }

/* garantia ------------------------------------------------------------------ */
.garantia { text-align: center; margin: 1.6rem 0 1rem; }
.garantia p { font-size: .92rem; line-height: 1.6; margin-bottom: 1.1rem; }
.garantia img { max-width: 210px; margin: 0 auto; }
