/* 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: #FDFBED; /* creme (seções alternadas + fundo) */
  --bg-secondary: #F4F4EE; /* creme acinzentado */
  --bg-alt: #E4E1D9; /* creme escuro / borda forte */

  /* Amarelo = cor de FUNDO (botões, marca-texto, selos). Nunca texto sobre claro. */
  --primary-color: #FCD726;
  --primary-shadow: #EAC30C;
  --primary-glow: rgba(252, 215, 38, 0.45);
  --on-primary: #121210; /* texto por cima do amarelo */

  /* CTA verde: destaca do amarelo da identidade e casa com o aviso "botão verde" */
  --cta: #15803D;
  --cta-hover: #0F6A31;
  --cta-glow: rgba(21, 128, 61, 0.42);

  --text-dark: #171613; /* quase preto */
  --text-muted: #45433E;
  --text-light: #65635E;

  --border-color: #E4E1D9;
  --border-light: rgba(0, 0, 0, 0.07);
  
  --success-color: #16a34a; /* Classic green */
  --success-bg: #e6ffe0;
  
  /* 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: 34px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  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 marca-texto amarelo (igual à referência) */
.hl-gold {
  background: var(--primary-color);
  color: var(--on-primary);
  font-weight: 900;
  padding: 0 8px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* 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(--text-dark);
  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(252, 215, 38, .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: var(--primary-color);
  color: var(--on-primary);
  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(--cta);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  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(--cta-hover);
  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 + .section { padding-top: 34px; }

.hero {
  background: linear-gradient(180deg, #FBF7E4 0%, #FDFBED 60%);
  padding: 40px 0 26px 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(252, 215, 38, 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: #65635E;
  font-weight: 500;
}

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

.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: var(--on-primary);
  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 #EDEBE2;
  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: #FEF6D0;
  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: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  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: 4 / 3;
  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: var(--on-primary);
  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.12rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-top: 12px;
  line-height: 1.3;
}

.bonus-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-light);
  margin-top: 8px;
  flex: 1;
}

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

.bonus-value-original {
  font-size: 13px;
  color: #65635E;
  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: #65635E;
  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: #65635E;
  margin-bottom: 24px;
}

.countdown-bar {
  background: #171613;
  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: var(--on-primary);
  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 110s 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: #A88A00;
  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: #FEF6D0;
  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: #FDFBED;
  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 #F4F4EE;
  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 #F4F4EE;
}

.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: #FDFBED;
  border: 1px solid #E4E1D9;
  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: #FEF6D0;
  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 #D6D2C6;
  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: #FDFBED;
  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: var(--on-primary);
  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 #EDEBE2;
  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: #65635E;
  line-height: 1.6;
}

.footer-divider {
  height: 1px;
  background: #EDEBE2;
  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: #65635E;
}

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

.footer-links a {
  color: #65635E;
  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: #1A1815;
  color: #bdb3a3;
  border-top: 1px solid #211F1B;
  border-bottom: 1px solid #211F1B;
}

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

.section--dark .section-subtitle {
  color: #BDB3A3;
}

.section--dark .section-label { color: #CFC6B4; }
.section--dark .checkout-security-badge { color: #BDB3A3; }

.section--dark .preview-subtext-card {
  background: #171613;
  border-color: #26241F;
}

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

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

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

.section--dark .bonus-card {
  background: #171613;
  border-color: #26241F;
  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: #8C8981;
}

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

.section--dark .faq-item {
  background: #171613;
  border-color: #26241F;
}

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

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

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

/* ==========================================
   FINAL CTA SECTION STYLING
   ========================================== */
.final-cta-card {
  background: #171613;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(255,220,0,0.15);
  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: #8C8981;
  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: #65635E;
}

.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: #65635E;
}

.final-cta-bullets {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-top: 24px;
  border-top: 1px solid #26241F;
  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: var(--on-primary);
  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 #E4E1D9;
  border-bottom: 3px solid #D6D2C6;
  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: #D6D2C6;
}

.curriculum-tab-btn.active {
  background: var(--primary-color);
  color: var(--on-primary);
  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: #F4F4EE;
  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 #D6D2C6;
  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 #E4E1D9;
  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: #FEF6D0;
  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 #E4E1D9;
  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: #D6D2C6;
}

.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 #E4E1D9;
  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: #D6D2C6;
  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 #E4E1D9;
  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: #65635E;
  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 #E4E1D9;
  padding-top: 16px;
}

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

.value-stack-right-box {
  background: var(--bg-secondary);
  border: 1px solid #E4E1D9;
  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 #E4E1D9;
  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: var(--on-primary);
  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: #8C8981;
  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: #8C8981;
  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: 22px auto 0 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: #E4E1D9;
  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(--text-dark);
  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(252, 215, 38, 0.14);
  border: 1px solid rgba(252, 215, 38, 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(--text-dark);
  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: #65635E; font-weight: 500; }
.offer-save-badge {
  margin-top: 8px;
  display: inline-block;
  background: #FEF6D0;
  color: #7A6B12;
  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: #F4F4EE;
  padding: 40px 0;
}
@keyframes esteira-rola {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-50% - 8px), 0, 0); }
}    

/* ===== Tudo que vem dentro (kit-grid + checklist) ===== */
.kit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 34px;
}
@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-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  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: #FEF6D0;
  border: 1px solid #FBEFAE;
  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(--text-dark); line-height: 1.25; }
.kit-head p  { font-size: 0.86rem; color: var(--text-light); line-height: 1.45; margin-top: 3px; }
@media (min-width: 900px) { .kit-head { min-height: 66px; } .kit-head p { min-height: 2.9em; } }
.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: 0.97rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.lista-check li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--success-color);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.kit-faixa {
  margin: 34px auto 0;
  max-width: 620px;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: 999px;
  padding: 14px 22px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-subtle);
}

/* Depoimentos reais do WhatsApp (prints em pé, mostram a parte de baixo da conversa) */
.testimonial-card--wpp .testimonial-image-wrapper img {
  height: 330px;
  object-fit: cover;
  object-position: center bottom;
}
.testimonial-avatar--wpp {
  width: 36px; height: 36px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

/* Cards do WhatsApp maiores */
.testimonial-card--wpp { min-width: 340px; max-width: 340px; }
.testimonial-card--wpp .testimonial-image-wrapper img { height: 500px; }
@media (max-width: 480px) {
  .testimonial-card--wpp { min-width: 300px; max-width: 300px; }
  .testimonial-card--wpp .testimonial-image-wrapper img { height: 440px; }
}

/* ===== Carrossel de avaliações (formato farmaciamapeada: setas + progresso + bolinhas) ===== */
.testimonials-carousel-wrap { position: relative; max-width: 1200px; margin: 0 auto; }
.testimonials-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding: 8px 24px 20px;
  -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scroll-padding-inline: 24px;
  overscroll-behavior-inline: contain; scroll-behavior: smooth; scrollbar-width: none;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonial-item { flex: 0 0 82%; max-width: 340px; scroll-snap-align: center; }
@media (min-width: 560px)  { .testimonial-item { flex: 0 0 46%; max-width: 380px; } }
@media (min-width: 900px)  { .testimonial-item { flex: 0 0 30%; max-width: 340px; } }
.testimonial-item img {
  width: 100%; height: 520px; object-fit: cover; object-position: center bottom;
  border-radius: 12px; background: #fff; border: 1px solid var(--border-color);
  box-shadow: 0 8px 26px rgba(16, 24, 40, 0.10);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s cubic-bezier(.2,.8,.2,1);
}
.testimonial-item img:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(252, 215, 38, 0.18); }
.carousel-progress { height: 3px; background: rgba(252, 215, 38, 0.15); margin: 0 24px 10px; border-radius: 999px; overflow: hidden; }
.carousel-progress-inner { height: 100%; background: var(--text-dark); border-radius: 999px; width: 25%; transition: width .25s ease; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; background: rgba(252, 215, 38, 0.25); cursor: pointer; transition: all .2s; }
.carousel-dots button.active { background: var(--text-dark); width: 22px; border-radius: 6px; }
.carousel-nav {
  position: absolute; top: 45%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.96); border: 1px solid rgba(252, 215, 38, 0.18); box-shadow: 0 4px 14px rgba(0,0,0,.10);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-dark); z-index: 5;
  transition: transform .2s, box-shadow .2s;
}
.carousel-nav:hover { transform: translateY(-50%) scale(1.06); box-shadow: 0 10px 28px rgba(252, 215, 38, 0.22); }
.carousel-nav[data-dir="prev"] { left: 4px; }
.carousel-nav[data-dir="next"] { right: 4px; }
.carousel-nav svg { width: 20px; height: 20px; }
@media (max-width: 480px) { .testimonial-item img { height: 460px; } }
/* Com poucos prints: itens maiores no desktop (≈2 por tela) para o carrossel ter percurso */
@media (min-width: 900px) { .testimonial-item { flex: 0 0 42%; max-width: 420px; } .testimonial-item img { height: 600px; } }

/* Avaliações compactas (mini headline + prints menores) */
.mini-headline {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.testimonials-carousel-wrap .testimonial-item { flex: 0 0 62%; max-width: 250px; }
@media (min-width: 560px)  { .testimonials-carousel-wrap .testimonial-item { flex: 0 0 34%; max-width: 260px; } }
@media (min-width: 900px)  { .testimonials-carousel-wrap .testimonial-item { flex: 0 0 24%; max-width: 270px; } }
.testimonials-carousel-wrap .testimonial-item img { height: 380px; }
@media (max-width: 480px)  { .testimonials-carousel-wrap .testimonial-item img { height: 330px; } }
.testimonials-carousel-wrap + .container, .testimonials-carousel-wrap { padding-top: 0; }

/* ===== Avaliações: 1 por vez, com setas ===== */
.testimonials-carousel-wrap .testimonial-item,
.testimonials-carousel-wrap .testimonial-item[class] {
  flex: 0 0 100%;
  max-width: 460px;
  margin: 0 auto;
}
.testimonials-carousel-wrap .testimonials-scroll { padding-left: 0; padding-right: 0; justify-content: flex-start; }
.testimonials-carousel-wrap .testimonial-item img { height: auto; max-height: 620px; object-fit: contain; background: transparent; border: none; box-shadow: none; }
@media (max-width: 480px) {
  .testimonials-carousel-wrap .testimonial-item { max-width: 88%; }
  .testimonials-carousel-wrap .testimonial-item img { max-height: 520px; }
}
/* setas sempre visíveis e por fora do print */
.testimonials-carousel-wrap .carousel-nav { top: 50%; }
.testimonials-carousel-wrap .carousel-nav[data-dir="prev"] { left: 0; }
.testimonials-carousel-wrap .carousel-nav[data-dir="next"] { right: 0; }

/* ===== Bônus menores (4 por linha no desktop, 2 no tablet) ===== */
@media (min-width: 600px) {
  .bonus-card { flex: 1 1 calc(50% - 20px); max-width: calc(50% - 20px); min-width: 220px; padding: 20px; gap: 12px; }
}
@media (min-width: 900px) {
  .bonus-card { flex: 1 1 calc(33.33% - 20px); max-width: calc(33.33% - 20px); padding: 20px; }
}
@media (min-width: 1100px) {
  .bonus-card { flex: 1 1 calc(25% - 20px); max-width: calc(25% - 20px); padding: 18px; }
}
.bonus-card .bonus-title { font-size: 1rem; }
.bonus-card .btn-cta--full { padding: 11px 16px; font-size: 0.92rem; }

/* ===== Rota de níveis (Como estudar) ===== */
.rota-lista { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin: 36px auto 0; }
.rota-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #ffffff; border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 20px 22px;
  box-shadow: var(--shadow-subtle); text-align: left;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.rota-item:hover { border-color: var(--primary-color); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.rota-num {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 10px;
  background: var(--primary-color); color: var(--on-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
}
.rota-texto h3 { font-size: 1.02rem; font-weight: 800; color: var(--text-dark); margin-bottom: 5px; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.rota-texto p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.5; }
.rota-badge {
  background: rgba(252, 215, 38, .35); color: var(--text-dark);
  font-size: .74rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; white-space: nowrap;
}
.rota-total {
  max-width: 760px; margin: 24px auto 0; text-align: center;
  background: #fff; border: 1.5px solid var(--border-color); border-radius: 999px;
  padding: 13px 22px; font-size: .93rem; color: var(--text-muted); box-shadow: var(--shadow-subtle);
}
.rota-total strong { color: var(--text-dark); }
@media (max-width: 480px) {
  .rota-item { padding: 16px; gap: 12px; }
  .rota-num { width: 36px; height: 36px; font-size: .85rem; }
  .rota-texto h3 { font-size: .95rem; }
  .rota-texto p { font-size: .88rem; }
}   

/* ===== Avaliações: carrossel com card, peek lateral e destaque no centro ===== */
.testimonials-carousel-wrap { padding: 0 8px; }
.testimonials-carousel-wrap .testimonials-scroll { padding: 14px 0 22px; gap: 18px; }
.testimonials-carousel-wrap .testimonial-item,
.testimonials-carousel-wrap .testimonial-item[class] {
  flex: 0 0 76%;
  max-width: 400px;
  margin: 0;
  transition: transform .35s ease, opacity .35s ease;
  opacity: .45;
  transform: scale(.9);
}
.testimonials-carousel-wrap .testimonial-item.is-active { opacity: 1; transform: scale(1); }
.testimonials-carousel-wrap .testimonial-item img {
  height: auto;
  max-height: 560px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
  padding: 8px;
}
@media (min-width: 700px)  { .testimonials-carousel-wrap .testimonial-item { flex: 0 0 42%; max-width: 380px; } }
@media (min-width: 1100px) { .testimonials-carousel-wrap .testimonial-item { flex: 0 0 32%; max-width: 400px; } }
@media (max-width: 480px)  { .testimonials-carousel-wrap .testimonial-item { flex: 0 0 82%; } .testimonials-carousel-wrap .testimonial-item img { max-height: 480px; } }

/* setas mais visíveis */
.testimonials-carousel-wrap .carousel-nav {
  width: 48px; height: 48px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 20px rgba(16, 24, 40, .16);
}
.testimonials-carousel-wrap .carousel-nav[data-dir="prev"] { left: -4px; }
.testimonials-carousel-wrap .carousel-nav[data-dir="next"] { right: -4px; }

/* ===== Avaliações: marquee restaurado, tamanho médio ===== */
.testimonial-card--wpp { min-width: 300px; max-width: 300px; padding: 18px; }
.testimonial-card--wpp .testimonial-image-wrapper img {
  height: 380px;
  object-fit: cover;
  object-position: center bottom;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: var(--radius-md);
}
.testimonial-card--wpp .testimonial-quote { font-size: 0.85rem; }
@media (max-width: 480px) {
  .testimonial-card--wpp { min-width: 270px; max-width: 270px; }
  .testimonial-card--wpp .testimonial-image-wrapper img { height: 340px; }
}

/* ===== Imagens dos bônus menores dentro do card ===== */
.bonus-image-wrapper img { max-width: 84%; margin: 0 auto; }
@media (max-width: 599px) { .bonus-image-wrapper img { max-width: 70%; } }

/* ===== VSL (vídeo de como acessa e usa o material) ===== */
.vsl-section { padding-top: 48px; padding-bottom: 48px; }
.vsl-wrap { max-width: 320px; margin: 18px auto 0; }
.vsl-faixa {
  text-align: center;
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.35;
  padding: 13px 18px;
  letter-spacing: .3px;
}
.vsl-faixa--topo {
  background: #dc2d2d;
  color: #ffffff;
  border-radius: 10px 10px 0 0;
}
.vsl-faixa--rodape {
  background: #FCD726;
  color: #171613;
  border-radius: 0 0 10px 10px;
  font-size: 0.88rem;
  letter-spacing: .6px;
}
.vsl-player {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
  border-left: 3px solid #dc2d2d;
  border-right: 3px solid #dc2d2d;
}
@media (max-width: 480px) {
  .vsl-wrap { max-width: 270px; }
  .vsl-faixa { font-size: 0.86rem; padding: 11px 14px; }
}

/* ===== DOIS PLANOS (R$10 e R$19,90) ===== */
.planos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 860px;
  margin: 30px auto 0;
  align-items: start;
}
@media (min-width: 820px) { .planos { grid-template-columns: 1fr 1fr; gap: 26px; } }

.plano {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.plano--destaque {
  border: 2.5px solid var(--primary-color);
  box-shadow: 0 10px 34px rgba(252, 215, 38, .18);
}
@media (min-width: 820px) { .plano--destaque { transform: scale(1.03); } }

.plano-selo {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--on-primary);
  font-size: .72rem; font-weight: 800; letter-spacing: 1px;
  padding: 6px 18px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(252, 215, 38, .35);
}
.plano-tag {
  display: inline-block;
  font-size: .74rem; font-weight: 800; letter-spacing: 1.4px;
  color: var(--text-light);
  background: var(--bg-secondary);
  padding: 6px 16px; border-radius: 999px;
  margin: 0 auto 16px;
}
.plano-tag--destaque { color: var(--primary-shadow); background: rgba(252, 215, 38, .12); }

.plano-preco { margin-bottom: 20px; }
.plano-de { display: block; font-size: .88rem; color: #c0392b; font-weight: 600; }
.plano-de s { color: #c0392b; }
.plano-valor {
  font-family: var(--font-title);
  font-weight: 900; font-size: 3.1rem; line-height: 1;
  color: var(--text-dark); letter-spacing: -1px; margin: 4px 0 2px;
}
.plano--destaque .plano-valor { color: var(--primary-color); font-size: 3.4rem; }
.plano-cifra { font-size: 1.4rem; vertical-align: super; margin-right: 2px; }
.plano-cent { font-size: 1.7rem; }
.plano-obs { display: block; font-size: .8rem; color: var(--text-light); }

.plano-lista { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 11px; text-align: left; }
.plano-lista li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; color: var(--text-dark); line-height: 1.4; }
.plano-lista li.off { color: #8C8981; }
.plano-ic { flex: 0 0 auto; margin-top: 2px; }
.plano-ic--on { color: var(--success-color); }
.plano-ic--off { color: #D6D2C6; }

.tag-excl {
  display: inline-block;
  background: #FCD726; color: #171613;
  font-size: .62rem; font-weight: 800; letter-spacing: .6px;
  padding: 2px 7px; border-radius: 5px; margin-left: 4px;
  vertical-align: middle; white-space: nowrap;
}

.plano-btn { margin-top: auto; font-size: 1rem; padding: 15px 20px; }
.plano-btn--simples { background: #ffffff; color: var(--primary-color); border: 2px solid var(--primary-color); box-shadow: none; }
.plano-btn--simples:hover { background: var(--primary-color); color: var(--on-primary); }
.plano-extra { display: block; margin-top: 11px; font-size: .78rem; color: var(--primary-shadow); font-weight: 700; }

/* Selo EXCLUSIVO nos cards de bônus */
.bonus-value-free--novo { background: var(--primary-color); color: var(--on-primary); }

/* Mockup no topo de cada plano */
.plano-mockup { margin: 0 auto 16px; max-width: 260px; }
.plano-mockup img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}
.plano--destaque .plano-mockup { max-width: 280px; }
@media (max-width: 480px) { .plano-mockup { max-width: 220px; } }

/* ==========================================
   OFERTA — layout da referência (inglesfluido)
   Card branco arredondado: mockup → preço → resumo da compra → botão → checks
   ========================================== */
.oferta-wrap { max-width: 640px; }
.oferta-label {
  text-align: center; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-light);
}
.oferta-titulo {
  margin-top: 12px; text-align: center; font-family: var(--font-title);
  font-size: clamp(26px, 5.2vw, 38px); font-weight: 800; line-height: 1.15;
  color: var(--text-dark); letter-spacing: -0.5px;
}
.oferta-card {
  margin-top: 34px; background: #ffffff; border: 1px solid var(--border-color);
  border-radius: 28px; padding: 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.oferta-mockup { width: 100%; height: auto; display: block; border-radius: 20px; }

.oferta-preco { margin-top: 24px; text-align: center; }
.oferta-de { font-size: 0.9rem; color: var(--text-light); }
.oferta-de s { color: var(--text-light); }
.oferta-valor {
  margin-top: 4px; font-family: var(--font-title);
  font-size: clamp(40px, 9vw, 52px); font-weight: 800;
  color: var(--text-dark); line-height: 1; letter-spacing: -1.5px;
}
.oferta-obs { margin-top: 10px; font-size: 0.78rem; color: var(--text-light); }
.oferta-garantia-mini { margin-top: 6px; font-size: 0.78rem; font-weight: 600; color: var(--text-dark); }

.oferta-resumo { margin-top: 28px; background: var(--bg-secondary); border-radius: 20px; padding: 20px; }
.resumo-titulo {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-light);
}
.resumo-lista { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.resumo-item {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  font-size: 0.9rem; color: var(--text-muted); text-align: left;
}
.resumo-preco { flex: 0 0 auto; font-weight: 700; color: var(--text-dark); }
.resumo-total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--border-color);
  font-size: 0.9rem; font-weight: 700; color: var(--text-dark);
}
.resumo-total s { color: var(--text-light); font-weight: 600; }

.oferta-btn {
  margin-top: 24px;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  padding: 24px 28px;
  /* o pulso é só de brilho: mexer no transform faz o toque virar "arraste"
     no celular e o clique é cancelado antes de abrir o checkout */
  animation: cta-pulsa 1.9s ease-in-out infinite;
}
@keyframes cta-pulsa {
  0%, 100% { box-shadow: 0 4px 14px rgba(21, 128, 61, 0.38); }
  50%      { box-shadow: 0 10px 30px rgba(21, 128, 61, 0.72), 0 0 0 6px rgba(21, 128, 61, 0.20); }
}
@media (prefers-reduced-motion: reduce) { .oferta-btn { animation: none; } }
.oferta-seta { display: inline-block; transition: transform 0.15s; }
.oferta-btn:hover .oferta-seta { transform: translateX(4px); }
.oferta-seguro { margin-top: 12px; text-align: center; font-size: 0.76rem; color: var(--text-light); }

@media (max-width: 480px) {
  .oferta-card { padding: 18px; border-radius: 22px; }
  .oferta-resumo { padding: 16px; }
  .resumo-item { font-size: 0.85rem; }
}

/* ===== Card de bônus no layout da referência (inglesfluido) ===== */
.bonus-img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 20px; display: block; margin-bottom: 16px;
}
.bonus-pills { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.bonus-pill-num {
  background: var(--primary-color); color: var(--on-primary);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-full);
}
.bonus-pill-novo {
  background: var(--text-dark); color: #ffffff;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-full);
}
.bonus-sub { margin-top: 5px; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.bonus-preco { margin-top: 16px; font-size: 0.88rem; font-weight: 700; }
.bonus-preco s { color: var(--text-light); font-weight: 600; }
.bonus-preco strong { color: var(--text-dark); margin-left: 6px; }

.bonus-cta { margin-top: 28px; text-align: center; }
.bonus-cta .btn-cta { width: 100%; max-width: 440px; }
   


/* ==========================================
   SLIDESHOW — um material por vez, troca no lugar
   ========================================== */
.slides {
  position: relative;
  width: min(100%, 880px);
  margin: 20px auto 0;
}
.slides--bonus { width: min(100%, 420px); }

.slides-palco {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;          /* mapas: 1200x800 */
  border-radius: 12px;
  overflow: hidden;
}
.slides--bonus .slides-palco { aspect-ratio: 3 / 4; }  /* páginas dos bônus: 700x934 */

.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;
}
/* slide com duas páginas paisagem: cada uma pega metade da altura */
.slide--pilha img { height: auto; flex: 1 1 0; min-height: 0; }

.slides-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  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(--primary-color); 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--bonus { 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(--primary-color); transform: translateY(-2px); }
.nivel-aba.is-active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 6px 18px rgba(252, 215, 38, 0.45);
}
.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: #6b6314; }

.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; }
}

/* ===== Aviso de status abaixo do botão (gatilho de verificação) ===== */
.oferta-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
  padding: 11px 16px;
  background: #e9f9ee;
  border: 1px solid #b7e6c6;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #14663a;
  text-align: center;
}
.oferta-status-txt { min-width: 0; }
.oferta-status strong { color: #0e4d2b; font-weight: 800; }
.oferta-status-luz {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
  animation: luzPisca 1.6s ease-out infinite;
}
@keyframes luzPisca {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
@media (prefers-reduced-motion: reduce) { .oferta-status-luz { animation: none; } }
@media (max-width: 480px) {
  .oferta-status { font-size: 0.79rem; padding: 10px 12px; }
}
