/* ============================================================
   DESPARASITACIÓN KIDS — Design System Materno & Moderno
   ============================================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --pink:        #134B30; /* Primary Dark Green */
  --pink-light:  #799A60; /* Olive Green Accent */
  --pink-pale:   #F0F4EC; /* Very Light Olive Tint */
  --lilac:       #5F824A; /* Muted Green */
  --lilac-light: #D2DCD0; /* Light Moss */
  --lilac-pale:  #E5EBE0; /* Soft Green tint */
  --green:       #5F824A; /* Olive CTA Green */
  --green-dark:  #445E35; /* Dark Olive */
  --green-pale:  #EAEFE3; /* Muted Light Green */
  --cream:       #FAF6EE; /* Warm Cream background */
  --white:       #FFFFFF;
  --text-dark:   #134B30; /* Primary Text Dark Green */
  --text-mid:    #485B4E; /* Mid Text Olive Gray */
  --text-light:  #7A8B7D; /* Muted Light Text Green */
  --shadow-sm:   0 2px 12px rgba(19,75,48,0.06);
  --shadow-md:   0 4px 24px rgba(19,75,48,0.09);
  --shadow-lg:   0 8px 40px rgba(95,130,74,0.12);
  --radius-sm:   12px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --font-title:  'Nunito', sans-serif;
  --font-body:   'Poppins', sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, #FAF6EE 0%, #F5F9F0 50%, #ECEFE7 100%);
  min-height: 100vh;
  color: var(--text-dark);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  touch-action: pan-y;
}

/* ============================================================
   SCREENS & CONTAINERS (PREVENT MOBILE OVERFLOW)
   ============================================================ */
.hidden { display: none; }
.screen {
  display: none;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.screen.anim-done { animation: fadeSlideUp 0.45s cubic-bezier(0.22,1,0.36,1) both; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   LANDING
   ============================================================ */
.landing-screen {
  min-height: 100vh;
  background: linear-gradient(160deg, #FAF6EE 0%, #F5F9F0 50%, #ECEFE7 100%);
}

.landing-hero {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
}

.landing-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--pink) 0%, var(--lilac) 100%);
  color: white;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 10px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 10;
}

.landing-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 18px;
}

.landing-photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center 15%; /* Prevents head cutoff */
  border-radius: 50%;
  border: 5px solid var(--pink-light);
  box-shadow: 0 8px 40px rgba(19,75,48,0.25);
  position: relative;
  z-index: 2;
}

/* Decorative rings around photo */
.landing-photo-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 260px; height: 260px;
  border: 2px dashed var(--pink-light);
  border-radius: 50%;
  transform: translate(-50%, -42%);
  opacity: 0.5;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow { to { transform: translate(-50%, -42%) rotate(360deg); } }

.landing-content {
  max-width: 480px;
  margin: 0 auto;
  padding: 1.5rem 1.4rem 3.5rem;
  text-align: center;
}

.landing-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 0.1rem;
}

.landing-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.landing-hint {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.landing-symptoms {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  text-align: left;
}

.symptom-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #E6EFE4; /* Premium soft light olive green */
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  box-shadow: none;
  border: none;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: transform 0.2s;
}

.symptom-item:hover { transform: translateX(4px); }
.symptom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.symptom-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   HEADER + PROGRESS
   ============================================================ */
.quiz-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(19,75,48,0.08);
  border-bottom: 1.5px solid var(--pink-pale);
}

.btn-back {
  background: var(--pink-pale);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--pink);
  transition: background 0.2s, transform 0.2s;
}
.btn-back:hover { background: var(--pink-light); transform: scale(1.05); }

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon { width: 36px; height: 36px; }

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--pink);
}

.logo-kids {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--lilac);
  letter-spacing: 0.05em;
}

.progress-wrap {
  display: none;
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.6rem 1.2rem 0.65rem;
  border-bottom: 1px solid rgba(19, 75, 48, 0.08);
  position: sticky;
  top: 62px;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(19, 75, 48, 0.04);
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.progress-step-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--pink);
  font-family: var(--font-title);
  letter-spacing: 0.01em;
}

.progress-step-tag svg {
  color: var(--green);
}

.progress-pct-tag {
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 2px 9px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-title);
}

.progress-track {
  height: 8px;
  background: var(--lilac-pale);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #134B30 0%, #5F824A 70%, #799A60 100%);
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 10px rgba(95, 130, 74, 0.3);
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  animation: shine-progress 2.5s infinite;
}

@keyframes shine-progress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-sub-msg {
  font-size: 0.73rem;
  color: var(--green-dark);
  text-align: center;
  margin-top: 0.35rem;
  font-weight: 700;
  font-family: var(--font-title);
  animation: fadeIn 0.3s ease;
}

/* ============================================================
   QUIZ SCREENS
   ============================================================ */
.quiz-screen { min-height: calc(100vh - 70px); }

.question-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 1.4rem 5rem;
}

.question-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  text-align: center;
}

.question-hint {
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.highlight-green { color: var(--green-dark); }

/* ============================================================
   OPTIONS — SINGLE SELECT
   ============================================================ */
.options-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }

.option-single {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  border: 2px solid #F0E8F0;
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  text-align: left;
  transition: all 0.22s ease;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.option-single:hover {
  border-color: var(--pink-light);
  background: var(--pink-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.option-single.selected {
  border-color: var(--pink);
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--lilac-pale) 100%);
  box-shadow: 0 0 0 3px rgba(19,75,48,0.15), var(--shadow-md);
}

.opt-arrow { color: var(--pink); font-size: 1.2rem; font-weight: 700; }
.opt-emoji { font-size: 1.3rem; flex-shrink: 0; }

/* ============================================================
   OPTIONS — CHECKBOXES
   ============================================================ */
.option-check {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  border: 2px solid #F0E8F0;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all 0.22s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.option-check input { display: none; }

.check-box {
  width: 22px; height: 22px;
  min-width: 22px;
  border: 2px solid #D0C0D0;
  border-radius: 7px;
  background: white;
  margin-left: auto;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.option-check.checked {
  border-color: var(--pink);
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--lilac-pale) 100%);
  box-shadow: 0 0 0 3px rgba(19,75,48,0.12);
}

.option-check.checked .check-box {
  background: var(--pink);
  border-color: var(--pink);
}

.option-check.checked .check-box::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.option-check:hover:not(.checked) {
  border-color: var(--pink-light);
  transform: translateY(-1px);
}

.opt-icon { font-size: 1.3rem; flex-shrink: 0; }
.opt-text { flex: 1; }

/* ============================================================
   OPTIONS — GRID
   ============================================================ */
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.option-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  background: white;
  border: 2px solid #F0E8F0;
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  line-height: 1.3;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.option-grid-item input { display: none; }

.grid-dot {
  width: 16px; height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s;
}

.option-grid-item.checked {
  border-color: var(--pink);
  background: var(--pink-pale);
}

.option-grid-item.checked .grid-dot {
  background: var(--pink);
  border-color: var(--pink);
}

/* --- SINTOMAS (DESTAQUE EM VERMELHO ALERTA) --- */
.symptom-grid .option-grid-item.checked,
.option-grid-item[data-q="5"].checked {
  border-color: #D9381E;
  background: #FFF5F5;
}

.symptom-grid .option-grid-item.checked .grid-dot,
.option-grid-item[data-q="5"].checked .grid-dot {
  background: #D9381E;
  border-color: #D9381E;
}

.option-grid-item:hover:not(.checked) {
  border-color: var(--pink-light);
  transform: scale(1.02);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--pink) 0%, var(--lilac) 100%);
  color: white;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px rgba(19,75,48,0.35);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(19,75,48,0.45);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary:disabled {
  background: linear-gradient(135deg, #D0C0C8 0%, #C8C0D8 100%);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-continue { margin-top: 1rem; }

/* Bottom button on landing (in-flow) */
#btn-start {
  margin-top: 2rem;
  box-shadow: 0 8px 32px rgba(19, 75, 48, 0.35);
  animation: pulseGlow 2.2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(19, 75, 48, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(19, 75, 48, 0.55);
  }
}

/* ============================================================
   GENDER BUTTONS
   ============================================================ */
.gender-opts {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.gender-btn {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 1.1rem 1.4rem;
  gap: 1.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  width: 100%;
}

.gender-icon {
  font-size: 2rem;
  width: 52px; height: 52px;
  min-width: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.gender-icon.boy { background: #E8F4FF; }
.gender-icon.girl { background: var(--pink-pale); }
.gender-icon.both { background: #F4EFE6; font-size: 1.5rem; }

/* ============================================================
   NEWS PORTAL CARD
   ============================================================ */
.news-alert-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #FFF0F0;
  border: 1.5px solid #FFCCCC;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.2rem;
  color: #C0392B;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.4;
  box-shadow: var(--shadow-sm);
}

.portal-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid #E8E2E8;
  margin-bottom: 1.5rem;
}

.portal-header {
  background: #A91D22;
  padding: 0.8rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portal-logo {
  font-family: var(--font-title);
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.portal-category {
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.portal-body {
  padding: 1.2rem;
}

.portal-date {
  font-size: 0.68rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.portal-headline {
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.portal-lead {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: 500;
}

.portal-share {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.share-btn {
  font-size: 0.68rem;
  font-weight: 700;
  color: white;
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
}
.share-btn.fb { background: #3B5998; }
.share-btn.tw { background: #1DA1F2; }
.share-btn.pin { background: #BD081C; }

.portal-video {
  position: relative;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.2rem;
  line-height: 0;
}

.portal-video-img {
  width: 100%;
  height: auto;
}

.video-play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #A91D22;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.play-btn-circle:hover { transform: scale(1.1); }

.portal-footer-text {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%) !important;
  box-shadow: 0 6px 24px rgba(109,191,138,0.35) !important;
}
.btn-green:hover {
  box-shadow: 0 10px 32px rgba(109,191,138,0.45) !important;
}

/* ============================================================
   LOADING SCREEN (Procesando respuestas)
   ============================================================ */
.loading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 2rem 1.4rem;
}

.loading-logo {
  margin-bottom: 3.5rem;
  transform: scale(1.15);
}

.loading-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2.2rem;
}

.loading-bar-container {
  width: 100%;
  max-width: 320px;
  height: 20px;
  background: var(--pink-pale);
  border-radius: 99px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
  margin-bottom: 1.2rem;
}

.loading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 99px;
  transition: width 0.08s linear;
}

.loading-pct {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-dark);
  z-index: 2;
}

.loading-status-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  min-height: 1.5rem;
}

/* ============================================================
   RESULTS SECTIONS (Parasite and Treatment)
   ============================================================ */
.result-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  text-align: center;
  border: 1.5px solid var(--pink-pale);
}

.parasite-section {
  border-color: #F9E5BC;
  background: #FFFDF9;
}

.section-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.parasite-badge {
  display: inline-block;
  background: #1A1A1A;
  color: white;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.parasite-img-container, .treatment-img-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.5rem;
  line-height: 0;
}

.parasite-img, .treatment-img {
  width: 100%;
  height: auto;
  display: block;
}

.treatment-section {
  border-color: #C0E8D0;
  background: #F9FDFB;
}

.treatment-headline {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 1.2rem;
  text-align: center;
}

.btn-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 800;
  color: white !important;
  border-radius: var(--radius-xl);
  padding: 1.2rem 1.5rem;
  margin-top: 1.2rem;
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================
   OFFER / BONUS SCREEN
   ============================================================ */
.offer-wrap {
  text-align: center;
  padding: 1.5rem 1rem;
}

.offer-headline {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.offer-mockup-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  line-height: 0;
}

.bonus-cards-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  line-height: 0;
}

.offer-mockup-img, .bonus-cards-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.btn-checkout {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  width: 100%;
  max-width: 340px;
  margin: 0.5rem auto 2rem auto;
  display: block;
  box-sizing: border-box;
}

.offer-gifts-section {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--pink-pale);
  padding: 1.5rem 1.2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.gifts-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.pills-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem 0;
}

.pill-item {
  background: #E8F8F0;
  border: 1.5px solid #C0E8D0;
  color: #1E603E;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.8rem 1rem;
  border-radius: 99px;
  text-align: left;
  line-height: 1.4;
  box-shadow: var(--shadow-xs);
}

.extra-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}

.slashed-prices-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
  margin-bottom: 1rem;
}

.slashed-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.slashed-item .icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.price-slashed {
  color: #E8688A;
  font-weight: 800;
  flex-shrink: 0;
}

.price-slashed .strike {
  text-decoration: line-through;
  opacity: 0.85;
}

.item-desc {
  color: var(--text-dark);
}

/* ============================================================
   URGENCY / SPOTS SCREEN
   ============================================================ */
.urgency-wrap {
  text-align: center;
  padding: 1.5rem 1rem;
}

.urgency-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 900;
  color: #1A1A1A;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.urgency-subtitle {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: #D32F2F;
  margin-bottom: 1.5rem;
}

.urgency-alert-box {
  background-color: #FFF0F0;
  border: 1.5px solid #FFCCCC;
  border-radius: var(--radius-md);
  padding: 1rem;
  color: #C0392B;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}

.zoom-call-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid #FF5A5A;
  margin-bottom: 1.5rem;
  line-height: 0;
}

.zoom-call-img {
  width: 100%;
  height: auto;
  display: block;
}

.urgency-banner-red {
  color: #D32F2F;
  background: transparent;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 900;
  padding: 0.2rem 1rem;
  border-radius: 0;
  margin: 1.5rem auto;
  max-width: 100%;
  box-shadow: none;
  letter-spacing: 0.01em;
  pointer-events: none;
  text-align: center;
}

/* ============================================================
   VSL SCREEN (TELA VSL FINAL)
   ============================================================ */
.vsl-wrap {
  text-align: center;
  padding: 1.5rem 1rem;
}

.vsl-ready-badge {
  background: #EAEFE3;
  border: 1.5px solid #C0E8D0;
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin-bottom: 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.vsl-ready-badge h3 {
  font-family: var(--font-title);
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.vsl-ready-badge p {
  color: var(--pink-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.vsl-video-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--pink-light);
  background: black;
  margin-bottom: 2rem;
  aspect-ratio: 9 / 16;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.vturb-vsl-container {
  width: 100%;
  height: 100%;
}

.vsl-video-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 1rem;
  background: #111;
  padding: 1.5rem;
}

.vsl-video-placeholder p {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.8;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 0.5rem;
}

.cmp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cmp-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 0.9rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.cmp-col.bad { background: #FFDEDE; color: #8B2020; }
.cmp-col.good { background: var(--green-pale); color: var(--green-dark); }

.cmp-icon-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.cmp-icon-badge.red { background: #E74C3C; color: white; }
.cmp-icon-badge.green { background: var(--green); color: white; }

.cmp-row { display: grid; grid-template-columns: 1fr 1fr; }

.cmp-cell {
  padding: 0.7rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.cmp-cell.bad { background: #FFDEDE; color: #8B2020; border-top: 1px solid #FFCCCC; }
.cmp-cell.good { background: var(--green-pale); color: var(--green-dark); border-top: 1px solid #C0E8D0; }

/* ============================================================
   DOCTOR CARD
   ============================================================ */
.doctor-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--pink-pale);
  margin-bottom: 1.5rem;
}

.doctor-imgs {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.doctor-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: center 10%; /* Prevents head cutoff */
  border-radius: var(--radius-md);
}

.doctor-badge {
  position: absolute;
  bottom: -10px; right: 10px;
  background: white;
  border: 2px solid var(--pink-pale);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.8rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}

.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.doctor-univ-info {
  font-size: 0.8rem;
  color: var(--text-mid);
  text-align: center;
  margin-top: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  border-top: 1px dashed rgba(19, 75, 48, 0.25);
  padding-top: 1rem;
}

.tag {
  background: var(--pink-pale);
  color: var(--pink);
  border-radius: 99px;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================================
   BELIEF CARD
   ============================================================ */
.belief-card-wrapper {
  width: 100%;
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--green-pale);
  line-height: 0;
}

.belief-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-audio { margin-bottom: 1.2rem; }

.audio-card {
  background: #1A1A2E;
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-md);
}

.audio-avatar img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-light);
}

.audio-info { flex: 1; }
.audio-name { font-size: 0.8rem; font-weight: 700; color: var(--pink-light); display: block; margin-bottom: 0.3rem; }

.audio-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 0.2rem;
}

.audio-bars span {
  display: inline-block;
  width: 3px;
  background: var(--green);
  border-radius: 2px;
}

.audio-bars.playing span {
  animation: soundwave 1.2s ease-in-out infinite;
}

.audio-bars span:nth-child(1)  { height: 8px;  animation-delay: 0s; }
.audio-bars span:nth-child(2)  { height: 16px; animation-delay: 0.1s; }
.audio-bars span:nth-child(3)  { height: 10px; animation-delay: 0.2s; }
.audio-bars span:nth-child(4)  { height: 20px; animation-delay: 0.3s; }
.audio-bars span:nth-child(5)  { height: 12px; animation-delay: 0.4s; }
.audio-bars span:nth-child(6)  { height: 18px; animation-delay: 0.5s; }
.audio-bars span:nth-child(7)  { height: 8px;  animation-delay: 0.6s; }
.audio-bars span:nth-child(8)  { height: 22px; animation-delay: 0.7s; }
.audio-bars span:nth-child(9)  { height: 14px; animation-delay: 0.8s; }
.audio-bars span:nth-child(10) { height: 10px; animation-delay: 0.9s; }
.audio-bars span:nth-child(11) { height: 18px; animation-delay: 1.0s; }
.audio-bars span:nth-child(12) { height: 6px;  animation-delay: 1.1s; }

@keyframes soundwave {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.audio-time { font-size: 0.7rem; color: #aaa; }
.audio-play {
  background: var(--green);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonials-list { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }

.testimonial-card {
  background: #1A1A2E;
  border-radius: var(--radius-md);
  padding: 1rem;
  color: #DDD;
  font-size: 0.82rem;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}

.test-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

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

.test-header strong { color: white; font-size: 0.82rem; display: block; }
.test-time { font-size: 0.7rem; color: #888; }
.test-likes { display: block; margin-top: 0.5rem; color: #aaa; font-size: 0.75rem; }

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-icon { font-size: 3rem; text-align: center; margin-bottom: 0.5rem; }

.lead-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}

.form-input {
  padding: 0.9rem 1.1rem;
  border: 2px solid #F0E8F0;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(19,75,48,0.15);
}

.form-input::placeholder { color: var(--text-light); }

/* ============================================================
   RESULTADO
   ============================================================ */
.result-wrap { padding-bottom: 4rem; }

.result-badge {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(109,191,138,0.35);
}

.result-alert {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #FFF0F0;
  border: 2px solid #FFCCCC;
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
  color: #C0392B;
  font-weight: 700;
  font-size: 0.88rem;
}

.result-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #F0E8F0;
  text-align: center;
}

.stat-ring { width: 80px; height: 80px; }

.stat-card p {
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.result-cta-text {
  text-align: center;
  margin-bottom: 1.5rem;
}

.result-cta-text h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.result-cta-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ============================================================
   VSL CONTAINER
   ============================================================ */
.vsl-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0D0D1A;
  border: 3px solid var(--pink-light);
}

.vsl-placeholder {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem;
  text-align: center;
}

.vsl-icon { font-size: 3.5rem; }

.vsl-label {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink-light);
}

.vsl-hint {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 540px) {
  .landing-content { padding-left: 2rem; padding-right: 2rem; }
  .question-title { font-size: 1.5rem; }
}

@media (max-width: 380px) {
  .options-grid { grid-template-columns: 1fr; }
  .result-stats { grid-template-columns: 1fr; }
  .landing-title { font-size: 1.7rem; }
}

/* ============================================================
   PULSE ANIMATION FOR RESULT
   ============================================================ */
@keyframes pulse-ring {
  0% { stroke-opacity: 1; }
  50% { stroke-opacity: 0.7; }
  100% { stroke-opacity: 1; }
}

.stat-ring circle:last-child { animation: pulse-ring 2s ease-in-out infinite; }
