@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/fonts/fraunces-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(assets/fonts/fraunces-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(assets/fonts/fraunces-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Fontes carregadas via <link> no HTML (mais rápido que @import) */

/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM (LIGHT)
   ========================================== */
:root {
  --font-title: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Color Palette (estética limpa: branco + cinza-frio, estilo mapasdeespanhol) */
  --bg-primary: #FAFAF7; /* cinza-frio muito claro (seções alternadas + fundo) */
  --bg-secondary: #F3F1EA; /* cinza-frio claro */
  --bg-alt: #EFEDE5; /* cinza-frio */

  --primary-color: #0A2540; /* Navy editorial — Kit Estudo ANAC */
  --primary-shadow: #061A33;
  --primary-glow: rgba(10, 37, 64, 0.35);
  --gold: #C9A24A;
  --gold-dark: #A8842E;
  --gold-soft: #FBF3DC;
  --green: #0F5C3E;
  --green-vivid: #22c55e;
  --green-soft: #E8F5EF;
  --navy-soft: #E8F1FA;
  
  --text-dark: #0A2540; /* Strong Contrast Black */
  --text-muted: #3B4656; /* Readable Dark Grey */
  --text-light: #777777; /* Subtle light grey */
  
  --border-color: #e2e8f0;
  --border-light: rgba(0, 0, 0, 0.08);
  
  --success-color: #0F5C3E; /* Classic green */
  --success-bg: #E8F5EF;
  
  /* Shadows (flat, estilo mapasdeespanhol) */
  --shadow-subtle: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 4px 14px rgba(0, 0, 0, 0.08);

  /* Border Radius (cantos retos, estilo "quadrado") */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 10px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   BASE RESETS & DEFAULTS
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

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

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

/* Common Layout Helpers */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0A2540;
  margin-bottom: 12px;
  text-align: center;
  display: block;
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 5vw, 38px);
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px auto;
  font-size: 1.05rem;
  color: var(--text-light);
}

/* Yellow Marker Highlight */
.hl {
  background: var(--primary-color);
  padding: 2px 6px;
  border-radius: 6px;
  display: inline;
  box-shadow: none;
  color: var(--text-dark);
  font-weight: 800;
}

/* Destaque do título em texto dourado sólido (sem marca-texto) */
.hl-gold {
  color: var(--primary-color);
  font-weight: 900;
}

/* Badge de confiança no topo do hero */
.hero-trust-badge .trust-lock {
  color: var(--primary-shadow);
  flex-shrink: 0;
}
.hero-trust-badge .trust-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-shadow);
  line-height: 1;
}

/* Slider de prévia (setas para navegar) */
.preview-slider { position: relative; max-width: 760px; margin: 0 auto; }
.preview-slider .slider-viewport { overflow: hidden; border-radius: 10px; }
.preview-slider .slider-track { display: flex; transition: transform .4s ease; }
.preview-slider .slider-slide { min-width: 100%; box-sizing: border-box; }
.preview-slider .slider-slide img { width: 100%; height: auto; display: block; border-radius: 10px; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; color: var(--primary-shadow);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.28); transition: transform .15s ease;
}
.slider-arrow:hover { transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 8px; }
.slider-next { right: 8px; }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.slider-dots button {
  width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; transition: all .2s ease;
}
.slider-dots button.active { background: var(--primary-color); width: 24px; border-radius: 6px; }

/* Grid de 2 colunas (Problema x Solução) */
.duo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
@media (max-width: 640px) { .duo-grid { grid-template-columns: 1fr; } }

/* Cards "O que você vai receber" */
.receive-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.receive-badge {
  display: inline-block; background: rgba(37, 99, 235, .15); color: var(--primary-shadow);
  font-family: var(--font-title); font-weight: 700; font-size: .74rem;
  padding: 5px 14px; border-radius: 999px; margin: 4px 0 10px;
}

/* Seção de bônus (fundo branco): pill do header + botão dos cards */
.bonus-pill {
  display: inline-block;
  background: #dc2d2d;
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 26px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(220, 45, 45, 0.28);
}
.bonus-card .btn-cta--full {
  width: 100%;
  margin-top: auto;
  padding: 13px 20px;
  font-size: 1rem;
}

/* ==========================================
   BUTTONS & ACTIONS
   ========================================== */
.btn-cta {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-title);
  letter-spacing: 0.2px;
  box-shadow: var(--shadow-card);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  text-align: center;
}

.btn-cta:hover {
  background: var(--primary-shadow);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: var(--shadow-subtle);
}

.btn-cta--full {
  width: 100%;
  display: block;
}

.microcopy {
  font-size: 12px;
  color: #888;
  margin-top: 14px;
  line-height: 1.8;
  text-align: center;
}

.microcopy b {
  color: var(--text-dark);
  font-weight: 700;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  background: linear-gradient(180deg, #eaf0f7 0%, #f5f7fa 60%);
  padding: 40px 0 60px 0;
  text-align: center;
}

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  background: var(--bg-secondary);
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  box-shadow: var(--shadow-subtle);
}

.hero-social-proof .stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}

.hero-social-proof .rating-divider {
  width: 1px;
  height: 16px;
  background: #e0e0e0;
}

.hero-social-proof .rating-info {
  font-size: 13px;
  color: #555;
  font-weight: 500;
  line-height: 1;
}

.hero-social-proof .rating-info strong {
  color: var(--text-dark);
  font-weight: 700;
}

.hero-title {
  font-size: clamp(26px, 6vw, 52px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(15px, 3.5vw, 19px);
  max-width: 680px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-mockup-wrapper {
  max-width: 600px;
  margin: 0 auto 32px auto;
}

.hero-mockup-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero-student-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.student-avatar-stack {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-stack-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack-img:first-child {
  margin-left: 0;
}

.student-proof-text {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-price-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.hero-price-from {
  font-size: 14px;
  color: #999;
  font-weight: 500;
}

.hero-price-from s {
  color: #bbb;
}

.hero-price-main {
  font-family: var(--font-title);
  font-size: clamp(48px, 9vw, 68px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.hero-price-badge {
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-bullets {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 32px 0;
}

.hero-bullets li {
  font-size: 16px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-bullets li .check {
  width: 22px;
  height: 22px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
  flex-shrink: 0;
}

/* ==========================================
   VISUAL PREVIEW SECTION (CAROUSEL)
   ========================================== */
.preview-carousel {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 24px 0;
}

.preview-carousel {
  cursor: grab;
  touch-action: pan-y;
}

.preview-carousel.grabbing {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

.carousel-group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}

.carousel-slide {
  min-width: 360px;
  max-width: 360px;
  background: #ffffff;
  border: 5px solid #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
}

@keyframes scrollMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    min-width: 280px;
    max-width: 280px;
    border-width: 4px;
  }
  .carousel-group {
    gap: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    min-width: 230px;
    max-width: 230px;
    border-width: 3px;
  }
  .carousel-group {
    gap: 12px;
    padding-right: 12px;
  }
}

.preview-subtext-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 40px auto 0 auto;
}

@media(min-width: 600px) {
  .preview-subtext-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.preview-subtext-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  border-top: 3px solid var(--primary-color);
}

.preview-subtext-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.preview-subtext-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================
   COMPARISON / METHODOLOGY SECTION
   ========================================== */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media(min-width: 768px) {
  .comparison-container {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}

.comparison-box:hover {
  transform: translateY(-2px);
}

.comparison-box.traditional {
  border-top: 3px solid #ccc;
}

.comparison-box.visual {
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 4px 24px rgba(255, 220, 0, 0.1);
}

.comparison-box h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-box.traditional h3 {
  color: #666;
}

.comparison-box.visual h3 {
  color: var(--text-dark);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-item {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.comparison-item .icon {
  flex-shrink: 0;
  font-weight: 700;
}

.comparison-box.traditional .icon {
  color: #dc2626;
}

.comparison-box.visual .icon {
  color: var(--success-color);
}

/* ==========================================
   WHAT'S INSIDE THE KIT GRID
   ========================================== */
.kit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 40px;
}

@media(min-width: 480px) {
  .kit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(min-width: 768px) {
  .kit-grid { grid-template-columns: repeat(3, 1fr); }
}

.kit-item {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-subtle);
  transition: border-color 0.2s, transform 0.2s;
}

.kit-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-card);
}

.kit-item-icon {
  width: 32px;
  height: 32px;
  background: #EEF2F7;
  border: 1px solid rgba(255, 220, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a800;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.kit-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}



/* ==========================================
   BONUSES SECTION
   ========================================== */
.bonuses-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

@media(min-width: 600px) {
  .bonuses-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .bonus-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    min-width: 250px;
  }
}

@media(min-width: 900px) {
  .bonus-card {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}

.bonus-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
}

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

.bonus-image-wrapper {
  width: 100%;
  flex-shrink: 0;
}

.bonus-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  display: block;
}

.bonus-content {
  flex: 1;
  text-align: left;
}

.bonus-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bonus-title {
  font-size: 1.35rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bonus-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.bonus-value-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bonus-value-original {
  font-size: 13px;
  color: #bbb;
  text-decoration: line-through;
}

.bonus-value-free {
  font-size: 12px;
  font-weight: 800;
  background: #16a34a;
  color: #ffffff;
  padding: 3px 11px;
  border-radius: var(--radius-full);
}

/* ==========================================
   VALUE STACK & PRICING
   ========================================== */
.value-stack-card {
  background: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 480px;
  margin: 40px auto 0 auto;
  box-shadow: 0 8px 40px var(--primary-glow);
  text-align: center;
}

.value-stack-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.stack-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.9rem;
}

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

.stack-item-name {
  color: var(--text-muted);
  font-weight: 500;
  text-align: left;
}

.stack-item-price {
  color: #aaa;
  text-decoration: line-through;
}

.plan-price-old {
  font-size: 18px;
  color: #bbb;
  text-decoration: line-through;
  margin-top: 16px;
}

.plan-price-new {
  font-size: 60px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.plan-price-note {
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
}

.countdown-bar {
  background: #1a1a1a;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 12px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.countdown-bar .timer {
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-carousel {
  max-width: 100%;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  overflow: hidden;
  background: transparent;
  padding: 24px 0;
  margin-top: 40px;
  cursor: grab;
  touch-action: pan-y;
}

.testimonials-carousel.grabbing {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  width: max-content;
  animation: scrollTestimonials 55s linear infinite;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

.testimonials-group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}

.testimonial-card {
  min-width: 290px;
  max-width: 290px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

@keyframes scrollTestimonials {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 18px;
    gap: 12px;
  }
  .testimonials-group {
    gap: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    min-width: 250px;
    max-width: 250px;
    padding: 16px;
    gap: 10px;
  }
  .testimonials-group {
    gap: 12px;
    padding-right: 12px;
  }
}

.testimonial-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 220, 0, 0.4);
  background: #EEF2F7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #c9a800;
  font-size: 13px;
}

.testimonial-image-wrapper {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-image-wrapper img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.testimonial-author-info h4 {
  font-size: 0.85rem;
  color: var(--text-dark);
}

.testimonial-author-info p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ==========================================
   WARRANTY / GUARANTEE SECTION
   ========================================== */
.warranty-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.5) 0%, rgba(255, 255, 255, 0.9) 100%);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.warranty-badge-img {
  font-size: 38px;
  width: 76px;
  height: 76px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.06);
}

.warranty-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.warranty-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ==========================================
   DELIVERY STEPS
   ========================================== */
.delivery-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media(min-width: 768px) {
  .delivery-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.delivery-step {
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.delivery-step:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.delivery-step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--text-dark);
  color: var(--primary-color);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 2px #f0f0f0;
}

.delivery-step h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.delivery-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-shadow);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
}

.faq-content p {
  padding: 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-content {
  padding-bottom: 20px;
}

/* ==========================================
   CHECKOUT COMPONENT
   ========================================== */
.checkout-wrapper {
  background: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 520px;
  margin: 40px auto 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.checkout-header {
  text-align: center;
  margin-bottom: 24px;
}

.checkout-title {
  font-size: 1.35rem;
  color: var(--text-dark);
  font-weight: 800;
}

.checkout-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
}

.checkout-tab-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.checkout-tab-btn {
  background: #fafafa;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  padding: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.checkout-tab-btn.active {
  background: #EEF2F7;
  border-color: var(--primary-color);
  color: var(--text-dark);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.form-group input {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  padding: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-shadow);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

.checkout-payment-details {
  background: #fafafa;
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.pix-details {
  display: none;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pix-details.active {
  display: flex;
}

.pix-qr-mock {
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 8px;
  border: 1px solid #eee;
}

.pix-code-copy {
  display: flex;
  width: 100%;
  gap: 8px;
}

.pix-code-input {
  flex-grow: 1;
  background: #eee !important;
  color: #777 !important;
  text-align: center;
  border-style: dashed !important;
}

.btn-copy {
  background: var(--primary-color);
  border: none;
  border-radius: var(--radius-sm);
  color: #ffffff;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 0 var(--primary-shadow);
}

.card-details {
  display: none;
}

.card-details.active {
  display: block;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkout-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}

.checkout-summary-label {
  font-weight: 700;
  color: var(--text-dark);
}

.checkout-summary-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-dark);
}

.checkout-security-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
}

.checkout-security-badge svg {
  color: var(--success-color);
}

/* ==========================================
   FOOTER STYLES
   ========================================== */
.footer {
  background: #ffffff;
  padding: 48px 0;
  border-top: 1px solid #eeeeee;
  font-size: 0.85rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.footer-disclaimers {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-disclaimers p {
  color: #bbb;
  line-height: 1.6;
}

.footer-divider {
  height: 1px;
  background: #eeeeee;
  margin: 24px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media(min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: #bbb;
}

.footer-links {
  display: flex;
  gap: 16px;
  list-style: none;
}

.footer-links a {
  color: #bbb;
  text-decoration: underline;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-dark);
}

/* Successful Checkout Toast Mock */
.toast-success {
  position: fixed;
  bottom: 24px;
  left: 20px;
  background: #ffffff;
  border: 1px solid #eee;
  border-left: 5px solid var(--primary-color);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-hover);
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  max-width: 280px;
}

.toast-success.show {
  transform: translateY(0);
}

.toast-success-icon {
  background: var(--primary-color);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 8px var(--primary-glow);
  flex-shrink: 0;
}

.toast-success-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-success-text h4 {
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.toast-success-text p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ==========================================
   DYNAMIC DARK SECTIONS (.section--dark)
   ========================================== */
.section--dark {
  background-color: #0A2540;
  color: #C9D3E0;
  border-top: 1px solid #123055;
  border-bottom: 1px solid #123055;
}

.section--dark .section-title {
  color: #ffffff;
}

.section--dark .section-subtitle {
  color: #71717a;
}

.section--dark .preview-subtext-card {
  background: #0F2A4A;
  border-color: #27272a;
}

.section--dark .preview-subtext-card h3 {
  color: #ffffff;
}

.section--dark .preview-subtext-card p {
  color: #a1a1aa;
}

.section--dark .preview-carousel {
  border: none;
  box-shadow: none;
}

.section--dark .bonus-card {
  background: #0F2A4A;
  border-color: #27272a;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.section--dark .bonus-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.section--dark .bonus-title {
  color: #ffffff;
}

.section--dark .bonus-desc {
  color: #a1a1aa;
}

.section--dark .bonus-value-original {
  color: #52525b;
}

.section--dark .faq-item {
  background: #0F2A4A;
  border-color: #27272a;
}

.section--dark .faq-trigger {
  color: #ffffff;
}

.section--dark .faq-content p {
  color: #a1a1aa;
}

.section--dark .faq-item:hover {
  background: #202024;
  border-color: #3f3f46;
}

/* ==========================================
   FINAL CTA SECTION STYLING
   ========================================== */
.final-cta-card {
  background: #081A33;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(201,162,74,0.18);
  text-align: center;
}

.final-cta-card h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-family: var(--font-title);
  font-weight: 800;
}

.final-cta-card p {
  color: #a1a1aa;
  margin-bottom: 24px;
}

.final-cta-price-box {
  background: rgba(255,220,0,0.06);
  border: 1px solid rgba(255,220,0,0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.final-cta-price-box .from {
  font-size: 14px;
  color: #71717a;
}

.final-cta-price-box .price {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 6px 0;
}

.final-cta-price-box .note {
  font-size: 13px;
  color: #71717a;
}

.final-cta-bullets {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-top: 24px;
  border-top: 1px solid #27272a;
  padding-top: 24px;
  width: 100%;
}

.final-cta-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e4e4e7;
  font-size: 0.95rem;
}

.final-cta-bullets li .check {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================
   CURRICULUM TABS & PANES STYLING
   ========================================== */
.curriculum-container {
  margin-top: 40px;
}

.curriculum-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

@media(min-width: 900px) {
  .curriculum-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
}

.curriculum-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-bottom: 3px solid #cbd5e1;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
}

@media(min-width: 900px) {
  .curriculum-tab-btn {
    width: auto;
    flex: 1;
    max-width: 190px;
  }
}

.curriculum-tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
  border-color: #cbd5e1;
}

.curriculum-tab-btn.active {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-shadow);
  border-bottom: 3px solid var(--primary-shadow);
}

.tab-level {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-dark);
  background: #f1f5f9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.curriculum-tab-btn.active .tab-level {
  background: #ffffff;
}

.tab-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.tab-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.tab-count {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

.curriculum-tab-btn.active .tab-count {
  color: rgba(0, 0, 0, 0.6);
}

.curriculum-panes {
  position: relative;
}

.curriculum-pane {
  display: none;
}

.curriculum-pane.active {
  display: block;
  animation: fadeUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.curriculum-placeholder {
  background: #ffffff;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 48px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: fadeUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.curriculum-placeholder.hidden {
  display: none !important;
}

.placeholder-icon {
  font-size: 2.5rem;
  animation: bouncePointer 2s infinite;
}

.curriculum-placeholder h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.curriculum-placeholder p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.5;
}

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

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

.curriculum-pane-header {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
  border-left: 4px solid var(--primary-color);
}

.curriculum-pane-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.pane-badge {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.pane-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  background: #EEF2F7;
  border: 1px solid rgba(255, 220, 0, 0.5);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.pane-objective {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.curriculum-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width: 768px) {
  .curriculum-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.curriculum-category-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s, border-color 0.2s;
  border-top: 3px solid var(--primary-color);
}

.curriculum-category-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.curriculum-category-card h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 8px;
}

.curriculum-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.curriculum-topics span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

.curriculum-topics span:not(:last-child)::after {
  content: '•';
  color: #cbd5e1;
  margin-left: 10px;
  font-weight: bold;
}

/* Mobile responsive scaling for tabs */
@media(max-width: 767px) {
  .curriculum-tabs {
    gap: 6px;
  }
  
  .curriculum-tab-btn {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 4px;
    gap: 6px;
  }
  
  .tab-level {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .tab-info {
    align-items: center;
  }
  
  .tab-title {
    font-size: 0.75rem;
  }
  
  .tab-count {
    font-size: 0.65rem;
    margin-top: 1px;
  }
  
  .curriculum-pane-header {
    padding: 16px;
  }
  
  .pane-badge {
    font-size: 0.95rem;
  }
  
  .pane-count {
    font-size: 0.75rem;
    padding: 2px 8px;
  }
  
  .pane-objective {
    font-size: 0.85rem;
  }
  
  .curriculum-category-card {
    padding: 16px;
  }
  
  .curriculum-category-card h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .curriculum-topics span {
    font-size: 0.8rem;
  }
  
  .curriculum-placeholder {
    padding: 32px 16px;
    gap: 8px;
  }
  
  .curriculum-placeholder h3 {
    font-size: 1.1rem;
  }
  
  .curriculum-placeholder p {
    font-size: 0.85rem;
  }
}

/* ==========================================
   VISUAL AUDIENCE & TARGET STYLING
   ========================================== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media(min-width: 600px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(min-width: 900px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 220, 0, 0.5);
  box-shadow: var(--shadow-hover);
}

.audience-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.audience-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   TWO-COLUMN RECEIPT VALUE STACK
   ========================================== */
.value-stack-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  background: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

@media(min-width: 500px) {
  .value-stack-container {
    padding: 32px;
  }
}

@media(min-width: 850px) {
  .value-stack-container {
    grid-template-columns: 1.2fr 1fr;
    padding: 40px;
    gap: 40px;
    align-items: stretch;
  }
}

.value-stack-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.value-stack-left h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.value-stack-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-stack-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e2e8f0;
  gap: 12px;
}

.value-stack-item-row:last-child {
  border-bottom: none;
}

.value-stack-item-row .name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.4;
}

.value-stack-item-row .price {
  font-size: 0.9rem;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 500;
  flex-shrink: 0;
}

.value-stack-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #888;
  margin-top: 12px;
  border-top: 2px solid #e2e8f0;
  padding-top: 16px;
}

.value-stack-total-row .price {
  text-decoration: line-through;
  color: #999;
  flex-shrink: 0;
}

.value-stack-right-box {
  background: var(--bg-secondary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

@media(min-width: 500px) {
  .value-stack-right-box {
    padding: 32px 24px;
  }
}

.value-stack-right-box .label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c9a800;
}

.value-stack-right-box .main-price {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.value-stack-right-box .microcopy-stack {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.value-stack-right-box .bullets-stack {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  text-align: left;
  margin-top: 8px;
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
}

.value-stack-right-box .bullets-stack li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-stack-right-box .bullets-stack li::before {
  content: '✓';
  color: var(--success-color);
  font-weight: bold;
}

/* ==========================================
   URGENCY PROMO BANNER & LIVE NOTIFICATIONS TOAST
   ========================================== */
.promo-banner {
  background: var(--primary-color);
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  position: static;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.promo-banner strong {
  font-weight: 900;
}

.purchase-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 14px 34px 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 99999;
  transform: translate3d(-30px, 0, 0) scale(0.95);
  -webkit-transform: translate3d(-30px, 0, 0) scale(0.95);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s, visibility 0.6s;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s, visibility 0.6s;
  opacity: 0;
  visibility: hidden;
  max-width: 345px;
  text-align: left;
  box-sizing: border-box;
}

.purchase-toast.show {
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  visibility: visible;
}

.purchase-toast .toast-avatar-container {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.purchase-toast .toast-avatar {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.purchase-toast .toast-avatar-check {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.purchase-toast .toast-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
  z-index: 3;
}

.purchase-toast .toast-close:hover {
  color: var(--text-dark);
  transform: scale(1.15);
}

.purchase-toast .toast-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.purchase-toast .toast-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.purchase-toast .toast-verified {
  font-size: 9px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.purchase-toast .toast-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

.purchase-toast .toast-time {
  font-size: 10px;
  color: #a1a1aa;
  margin-top: 2px;
}

@media(max-width: 480px) {
  .purchase-toast {
    bottom: 16px;
    left: 12px;
    right: auto;
    width: calc(100% - 24px);
    max-width: 290px;
    padding: 10px 28px 10px 12px;
    gap: 10px;
    border-radius: 14px;
    box-sizing: border-box;
    transform: translate3d(-20px, 0, 0) scale(0.95);
    -webkit-transform: translate3d(-20px, 0, 0) scale(0.95);
  }
  
  .purchase-toast.show {
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }

  .purchase-toast .toast-avatar-container {
    width: 36px;
    height: 36px;
  }

  .purchase-toast .toast-avatar-check {
    width: 13px;
    height: 13px;
    font-size: 8px;
    bottom: -2px;
    right: -2px;
    border-width: 1.2px;
  }

  .purchase-toast .toast-title {
    font-size: 12px;
    gap: 6px;
  }

  .purchase-toast .toast-verified {
    font-size: 8px;
    padding: 1px 4px;
  }

  .purchase-toast .toast-desc {
    font-size: 11px;
  }

  .purchase-toast .toast-time {
    font-size: 9px;
    margin-top: 1px;
  }

  .purchase-toast .toast-close {
    font-size: 16px;
    top: 6px;
    right: 8px;
    padding: 2px;
  }
}

@media (max-width: 480px) {
  .btn-cta {
    font-size: 17px;
    padding: 16px 28px;
    letter-spacing: 0px;
  }
}

/* ===== Gatilho de urgência dentro da oferta ===== */
.offer-urgency-badge {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 9px;
  margin: 0 auto 6px auto;
  background: linear-gradient(180deg, #e94b4b 0%, #d63030 100%);
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(214, 48, 48, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: urgencyPulse 1.8s ease-in-out infinite;
}
.offer-urgency-icon {
  font-size: 1rem;
  line-height: 1;
}
@keyframes urgencyPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 16px rgba(214, 48, 48, 0.32); }
  50% { transform: scale(1.03); box-shadow: 0 8px 22px rgba(214, 48, 48, 0.45); }
}
@media (max-width: 480px) {
  .offer-urgency-badge { font-size: 0.74rem; padding: 10px 16px; }
}

/* ===== Novo layout da oferta (checklist + bônus + preço) ===== */
.offer-divider {
  height: 1px;
  width: 100%;
  background: #ece3d2;
  margin: 4px 0 2px;
}
.offer-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.offer-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
}
.offer-check-ic {
  flex: 0 0 auto;
  color: var(--primary-color);
  display: inline-flex;
}
.offer-bonus-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-bonus-row {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.94rem;
  color: var(--text-dark);
}
.offer-bonus-ic {
  flex: 0 0 auto;
  color: var(--primary-shadow);
  display: inline-flex;
}
.offer-bonus-row strong { font-weight: 800; }

.offer-price { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.offer-price-from {
  font-size: 1rem;
  color: #c0392b;
  font-weight: 600;
}
.offer-price-from s { color: #c0392b; }
.offer-price-now {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 3.9rem;
  line-height: 1;
  color: var(--primary-color);
  letter-spacing: -1px;
  margin: 2px 0;
}
.offer-price-cifra { font-size: 1.7rem; vertical-align: top; margin-right: 2px; }
.offer-price-parc { font-size: 0.9rem; color: #8a8f98; font-weight: 500; }
.offer-save-badge {
  margin-top: 8px;
  display: inline-block;
  background: #e9f1fb;
  color: #4a72a6;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 999px;
}

/* ===== Seção com fundo azul-claro (separador visual, estilo referência) ===== */
.section--tint {
  background: #e9f1fd;
  padding: 56px 0;
}

/* ==========================================================
   PLANOS, MODAL DE CONTRA-PREÇO E USO PRÁTICO
   ========================================================== */

/* ---- dois planos ---- */
.planos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
  text-align: left;
}
@media (min-width: 720px) {
  .planos { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
.plano {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: 18px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plano--destaque {
  border: 2.5px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(37, 99, 235, .12);
}
.plano-selo {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary-color); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.plano-nome { font-size: 1.25rem; font-weight: 800; color: var(--text-dark); text-align: center; }
.plano-itens { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.plano-itens li { font-size: .95rem; color: var(--text-dark); line-height: 1.4; }
.plano-item--off { color: #a9a9a9; }
.plano-preco { text-align: center; margin-top: auto; }
.plano-de { display: block; font-size: .85rem; color: var(--text-light); }
.plano-valor { font-size: 3rem; font-weight: 900; color: var(--text-dark); line-height: 1.05; }
.plano-valor span { font-size: 1.3rem; vertical-align: super; margin-right: 2px; }
.plano-valor--simples { color: var(--text-light); font-size: 2.4rem; }
.plano-parc { display: block; font-size: .8rem; color: var(--text-light); margin-top: 2px; }
.btn-cta--ghost {
  background: #fff !important; color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
}

/* ---- modal ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(15, 23, 42, .65);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.modal-overlay[hidden] { display: none; }
.modal-card {
  position: relative;
  background: #fff; border-radius: 22px;
  max-width: 460px; width: 100%;
  padding: 34px 26px 26px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  animation: modalSobe .25s ease-out;
}
@keyframes modalSobe { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.modal-fechar {
  position: absolute; top: 10px; right: 14px;
  background: none; border: 0; font-size: 1.8rem; line-height: 1;
  color: #b0b0b0; cursor: pointer;
}
.modal-tag {
  display: inline-block; background: #dc3545; color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
}
.modal-titulo { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); line-height: 1.25; }
.modal-titulo span { color: var(--primary-color); }
.modal-texto { font-size: .95rem; color: var(--text-light); line-height: 1.6; margin-top: 12px; }
.modal-preco { margin: 18px 0 16px; }
.modal-preco-de { display: block; font-size: .85rem; color: var(--text-light); }
.modal-preco-valor { font-size: 3.2rem; font-weight: 900; color: var(--text-dark); line-height: 1.05; }
.modal-preco-valor span { font-size: 1.4rem; vertical-align: super; margin-right: 2px; }
.modal-recusa {
  display: block; margin-top: 14px; font-size: .85rem;
  color: var(--text-light); text-decoration: underline;
}

/* ---- uso prático ---- */
.uso-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 34px; }
@media (min-width: 900px) { .uso-grid { grid-template-columns: repeat(3, 1fr); } }
.uso-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--primary-shadow);
  border-radius: 16px;
  padding: 30px 22px 24px;
}
.uso-passo {
  position: absolute; top: -13px; left: 20px;
  background: #1e7a46; color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  padding: 5px 14px; border-radius: 999px;
}
.uso-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.uso-ic {
  width: 46px; height: 46px; flex-shrink: 0;
  background: #EEF2F7; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.uso-tag { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .1em; color: var(--text-light); }
.uso-head h3 { font-size: 1.12rem; font-weight: 800; color: var(--primary-shadow); line-height: 1.25; }
.uso-card > p { font-size: .93rem; color: var(--text-light); line-height: 1.6; }
.uso-itens { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.uso-itens li { position: relative; padding-left: 30px; font-size: .93rem; color: var(--text-dark); }
.uso-itens li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 21px; height: 21px; border-radius: 50%;
  background: #1e7a46; color: #fff;
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.uso-fecho { text-align: center; margin-top: 30px; font-size: 1rem; color: var(--text-dark); line-height: 1.6; }

/* ---- planos no padrão "kit essencial / kit completo" ---- */
.plano-sub { text-align: center; font-size: .87rem; color: var(--text-light); margin-top: -6px; }
.plano-economia {
  display: inline-block; margin-top: 8px;
  background: #eafaf1; color: #1e7a46;
  font-size: .78rem; font-weight: 800;
  padding: 4px 12px; border-radius: 999px;
}
.plano-economia--forte { background: #1e7a46; color: #fff; }
.plano-itens li { position: relative; padding-left: 24px; }
.plano-itens li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: #1e7a46; font-weight: 900; font-size: .9rem;
}
.plano-item--off::before { content: "✕" !important; color: #c4c4c4 !important; }
.selos-oferta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 20px;
}
.selo-oferta {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 999px; padding: 7px 14px;
  font-size: .82rem; font-weight: 600; color: var(--text-dark);
}
.oferta-hoje { text-align: center; font-size: .85rem; color: var(--text-light); margin-top: 14px; }

/* ---- entrega em círculos ---- */
.entrega-fluxo {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: center;
  gap: 10px; margin-top: 40px;
}
.entrega-passo { flex: 1 1 220px; max-width: 300px; text-align: center; }
.entrega-circulo {
  position: relative; width: 108px; height: 108px; margin: 0 auto 18px;
  border-radius: 50%; background: linear-gradient(160deg, #dbe8ff, #f2f7ff);
  border: 3px solid var(--primary-shadow);
  display: flex; align-items: center; justify-content: center;
}
.entrega-emoji { font-size: 2.6rem; line-height: 1; }
.entrega-num {
  position: absolute; top: -10px; left: -6px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary-shadow); color: #fff;
  font-size: 1.05rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #f4f7fd;
}
.entrega-passo h3 { font-size: 1.12rem; font-weight: 800; color: var(--primary-shadow); margin-bottom: 6px; }
.entrega-passo p { font-size: .93rem; color: var(--text-dark); line-height: 1.55; }
.entrega-seta {
  align-self: center; font-size: 2rem; color: var(--primary-shadow);
  font-weight: 700; padding: 0 4px; display: none;
}
@media (min-width: 900px) {
  .entrega-fluxo { flex-wrap: nowrap; gap: 4px; }
  .entrega-seta { display: block; margin-top: -60px; }
}
.entrega-faixa {
  margin: 38px auto 0; max-width: 720px;
  border: 2px solid var(--primary-shadow); border-radius: 999px;
  padding: 14px 22px; text-align: center;
  font-size: .95rem; font-weight: 700; color: var(--primary-shadow);
  background: #fff;
}

/* ---- bônus: novo layout de card ---- */
.bonuses-container {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) { .bonuses-container { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1050px) { .bonuses-container { grid-template-columns: repeat(3, 1fr); } }
.bonus-card {
  position: relative;
  background: #f4faf5;
  border: 1.5px solid #d8ecdd;
  border-radius: 18px;
  padding: 34px 20px 22px;
  text-align: center;
  display: flex; flex-direction: column; gap: 14px;
}
.bonus-pill-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #1e7a46; color: #fff; white-space: nowrap;
  font-size: .76rem; font-weight: 800; letter-spacing: .08em;
  padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 4px 10px rgba(30,122,70,.25);
}
.bonus-card .bonus-image-wrapper img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
}
.bonus-card .bonus-title {
  font-size: 1.18rem; font-weight: 800; color: var(--primary-shadow);
  line-height: 1.3;
}
.bonus-itens { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; text-align: left; }
.bonus-itens li {
  position: relative; padding-left: 30px;
  font-size: .93rem; font-weight: 600; color: var(--text-dark);
}
.bonus-itens li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 21px; height: 21px; border-radius: 50%;
  background: #1e7a46; color: #fff;
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.bonus-preco { margin-top: auto; padding-top: 6px; }
.bonus-preco s { display: block; color: #dc3545; font-weight: 700; font-size: 1rem; }
.bonus-preco strong { display: block; color: #1e7a46; font-weight: 900; font-size: 1.35rem; margin-top: 4px; }

/* ==========================================================
   PADRONIZAÇÃO VISUAL — um estilo só na página inteira
   ========================================================== */
:root {
  --pad-radius: 18px;
  --pad-borda: #E3E0D6;
  --pad-sombra: 0 6px 22px rgba(16, 24, 40, .06);
  --pad-azul: #0A2540;
  --pad-azul-vivo: #0A2540;
  --pad-verde: #0F5C3E;
  --pad-cinza: #5B6573;
}

/* --- rótulo de seção: um só formato --- */
.section-label {
  display: inline-block !important;
  background: #EEF2F7 !important;
  color: var(--pad-azul-vivo) !important;
  border: 1px solid #D6DEE8 !important;
  border-radius: 999px !important;
  padding: 6px 16px !important;
  font-size: .74rem !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase;
  margin-bottom: 14px !important;
}
.section-title { color: var(--pad-azul) !important; letter-spacing: -.02em; }
.section-subtitle { color: var(--pad-cinza) !important; }

/* --- pílulas padronizadas --- */
.pill {
  display: inline-block; border-radius: 999px;
  padding: 5px 14px; font-size: .74rem; font-weight: 800; letter-spacing: .08em;
}
.pill--neutra { background: #eef1f6; color: var(--pad-cinza); }
.pill--azul { background: var(--pad-azul-vivo); color: #fff; }
.pill--verde { background: #eafaf1; color: var(--pad-verde); letter-spacing: .02em; }
.pill--verde-forte { background: var(--pad-verde); color: #fff; letter-spacing: .02em; }

/* --- lista de check padrão (usada na oferta) --- */
.lista-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; text-align: left; }
.lista-check li {
  position: relative; padding-left: 30px;
  font-size: .97rem; color: var(--pad-azul); line-height: 1.45;
}
.lista-check li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--pad-verde); color: #fff;
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.lista-check li.off { color: #a3a9b5; }
.lista-check li.off::before { content: "✕"; background: #dfe3ea; color: #8b93a2; }

/* --- blocos de oferta separados --- */
.oferta {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 24px;
  background: #fff;
  border: 1.5px solid var(--pad-borda);
  border-radius: var(--pad-radius);
  box-shadow: var(--pad-sombra);
  padding: 30px 24px;
  margin-top: 34px;
  text-align: left;
}
@media (min-width: 860px) { .oferta { grid-template-columns: 0.95fr 1.05fr; align-items: center; gap: 34px; } }
.oferta--destaque { border: 2.5px solid var(--pad-azul-vivo); box-shadow: 0 14px 40px rgba(201,162,74,.18); }
.oferta-selo {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--pad-azul-vivo); color: #fff; white-space: nowrap;
  font-size: .76rem; font-weight: 800; letter-spacing: .08em;
  padding: 6px 18px; border-radius: 999px;
}
.oferta-media img { width: 100%; height: auto; border-radius: 14px; display: block; }
.oferta-corpo { display: flex; flex-direction: column; gap: 14px; }
.oferta-nome { font-size: 1.6rem; font-weight: 800; color: var(--pad-azul); line-height: 1.2; }
.oferta-sub { font-size: .95rem; color: var(--pad-cinza); margin-top: -8px; }
.oferta-preco { border-top: 1px solid var(--pad-borda); padding-top: 16px; }
.preco-de { display: block; font-size: .85rem; color: var(--pad-cinza); }
.preco-valor { font-size: 3.1rem; font-weight: 900; color: var(--pad-azul); line-height: 1.05; }
.preco-valor span { font-size: 1.3rem; vertical-align: super; margin-right: 2px; }
.preco-parc { display: block; font-size: .85rem; color: var(--pad-cinza); margin-bottom: 10px; }

/* --- cards de bônus: mesma linguagem dos blocos de oferta --- */
.bonus-card {
  background: #fff !important;
  border: 1.5px solid var(--pad-borda) !important;
  border-radius: var(--pad-radius) !important;
  box-shadow: var(--pad-sombra);
}
.bonus-pill-num { background: var(--pad-azul-vivo) !important; box-shadow: none !important; }
.bonus-card .bonus-title { color: var(--pad-azul) !important; }
.bonus-itens li::before { background: var(--pad-verde); }

/* --- cards de uso prático: mesma linguagem --- */
.uso-card {
  border: 1.5px solid var(--pad-borda) !important;
  border-radius: var(--pad-radius) !important;
  box-shadow: var(--pad-sombra);
}
.uso-passo { background: var(--pad-azul-vivo) !important; }
.uso-head h3 { color: var(--pad-azul) !important; }

/* --- entrega: mesma linguagem --- */
.entrega-circulo { border-color: var(--pad-azul-vivo) !important; }
.entrega-num { background: var(--pad-azul-vivo) !important; }
.entrega-passo h3 { color: var(--pad-azul) !important; }
.entrega-faixa { border-color: var(--pad-azul-vivo) !important; color: var(--pad-azul) !important; }

/* --- demais cartões da página --- */
.audience-card, .warranty-card, .testimonial-card, .final-cta-card, .faq-item {
  border-radius: var(--pad-radius) !important;
}
.selo-oferta { border-color: var(--pad-borda) !important; color: var(--pad-azul) !important; }

/* bônus enxuto: só selo, imagem e título */
.bonus-card { padding: 34px 20px 26px; gap: 18px; }
.bonus-card .bonus-title { margin-top: 2px; }

/* ---- headlines: tudo centralizado e no mesmo eixo ---- */
.section > .container > .section-label,
.section > .container > .section-title,
.section > .container > .section-subtitle {
  display: block;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.section > .container > .section-label { width: fit-content; }
.section > .container > .section-subtitle { max-width: 640px; }
.section > .container > .section-title { max-width: 820px; }

/* ---- bônus menores e mais leves ---- */
.bonuses-container {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
@media (min-width: 760px)  { .bonuses-container { grid-template-columns: repeat(3, 1fr) !important; } }
@media (min-width: 1050px) { .bonuses-container { grid-template-columns: repeat(6, 1fr) !important; max-width: 1180px; } }
.bonus-card { padding: 24px 12px 16px !important; gap: 12px !important; }
.bonus-pill-num { font-size: .6rem !important; padding: 4px 10px !important; letter-spacing: .05em !important; }
.bonus-card .bonus-title { font-size: .92rem !important; line-height: 1.3; }
.bonus-card .bonus-image-wrapper img { border-radius: 9px; }

/* bônus: cards de mesma altura, título alinhado no topo */
.bonus-card { justify-content: flex-start; }
.bonus-card .bonus-title { min-height: 2.5em; display: flex; align-items: center; justify-content: center; }

/* ---- conteúdo do kit ---- */
.kit-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 34px; }
@media (min-width: 900px) { .kit-grid { grid-template-columns: repeat(3, 1fr); } }
.kit-card {
  background: #fff; border: 1.5px solid var(--pad-borda);
  border-radius: var(--pad-radius); box-shadow: var(--pad-sombra);
  padding: 26px 22px;
}
.kit-head { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 18px; }
.kit-ic {
  width: 50px; height: 50px; flex-shrink: 0;
  background: #EEF2F7; border: 1px solid #D6DEE8; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.kit-head h3 { font-size: 1.15rem; font-weight: 800; color: var(--pad-azul); line-height: 1.25; }
.kit-head p { font-size: .86rem; color: var(--pad-cinza); line-height: 1.45; margin-top: 3px; }
.kit-faixa {
  margin: 34px auto 0; max-width: 620px;
  background: #fff; border: 1.5px solid var(--pad-borda); border-radius: 999px;
  padding: 14px 22px; text-align: center;
  font-size: .95rem; font-weight: 700; color: var(--pad-azul);
}

/* ---- antes x depois ---- */
.ad-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 34px; }
@media (min-width: 800px) { .ad-grid { grid-template-columns: 1fr 1fr; } }
.ad-card { border-radius: var(--pad-radius); padding: 26px 24px; }
.ad-card h3 { font-size: 1.05rem; font-weight: 800; letter-spacing: .06em; margin-bottom: 18px; }
.ad-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.ad-card li { position: relative; padding-left: 28px; font-size: .97rem; line-height: 1.45; }
.ad-card--antes { background: #eef1f6; border: 1.5px solid #dde2ea; }
.ad-card--antes h3 { color: #5b6472; }
.ad-card--antes li { color: #5b6472; }
.ad-card--antes li::before { content: "✕"; position: absolute; left: 0; color: #98a2b3; font-weight: 800; }
.ad-card--depois { background: #f1faf4; border: 1.5px solid #cfe9d8; }
.ad-card--depois h3 { color: var(--pad-verde); }
.ad-card--depois li { color: #1d3b2a; }
.ad-card--depois li::before { content: "✓"; position: absolute; left: 0; color: var(--pad-verde); font-weight: 800; }

/* ==========================================================================
   ESTEIRA CONTÍNUA (carrossel infinito, sem parar)
   ========================================================================== */
.esteira {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 4px 0 2px;
}
.esteira-janela { overflow: hidden; }
.esteira-fita {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  animation: esteira-rola var(--esteira-tempo, 60s) linear infinite;
}
.esteira-item {
  flex: 0 0 auto;
  width: 380px;
}
.esteira-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(16, 24, 40, .12);
  background: #fff;
}
@keyframes esteira-rola {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - 8px), 0, 0); }
}
/* degradê nas bordas para a esteira "sumir" nas laterais */
.esteira::before,
.esteira::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.esteira::before { left: 0;  background: linear-gradient(90deg, var(--esteira-fundo, #fff), transparent); }
.esteira::after  { right: 0; background: linear-gradient(270deg, var(--esteira-fundo, #fff), transparent); }
.esteira--bonus { --esteira-fundo: var(--bg-secondary, #f7f8fb); }

@media (min-width: 700px)  { .esteira-item { width: 580px; } .esteira-fita { gap: 24px; } }
@media (min-width: 1100px) { .esteira-item { width: 720px; } .esteira-fita { gap: 30px; } }
@media (max-width: 480px)  { .esteira-item { width: 340px; } .esteira-fita { gap: 14px; }
                             .esteira::before, .esteira::after { width: 28px; } }

/* Quem liga "reduzir movimento" no sistema recebe a esteira mais lenta,
   não parada — o carrossel é o que mostra o material. */
@media (prefers-reduced-motion: reduce) {
  .esteira-fita { animation-duration: calc(var(--esteira-tempo, 60s) * 2.5); }
}

/* ==========================================================================
   AJUSTE FINO PARA CELULAR
   ========================================================================== */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, svg { max-width: 100%; }

/* o modal nunca pode ficar maior que a tela */
.modal-card {
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
  /* respiro entre seções: menos ar sobrando no celular */
  .section { padding-top: 52px !important; padding-bottom: 52px !important; }
  .container { padding-left: 18px !important; padding-right: 18px !important; }

  /* títulos e apoios */
  .section-title { font-size: 1.62rem !important; line-height: 1.22 !important; }
  .section-subtitle { font-size: .97rem !important; line-height: 1.55 !important; max-width: 34ch; }
  .hero-title { line-height: 1.16 !important; }
  .hero-subtitle { font-size: 1rem !important; line-height: 1.55 !important; }

  /* nenhum textinho abaixo de 12.5px */
  .section-label, .uso-passo, .uso-tag, .trust-text, .microcopy,
  .bonus-badge, .oferta-tag { font-size: .8rem !important; letter-spacing: .06em !important; }

  /* botões: largura total e área de toque confortável */
  .btn-cta {
    display: block !important;
    width: 100% !important;
    min-height: 56px;
    padding: 17px 18px !important;
    font-size: 1.02rem !important;
    line-height: 1.25 !important;
  }

  /* preços não podem estourar a linha */
  .preco-valor, .modal-preco-valor { font-size: 2.9rem !important; }
  .preco-valor span, .modal-preco-valor span { font-size: 1.25rem !important; }

  /* cartões mais compactos */
  .kit-card, .uso-card, .oferta-card, .compare-card { padding: 22px 18px !important; }

  /* modal */
  .modal-overlay { padding: 16px !important; }
  .modal-titulo { font-size: 1.3rem !important; }
  .modal-texto { font-size: .92rem !important; }

  /* links do rodapé com área de toque de verdade */
  .footer a { display: inline-block; padding: 10px 6px; }
}

@media (max-width: 400px) {
  .bonuses-container { gap: 12px !important; }
  .bonus-card { padding: 20px 10px 14px !important; }
  .bonus-card h3 { font-size: .95rem !important; }
  .preco-valor, .modal-preco-valor { font-size: 2.6rem !important; }
  .btn-cta { font-size: .96rem !important; padding: 16px 14px !important; }
}

/* selo de compra segura: uma linha só no celular */
@media (max-width: 767px) {
  .trust-text { font-size: .74rem !important; letter-spacing: .04em !important; white-space: nowrap; }
  .trust-badge { padding: 9px 14px !important; }
}

/* bônus: 6 colunas só quando realmente cabe; itens nunca estouram a grade */
.bonuses-container > * { min-width: 0; }
@media (min-width: 1050px) and (max-width: 1319px) {
  .bonuses-container { grid-template-columns: repeat(3, 1fr) !important; max-width: 960px !important; }
}
@media (min-width: 1320px) {
  .bonuses-container { grid-template-columns: repeat(6, 1fr) !important; max-width: 1240px !important; }
}

/* na tela grande a fileira de 6 bônus pode sair da largura do container */
@media (min-width: 1320px) {
  .bonuses-container { width: min(1240px, 92vw) !important;
    margin-left: calc(50% - min(620px, 46vw)) !important; margin-right: 0 !important; }
}

/* prova social do topo em telas bem estreitas (320px) */
@media (max-width: 400px) {
  .hero-social-proof { flex-wrap: wrap; justify-content: center; gap: 8px 10px; text-align: center; }
  .hero-social-proof > * { min-width: 0; }
}

/* ==========================================================================
   ALINHAMENTO DOS BLOCOS "ÍCONE + TÍTULO + LISTA"
   ========================================================================== */

/* ícone centralizado com o bloco de texto, não colado no topo */
.kit-head { align-items: center !important; }
.kit-head > div:last-child { min-width: 0; }

/* as listas dos cards começam todas na mesma linha */
.kit-card, .uso-card { display: flex; flex-direction: column; }
/* cabeçalho com altura reservada: as listas do "conteúdo do kit" saem juntas */
@media (min-width: 900px) {
  .kit-head { min-height: 66px; }
  .kit-head p { min-height: 2.9em; }
  /* no "três jeitos de usar", a descrição ocupa a mesma altura nos três cards */
  .uso-card > p { min-height: 6.4em; }
}

/* botão sempre rente às bordas do conteúdo do card */
.btn-cta--full {
  display: block;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

/* ==========================================================================
   PROBLEMA × SOLUÇÃO
   ========================================================================== */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 38px;
}
@media (min-width: 760px) { .ps-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }

.ps-card {
  background: #fff;
  border: 1.5px solid var(--pad-borda);
  border-radius: var(--pad-radius);
  box-shadow: var(--pad-sombra);
  padding: 40px 30px 44px;
  text-align: center;
}
.ps-ic {
  width: 92px; height: 92px; margin: 0 auto 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; line-height: 1;
}
.ps-ic--problema { background: #fdeaea; }
.ps-ic--solucao  { background: #e6f6ec; }

.ps-card h3 {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--pad-azul);
  margin-bottom: 14px;
}
.ps-card p {
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--pad-cinza);
  max-width: 34ch;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .ps-card { padding: 32px 22px 34px; }
  .ps-ic { width: 76px; height: 76px; font-size: 2.2rem; margin-bottom: 20px; }
  .ps-card h3 { font-size: 1.2rem; }
  .ps-card p { font-size: .97rem; }
}

/* ==========================================================================
   PÍLULAS DAS HEADLINES SEMPRE CENTRALIZADAS
   ========================================================================== */
.section-label,
.section .section-label,
.section > .container > .section-label {
  display: table !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  float: none !important;
}

/* ==========================================================================
   TRÊS JEITOS DE USAR — TUDO CENTRALIZADO
   ========================================================================== */
.uso-card { text-align: center; padding-top: 36px; }

/* pílula do passo centralizada no topo do card */
.uso-passo {
  left: 50% !important;
  transform: translateX(-50%);
}

/* ícone acima do texto, tudo no eixo central */
.uso-head {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.uso-head > div { text-align: center; }
.uso-tag { display: block; }

.uso-card > p { margin-left: auto; margin-right: auto; max-width: 34ch; }

/* itens da lista centralizados, com o ✓ colado no texto */
.uso-itens { justify-items: center; }
.uso-itens li {
  padding-left: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-align: left;
}
.uso-itens li::before {
  position: static;
  flex-shrink: 0;
}

/* sem cabeçalho na seção, os cards não precisam do respiro extra */
.container > .ps-grid:first-child { margin-top: 0; }

/* menos espaço entre a prova social do topo e a primeira seção */
.hero { padding-bottom: 10px !important; }
.hero + .section { padding-top: 48px !important; }
.hero-student-proof { margin-top: 18px !important; }
@media (max-width: 767px) {
  .hero { padding-bottom: 8px !important; }
  .hero + .section { padding-top: 38px !important; }
}

/* ==========================================================================
   BÔNUS — LAYOUT ORIGINAL DE VOLTA (imagem, GRÁTIS + valor, título, CTA)
   ========================================================================== */
.bonuses-container {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  max-width: 1100px !important;
  width: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (min-width: 600px)  { .bonuses-container { grid-template-columns: repeat(2, 1fr) !important; } }
@media (min-width: 1000px) { .bonuses-container { grid-template-columns: repeat(3, 1fr) !important; } }

.bonus-card {
  max-width: none !important;
  min-width: 0 !important;
  flex: none !important;
  padding: 26px 24px 28px !important;
  gap: 0 !important;
  justify-content: flex-start;
  text-align: left;
}
.bonus-card .bonus-image-wrapper { margin-bottom: 18px; }
.bonus-card .bonus-image-wrapper img { border-radius: 12px; }

.bonus-value-row { justify-content: flex-start; margin-bottom: 12px; }

.bonus-card .bonus-title {
  font-size: 1.35rem !important;
  line-height: 1.3;
  min-height: 0 !important;
  display: block !important;
  margin-bottom: 20px;
}
.bonus-card .btn-cta--full { margin-top: auto; }

@media (max-width: 480px) {
  .bonus-card { padding: 22px 18px 24px !important; }
  .bonus-card .bonus-title { font-size: 1.2rem !important; }
}

/* ==========================================================================
   OFERTAS — LAYOUT VERTICAL (faixa vermelha, preço verde, lista pontilhada)
   ========================================================================== */
.oferta {
  display: block !important;
  position: relative;
  background: #fff;
  border: 2px solid #e6e9f0;
  border-radius: 18px;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto 34px;
  box-shadow: 0 10px 34px rgba(16,24,40,.08);
}
.oferta--destaque { border-color: #16a34a; box-shadow: 0 12px 40px rgba(22,163,74,.16); }

.oferta-corpo { padding: 32px 26px 30px; text-align: center; }

.oferta-nome {
  font-size: 1.22rem;
  font-weight: 800;
  color: #16a34a;
  line-height: 1.3;
  margin: 0 0 20px;
}

.oferta-media { margin: 0 0 24px; }
.oferta-media img { width: 100%; height: auto; display: block; border-radius: 12px; }

/* bloco de preço */
.oferta-preco { margin: 0 0 24px; }
.preco-de {
  font-size: 1.06rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 6px;
}
.preco-de s { color: #d32f2f; text-decoration-color: #d32f2f; }
.preco-valor {
  font-size: 3.6rem;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
  letter-spacing: -.02em;
}
.preco-valor span { font-size: 1.5rem; vertical-align: super; margin-right: 4px; }
.preco-parc {
  font-size: 1.02rem;
  font-weight: 700;
  color: #16a34a;
  margin: 10px 0 0;
}
.preco-economia {
  font-size: 1.06rem;
  font-weight: 800;
  color: #16a34a;
  margin: 8px 0 0;
}

/* lista das ofertas: o mesmo check de antes, sem divisória */
.oferta-itens {
  margin: 0 0 24px;
  text-align: left;
}

/* selo "mais escolhido" sobre a faixa */
.oferta-selo {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: #16a34a; color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  padding: 6px 13px; border-radius: 999px;
}

@media (min-width: 900px) {
  .oferta { max-width: 520px; }
}
@media (max-width: 480px) {
  .oferta-corpo { padding: 22px 18px 26px; }
  .preco-valor { font-size: 3rem; }
}

/* ==========================================================================
   BLOCOS TRAZIDOS DO LAYOUT LATAM
   ========================================================================== */

/* faixa de números sob o herói */
.stats-faixa {
  background: #fff;
  border-top: 1px solid var(--pad-borda);
  border-bottom: 1px solid var(--pad-borda);
  padding: 26px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 12px;
  text-align: center;
}
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--pad-azul-vivo);
  line-height: 1.1;
}
.stat span { font-size: .85rem; color: var(--pad-cinza); }

/* lista de dores */
.dores-lista {
  list-style: none;
  padding: 0;
  margin: 34px auto 0;
  max-width: 620px;
  display: grid;
  gap: 12px;
}
.dores-lista li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: #fff;
  border: 1.5px solid var(--pad-borda);
  border-radius: 12px;
  font-size: .97rem;
  color: var(--pad-azul);
}
.dores-lista li::before {
  content: "✕";
  position: absolute; left: 15px; top: 50%;
  transform: translateY(-50%);
  width: 21px; height: 21px; border-radius: 50%;
  background: #fdeaea; color: #d32f2f;
  font-size: .7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.dores-fecho {
  max-width: 640px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--pad-azul);
}

/* rota dos 9 módulos */
.rota-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 640px)  { .rota-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .rota-grid { grid-template-columns: repeat(3, 1fr); } }
.rota-card {
  background: #fff;
  border: 1.5px solid var(--pad-borda);
  border-radius: var(--pad-radius);
  box-shadow: var(--pad-sombra);
  padding: 22px 20px;
  position: relative;
}
.rota-card--destaque { border-color: var(--pad-azul-vivo); border-width: 2px; }
.rota-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: #D6DEE8;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.rota-card h3 { font-size: 1.08rem; font-weight: 800; color: var(--pad-azul); display: inline-block; }
.rota-qtd {
  float: right;
  background: #EEF2F7;
  color: var(--pad-azul-vivo);
  font-size: .72rem; font-weight: 800;
  padding: 4px 10px; border-radius: 999px;
  margin-top: 2px;
}
.rota-card p { font-size: .88rem; color: var(--pad-cinza); line-height: 1.5; margin-top: 8px; clear: both; }
.rota-fecho {
  margin: 30px auto 0;
  max-width: 560px;
  text-align: center;
  background: #fff;
  border: 1.5px solid var(--pad-borda);
  border-radius: 999px;
  padding: 13px 22px;
  font-size: .93rem; font-weight: 600;
  color: var(--pad-azul);
}

/* bônus: descrição + selo incluído */
.bonus-desc {
  font-size: .88rem;
  color: var(--pad-cinza);
  line-height: 1.5;
  margin: -10px 0 12px;
}
.bonus-incluido {
  display: block;
  color: var(--pad-verde);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* resumo da oferta */
.resumo-oferta {
  max-width: 560px;
  margin: 0 auto 36px;
  background: #fff;
  border: 1.5px solid var(--pad-borda);
  border-radius: var(--pad-radius);
  box-shadow: var(--pad-sombra);
  padding: 28px 26px;
}
.resumo-titulo { text-align: center; font-size: 1.2rem; font-weight: 800; color: var(--pad-azul); margin-bottom: 18px; }
.resumo-lista { list-style: none; padding: 0; margin: 0; }
.resumo-lista li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 2px;
  border-bottom: 1px dashed #dfe3ea;
  font-size: .93rem; color: var(--pad-azul);
}
.resumo-lista li strong { color: var(--pad-cinza); font-weight: 700; white-space: nowrap; }
.resumo-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 2px 0;
  font-size: 1rem; font-weight: 800; color: var(--pad-azul);
}
.resumo-total s { color: #d32f2f; }
.resumo-hoje {
  margin-top: 14px;
  text-align: center;
  background: #e6f6ec;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 1rem;
  color: #14532d;
}
.resumo-hoje strong { font-size: 1.25rem; }

@media (max-width: 480px) {
  .stat strong { font-size: 1.6rem; }
  .rota-num { font-size: 1.6rem; }
  .resumo-lista li { font-size: .88rem; }
}

/* ==========================================
   HERO DARK (Kit Estudo ANAC)
   ========================================== */
.hero--dark {
  background:
    linear-gradient(180deg, #0B1E3F 0%, #0f2547 100%);
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(180deg, #0B1E3F 0%, #0f2547 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
  padding-top: 56px;
  padding-bottom: 56px;
  color: #f5f7fa;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hero-pill {
  display: flex;
  justify-content: center;
  margin: 0 auto 28px;
}
.hero-pill span {
  display: inline-block;
  padding: 10px 22px;
  border: 1.5px solid #22c55e;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #22c55e;
  text-transform: uppercase;
  background: rgba(34, 197, 94, 0.06);
}

.hero-title--serif {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  text-align: center;
  color: #ffffff;
  max-width: 980px;
  margin: 0 auto 22px;
}
.hero-title--serif .hl-green {
  color: #22c55e;
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle--light {
  color: rgba(226, 232, 240, 0.85);
  text-align: center;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 32px;
}
.hero-subtitle--light strong {
  color: #ffffff;
  font-weight: 700;
}

.btn-cta--green {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  border-color: #16a34a;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}
.btn-cta--green:hover {
  background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.45);
}

.hero-student-proof--dark .student-proof-text {
  color: rgba(226, 232, 240, 0.9);
}
.hero-student-proof--dark .avatar-stack-img {
  border-color: #0f2547;
}

/* No hero dark, o mockup ganha um leve highlight */
.hero--dark .hero-mockup-wrapper {
  max-width: 1040px;
  margin: 8px auto 28px;
}
.hero--dark .hero-mockup-img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.45));
}

@media (max-width: 640px) {
  .hero-pill span { font-size: .7rem; padding: 8px 16px; letter-spacing: 1px; }
  .hero-title--serif { font-size: clamp(1.9rem, 7vw, 2.6rem); }
}

/* ── Esteira de retrato (resumos A4 em pé) — cards mais estreitos ── */
.esteira--retrato .esteira-item { width: 260px; }
@media (min-width: 700px)  { .esteira--retrato .esteira-item { width: 320px; } }
@media (min-width: 1100px) { .esteira--retrato .esteira-item { width: 380px; } }
@media (max-width: 480px)  { .esteira--retrato .esteira-item { width: 200px; } }
.esteira--retrato .esteira-item img { aspect-ratio: 1100 / 1555; object-fit: cover; }

/* ==========================================================
   TEMA CREDIBILIDADE — Kit Estudo ANAC (navy · dourado · verde)
   Camada final: unifica a página com o DNA das capas e dos mapas.
   ========================================================== */

/* Tipografia editorial: títulos em serifa (mesma família do hero) */
.section-title,
.oferta-nome,
.resumo-titulo,
.warranty-card h3,
.final-cta-card h3,
.kit-head h3,
.rota-card h3,
.bonus-title,
.ps-card h3 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif !important;
  letter-spacing: -.01em;
}
.section-title { font-weight: 700 !important; font-size: clamp(26px, 4.6vw, 42px) !important; line-height: 1.12; }
.section-subtitle { font-size: 1.05rem; max-width: 720px; margin-left: auto; margin-right: auto; }

/* Banner promo: navy com filete dourado */
.promo-banner {
  background: linear-gradient(90deg, #081A33, #0F2A4A) !important;
  border-bottom: 2px solid var(--gold);
  letter-spacing: .2px;
}
.promo-banner strong { color: var(--gold); }

/* Pills de seção: dourado suave com texto navy */
.section-label {
  background: var(--gold-soft) !important;
  color: #6B4F14 !important;
  border: 1px solid #E7D7A6 !important;
}

/* Botões: navy sólido + borda dourada discreta; hover dourado */
.btn-cta {
  background: linear-gradient(180deg, #0F2A4A 0%, #0A2540 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(201,162,74,.55) !important;
  box-shadow: 0 6px 18px rgba(10,37,64,.22) !important;
  border-radius: 10px !important;
}
.btn-cta:hover {
  background: linear-gradient(180deg, #1a3a6b 0%, #0F2A4A 100%) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(10,37,64,.30) !important;
}
/* CTA verde (hero e oferta principal) continua verde — é o botão de ação */
.btn-cta--green {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%) !important;
  border-color: #15803d !important;
  box-shadow: 0 8px 22px rgba(34,197,94,.35) !important;
}
.btn-cta--green:hover { background: linear-gradient(180deg, #16a34a 0%, #15803d 100%) !important; }

/* Stats: números dourados sobre navy, faixa escura logo após o hero */
.stats-faixa {
  background: #0A2540 !important;
  border-top: 1px solid #123055 !important;
  border-bottom: 2px solid var(--gold) !important;
  padding: 30px 0 !important;
}
.stat strong { color: var(--gold) !important; font-family: 'Fraunces', Georgia, serif; font-size: 2.3rem !important; }
.stat span { color: #C9D3E0 !important; font-weight: 600; letter-spacing: .02em; }

/* Cards em geral: borda creme, sombra suave, acabamento dourado no topo dos destaques */
.kit-card, .rota-card, .ps-card, .resumo-oferta, .oferta, .bonus-card, .faq-item, .testimonial-card {
  border-color: #E3E0D6 !important;
  box-shadow: 0 6px 22px rgba(10,37,64,.06) !important;
}
.kit-ic {
  background: #0A2540 !important;
  border: 1px solid #0A2540 !important;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(201,162,74,.6);
}
.kit-faixa {
  background: var(--gold-soft) !important;
  border: 1px solid #E7D7A6 !important;
  color: #0A2540 !important;
}

/* Rota dos módulos: número dourado, destaque com borda dourada */
.rota-num { color: var(--gold) !important; }
.rota-qtd { color: var(--green) !important; font-weight: 800; }
.rota-card--destaque { border-color: var(--gold) !important; border-width: 2px !important; background: linear-gradient(180deg, #FFFDF7, #fff) !important; }

/* Problema × Solução */
.ps-ic--problema { background: #FDECEC; color: #B32222; }
.ps-ic--solucao { background: var(--green-soft); color: var(--green); }

/* Bônus */
.bonus-pill {
  background: #0A2540 !important; color: var(--gold) !important;
  border: 1px solid var(--gold) !important; letter-spacing: .14em;
}
.bonus-value-free { background: var(--green) !important; color: #fff !important; }
.bonus-incluido { color: var(--green) !important; }

/* Oferta: preço navy, economia verde, destaque com filete dourado no topo */
.oferta--destaque { border-color: var(--gold) !important; position: relative; overflow: hidden; }
.oferta--destaque::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px;
  background: linear-gradient(90deg, #0A2540, var(--gold), var(--green));
}
.preco-valor { color: #0A2540 !important; font-family: 'Fraunces', Georgia, serif; }
.preco-economia { color: var(--green) !important; font-weight: 800; }
.resumo-total s { color: #B32222 !important; }
.resumo-hoje { background: var(--green-soft) !important; color: #0F3D2A !important; border: 1px solid #CFE9DA; }
.selo-oferta { border: 1px solid #E3E0D6 !important; color: #0A2540 !important; background: #fff; }

/* Depoimentos: estrelas douradas, cartão creme */
.testimonial-stars { color: var(--gold) !important; }
.testimonial-card { background: #FFFDF8 !important; }
.testimonial-author-info h4 { color: #0A2540; }
.testimonial-author-info p { color: var(--green); font-weight: 600; }

/* Garantia: selo verde, borda dourada fina */
.warranty-card {
  border: 1.5px solid #E7D7A6 !important;
  background: linear-gradient(180deg, #FFFDF7 0%, #fff 100%) !important;
  box-shadow: 0 10px 30px rgba(10,37,64,.08) !important;
}

/* FAQ */
.faq-trigger { color: #0A2540 !important; font-weight: 700 !important; }
.faq-icon { color: var(--gold); font-weight: 900; }
.faq-item[open] , .faq-item.open { border-color: var(--gold) !important; }

/* Seção final escura: navy com card de borda dourada (já setado na raiz) */
.section--dark .section-label { background: rgba(201,162,74,.12) !important; color: var(--gold) !important; border-color: rgba(201,162,74,.4) !important; }
.section--dark .section-subtitle { color: #C9D3E0 !important; }
.final-cta-card h3 { color: #fff; }
.final-cta-card p { color: #C9D3E0; }
.final-cta-bullets li { color: #E6ECF3; }
.final-cta-bullets .check { color: var(--gold); }

/* Rodapé: navy escuro, marca em dourado */
.footer { background: #081A33 !important; border-top: 2px solid var(--gold) !important; color: #9FB0C4; }
.footer-logo { color: var(--gold) !important; font-family: 'Fraunces', Georgia, serif; letter-spacing: .08em; text-transform: uppercase; font-size: 1.1rem; }
.footer-disclaimers p, .footer-copyright { color: #8A9BB0 !important; }
.footer-links a { color: #C9D3E0; }
.footer-links a:hover { color: var(--gold); }
.footer-divider { background: #123055; }

/* Hero: respiro e brilho sutil atrás do mockup */
.hero--dark { padding-top: 64px; }
.hero--dark .hero-mockup-wrapper { position: relative; }
.hero--dark .hero-mockup-wrapper::before {
  content: ""; position: absolute; inset: 10% -6% -8% -6%; z-index: -1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201,162,74,.18), transparent 70%);
  filter: blur(10px);
}

/* ==========================================================
   CARROSSEL — 1 imagem centralizada por vez, loop infinito
   ========================================================== */
.esteira { overflow: visible; padding: 0; }
.esteira::before, .esteira::after { display: none; }
.esteira-fita { animation: none !important; width: auto; will-change: auto; display: flex; align-items: center; gap: 24px; }

/* sai do .container (960px) e ocupa a tela inteira */
.carrossel {
  --card: min(82vw, 900px);
  position: relative;
  width: calc(100vw - var(--sbw, 0px));
  margin-left: calc(50% - (100vw - var(--sbw, 0px)) / 2);
}
.carrossel--retrato { --card: min(82vw, 520px); }
.carrossel:focus { outline: none; }

.carrossel .esteira-janela {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 10px calc((100% - var(--card)) / 2) 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.carrossel .esteira-janela::-webkit-scrollbar { display: none; }
.carrossel .esteira-janela.arrastando { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.carrossel .esteira-janela.arrastando img { pointer-events: none; }

.carrossel .esteira-item,
.carrossel .esteira--retrato .esteira-item {
  flex: 0 0 var(--card);
  width: var(--card);
  scroll-snap-align: center;
}
.carrossel .esteira-item img {
  display: block; width: 100%; height: auto;
  border: 1px solid #E3E0D6; border-radius: 12px;
  box-shadow: 0 14px 38px rgba(10,37,64,.16);
  user-select: none; -webkit-user-drag: none;
}
.carrossel .esteira--retrato .esteira-item img { aspect-ratio: auto; object-fit: contain; }

/* Setas: sempre ao lado da imagem central */
.carrossel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 54px; height: 54px; border-radius: 50%;
  background: #0A2540; color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 32px; line-height: 1; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 8px 24px rgba(10,37,64,.28);
  transition: background .15s, transform .15s;
}
.carrossel-btn:hover { background: #1a3a6b; transform: translateY(-50%) scale(1.06); }
.carrossel-btn--prev { left:  max(8px, calc(50% - var(--card) / 2 - 72px)); }
.carrossel-btn--next { right: max(8px, calc(50% - var(--card) / 2 - 72px)); }
@media (max-width: 700px) {
  .carrossel { --card: 88vw; }
  .carrossel--retrato { --card: 80vw; }
  .carrossel-btn { width: 42px; height: 42px; font-size: 24px; }
  .carrossel-btn--prev { left: 6px; }
  .carrossel-btn--next { right: 6px; }
}

/* ==========================================================
   RESPONSIVO + PERFORMANCE
   ========================================================== */
html, body { overflow-x: clip; }
img, video { max-width: 100%; height: auto; }
.carrossel .esteira-item img { aspect-ratio: 1100 / 733; object-fit: contain; background: #fff; }
.carrossel--retrato .esteira-item img { aspect-ratio: 1055 / 1491; }
/* renderiza seções abaixo da dobra só quando se aproximam */
.section:nth-of-type(n+5), footer { content-visibility: auto; contain-intrinsic-size: auto 900px; }
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(26px, 8vw, 34px); line-height: 1.15; }
  .hero-subtitle { font-size: 15px; }
  .section { padding: 56px 0; }
  .section-title { font-size: clamp(22px, 6.5vw, 28px); }
  .btn-cta { width: 100%; max-width: 420px; display: inline-block; text-align: center; font-size: 16px; padding: 16px 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  table { display: block; overflow-x: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ==========================================
   SLIDESHOW — um material por vez, troca no lugar
   (padrão clonado do english-mindmaps)
   ========================================== */
.slides {
  position: relative;
  width: min(100%, 880px);
  margin: 20px auto 0;
}
.slides--retrato { width: min(100%, 420px); }

.slides-palco {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;          /* mapas: 1100x733 */
  border-radius: 12px;
  overflow: hidden;
}
.slides--retrato .slides-palco { aspect-ratio: 1055 / 1491; }  /* resumos em retrato */

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease;
}
.slide.is-active { opacity: 1; visibility: visible; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.slides-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light, #E3E0D6);
  background: #ffffff;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
  z-index: 3;
  transition: background 0.15s, transform 0.15s;
}
.slides-nav:hover { background: var(--gold-soft); transform: translateY(-50%) scale(1.06); }
.slides-nav--prev { left: -14px; }
.slides-nav--next { right: -14px; }

.slides-dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.slides-dots button {
  width: 7px; height: 7px; padding: 0; border: none; border-radius: 50%;
  background: #D6D2C6; cursor: pointer; transition: all 0.2s;
}
.slides-dots button.is-active { background: var(--text-dark); width: 20px; border-radius: 4px; }

@media (max-width: 700px) {
  .slides { width: 100%; margin-top: 20px; }
  .slides--retrato { width: min(100%, 320px); }
  .slides-nav { width: 34px; height: 34px; }
  .slides-nav--prev { left: 2px; }
  .slides-nav--next { right: 2px; }
}
}

/* ==========================================
   NÍVEIS — abas A1→C2 + painel de conteúdo
   ========================================== */
.niveis { margin-top: 28px; }

.nivel-abas {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.nivel-aba {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  padding: 16px 14px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font-title);
  transition: border-color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.nivel-aba:hover { border-color: var(--gold); transform: translateY(-2px); }
.nivel-aba.is-active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(201, 162, 74, 0.45);
}
.nivel-aba.is-active .nivel-sigla,
.nivel-aba.is-active .nivel-rotulo { color: #08213B; }
.nivel-sigla { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.nivel-rotulo { font-size: 0.86rem; font-weight: 700; color: var(--text-dark); }
.nivel-qtd { font-size: 0.8rem; color: var(--text-light); }
.nivel-aba.is-active .nivel-qtd { color: #5e4a1a; }

.nivel-painel {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  animation: nivel-entra 0.25s ease;
}
@keyframes nivel-entra { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.nivel-painel-titulo {
  font-family: var(--font-title);
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.4px;
}
.nivel-painel-qtd { margin-top: 8px; font-size: 0.94rem; font-weight: 700; color: var(--text-dark); }
.nivel-painel-obj { margin-top: 12px; font-size: 0.98rem; line-height: 1.6; color: var(--text-muted); }
.nivel-painel-obj strong { color: var(--text-dark); }

.nivel-colunas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 26px;
}
.nivel-col h4 {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.nivel-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.nivel-col li {
  position: relative;
  padding-left: 15px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.nivel-col li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .nivel-abas { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .nivel-colunas { grid-template-columns: 1fr; gap: 22px; }
  .nivel-painel { padding: 22px; border-radius: 18px; }
}
@media (max-width: 480px) {
  .nivel-abas { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .nivel-aba { padding: 12px 11px; border-radius: 12px; }
  .nivel-sigla { font-size: 1.25rem; }
  .nivel-rotulo { font-size: 0.8rem; }
  .nivel-qtd { font-size: 0.74rem; }
}

/* abas em 4 colunas (4 módulos ANAC) */
.nivel-abas--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .nivel-abas--4 { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================
   INTERATIVIDADE — reveal ao rolar + hovers
   ========================================== */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--rv-delay, 0s); will-change: opacity, transform; }
.rv.rv-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

.bonus-card, .kit-card, .testimonial-card, .stat {
  transition: transform .22s ease, box-shadow .22s ease;
}
.bonus-card:hover, .kit-card:hover, .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(10, 37, 64, 0.12);
}
.stat:hover { transform: translateY(-3px); }
