/* ===== BASE GERAL ===== */
body {
  font-family: "Inter", sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #111827;
  overflow-x: hidden;
}

/* ===== Barra de progresso ===== */
.progress-container {
  width: 100%;
  height: 5px;
  background: #fde2f2;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ec4899, #f9a8d4);
  transition: width 0.4s ease;
}

/* ===== Etapas ===== */
.step {
  display: none;
  min-height: 100vh;
  padding-top: 3rem;
  box-sizing: border-box;
}
.step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Títulos e textos ===== */
h1 {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 1rem;
  line-height: 1.3;
}

p.subtitle {
  color: #6b7280;
  margin: 0.25rem 0 1.25rem;
  font-size: 0.95rem;
}

/* ===== Grid de opções ===== */
.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.option {
  border: 2px solid #f9a8d4;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.option:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.option img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.option div {
  background: #ec4899;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 0;
}

/* ===== Seta voltar ===== */
.back-button {
  position: fixed;
  top: 14px;
  left: 10px;
  font-size: 1.5rem;
  color: #111827;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 200;
}

/* ===== Botões ===== */
.btn {
  display: inline-block;
  width: calc(100% - 2rem);
  max-width: 360px;
  margin: 0 auto;
  padding: 1rem 0;
  background-color: #ec4899;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 0 #b91c73;
  transition: transform 0.2s ease;
}
.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #b91c73;
}

/* ===== Rodapé ===== */
footer {
  font-size: 0.75rem;
  color: #6b7280;
  padding: 1rem;
  margin-top: 1rem;
}
footer a {
  color: #ec4899;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* ===== Radio Option ===== */
.radio-option {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.radio-option:hover {
  border-color: #f9a8d4;
  background: #fff7fb;
}
.radio-option.active {
  border-color: #ec4899;
  background: #fff0f8;
}
.circle {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.radio-option.active .circle {
  border-color: #ec4899;
  background: #ec4899;
}

/* ===== Choice Option ===== */
.choice-option {
  width: 100%;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #fff;
  border: 2px solid #f9a8d4;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.choice-option:hover {
  border-color: #ec4899;
  box-shadow: 0 3px 8px rgba(236, 72, 153, 0.15);
}
.choice-option.active {
  background: #ec4899;
  border-color: #ec4899;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
  color: #fff;
}
.choice-option .emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #ec4899;
}
.choice-option .arrow {
  font-size: 1.2rem;
  color: #ec4899;
}
.choice-text {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  color: #111827;
  line-height: 1.3;
}

/* ===== Múltiplas Escolhas ===== */
.multi-choice {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0 auto;
}
.multi-choice:hover {
  border-color: #f9a8d4;
  background: #fff7fb;
}
.multi-choice.active {
  border-color: #ec4899;
  background: #fff0f8;
  box-shadow: 0 0 0 2px #f9a8d4 inset;
}
.multi-choice img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}
.checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  appearance: none;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.checkbox:checked {
  background-color: #ec4899;
  border-color: #ec4899;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath fill='white' d='M5.2 9.3L0.7 4.8L2.1 3.4L5.2 6.5L11.9 0L13.3 1.4L5.2 9.3Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== Sliders (Altura/Peso) ===== */
.unit-switch {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
}
.unit-btn {
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
}
.unit-btn.active {
  background: #ec4899;
  color: #fff;
}
.height-display {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin: 1rem 0;
}
input[type="range"] {
  -webkit-appearance: none;
  width: 80%;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(90deg, #ec4899 0%, #ec4899 0%, #e5e7eb 0%, #e5e7eb 100%);
  outline: none;
  margin: 1rem auto;
  display: block;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 3px solid #ec4899;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* ===== Etapa 31 - Tela de Carregamento ===== */
#step31 {
  display: none;
  background: #fff;
  text-align: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  box-sizing: border-box;
}
#step31.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#step31 .loading-container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
#step31 .loading-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.3rem;
}
#step31 .subtitle-bold {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ec4899;
  margin-bottom: 0.2rem;
}
#step31 .subtitle-muted {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.2rem;
}
#step31 .inner-progress {
  width: 80%;
  max-width: 300px;
  height: 8px;
  background: #f3f4f6;
  border-radius: 999px;
  margin: 0.8rem auto 1.8rem;
  overflow: hidden;
}
#step31 .inner-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ec4899, #f9a8d4);
  border-radius: 999px;
  transition: width 0.3s ease;
}
#step31 .loading-summary {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.5rem;
  margin-top: 1rem;
}
#step31 .loading-summary .highlight {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #22c55e;
}

/* ===== Avaliações ===== */
#step31 .reviews {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#step31 .review {
  background: #f9fafb;
  border-radius: 12px;
  padding: 1rem;
  text-align: left;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.6s forwards;
}
#step31 .review:nth-child(1){ animation-delay: 0.5s; }
#step31 .review:nth-child(2){ animation-delay: 1s; }
#step31 .review:nth-child(3){ animation-delay: 1.5s; }
#step31 .review:nth-child(4){ animation-delay: 2s; }
#step31 .review:nth-child(5){ animation-delay: 2.5s; }
#step31 .stars {
  color: #facc15;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Etapa 2 - Layout ===== */
/* NÃO force display no #step2 sempre */
#step2 {
  /* mantém o resto do estilo, apenas remova a linha display */
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 3rem 1rem 2rem;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
}

/* Só mostra como flex QUANDO estiver ativo */
#step2.active {
  display: flex;
}

#step2 h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
#step2 .subtitle {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}
#step2 .main-image {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  margin: 1.5rem auto 2rem;
  display: block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
#step2 .btn {
  margin-top: 1rem;
  width: 90%;
  max-width: 340px;
}

/* ===== Correções gerais ===== */
#step31:not(.active) .reviews {
  display: none !important;
}
html, body {
  scroll-behavior: smooth;
}

  /* container das opções centralizado e com largura máxima */
  .choices-wrapper{
    max-width: 560px;     /* ajuste se quiser mais largo/estreito */
    margin: 0 auto;       /* centra horizontalmente */
    display: grid;
    gap: 12px;
    padding: 0 16px;      /* respiro nas laterais em telas pequenas */
  }

  /* aparência dos cards/opções */
  .choice-option{
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(15,23,42,.06);
  }

  .choice-option .emoji{ font-size: 22px; line-height: 1; }
  .choice-option .choice-text{ flex: 1; }
  .choice-option .arrow{ margin-left: auto; font-size: 20px; }

  /* defesa extra: se alguma step tiver layout diferente, ainda centraliza o conteúdo */
  .step{
    padding: 0 0;                /* ajuste se quiser */
  }
  .step > .choices-wrapper{
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* tamanho do topo reservado (barra + botão) */
:root { --top-safe: max(12px, env(safe-area-inset-top)); }

/* todas as etapas com o mesmo respiro no topo */
.step {
  padding-top: calc(64px + var(--top-safe)); /* ajusta 64px conforme seu cabeçalho/progress bar */
}

/* botão voltar fixo e estável */
.back-button{
  position: fixed;
  top: var(--top-safe);
  left: max(12px, env(safe-area-inset-left));
  z-index: 1000;

  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;

  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);

  font-size: 18px;
  line-height: 1;
  text-decoration: none;

  /* evita “pulo” no tap em mobile */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  will-change: transform;
  transform: translateZ(0);
}

.back-button:focus { outline: 3px solid #ec4899; outline-offset: 2px; }
.back-button:active { transform: translateZ(0) scale(.98); } /* não mude margem/borda! */

  /* ===== Comparador antes/depois (suave) ===== */
  .ba-compare{
    position:relative;
    width:100%;
    max-width:640px;
    margin:.9rem auto;
    aspect-ratio: 4 / 5;                  /* ajuste a proporção se preferir */
    border-radius:12px;
    overflow:hidden;
    border:1px solid #e2e8f0;
    box-shadow:0 8px 22px rgba(15,23,42,.06);
    user-select:none;
    touch-action:none;                    /* essencial p/ mobile liso */
    --pos:50%;                            /* posição inicial em % */
  }
  .ba-compare .ba-img{
    position:absolute; inset:0;
    width:100%; height:100%; object-fit:cover;
    pointer-events:none; -webkit-user-drag:none;
    z-index:1;
  }
  .ba-compare .ba-after{
    /* recorte da imagem de cima usando a variável --pos */
    clip-path: inset(0 calc(100% - var(--pos,50%)) 0 0);
    will-change: clip-path;
    z-index:2;
  }

  /* Handle que acompanha a posição (mesma var) */
  .ba-compare .ba-handle{
  position:absolute; top:0; bottom:0;
  left: var(--pos, 50%);   /* move pela % do container */
  width: 0;
  transform: none;         /* não usar translateX com % */
  cursor: ew-resize; outline:none;
  z-index:10; pointer-events:auto;
  touch-action: none;
}
  /* linha central */
  .ba-compare .ba-handle::before{
  content:"";
  position:absolute; top:0; bottom:0; left:-1px; width:3px;
  background:#fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.35), 0 0 0 3px rgba(255,255,255,.35) inset;
}
.ba-compare .ba-handle::after{
  content:"↔";
  position:absolute; top:50%; left:-17px;
  transform:translateY(-50%);
  width:34px; height:34px; border-radius:999px;
  display:grid; place-items:center;
  background:#0f172a; color:#fff; font-size:16px;
  border:2px solid #fff; box-shadow:0 4px 12px rgba(0,0,0,.35);
}

  /* Feedback leve ao arrastar (opcional) */
  .ba-compare.ba-drag .ba-handle::after{
    transform: translateY(-50%) scale(1.05);
  }

  /* =========================================================
   STEP 34 — Landing Page (visual elegante e responsivo)
   Escopo: só aplica dentro de #step34
   ========================================================= */
#step34 {
  --rosa: #ec4899;
  --rosa-600: #db2777;
  --verde: #22c55e;
  --verde-700: #15803d;
  --slate-25: #f8fafc;
  --slate-50: #f1f5f9;
  --slate-100: #e2e8f0;
  --slate-200: #cbd5e1;
  --slate-600: #475569;
  --slate-800: #1f2937;
  --slate-900: #0f172a;
  --radius: 16px;
  --shadow-1: 0 6px 18px rgba(15,23,42,.06);
  --shadow-2: 0 10px 28px rgba(15,23,42,.08);
  --shadow-3: 0 14px 36px rgba(15,23,42,.12);
  background: white;
}

/* botão voltar fixo e estável só nesta etapa */
#step34 .back-button{
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: white;
  color: var(--slate-900);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-1);
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  transition: transform .15s ease, box-shadow .2s ease;
}
#step34 .back-button:active{ transform: translateY(1px); box-shadow: 0 4px 12px rgba(15,23,42,.08); }

/* container */
#step34 .lp-container{
  max-width: 1024px;
  margin: 0 auto;
  padding: 72px 18px 28px; /* 72px p/ dar espaço ao botão voltar fixo */
}

/* HERO */
#step34 .lp-hero{
  background: linear-gradient(180deg, var(--slate-25), #fff);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  padding: 28px 18px 22px;
}

#step34 .lp-title{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw + 1rem, 2.2rem);
  line-height: 1.2;
  color: var(--slate-900);
  letter-spacing: -.015em;
}

#step34 .txt-rosa{ color: var(--rosa); }

/* banner de urgência */
#step34 .lp-banner-urgencia{
  background: #f8f5ff;
  border: 1px solid var(--slate-100);
  color: var(--slate-900);
  border-radius: 12px;
  padding: .9rem 1rem;
  margin: .6rem 0 .9rem;
  box-shadow: var(--shadow-1);
}

/* card de preço */
#step34 .lp-card-preco{
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-2);
}

#step34 .lp-card-preco__left{ flex: 1; min-width: 0; }
#step34 .lp-produto{ margin: 0 0 6px; font-weight: 800; color: var(--slate-900); }
#step34 .lp-preco-risk{ margin: 0; color: #ef4444; text-decoration: line-through; font-weight: 700; }
#step34 .lp-preco{ margin: 2px 0 0; font-size: clamp(1.2rem, 2.2vw + .6rem, 1.6rem); font-weight: 900; color: var(--verde); }

#step34 .lp-badge-desconto{
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  color: #065f46;
  border-radius: 999px;
  padding: .6rem .8rem;
  font-size: .85rem;
  line-height: 1.2;
  text-align: center;
  max-width: 220px;
}

/* CTA padrão desta etapa */
#step34 .btn.cta-principal{
  display: block;
  width: 100%;
  max-width: 420px;
  margin: .9rem auto 0;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, var(--rosa), var(--rosa-600));
  box-shadow: 0 8px 0 #b91c5c, var(--shadow-2);
  transform: translateY(0);
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
#step34 .btn.cta-principal:hover{ filter: saturate(1.08) brightness(1.02); }
#step34 .btn.cta-principal:active{ transform: translateY(2px); box-shadow: 0 5px 0 #b91c5c, var(--shadow-1); }

/* ====== Antes/Depois ====== */
#step34 .ba-compare{
  position: relative;
  width: 100%;
  margin: .9rem auto 0;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-3);
  user-select: none;
  touch-action: none;
  --pos: 50%;
  background: var(--slate-100);
}
#step34 .ba-compare .ba-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  pointer-events: none;
}
#step34 .ba-compare .ba-after{
  clip-path: inset(0 calc(100% - var(--pos,50%)) 0 0);
  will-change: clip-path;
}
#step34 .ba-compare .ba-handle{
  position: absolute; top: 0; bottom: 0;
  left: var(--pos,50%);
  width: 0;
  cursor: ew-resize; outline: none;
  z-index: 10;
}
#step34 .ba-compare .ba-handle::before{
  content: "";
  position: absolute; top: 0; bottom: 0; left: -1px;
  width: 3px; background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.35), 0 0 0 3px rgba(255,255,255,.35) inset;
}
#step34 .ba-compare .ba-handle::after{
  content: "↔";
  position: absolute; top: 50%; left: -18px;
  transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--slate-900); color: #fff; font-weight: 800;
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

/* “O que você vai receber” */
#step34 .lp-oqueeurecebo{
  padding: 18px 6px 0;
}
#step34 .lp-oqueeurecebo h2{
  margin: 14px 0 8px;
  font-weight: 900;
  color: var(--slate-900);
  font-size: clamp(1.15rem, 1.4vw + 1rem, 1.4rem);
}
#step34 .lp-oqueeurecebo ul{
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: .55rem;
  color: var(--slate-800);
  font-size: .98rem;
}
#step34 .lp-oqueeurecebo li{
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 12px;
  padding: .7rem .85rem;
  box-shadow: var(--shadow-1);
}

/* Aulas no celular */
#step34 .lp-aulas-celular{ margin-top: 18px; }
#step34 .lp-aulas-celular h3{
  font-weight: 900; color: var(--slate-900); margin: 0 0 10px;
}
#step34 .lp-aulas-celular img{
  width: 100%; max-width: 820px;
  border-radius: 14px; border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-2);
  display: block; margin: 0 auto;
}

/* Benefícios */
#step34 .lp-beneficios{ margin-top: 22px; }
#step34 .lp-beneficios h2{
  text-align: center; margin: 0 0 10px;
  color: var(--slate-900); font-weight: 900;
}
#step34 .lp-beneficios .beneficio{
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: 14px; padding: 12px;
  box-shadow: var(--shadow-1);
  margin-top: 12px;
}
#step34 .lp-beneficios .beneficio img{
  width: 100%; border-radius: 10px; border: 1px solid var(--slate-100); object-fit: cover;
}
#step34 .lp-beneficios .beneficio h3{
  text-align: center; margin: 8px 0 6px; font-weight: 900; color: var(--slate-900);
}
#step34 .lp-beneficios .beneficio p{ color: var(--slate-800); margin: 0; }

/* Resultados (cards) */
#step34 .lp-resultados{ margin-top: 22px; }
#step34 .lp-resultados h2{
  text-align: center; color: var(--slate-900); font-weight: 900; margin: 0 0 12px;
}
#step34 .lp-resultados .resultado{
  text-align: center; background: #fff; border: 1px solid var(--slate-100);
  border-radius: 14px; padding: 12px; box-shadow: var(--shadow-1);
  margin-top: 12px;
}
#step34 .lp-resultados .resultado .nome{
  margin: .2rem 0; color: #6d28d9; font-weight: 900;
}
#step34 .lp-resultados .resultado .desc{
  margin: 0; color: var(--slate-900);
}
#step34 .lp-resultados .resultado img{
  width: 100%; margin-top: .5rem; border-radius: 12px;
  border: 1px solid var(--slate-100); box-shadow: var(--shadow-2); object-fit: cover;
}

/* Segunda seção de CTA */
#step34 .lp-cta2{ margin-top: 24px; }
#step34 .lp-cta2 h2{ font-weight: 900; color: var(--slate-900); margin: 0 0 8px; }

/* Bônus */
#step34 .lp-bonus{ margin-top: 26px; }
#step34 .lp-bonus .bonus-title{
  text-align: center; color: var(--verde); font-weight: 900; margin: 0 0 8px;
}
#step34 .lp-bonus .bonus-list{
  margin: 0; padding-left: 18px; color: var(--slate-800); display: grid; gap: .6rem;
}
#step34 .lp-bonus .bonus-list a{
  color: var(--slate-900); font-weight: 750; text-decoration: none;
}
#step34 .lp-bonus .bonus-list a:hover{
  color: var(--rosa);
}

/* Rodapé local da LP */
#step34 .lp-footer{
  text-align: center; color: #64748b; font-size: .9rem;
  padding: 18px 0 4px;
}
#step34 .lp-footer .link-rosa{ color: var(--rosa); text-decoration: none; }
#step34 .lp-footer .link-rosa:hover{ text-decoration: underline; }

/* =========================
   Layouts maiores (tablet+)
   ========================= */
@media (min-width: 768px){
  #step34 .lp-hero{
    padding: 28px 24px 26px;
  }

  /* benefícios em 2 colunas */
  #step34 .lp-beneficios{
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  #step34 .lp-beneficios h2{
    grid-column: 1 / -1; margin-bottom: 0;
  }
  #step34 .lp-beneficios .beneficio{ margin-top: 0; }

  /* resultados em 3 colunas */
  #step34 .lp-resultados .resultado-grid{
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
}

/* desktop grande */
@media (min-width: 1024px){
  #step34 .lp-container{ padding-left: 24px; padding-right: 24px; }
  #step34 .lp-hero{ padding: 32px 28px; }
}

/* === Corrige botão de continuar que insiste em ficar verde === */
.step .btn,
.step button.btn,
div.step button.btn {
  background-color: #ec4899 !important; /* rosa principal */
  color: #fff !important;
  border: none !important;
  border-radius: 9999px !important;
  padding: 0.9rem 1.5rem !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

/* Hover rosa mais escuro */
.step .btn:hover,
.step button.btn:hover {
  background-color: #db2777 !important;
  transform: scale(1.03);
}

/* Garante que o botão de voltar não herde nada */
.back-button {
  background: none !important;
  color: #111827 !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}

