/* ================================================================
   main.css — Protocolo Réconquista Inmediata
   Estrutura de seções:
     1. Reset
     2. Body / Fundo
     3. Container principal (.quiz-wrapper)
     4. Logo
     5. Barra de progresso
     6. Banner
     7. Área de perguntas (#quiz-content, .question, .options, .option)
     8. Botão CTA (gradiente roxo→azul)
     9. Seção da Doutora
    10. Media queries mobile
================================================================ */


/* ── 1. RESET ────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* ── 2. BODY / FUNDO ─────────────────────────────────────────────
   Gradiente diagonal: lavanda (esq/cima) → branco (centro) → pêssego (dir/baixo)
   100vh como fallback; 100dvh sobrepõe em browsers modernos (desconta
   barra de endereço do mobile corretamente).
   overflow: hidden no body; scroll interno fica no .quiz-wrapper.
   env(safe-area-inset-*) protege o conteúdo do notch/home-indicator do iPhone.
──────────────────────────────────────────────────────────────── */
body {
  background: linear-gradient(135deg, #DDD6F3 0%, #ffffff 50%, #FFD4B2 100%);
  height: 100vh;
  height: 100dvh;
  /* sobrepõe o fallback em browsers modernos */
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;

  /* Safe area para iPhone (notch e home indicator) */
  padding-top: max(16px, env(safe-area-inset-top));
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
}


/* ── 3. CONTAINER PRINCIPAL ──────────────────────────────────────
   Ocupa toda a altura disponível e distribui os blocos com space-between.
   overflow-y: auto permite scroll interno se o conteúdo não couber
   (proteção para telas muito pequenas ou perguntas com muitas opções).
   Para ajustar a largura do quiz, altere max-width.
──────────────────────────────────────────────────────────────── */
.quiz-wrapper {
  width: 100%;
  max-width: 480px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* itens sempre no topo, sem espaço extra entre eles */
  gap: 16px;
  overflow-y: auto;

  /* Esconde a scrollbar visualmente mas mantém a funcionalidade */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quiz-wrapper::-webkit-scrollbar {
  display: none;
}


/* ── 4. LOGO ─────────────────────────────────────────────────────
   Logo textual empilhado (ícone + linhas de texto + divisor).
   Cor principal: #C04A3C (vermelho coral).
   Para alterar a cor do logo, troque #C04A3C nas classes abaixo.
──────────────────────────────────────────────────────────────── */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.logo-icon {
  font-size: 22px;
  line-height: 1;
}

.logo-sparkle {
  font-size: 13px;
  vertical-align: super;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #C04A3C;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: center;
}

.logo-line--sm {
  font-size: 11px;
}

.logo-line--md {
  font-size: 13px;
}

.logo-line--lg {
  font-size: 17px;
}

.logo-divider {
  font-size: 10px;
  color: #C04A3C;
  letter-spacing: 4px;
  margin-top: 1px;
}


/* ── 5. BARRA DE PROGRESSO ───────────────────────────────────────
   A largura de .progress-fill é controlada via JavaScript (app.js).
   Para alterar a cor do preenchimento, edite background em .progress-fill.
──────────────────────────────────────────────────────────────── */
.progress-bar {
  width: 100%;
  height: 5px;
  background: #E8D5D0;
  border-radius: 99px;
  overflow: hidden;
  flex-shrink: 0;
}

.progress-fill {
  height: 100%;
  background: #8B2020;
  border-radius: 99px;
  width: 5%;
  transition: width 0.4s ease;
}


/* ── 6. BANNER ───────────────────────────────────────────────────
   Faixa amarela de destaque acima das perguntas.
   Para alterar a cor de fundo, edite background em .banner.
──────────────────────────────────────────────────────────────── */
.banner {
  width: 100%;
  background: #FEFAB0;
  color: #3a3a3a;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}


/* ── 7. ÁREA DE PERGUNTAS ────────────────────────────────────────
   #quiz-content: container injetado pelo JavaScript.
   Para alterar o estilo das perguntas, edite .question.
   Para alterar o estilo dos botões, edite .option e .option:hover.
──────────────────────────────────────────────────────────────── */
#quiz-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.question {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.3;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #E0E0E0;
  border-radius: 10px;
  padding: 13px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, background 0.2s;
  /* Garante área de toque mínima recomendada (44px) */
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.option:hover,
.option:active {
  border-color: #9B60C4;
  background: #F9F5FF;
}

.option-emoji {
  font-size: 17px;
  flex-shrink: 0;
}


/* ── 8. BOTÃO CTA (GRADIENTE) ────────────────────────────────────
   Pill roxo→azul para chamadas para ação.
   #9B34D4 = roxo | #4F8EF7 = azul
──────────────────────────────────────────────────────────────── */
.btn-cta {
  width: 100%;
  padding: 15px 24px;
  border: none;
  border-radius: 99px;
  background: linear-gradient(to right, #9B34D4, #4F8EF7);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn-cta:hover,
.btn-cta:active {
  opacity: 0.9;
}


/* ── 9. SEÇÃO DA DOUTORA ─────────────────────────────────────────
   Fixa em todas as telas do quiz.
   Para alterar tamanho da foto, edite width/height em .doctor-avatar.
──────────────────────────────────────────────────────────────── */
.doctor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex-shrink: 0;
}

.doctor-credit {
  font-size: 13px;
  color: #1a1a1a;
}

.doctor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.doctor-bio {
  font-size: 11px;
  color: #C04A3C;
  font-style: italic;
  max-width: 340px;
  line-height: 1.45;
}


/* ── 10. PÁGINA DE RESULTADO ─────────────────────────────────────
   Banner de atenção, textos de diagnóstico, gauge SVG, lista e CTA.
   Para alterar a cor de destaque, edite #C04A3C nas classes abaixo.
──────────────────────────────────────────────────────────────── */

/* Banner amarelo de atenção */
.result-attention {
  width: 100%;
  background: #FEFAB0;
  color: #3a3a3a;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  line-height: 1.5;
}

/* Bloco de texto agrupado */
.result-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Parágrafo padrão */
.result-text {
  font-size: 14px;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.6;
}

/* Texto crítico em coral */
.result-critical {
  color: #C04A3C;
  font-weight: 600;
}

/* Texto de destaque em coral (diagnóstico) */
.result-highlight {
  font-size: 15px;
  font-weight: 700;
  color: #C04A3C;
  text-align: center;
}

/* Rótulo de seção */
.result-section-label {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Lista de comportamentos */
.result-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
}

.result-list li {
  font-size: 14px;
  color: #C04A3C;
  font-weight: 600;
  text-align: center;
}

.result-list li::before {
  content: '-';
  margin-right: 4px;
}

/* Container do gauge circular */
.result-gauge-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  align-self: center;
}

.result-gauge-svg {
  width: 100%;
  height: 100%;
  transform: none;
}

/* Texto central do gauge */
.result-gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.result-gauge-pct {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.result-gauge-label {
  font-size: 9px;
  color: #666;
  line-height: 1.3;
  margin-top: 4px;
}


/* ── 12. PÁGINA DE OFERTA (VSL / Sales Page) ─────────────────────
   Seções: imagens de prova social, headline, benefícios,
   garantia, depoimentos, rating, Hotmart, footer legal.
   Para trocar a cor do botão verde, edite background em .btn-green.
──────────────────────────────────────────────────────────────── */

/* Imagens de largura total (antes/depois, depoimentos, hotmart) */
.vsl-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Imagens de depoimento com sombra leve */
.vsl-testimonial-img {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Imagem do Hotmart menor e centralizada */
.vsl-hotmart {
  width: auto;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

/* Bloco de conteúdo com gap interno */
.vsl-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vsl-center {
  align-items: center;
  text-align: center;
}

/* Headline principal acima do antes/depois */
.vsl-main-headline {
  font-size: 20px;
  font-weight: 700;
  color: #C04A3C;
  text-align: center;
  line-height: 1.4;
}

/* Heading acima da imagem de oferta */
.vsl-offer-heading {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.5;
}

.vsl-offer-heading strong {
  color: #C04A3C;
}

/* Texto comemorativo */
.vsl-celebrate {
  font-size: 22px;
  font-weight: 700;
  color: #C04A3C;
  text-align: center;
}

/* Caixa verde com texto do plano */
.vsl-plan-box {
  width: 100%;
  background: #DEC0F6;
  border-radius: 8px;
  padding: 14px 20px;
  text-align: center;
}

.vsl-plan-text {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Felicidades */
.vsl-felicidades {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}

/* Parágrafos de suporte */
.vsl-subtext {
  font-size: 14px;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.6;
}

/* Título de seção (bônus, etc.) */
.vsl-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

/* Lista de bônus */
.vsl-bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.vsl-bonus-list li {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.5;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  border-left: 3px solid #C04A3C;
}

/* Caixa de garantia */
.vsl-guarantee {
  width: 100%;
  background: #F0FAF0;
  border: 1.5px solid #4CAF50;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.vsl-guarantee-seal {
  width: 200px;
  height: auto;
  margin: 0 auto;
}

.vsl-guarantee-title {
  font-size: 15px;
  font-weight: 700;
  color: #2E7D32;
}

.vsl-guarantee-text {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.5;
}

/* Rating */
.vsl-rating {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.vsl-rating-score {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.vsl-rating-score span {
  font-size: 18px;
  color: #888;
}

.vsl-stars {
  font-size: 22px;
  color: #F5A623;
  letter-spacing: 2px;
}

.vsl-rating-base {
  font-size: 12px;
  color: #888;
}

/* ── BLOCO DE URGÊNCIA ───────────────────────────────────────────── */
.vsl-urgency-box {
  width: 100%;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.urgency-warning {
  font-size: 13px;
  font-weight: 600;
  color: #FFD166;
  line-height: 1.4;
}

.urgency-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #C04A3C;
  border-radius: 8px;
  padding: 8px 14px;
  min-width: 56px;
}

.timer-unit span {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.timer-unit small {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timer-sep {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.urgency-slots {
  font-size: 13px;
  color: #fff;
}

.urgency-slots strong {
  color: #FFD166;
}

.urgency-expired {
  font-size: 14px;
  font-weight: 700;
  color: #FF6B6B;
}

.urgency-expired-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}


/* Box de preço */
.vsl-price-box {
  width: 100%;
  background: #fff;
  border: 2px solid #E0C8B0;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

/* Bônus ocultos por padrão (6-13) */
.bonus-hidden {
  display: none;
}

/* Botão expandir bônus */
.btn-ver-bonos {
  width: 100%;
  padding: 12px 20px;
  border: 2px dashed #C04A3C;
  border-radius: 10px;
  background: transparent;
  color: #C04A3C;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn-ver-bonos:hover,
.btn-ver-bonos:active {
  background: #FFF0EE;
}


/* Preço riscado e GRATIS dentro dos itens de bônus */
.bonus-price {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}

.bonus-free {
  color: #2E7D32;
  font-weight: 700;
  margin-left: 4px;
}

/* Resumo de valor total */
.vsl-value-summary {
  width: 100%;
  background: #FFF8F8;
  border: 1.5px solid #E8D5D0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vsl-value-row {
  font-size: 13px;
  color: #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.vsl-value-row span {
  color: #888;
  white-space: nowrap;
}

.vsl-value-final {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid #E8D5D0;
}

.vsl-value-final strong {
  color: #C04A3C;
  font-size: 22px;
}


/* Tag "SOLO HOY" */
.vsl-urgency-tag {
  background: #C04A3C;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
  align-self: center;
  letter-spacing: 0.08em;
}

/* Tag de bonus grátis */
.vsl-bonus-tag {
  background: #FFF8E1;
  color: #7B5200;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px dashed #F5A623;
}

.vsl-price-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vsl-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.vsl-price-old {
  font-size: 18px;
  color: #aaa;
}

.vsl-price-arrow {
  font-size: 18px;
  color: #888;
}

.vsl-price-new {
  font-size: 36px;
  font-weight: 700;
  color: #C04A3C;
  line-height: 1;
}

.vsl-price-note {
  font-size: 11px;
  color: #888;
}


/* Cards de depoimento */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.testimonial-stars {
  font-size: 14px;
  color: #F5A623;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  font-style: italic;
}


/* Botão verde (CTA de compra) */
.btn-green {
  background: linear-gradient(to right, #2ECC71, #27AE60);
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn-green:hover,
.btn-green:active {
  opacity: 0.9;
}

/* Footer legal */
.vsl-legal {
  font-size: 10px;
  color: #aaa;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 24px;
}


/* ── 13. TELA DE LOADING ─────────────────────────────────────────
   Exibida após o último slide enquanto as respostas são "analisadas".
   .loading-bar-track: trilha da barra de carregamento.
   .loading-bar-fill: preenchimento animado via JS (width de 0→100%).
   .loading-bar-pct: percentual exibido dentro da barra.
   Para alterar a cor da barra, edite background em .loading-bar-fill.
──────────────────────────────────────────────────────────────── */
.loading-label {
  font-size: 15px;
  color: #555;
  text-align: left;
}

.loading-bar-track {
  width: 100%;
  height: 36px;
  background: #E8D5D0;
  border-radius: 8px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  width: 0%;
  background: #C04A3C;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  transition: width 0.05s linear;
  min-width: 36px;
  /* garante que o % seja sempre visível */
}

.loading-bar-pct {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}


/* ── 13. MULTI-SELECT ────────────────────────────────────────────
   Subtítulo "(elige hasta N)" abaixo do texto da pergunta.
   .option--selected: estado visual de opção selecionada (borda roxa).
   O botão Continuar usa .btn-cta e fica desabilitado até haver seleção.
──────────────────────────────────────────────────────────────── */
.question-subtitle {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: -6px;
}

.option--selected {
  border-color: #9B60C4;
  background: #F3EAFF;
}

.btn-cta:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}


/* ── 11. SLIDE DE PROVA SOCIAL ───────────────────────────────────
   Tela intermediária com heading, foto de grupo, texto e botão Continuar.
   Para alterar o tamanho da imagem, edite max-height em .social-image.
──────────────────────────────────────────────────────────────── */
.social-heading {
  font-size: 18px;
  font-weight: 700;
  color: #C04A3C;
  text-align: center;
  line-height: 1.35;
}

.social-image {
  width: 100%;
  height: auto;
  /* respeita a proporção original da imagem */
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.social-body {
  font-size: 14px;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.6;
}


/* ── 11. MEDIA QUERIES MOBILE ────────────────────────────────────
   Telas com altura até 700px (ex.: iPhone SE, Galaxy S8):
   reduz logo, avatar e espaçamentos para caber na dobra.

   Telas com altura até 600px (telas muito pequenas):
   compacta ainda mais, priorizando as opções de resposta.
──────────────────────────────────────────────────────────────── */

/* Telas médias (altura ≤ 700px — iPhone SE, Galaxy A série) */
@media (max-height: 700px) {
  .logo-icon {
    font-size: 18px;
  }

  .logo-line--sm {
    font-size: 10px;
  }

  .logo-line--md {
    font-size: 11px;
  }

  .logo-line--lg {
    font-size: 15px;
  }

  .question {
    font-size: 17px;
  }

  .social-heading {
    font-size: 16px;
  }

  .social-image {
    max-height: 220px;
    object-fit: contain;
  }

  .option {
    padding: 11px 16px;
    font-size: 14px;
  }

  .option-emoji {
    font-size: 15px;
  }

  .options {
    gap: 8px;
  }

  .doctor-avatar {
    width: 64px;
    height: 64px;
  }

  .doctor-credit {
    font-size: 12px;
  }

  .doctor-bio {
    font-size: 10px;
  }
}

/* Telas pequenas (altura ≤ 600px) */
@media (max-height: 600px) {
  .logo-icon {
    font-size: 16px;
  }

  .logo-line--sm {
    font-size: 9px;
  }

  .logo-line--md {
    font-size: 10px;
  }

  .logo-line--lg {
    font-size: 13px;
  }

  .logo-divider {
    display: none;
  }

  .banner {
    padding: 7px 12px;
    font-size: 11px;
  }

  .question {
    font-size: 15px;
  }

  .social-heading {
    font-size: 14px;
  }

  .social-image {
    max-height: 160px;
    object-fit: contain;
  }

  .social-body {
    font-size: 12px;
  }

  .option {
    padding: 9px 14px;
    font-size: 13px;
    min-height: 40px;
  }

  .option-emoji {
    font-size: 14px;
  }

  .options {
    gap: 6px;
  }

  .doctor-avatar {
    width: 52px;
    height: 52px;
  }

  .doctor-bio {
    display: none;
  }
}


/* ── 14. DOR + IDENTIFICAÇÃO ─────────────────────────────────────
   Bloco emocional na página de oferta que conecta com a dor da usuária.
──────────────────────────────────────────────────────────────── */
.vsl-pain {
  background: #fff3f3;
  border-left: 4px solid #C04A3C;
  border-radius: 12px;
  padding: 20px 18px;
}

.vsl-pain-title {
  font-size: 15px;
  font-weight: 700;
  color: #C04A3C;
  margin-bottom: 12px;
}

.vsl-pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.vsl-pain-list li {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.vsl-pain-close {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  text-align: center;
}


/* ── 15. FAQ ─────────────────────────────────────────────────────
   Perguntas e respostas frequentes na página de oferta.
──────────────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid #e8e0f0;
  padding: 14px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 14px;
  font-weight: 700;
  color: #3a1a5c;
  margin-bottom: 6px;
}

.faq-answer {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
}