/* ==========================================================================
   DESIGN SYSTEM & VARIABLES — KIT ALFABETIZAÇÃO & CALIGRAFIA BNCC
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-glow: rgba(37, 99, 235, 0.25);
  
  --secondary: #f59e0b;
  --secondary-dark: #d97706;
  --secondary-light: #fbbf24;

  --accent-green: #10b981;
  --accent-green-dark: #059669;
  --accent-green-glow: rgba(16, 185, 129, 0.25);

  --accent-red: #ef4444;
  --accent-red-dark: #dc2626;
  --accent-red-light: #fee2e2;

  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;

  /* Neutrals & Surfaces */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-dark-surface: #1e293b;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --border-focus: #93c5fd;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-glow-green: 0 0 35px rgba(16, 185, 129, 0.35);
  --shadow-glow-primary: 0 0 35px rgba(37, 99, 235, 0.3);

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Fredoka', 'Outfit', cursive, sans-serif;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 860px;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, #1e40af, #2563eb, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-gold {
  background: linear-gradient(135deg, #d97706, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.highlight-green {
  color: var(--accent-green-dark);
  font-weight: 700;
}
.highlight-red {
  color: var(--accent-red-dark);
  font-weight: 700;
}

/* ==========================================================================
   1. TOP URGENCY MARQUEE BAR
   ========================================================================== */
.top-urgency-bar {
  background: linear-gradient(90deg, #dc2626, #b91c1c, #991b1b);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.6rem 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(185, 28, 28, 0.3);
  letter-spacing: 0.3px;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marqueeAnimation 28s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
}

.marquee-item span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.marquee-separator {
  opacity: 0.6;
}

@keyframes marqueeAnimation {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  background: radial-gradient(circle at 50% 0%, #eff6ff 0%, #f8fafc 70%);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(248, 250, 252, 0) 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* BNCC Badge */
.bncc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  color: #92400e;
  font-size: 0.875rem;
  font-weight: 800;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Headline */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  max-width: 960px;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-headline .highlight {
  color: #2563eb;
  position: relative;
  display: inline-block;
}

.hero-headline .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(254, 240, 138, 0.7);
  z-index: -1;
  border-radius: 4px;
}

/* Mockup Container */
.hero-mockup-wrapper {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 2.5rem;
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-image-container {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl), 0 0 50px rgba(37, 99, 235, 0.12);
  border: 2px solid #e2e8f0;
  background: #ffffff;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.mockup-image-container:hover {
  transform: translateY(-4px) scale(1.008);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2), 0 0 60px rgba(37, 99, 235, 0.2);
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* Subheadline */
.hero-subheadline-box {
  max-width: 820px;
  margin-bottom: 2.25rem;
}

.hero-subheadline {
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.hero-subheadline-strong {
  color: #0f172a;
  font-weight: 700;
}

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
}

.hero-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
  box-shadow: var(--shadow-sm);
}

/* Button & Trust */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.625rem 1.35rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3), 0 0 0 2px rgba(22, 163, 74, 0.12);
  transition: all var(--transition-normal);
  cursor: pointer;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  max-width: 90%;
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #15803d, #166534);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.4), 0 0 0 3px rgba(22, 163, 74, 0.18);
  color: #ffffff;
}

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

.btn-cta-primary .btn-icon {
  font-size: 1.15em;
  animation: pulseIcon 1.5s infinite ease-in-out;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}

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

/* Key Stats Bar */
.stats-bar-section {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.25rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 0.75rem;
  border-right: 1px solid var(--border-color);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}

/* ==========================================================================
   3. SEÇÃO "VEJA POR DENTRO"
   ========================================================================== */
.look-inside-section {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.6;
}

/* ==========================================================================
   VEJA POR DENTRO — INFOGRÁFICO & ESTRUTURA DO MATERIAL
   ========================================================================== */
.look-inside-image-wrapper {
  max-width: 680px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border: 2px solid #e2e8f0;
  background: #ffffff;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.look-inside-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.18);
  border-color: #93c5fd;
}

.look-inside-img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-wrapper {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 1rem;
}

.carousel-counter-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.carousel-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 0.875rem;
  font-weight: 800;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.1);
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
  width: 100%;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  border: 2px solid #e2e8f0;
}

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

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: calc(50% + 16px);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #1e293b;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-normal);
  line-height: 1;
  user-select: none;
}

.carousel-arrow:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

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

.carousel-arrow.prev {
  left: -20px;
}

.carousel-arrow.next {
  right: -20px;
}

@media (max-width: 680px) {
  .carousel-arrow.prev {
    left: 4px;
  }
  .carousel-arrow.next {
    right: 4px;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

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

.carousel-dot:hover {
  background: #94a3b8;
}

.carousel-dot.active {
  width: 28px;
  background: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

/* Sheet Worksheet Simulator Card */
.worksheet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.worksheet-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.worksheet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: #93c5fd;
}

.worksheet-badge-topic {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.worksheet-header-mock {
  border-bottom: 2px dashed #cbd5e1;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.worksheet-header-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.worksheet-header-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.worksheet-body-preview {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 1rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.syllable-boxes {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.syllable-box {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 2px solid #2563eb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #1d4ed8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cursive-guide-lines {
  background: #ffffff;
  border-radius: 4px;
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
}

.cursive-line {
  height: 24px;
  border-bottom: 1px solid #93c5fd;
  border-top: 1px dashed #cbd5e1;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 1.1rem;
  color: #334155;
}

.worksheet-footer-info {
  margin-top: auto;
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.4;
}

.worksheet-footer-info strong {
  color: #0f172a;
}

/* ==========================================================================
   4. ESSE MATERIAL É PRA VOCÊ + ANTES E DEPOIS
   ========================================================================== */
.for-you-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 50%, #f8fafc 100%);
  position: relative;
}

/* Verdade Incômoda Callout */
.truth-callout {
  background: linear-gradient(135deg, #fff1f2, #ffe4e6);
  border-left: 6px solid #e11d48;
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  max-width: 860px;
  margin: 0 auto 3.5rem;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.1);
}

.truth-callout-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #be123c;
  margin-bottom: 0.75rem;
}

.truth-callout-text {
  font-size: 1.125rem;
  color: #4c0519;
  line-height: 1.6;
}

.truth-callout-text strong {
  color: #9f1239;
}

/* Target Audience Dual Grid */
.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.target-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.target-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-light);
}

.target-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.target-icon-mom {
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
}

.target-icon-teacher {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.target-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.target-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
}

.pain-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.5;
}

.pain-emoji {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Solution Bridge Banner */
.solution-bridge-box {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4.5rem;
  box-shadow: var(--shadow-xl);
}

.solution-bridge-text {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 600;
}

.solution-bridge-highlight {
  color: #fde047;
  font-weight: 800;
}

/* Comparison Table (A Diferença é Brutal) */
.comparison-section-inner {
  margin-top: 2rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 920px;
  margin: 0 auto 3rem;
}

.comparison-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.comparison-bad {
  background: #fff1f2;
  border: 2px solid #fecdd3;
}

.comparison-good {
  background: #f0fdf4;
  border: 2px solid #86efac;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.15);
}

.comparison-badge-rec {
  position: absolute;
  top: -14px;
  right: 20px;
  background: #16a34a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.4);
}

.comparison-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-bad .comparison-card-title {
  color: #9f1239;
}

.comparison-good .comparison-card-title {
  color: #166534;
}

.comparison-row {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.comparison-row-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.comparison-row-value {
  font-size: 1.05rem;
  font-weight: 700;
}

.comparison-bad .comparison-row-value {
  color: #be123c;
}

.comparison-good .comparison-row-value {
  color: #15803d;
}

/* 30-Day Timeline */
.timeline-section-inner {
  margin: 4.5rem 0 3rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.timeline-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline-tag {
  display: inline-block;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 0.875rem;
  align-self: flex-start;
}

.timeline-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.timeline-card-desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

/* ==========================================================================
   5. SEÇÃO DE DEPOIMENTOS
   ========================================================================== */
.testimonials-section {
  padding: 5.5rem 0;
  background: radial-gradient(circle at 50% 30%, #eff6ff 0%, #ffffff 75%);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.testimonials-ambient-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
  width: 620px;
  height: 420px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, rgba(245, 158, 11, 0.08) 50%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { transform: translate(-50%, -25%) scale(0.92); opacity: 0.6; }
  100% { transform: translate(-50%, -25%) scale(1.15); opacity: 1; }
}

.testimonials-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  color: #92400e;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
  animation: floatBadge 3.5s ease-in-out infinite;
  letter-spacing: 0.4px;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.star-burst {
  font-size: 0.95rem;
  display: inline-block;
  animation: starRotate 4s ease-in-out infinite;
}

@keyframes starRotate {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(15deg); }
}

.testimonial-carousel-wrapper {
  max-width: 440px;
  position: relative;
  z-index: 2;
}

.testimonial-viewport {
  position: relative;
  border: 2px solid #bfdbfe;
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.18), 0 0 25px rgba(59, 130, 246, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-viewport:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.25), 0 0 35px rgba(245, 158, 11, 0.18);
  border-color: #60a5fa;
}

/* Story-style Progress Bar */
.carousel-progress-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(226, 232, 240, 0.85);
  z-index: 10;
  overflow: hidden;
}

.carousel-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2563eb, #10b981);
  border-radius: 2px;
}

.testimonial-slide {
  background: #ffffff;
  opacity: 0.3;
  transform: scale(0.94);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, filter 0.45s ease;
  filter: blur(0.5px);
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}

.testimonial-slide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: calc(var(--radius-xl) - 2px);
  transition: transform 0.4s ease;
}

.testimonial-slide.active:hover .testimonial-slide-img {
  transform: scale(1.015);
}

.verified-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  margin-right: 5px;
  animation: pulseDot 1.4s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  50% { transform: scale(1.25); opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.animated-dots .carousel-dot.active {
  animation: dotExpand 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.55);
}

@keyframes dotExpand {
  0% { transform: scale(0.7); }
  60% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.author-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.verified-icon {
  color: #16a34a;
  font-size: 0.875rem;
}

.author-location {
  font-size: 0.8125rem;
  color: #64748b;
}

/* ==========================================================================
   6. SEÇÃO DE OFERTA & PREÇOS (#oferta)
   ========================================================================== */
.offer-section {
  padding: 5.5rem 0;
  background: radial-gradient(circle at 50% 10%, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.offer-header-box {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}

/* Countdown Widget */
.countdown-widget {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  margin: 0 auto 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-title {
  color: #f87171;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timer-boxes {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.timer-box {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  min-width: 70px;
  text-align: center;
}

.timer-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fde047;
  line-height: 1;
}

.timer-label {
  font-size: 0.6875rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
}

.timer-colon {
  font-size: 1.75rem;
  font-weight: 800;
  color: #64748b;
}

.live-buyers-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.live-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.scarcity-bar-wrap {
  width: 100%;
  max-width: 480px;
  margin-top: 0.5rem;
}

.scarcity-bar-bg {
  height: 10px;
  background: #334155;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.scarcity-bar-fill {
  height: 100%;
  width: 90%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: var(--radius-full);
}

.scarcity-bar-text {
  font-size: 0.8125rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto 4.5rem;
  align-items: center;
}

.pricing-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-2xl);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 3px solid #3b82f6;
  box-shadow: 0 0 45px rgba(59, 130, 246, 0.35);
  transform: scale(1.03);
}

.pricing-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.plan-tag {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
}

.plan-sub {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.plan-mockup-wrap {
  width: 100%;
  max-width: 440px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.plan-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-normal);
}

.plan-mockup-wrap:hover .plan-mockup-img {
  transform: scale(1.02);
}

.price-box {
  text-align: center;
  margin-bottom: 1.75rem;
}

.price-old {
  font-size: 0.9375rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.price-main {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  color: #15803d;
  line-height: 1.1;
  margin: 0.25rem 0;
}

.price-condition {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 600;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.45;
}

.check-icon {
  color: #16a34a;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9375rem;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.btn-checkout-primary {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}

.btn-checkout-primary:hover {
  background: linear-gradient(135deg, #15803d, #166534);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.45);
  color: #ffffff;
}

.btn-checkout-secondary {
  background: #f1f5f9;
  border: 2px solid #cbd5e1;
  color: #1e293b;
}

.btn-checkout-secondary:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #0f172a;
}

.plan-footer-security {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

/* Bonus Grid */
.bonuses-section-wrap {
  margin: 3.5rem 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.bonus-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bonus-number-badge {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 15px;
  right: 20px;
}

.bonus-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.bonus-price-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-old-price {
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.bonus-free-pill {
  background: #16a34a;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Guarantee Section */
.guarantee-box {
  background: #ffffff;
  color: #0f172a;
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.5rem;
  max-width: 860px;
  margin: 4.5rem auto 3rem;
  box-shadow: var(--shadow-2xl);
  display: flex;
  align-items: center;
  gap: 2.25rem;
  border: 2px solid #e2e8f0;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.guarantee-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
  border-color: #93c5fd;
}

.guarantee-seal-wrapper {
  flex-shrink: 0;
  width: 140px;
  max-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-seal-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.guarantee-box:hover .guarantee-seal-img {
  transform: scale(1.06) rotate(-2deg);
}

.guarantee-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.guarantee-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

/* ==========================================================================
   7. FAQ ACORDEÃO
   ========================================================================== */
.faq-section {
  padding: 5rem 0;
  background: #ffffff;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f8fafc;
  transition: border-color var(--transition-normal);
}

.faq-item.active {
  border-color: #93c5fd;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.faq-question-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.faq-arrow-icon {
  font-size: 1rem;
  color: #64748b;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-arrow-icon {
  transform: rotate(180deg);
  color: #2563eb;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

/* ==========================================================================
   8. FINAL CLOSING CTA & FOOTER
   ========================================================================== */
.closing-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e40af, #1e3a8a);
  color: #ffffff;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 1.25rem;
}

.closing-subheadline {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.footer-section {
  background: #0f172a;
  color: #94a3b8;
  padding: 3rem 0;
  font-size: 0.875rem;
  border-top: 1px solid #1e293b;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  max-width: 760px;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
}

/* ==========================================================================
   9. INTERACTIVE ELEMENTS (TOASTS, STICKY BAR)
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-2xl);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  z-index: 999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 360px;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.8125rem;
  color: #1e293b;
  line-height: 1.35;
}

.toast-time {
  font-size: 0.6875rem;
  color: #64748b;
  margin-top: 2px;
}

/* Floating Mobile CTA */
.floating-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.floating-mobile-bar.visible {
  transform: translateY(0);
}

.floating-mobile-price {
  color: #ffffff;
  font-size: 0.8125rem;
}

.floating-mobile-price strong {
  display: block;
  font-size: 1.15rem;
  color: #86efac;
}

.floating-mobile-btn {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.35);
}

/* ==========================================================================
   AGE GROUP CARDS (1, 2 E 3 ANOS)
   ========================================================================== */
.age-card-highlight {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.age-card-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.age-badge-1 {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}

.age-badge-2 {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

.age-badge-3 {
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
  color: #be185d;
}

.age-card-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.age-card-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.age-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.age-topic-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}

.check-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   BENEFITS SECTION (APRENDER BRINCANDO)
   ========================================================================== */
.benefits-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 50%, #ffffff 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.benefit-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: #86efac;
}

.benefit-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.benefit-icon-1 { background: #eff6ff; border: 1px solid #bfdbfe; }
.benefit-icon-2 { background: #fdf2f8; border: 1px solid #fbcfe8; }
.benefit-icon-3 { background: #fefce8; border: 1px solid #fef08a; }
.benefit-icon-4 { background: #f0fdf4; border: 1px solid #bbf7d0; }
.benefit-icon-5 { background: #faf5ff; border: 1px solid #e9d5ff; }
.benefit-icon-6 { background: #fff7ed; border: 1px solid #ffedd5; }

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.benefit-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.fun-highlight-banner {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

.fun-icon {
  font-size: 1.75rem;
}

.fun-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

/* ==========================================================================
   WHAT YOU GET SECTION
   ========================================================================== */
.what-you-get-section {
  padding: 5rem 0;
  background: #ffffff;
}

.what-you-get-box {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 2px solid #cbd5e1;
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-xl);
  max-width: 960px;
  margin: 0 auto;
}

.what-header {
  text-align: center;
  margin-bottom: 3rem;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.checklist-item:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
}

.check-box-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.check-desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

/* ==========================================================================
   ESSE MATERIAL É PRA VOCÊ + ANTES E DEPOIS
   ========================================================================== */
.for-you-and-comparison-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.for-you-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.for-you-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.for-you-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: var(--shadow-xl);
}

.for-you-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
}

.for-you-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.for-you-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
}

/* Before and After Comparison Block */
.before-after-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 2px solid #e2e8f0;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-xl);
}

.before-after-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.before-after-tag {
  display: inline-block;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.before-after-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.comparison-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.comparison-card.card-before {
  background: #fff5f5;
  border: 2px solid #fecaca;
}

.comparison-card.card-after {
  background: #f0fdf4;
  border: 2px solid #86efac;
  box-shadow: 0 10px 30px -5px rgba(16, 185, 129, 0.2);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px dashed rgba(0, 0, 0, 0.08);
}

.comparison-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  flex-shrink: 0;
}

.card-before .comparison-badge-icon {
  background: #ef4444;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.card-after .comparison-badge-icon {
  background: #10b981;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.comparison-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
}

.card-before .comparison-title {
  color: #991b1b;
}

.card-after .comparison-title {
  color: #166534;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  line-height: 1.5;
}

.card-before .comparison-item {
  color: #7f1d1d;
}

.card-after .comparison-item {
  color: #14532d;
  font-weight: 600;
}

.comparison-item-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Single Card Layout */
.single-card-grid {
  display: flex !important;
  justify-content: center !important;
  grid-template-columns: none !important;
}

/* ==========================================================================
   10. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2.5rem 0 3.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.25rem;
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .age-topics-grid {
    grid-template-columns: 1fr;
  }

  .age-card-highlight {
    padding: 1.5rem 1.25rem;
  }

  .for-you-grid {
    grid-template-columns: 1fr;
  }

  .before-after-box {
    padding: 1.75rem 1.25rem;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-card {
    padding: 1.5rem 1.25rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .what-you-get-box {
    padding: 2rem 1.25rem;
  }

  .fun-highlight-banner {
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    flex-direction: column;
    text-align: center;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }

  .guarantee-seal-wrapper {
    width: 110px;
    max-width: 110px;
  }

  .toast-notification {
    left: 16px;
    right: 16px;
    bottom: 80px;
    max-width: none;
  }
}

@media (min-width: 769px) {
  .floating-mobile-bar {
    display: none !important;
  }
}

