/* 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: #f5f7fa; /* cinza-frio muito claro (seções alternadas + fundo) */
  --bg-secondary: #eceff4; /* cinza-frio claro */
  --bg-alt: #e7ebf1; /* cinza-frio */

  --primary-color: #2563EB; /* English Blue (royal) — cor do inglês (UK/EUA, ensino) */
  --primary-shadow: #1E40AF; /* Darker Blue Shadow */
  --primary-glow: rgba(37, 99, 235, 0.35);
  
  --text-dark: #1a1a1a; /* Strong Contrast Black */
  --text-muted: #444444; /* Readable Dark Grey */
  --text-light: #777777; /* Subtle light grey */
  
  --border-color: #e2e8f0;
  --border-light: rgba(0, 0, 0, 0.08);
  
  --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: 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: #1E40AF;
  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: #eef3fe;
  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: 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: #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 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: #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: #eef3fe;
  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: #eef3fe;
  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: #0f1b33;
  color: #bdb3a3;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
}

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

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

.section--dark .preview-subtext-card {
  background: #18181b;
  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: #18181b;
  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: #18181b;
  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: #18181b;
  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: #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: #eef3fe;
  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;
}

/* ===== Esteira (carrossel infinito automático, estilo acervoeduca) ===== */
.esteira {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 26px 0;
}
.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: 10px;
  box-shadow: 0 8px 26px rgba(16, 24, 40, 0.12);
  background: #fff;
}
.esteira-item--bonus { width: 300px; }
@keyframes esteira-rola {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-50% - 8px), 0, 0); }
}
.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(-90deg, var(--esteira-fundo, #fff), transparent); }
@media (min-width: 700px)  { .esteira-item { width: 580px; } .esteira-item--bonus { width: 340px; } .esteira-fita { gap: 24px; } }
@media (min-width: 1100px) { .esteira-item { width: 720px; } .esteira-item--bonus { width: 380px; } .esteira-fita { gap: 30px; } }
@media (max-width: 480px)  { .esteira-item { width: 340px; } .esteira-item--bonus { width: 260px; } .esteira-fita { gap: 14px; } .esteira::before, .esteira::after { width: 28px; } }
@media (prefers-reduced-motion: reduce) { .esteira-fita { animation-duration: calc(var(--esteira-tempo, 60s) * 2.5); } }

/* ===== 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: #eef3fe;
  border: 1px solid #dbe6fd;
  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);
}

/* Esteira reversa (bônus rola no sentido contrário da de mapas) */
.esteira-fita--reversa { animation-direction: reverse; }

/* Pilha na esteira: 2 páginas deitadas empilhadas = mesma altura das em pé */
.esteira-pilha { display: flex; flex-direction: column; gap: 10px; }

/* 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(37, 99, 235, 0.18); }
.carousel-progress { height: 3px; background: rgba(37, 99, 235, 0.15); margin: 0 24px 10px; border-radius: 999px; overflow: hidden; }
.carousel-progress-inner { height: 100%; background: var(--primary-color); 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(37, 99, 235, 0.25); cursor: pointer; transition: all .2s; }
.carousel-dots button.active { background: var(--primary-color); 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(37, 99, 235, 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(--primary-color); z-index: 5;
  transition: transform .2s, box-shadow .2s;
}
.carousel-nav:hover { transform: translateY(-50%) scale(1.06); box-shadow: 0 10px 28px rgba(37, 99, 235, 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: #fff;
  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(37, 99, 235, .12); color: var(--primary-shadow);
  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; }
}

/* ===== Mapas maiores na esteira ===== */
.esteira-item { width: 460px; }
@media (min-width: 700px)  { .esteira-item { width: 700px; } }
@media (min-width: 1100px) { .esteira-item { width: 900px; } }
@media (max-width: 480px)  { .esteira-item { width: 92vw; } }

/* ===== 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%; } }
