/* ==========================================================================
   ALFABETIZAÇÃO TDAH - WHITE & PLAYFUL KIDS THEME (ALTA CONVERSÃO)
   Mobile-First • Lúdico, Limpo, Confiável e Otimizado
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS VARIABLES & DESIGN TOKENS (LIGHT / WHITE THEME)
   -------------------------------------------------------------------------- */
:root {
  /* White & Light Canvas */
  --bg-main: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-warm: #fffbf5;
  --bg-card: #ffffff;
  --bg-card-alt: #f1f5f9;

  /* Playful Educational Accents */
  --orange-primary: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fed7aa;
  --orange-pastel: #fff7ed;

  --green-cta: #16a34a;
  --green-cta-hover: #15803d;
  --green-cta-glow: rgba(22, 163, 74, 0.35);
  --green-light: #22c55e;
  --green-pastel: #f0fdf4;

  --blue-primary: #0284c7;
  --blue-light: #38bdf8;
  --blue-pastel: #f0f9ff;

  --purple-primary: #7c3aed;
  --purple-light: #a855f7;
  --purple-pastel: #faf5ff;

  --amber-primary: #d97706;
  --amber-light: #f59e0b;
  --amber-pastel: #fffbeb;

  /* Text Colors (High Contrast on White) */
  --text-title: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Borders & Shadows */
  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;
  --border-orange: rgba(249, 115, 22, 0.35);
  --border-green: rgba(22, 163, 74, 0.3);
  --border-amber: #f59e0b;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -4px rgba(15, 23, 42, 0.07), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 35px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-glow-green: 0 10px 28px -4px rgba(22, 163, 74, 0.45);
  --shadow-glow-orange: 0 8px 24px -3px rgba(249, 115, 22, 0.35);

  /* Typography */
  --font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Nunito', sans-serif;

  /* Sizing & Transitions */
  --container-max: 680px;
  --container-wide: 880px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-smooth: all 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-main);
  color: var(--text-body);
}

body {
  font-family: var(--font-family);
  line-height: 1.58;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(#e2e8f0 1.1px, transparent 1.1px),
    linear-gradient(180deg, #fffcf7 0%, #ffffff 40%, #f9fbfd 70%, #ffffff 100%);
  background-size: 24px 24px, 100% 100%;
  color: var(--text-body);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 70px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  position: relative;
  z-index: 5;
}

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

/* --------------------------------------------------------------------------
   HANDCRAFTED SECTION DOODLES (DELICADOS E POR SEÇÃO)
   -------------------------------------------------------------------------- */
.section-doodle {
  position: absolute;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  font-weight: 900;
  line-height: 1;
}

.doodle-hero-star {
  top: 16px;
  left: 5%;
  font-size: 22px;
  color: #f59e0b;
  opacity: 0.35;
  transform: rotate(12deg);
}

.doodle-hero-sparkle {
  top: 36px;
  right: 5%;
  font-size: 24px;
  color: #38bdf8;
  opacity: 0.4;
  transform: rotate(-8deg);
}

.doodle-content-abc {
  top: 20px;
  right: 4%;
  font-size: 16px;
  font-weight: 900;
  color: #a855f7;
  opacity: 0.3;
  letter-spacing: 2px;
}

.doodle-testimonials-heart {
  top: 22px;
  left: 4%;
  font-size: 18px;
  color: #ec4899;
  opacity: 0.35;
}

.doodle-bonus-sparkle {
  top: 18px;
  right: 5%;
  font-size: 22px;
  color: #f97316;
  opacity: 0.35;
}

.doodle-author-star {
  top: 20px;
  left: 5%;
  font-size: 20px;
  color: #8b5cf6;
  opacity: 0.32;
}

/* --------------------------------------------------------------------------
   TOP URGENCY NOTIFICATION BAR
   -------------------------------------------------------------------------- */
.top-bar {
  background: linear-gradient(90deg, #ea580c 0%, #f97316 50%, #ea580c 100%);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 8px 12px;
  position: relative;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.25);
}

.top-bar-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
  font-weight: 700;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  animation: pulseDot 1.4s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.top-bar-text {
  font-size: 0.84rem;
  letter-spacing: -0.01em;
}

.top-timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.22);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.timer-icon {
  width: 14px;
  height: 14px;
}

/* --------------------------------------------------------------------------
   SHARED COMPONENTS: BADGES, BUTTONS & HEADINGS
   -------------------------------------------------------------------------- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.pill-playful {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #b45309;
}

.pill-blue {
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  color: #0369a1;
}

.pill-green {
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.pill-orange {
  background: #ffedd5;
  border: 1px solid #fed7aa;
  color: #c2410c;
}

.pill-purple {
  background: #f3e8ff;
  border: 1px solid #e9d5ff;
  color: #6b21a8;
}

.icon-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-pill {
  width: 14px;
  height: 14px;
}

/* Primary CTA Button */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 22px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-glow-green);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: shineCta 3.2s infinite;
}

@keyframes shineCta {
  0% { left: -100%; }
  25% { left: 140%; }
  100% { left: 140%; }
}

.btn-primary:hover, .btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -4px rgba(22, 163, 74, 0.6);
  background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  background: #f1f5f9;
  color: #1e293b;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  border: 1px solid #cbd5e1;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  transform: translateY(-2px);
}

/* Section Header Typography */
.section-header {
  margin-bottom: 26px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-title);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--orange-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   HERO SECTION (MAIOR, MAIS ELEGANTE E EQUILIBRADA)
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 32px;
  padding-bottom: 34px;
  text-align: center;
  position: relative;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 14px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* DESTAQUE COLORIDO APENAS NA PROMESSA DA HEADLINE */
.hero-promise-highlight {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 55%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-weight: 1000;
}

.hero-subhead {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.48;
  margin-bottom: 22px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

/* MOCKUP CONTAINER - SEM BORDAS & COM SOMBRA REALISTA */
.mockup-showcase-wrapper {
  position: relative;
  margin: 16px auto 26px auto;
  max-width: 620px;
}

.mockup-card {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-card:hover {
  transform: translateY(-4px);
}

.mockup-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 768;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.13)) drop-shadow(0 6px 14px rgba(249, 115, 22, 0.08));
  transition: filter 0.35s ease;
}

.mockup-card:hover .mockup-img {
  filter: drop-shadow(0 24px 38px rgba(15, 23, 42, 0.17)) drop-shadow(0 8px 18px rgba(249, 115, 22, 0.12));
}

.mockup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-size: 0.82rem;
  color: #334155;
  font-weight: 700;
  margin-top: 14px;
  box-shadow: var(--shadow-sm);
}

.mockup-badge svg {
  width: 15px;
  height: 15px;
  color: var(--blue-primary);
}

/* Hero CTA Area */
.hero-cta-block {
  margin-top: 14px;
}

.cta-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--orange-dark);
  margin-bottom: 12px;
}

.icon-sparkle {
  width: 16px;
  height: 16px;
  color: var(--orange-primary);
}

.icon-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-primary:hover .icon-arrow {
  transform: translateX(4px);
}

/* PROVA SOCIAL COM AVATARES DE MÃES E FILHOS (SOBREPOSTOS) */
.hero-social-proof {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 6px 16px 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.social-proof-avatars {
  display: flex;
  align-items: center;
}

.social-proof-avatars picture {
  display: inline-flex;
  margin-left: -12px;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.2s ease;
}

.social-proof-avatars picture:first-child {
  margin-left: 0;
  z-index: 3;
}

.social-proof-avatars picture:nth-child(2) {
  z-index: 2;
}

.social-proof-avatars picture:nth-child(3) {
  z-index: 1;
}

.social-proof-avatars picture:hover {
  transform: scale(1.18) translateY(-2px);
  z-index: 10;
}

.proof-avatar {
  width: 36px;
  height: 36px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2.5px solid #ffffff;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.16);
  display: block;
}

.social-proof-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.social-proof-info .stars-row {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.social-proof-info .icon-star {
  width: 13px;
  height: 13px;
}

.social-proof-info p {
  font-size: 0.82rem;
  color: #334155;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   O QUE VOCÊ VAI RECEBER
   -------------------------------------------------------------------------- */
.content-section {
  padding-top: 36px;
  padding-bottom: 38px;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.feature-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon-box svg {
  width: 22px;
  height: 22px;
}

.icon-accent-blue {
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  color: var(--blue-primary);
}

.icon-accent-amber {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #b45309;
}

.icon-accent-emerald {
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: var(--green-cta);
}

.icon-accent-purple {
  background: #f3e8ff;
  border: 1px solid #e9d5ff;
  color: var(--purple-primary);
}

.icon-accent-rose {
  background: #ffe4e6;
  border: 1px solid #fecdd3;
  color: #e11d48;
}

.icon-accent-cyan {
  background: #cffafe;
  border: 1px solid #a5f3fc;
  color: #0891b2;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 4px;
}

.feature-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* Quote Highlight Banner */
.quote-banner {
  margin-top: 24px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border: 2px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.quote-icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange-primary);
  opacity: 0.9;
}

.quote-text {
  font-size: 1rem;
  font-weight: 800;
  color: #9a3412;
  font-style: italic;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   DEPOIMENTOS / PROVA SOCIAL
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding-top: 36px;
  padding-bottom: 38px;
  background: #ffffff;
}

/* --------------------------------------------------------------------------
   DEPOIMENTOS EM CARROSSEL INTERATIVO (4S AUTO-PLAY & CONTROLES)
   -------------------------------------------------------------------------- */
.testimonials-carousel-wrapper {
  position: relative;
  max-width: 440px;
  margin: 24px auto 0 auto;
  padding: 0 4px;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  padding: 2px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 10px 25px -4px rgba(15, 23, 42, 0.08);
  transition: var(--transition-smooth);
}

.testimonial-card-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-cta);
  margin-bottom: 12px;
  padding-left: 2px;
}

.verified-icon {
  width: 16px;
  height: 16px;
  color: var(--green-cta);
}

.testimonial-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  background: #000000;
}

.testimonial-img {
  width: 100%;
  height: auto;
  aspect-ratio: 576 / 1024;
  display: block;
  object-fit: cover;
}

.testimonial-caption {
  padding: 12px 4px 4px 4px;
  font-size: 0.9rem;
}

.testimonial-caption p {
  color: var(--text-title);
  margin-bottom: 3px;
}

.testimonial-caption span {
  color: var(--orange-dark);
  font-style: italic;
  font-weight: 700;
  font-size: 0.88rem;
  display: block;
  line-height: 1.35;
}

/* Botões Voltar / Avançar */
.carousel-nav-btn {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-nav-btn.prev {
  left: -18px;
}

.carousel-nav-btn.next {
  right: -18px;
}

.carousel-nav-btn:hover {
  background: var(--orange-primary);
  color: #ffffff;
  border-color: var(--orange-primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.4);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn svg {
  width: 22px;
  height: 22px;
}

/* Dots Indicadores */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-dot.active {
  width: 28px;
  background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.35);
}

.carousel-dot:hover:not(.active) {
  background: #94a3b8;
}

@media (max-width: 480px) {
  .carousel-nav-btn.prev {
    left: -8px;
  }
  .carousel-nav-btn.next {
    right: -8px;
  }
  .carousel-nav-btn {
    width: 38px;
    height: 38px;
  }
  .carousel-nav-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Proof Stats */
.proof-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  text-align: center;
}

.stat-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 14px 8px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--blue-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.76rem;
  color: var(--text-body);
  line-height: 1.3;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   BÔNUS EXCLUSIVOS (TEXTO CENTRALIZADO, PREÇO CORTADO + HOJE GRÁTIS)
   -------------------------------------------------------------------------- */
.bonuses-section {
  padding-top: 36px;
  padding-bottom: 38px;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.bonuses-list-clean {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}

.bonus-card-clean {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bonus-card-clean:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.bonus-badge-center {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffedd5;
  border: 1.5px solid #fdba74;
  color: #c2410c;
  border-radius: var(--radius-full);
  padding: 8px 22px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  box-shadow: 0 3px 10px rgba(249, 115, 22, 0.15);
}

.bonus-badge-center svg {
  width: 19px;
  height: 19px;
}

.bonus-image-center {
  max-width: 220px;
  margin: 0 auto 16px auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.bonus-img-clean {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.bonus-info-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bonus-title-clean {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-title);
  line-height: 1.3;
}

.bonus-desc-clean {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto;
}

/* Preço Cortado e HOJE GRÁTIS */
.bonus-pricing-centered {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.bonus-strike-price {
  font-size: 0.95rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 700;
}

.bonus-free-badge {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Callout centralizado */
.bonuses-callout-center {
  margin: 24px auto 0 auto;
  max-width: 520px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.callout-text-clean {
  font-size: 0.98rem;
  color: #14532d;
  line-height: 1.4;
  font-weight: 800;
  text-align: center;
  width: 100%;
}

/* --------------------------------------------------------------------------
   OFERTA & TABELA DE PLANOS
   -------------------------------------------------------------------------- */
.pricing-section {
  padding-top: 38px;
  padding-bottom: 42px;
  background: #ffffff;
}

.pricing-cards-container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 22px;
}

/* PLANO 1: KIT ESSENCIAL */
.plan-basic {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: left;
}

.plan-tag {
  display: inline-block;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #475569;
  margin-bottom: 8px;
}

.plan-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-title);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.plan-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 16px;
}

.plan-price-box {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
}

.price-prefix {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-heading);
  line-height: 1;
  margin: 4px 0;
}

.price-main .currency {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-title);
}

.price-main .amount {
  font-size: 2.85rem;
  font-weight: 900;
  color: var(--text-title);
  letter-spacing: -0.03em;
}

.price-main .cents {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-title);
}

.price-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.deliverables-title {
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-title);
  margin-bottom: 10px;
}

.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.4;
}

.deliverables-list .icon-check {
  width: 17px;
  height: 17px;
  color: var(--green-cta);
  margin-top: 2px;
}

.deliverables-list .icon-check-orange {
  width: 18px;
  height: 18px;
  color: var(--orange-primary);
  margin-top: 2px;
}

.btn-plan {
  padding: 16px 20px;
  font-size: 1.02rem;
}

.plan-footer-notes {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.plan-footer-notes svg {
  width: 14px;
  height: 14px;
}

/* PLANO 2: MAIS ESCOLHIDO ⭐ KIT COMPLETO */
.plan-featured {
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 40%, #ffffff 100%);
  border: 3px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 34px 20px 24px 20px;
  box-shadow: 0 16px 36px -4px rgba(245, 158, 11, 0.22), var(--shadow-lg);
  position: relative;
  text-align: left;
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ea580c 0%, #f59e0b 50%, #ea580c 100%);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
  white-space: nowrap;
}

.featured-ribbon svg {
  width: 13px;
  height: 13px;
  fill: #ffffff;
}

.text-featured {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b45309;
}

.icon-star-inline {
  width: 22px;
  height: 22px;
  fill: #f59e0b;
}

.featured-price-box {
  background: #ffffff;
  border: 2px dashed #fed7aa;
}

.featured-price-box .price-main .amount {
  color: var(--green-cta);
}

.featured-price-box .price-main .cents {
  color: var(--green-cta);
}

.price-conditions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.badge-pill-inline {
  font-size: 0.74rem;
  font-weight: 800;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #15803d;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

/* Extras inside Featured Card */
.extras-included-box {
  background: #fff7ed;
  border: 2px dashed #fed7aa;
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 22px;
}

.extras-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 900;
  color: #c2410c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.icon-gift {
  width: 17px;
  height: 17px;
  color: #ea580c;
}

.extras-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.extras-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #7c2d12;
}

.icon-gift-mini {
  width: 15px;
  height: 15px;
  color: #ea580c;
}

.payment-security-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.security-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.security-item svg {
  width: 15px;
  height: 15px;
  color: var(--green-cta);
}

/* --------------------------------------------------------------------------
   GARANTIA (ULTRA COMPACTA, COM SÍMBOLO E SEM BUROCRACIA)
   -------------------------------------------------------------------------- */
.guarantee-section {
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* --------------------------------------------------------------------------
   GARANTIA (ELEGANTE, MAIOR, COM ÍCONE VETORIAL EM DESTAQUE E SEM BUROCRACIA)
   -------------------------------------------------------------------------- */
.guarantee-section-clean {
  padding-top: 50px;
  padding-bottom: 52px;
  background: #fbfdfc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.guarantee-wrapper-clean {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.guarantee-seal-vector {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 6px;
}

.guarantee-badge-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 22px rgba(22, 163, 74, 0.22));
}

.guarantee-pill-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 8px rgba(217, 119, 6, 0.4);
  white-space: nowrap;
}

.guarantee-clean-title {
  font-family: var(--font-heading);
  font-size: 1.68rem;
  font-weight: 900;
  color: var(--text-title);
  line-height: 1.25;
}

.guarantee-clean-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 580px;
}

.guarantee-secure-badges {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--green-cta);
  flex-wrap: wrap;
  justify-content: center;
}

.guarantee-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.guarantee-tag svg {
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   SOBRE A AUTORA (LETÍCIA RIBEIRO)
   -------------------------------------------------------------------------- */
.author-section {
  padding-top: 44px;
  padding-bottom: 48px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.author-section .badge-pill {
  margin-bottom: 18px;
}

.author-card-modern {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
  border: 2px solid #fed7aa;
  border-radius: 24px;
  padding: 30px 22px 26px 22px;
  box-shadow: 0 12px 32px -4px rgba(234, 88, 12, 0.08), 0 4px 14px rgba(0, 0, 0, 0.03);
}

.author-photo-wrapper {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  overflow: hidden;
  border: 3.5px solid #fed7aa;
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.18);
  flex-shrink: 0;
}

.author-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details {
  text-align: center;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-title);
  margin-bottom: 4px;
}

.author-role-tag {
  font-size: 0.9rem;
  font-weight: 800;
  color: #c2410c;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.author-story-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.65;
  text-align: left;
}

.author-story-body p {
  margin: 0;
}

.author-story-body strong {
  color: var(--text-title);
}

.author-story strong {
  color: var(--text-title);
}

/* --------------------------------------------------------------------------
   FAQ (ACCORDION)
   -------------------------------------------------------------------------- */
.faq-section {
  padding-top: 36px;
  padding-bottom: 38px;
  background: #ffffff;
}

.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: #fed7aa;
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-title);
  line-height: 1.35;
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-toggle-icon svg {
  width: 16px;
  height: 16px;
  color: var(--blue-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  background: #e0f2fe;
}

.faq-item.active .faq-toggle-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 18px 18px 18px;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

/* --------------------------------------------------------------------------
   FECHAMENTO / CTA ABAIXO DO FAQ (AVULSO, SEM BORDAS, DIRETO)
   -------------------------------------------------------------------------- */
.closing-section-clean {
  padding-top: 32px;
  padding-bottom: 38px;
  background: transparent;
  border: none;
}

.closing-title-clean {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--text-title);
  line-height: 1.25;
  margin-bottom: 8px;
}

.closing-desc-clean {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto 20px auto;
}

.closing-btn-clean {
  max-width: 440px;
  margin: 0 auto;
}

.trust-footer-line {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.trust-badge-item svg {
  width: 14px;
  height: 14px;
  color: var(--green-cta);
}

.bullet-dot {
  color: #cbd5e1;
}

/* --------------------------------------------------------------------------
   SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 28px 18px 36px 18px;
  border-top: 1px solid var(--border-light);
  background: #ffffff;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-copy {
  margin-bottom: 6px;
}

.footer-disclaimer {
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   STICKY MOBILE CTA BAR
   -------------------------------------------------------------------------- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid #e2e8f0;
  padding: 10px 16px;
  z-index: 100;
  transform: translateY(120%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text-title);
}

.sticky-price {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sticky-price strong {
  color: var(--green-cta);
}

.btn-sticky {
  width: auto;
  padding: 9px 16px;
  font-size: 0.88rem;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   POPUP DE UPSELL / MODAL PERSUASIVO (COMPACTO, DIRETO E SEM SETAS)
   -------------------------------------------------------------------------- */
.upsell-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.upsell-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.upsell-modal-dialog {
  background: #ffffff;
  border: 2px solid #f59e0b;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.45);
  max-width: 480px;
  width: 100%;
  max-height: 94vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(16px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 20px 18px 20px;
  text-align: center;
}

.upsell-modal-overlay.active .upsell-modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: background-color 0.2s ease, color 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-close-btn svg {
  width: 16px;
  height: 16px;
}

.modal-urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.modal-headline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-title);
  margin-bottom: 6px;
}

.modal-headline .text-green {
  color: #16a34a;
}

.modal-intro-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.45;
  margin-bottom: 14px;
}

/* Modal Bundle Box */
.modal-bundle-box {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-bottom: 16px;
  text-align: left;
}

.modal-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.modal-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.35;
}

.modal-checklist li strong {
  font-weight: 800;
  color: #0f172a;
}

.icon-check-green {
  width: 16px;
  height: 16px;
  color: var(--green-cta);
  flex-shrink: 0;
}

.modal-price-tag {
  border-top: 1px dashed #fcd34d;
  padding-top: 10px;
  text-align: center;
}

.modal-old-price {
  font-size: 0.82rem;
  color: #64748b;
  text-decoration: line-through;
  display: block;
  font-weight: 600;
}

.modal-new-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-heading);
  color: var(--green-cta);
  line-height: 1;
  margin: 2px 0;
}

.modal-new-price .currency {
  font-size: 1.15rem;
  font-weight: 800;
}

.modal-new-price .amount {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.modal-new-price .cents {
  font-size: 1.25rem;
  font-weight: 800;
}

.modal-price-desc {
  font-size: 0.78rem;
  font-weight: 800;
  color: #b45309;
  display: block;
}

/* Action Buttons Inside Modal (Sem setas, persuasivos e diretos) */
.modal-buttons-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-upsell-accept-clean {
  width: auto;
  min-width: 260px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px -2px rgba(22, 163, 74, 0.45);
  transition: var(--transition-smooth);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.25;
}

.btn-upsell-accept-clean:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 12px 28px -2px rgba(22, 163, 74, 0.58);
}

.btn-upsell-decline-clean {
  display: inline-block;
  background: transparent !important;
  color: #64748b !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(100, 116, 139, 0.35);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-upsell-decline-clean:hover {
  color: #334155 !important;
}

.modal-secure-footer {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
}

.modal-secure-footer svg {
  width: 13px;
  height: 13px;
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN (DESKTOP / TABLET ENHANCEMENTS)
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .hero-title {
    font-size: 2.35rem;
    line-height: 1.2;
  }

  .hero-subhead {
    font-size: 1.15rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonuses-list-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .bonus-card-clean {
    display: flex;
    flex-direction: column;
  }

  .bonus-info-center {
    margin-top: auto;
  }

  .pricing-cards-container {
    flex-direction: row;
    align-items: stretch;
  }

  .pricing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .pricing-card .plan-price-box {
    margin-bottom: auto;
  }

  .guarantee-wrapper-clean {
    padding: 36px 24px;
  }

  .guarantee-clean-title {
    font-size: 1.95rem;
  }

  .guarantee-seal-vector {
    width: 100px;
    height: 100px;
  }

  .author-card-modern {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 32px;
    padding: 36px 32px;
  }

  .author-details {
    text-align: left;
  }

  .author-photo-wrapper {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

/* --------------------------------------------------------------------------
   PERFORMANCE & RENDERING OPTIMIZATIONS (PAGESPEED 90+)
   -------------------------------------------------------------------------- */
.content-section,
.method-highlight-section,
.testimonials-section,
.bonuses-section-clean,
.pricing-section,
.guarantee-section-clean,
.author-section,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}
