/* ==========================================================================
   KIT COMPLETO DE ESPANHOL VISUAL — FOLHA DE ESTILOS PRINCIPAL (MOBILE-FIRST)
   Design Tokens & Estilos fiéis à página de referência
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800;900&display=swap');

:root {
  --font-title: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Color Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f9f9f6;
  --bg-alt: #f5f5f5;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;
  
  --primary-color: #FFDC00;
  --primary-hover: #f5d000;
  --primary-shadow: #c9a800;
  --primary-glow: rgba(255, 220, 0, 0.45);
  
  --text-dark: #111827;
  --text-muted: #4b5563;
  --text-light: #6b7280;
  --text-white: #ffffff;
  
  --border-color: #e2e8f0;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);
  
  --success-color: #16a34a;
  --success-bg: #e6ffe0;
  
  /* Shadows */
  --shadow-subtle: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-btn: 0 8px 24px rgba(255, 220, 0, 0.45);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --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);
  
  /* Container max width */
  --container-max: 1140px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-primary);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ==========================================================================
   TOP URGENCY ANNOUNCEMENT BAR (AVISO VISUAL DE URGÊNCIA)
   ========================================================================== */
.urgency-top-bar {
  background-color: #FFDC00;
  color: #000000;
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.01em;
  width: 100%;
}

.urgency-top-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

@media (max-width: 480px) {
  .urgency-top-bar {
    font-size: 0.8125rem;
    padding: 8px 10px;
  }
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-dark);
  line-height: 1.2;
}

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

.section {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section--alt {
  background-color: var(--bg-secondary);
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-white);
}

.section--dark p {
  color: #cbd5e1;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(255, 220, 0, 0.2);
  color: #854d0e;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-tag-gold {
  color: #d97706;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: inline-block;
}

.section--dark .section-tag {
  background-color: rgba(255, 220, 0, 0.15);
  color: var(--primary-color);
}

.section-title {
  font-size: 1.625rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.375rem;
  }
}

.section-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.0625rem;
  }
}

/* ==========================================================================
   HERO TOP RATING PILL (ESTILO DA IMAGEM: ESTRELAS + DIVISOR + ALUNOS)
   ========================================================================== */
.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 16px;
  border-radius: 9999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 18px;
}

.hero-rating-pill .rating-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

.hero-rating-pill .rating-divider {
  width: 1px;
  height: 16px;
  background-color: #cbd5e1;
}

.hero-rating-pill .rating-count {
  font-family: var(--font-title);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   BUTTONS & CTAs (DESIGN EXATO DA IMAGEM)
   ========================================================================= */
.hero-cta-block {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.btn-hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  padding: 18px 28px;
  background-color: #FFDC00;
  color: #111827;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 900;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(255, 220, 0, 0.45);
  transition: all var(--transition-fast);
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.btn-hero-pill:hover {
  background-color: #f5d000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 220, 0, 0.6);
}

.btn-hero-pill:active {
  transform: translateY(2px);
  box-shadow: 0 4px 12px rgba(255, 220, 0, 0.35);
}

.hero-security-note {
  font-size: 0.9375rem;
  color: #64748b;
  margin-top: 12px;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-social-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

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

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

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

.hero-students-count {
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.btn-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  width: 100%;
}

.btn-cta-subtext {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.section--dark .btn-cta-subtext {
  color: #94a3b8;
}

/* ==========================================================================
   1. HERO SECTION (REESTRUTURADA PARA MOBILE)
   ========================================================================== */
.hero {
  padding-top: 28px;
  padding-bottom: 48px;
  background-color: #ffffff;
  background: #ffffff;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 48px;
    padding-bottom: 64px;
  }
}

.hero-headline {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #111827;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 2.75rem;
  }
}

.hero-headline span {
  color: #b45309;
  position: relative;
  display: inline-block;
}

.hero-subheadline {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-subheadline {
    font-size: 1.15rem;
  }
}

.hero-image-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 28px auto;
}

.hero-image-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: block;
}

/* ==========================================================================
   2. PREVIEW SECTION (MARQUEE INFINITO)
   ========================================================================== */
.preview-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 16px 0;
}

.preview-marquee-wrapper::before,
.preview-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.preview-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.preview-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.preview-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

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

.preview-card {
  width: 260px;
  flex-shrink: 0;
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .preview-card {
    width: 320px;
    padding: 12px;
  }
}

.preview-card-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
}

.preview-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
  margin-top: 8px;
  text-align: center;
}

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

/* ==========================================================================
   3. SOCIAL PROOF / DEPOIMENTOS (CARROSSEL INFINITO MARQUEE 100% ESTÁVEL)
   ========================================================================== */
.testimonials-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 16px 0 28px 0;
  contain: paint;
}

.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.testimonials-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.testimonials-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  animation: testimonialsMarquee 30s linear infinite;
}

.testimonials-marquee-track:hover,
.testimonials-marquee-track:active {
  animation-play-state: paused;
}

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

.testimonial-card {
  width: 280px;
  flex-shrink: 0;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-align: left;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-card {
    width: 320px;
    padding: 20px;
  }
}

.testimonial-product-photo {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
  background-color: #f1f5f9;
}

@media (min-width: 768px) {
  .testimonial-product-photo {
    height: 240px;
  }
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #374151;
  font-style: italic;
  margin-bottom: 14px;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
  flex-shrink: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

/* ==========================================================================
   4. SEÇÃO: ORGANIZAÇÃO DO KIT (DESIGN IDÊNTICO À IMAGEM DE REFERÊNCIA)
   ========================================================================== */
.curriculum-section-clean {
  padding-top: 56px;
  padding-bottom: 64px;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.curriculum-grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .curriculum-grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (min-width: 992px) {
  .curriculum-grid-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.curriculum-level-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.curriculum-level-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.curriculum-level-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.curriculum-level-badge-yellow {
  background-color: #FFDC00;
  color: #111827;
  font-family: var(--font-title);
  font-size: 0.9375rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
}

.curriculum-level-count-green {
  color: #10b981;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.curriculum-level-objective {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.curriculum-level-objective strong {
  color: #111827;
  font-weight: 700;
}

.curriculum-level-divider {
  border-top: 1px solid #f1f5f9;
  margin: 12px 0 14px 0;
}

.curriculum-level-examples {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
  background: transparent;
  border: none;
  padding: 0;
}

.curriculum-level-examples strong {
  color: #111827;
  font-weight: 700;
}

.level-card-btn {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.level-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.level-card-btn.active {
  background-color: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.level-card-badge {
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 800;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
}

.level-card-btn.active .level-card-badge {
  color: var(--primary-color);
}

.level-card-texts {
  display: flex;
  flex-direction: column;
}

.level-card-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.level-card-btn.active .level-card-name {
  color: #ffffff;
}

.level-card-maps {
  font-size: 0.6875rem;
  color: #64748b;
  margin-top: 2px;
}

.level-card-btn.active .level-card-maps {
  color: #94a3b8;
}

/* Prompt Box (Dashed) */
.curriculum-dashed-box {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  text-align: center;
  background-color: #fafaf9;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.curriculum-dashed-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.curriculum-dashed-title {
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}

.curriculum-dashed-desc {
  font-size: 0.875rem;
  color: #64748b;
  max-width: 480px;
  line-height: 1.5;
}

/* Painel de Conteúdo quando o nível está ativo */
.curriculum-active-pane {
  display: none;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
  animation: fadeIn 0.25s ease-in-out;
}

.curriculum-active-pane.active {
  display: block;
}

.curriculum-pane-header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.curriculum-pane-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pane-badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: #111827;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.pane-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

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

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

.curriculum-category-card {
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.curriculum-category-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.curriculum-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.curriculum-topics span {
  display: inline-block;
  padding: 4px 8px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   5. AUDIENCE SECTION (PARA QUEM É)
   ========================================================================== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.audience-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.audience-icon {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.audience-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ==========================================================================
   6. BONUSES SECTION
   ========================================================================== */
.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.bonus-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.bonus-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background-color: rgba(255, 220, 0, 0.15);
  color: var(--primary-color);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.bonus-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.bonus-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.bonus-subtitle {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.bonus-desc {
  font-size: 0.8125rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 14px;
}

.bonus-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-dark);
}

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

.bonus-free-badge {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #4ade80;
  text-transform: uppercase;
}

/* ==========================================================================
   7. VALUE STACK / CHECKOUT CARD (DESIGN IDÊNTICO À IMAGEM DO USUÁRIO)
   ========================================================================== */
.value-stack-section {
  padding-top: 56px;
  padding-bottom: 64px;
  background-color: #ffffff;
}

.checkout-card-wrapper {
  max-width: 540px;
  margin: 0 auto;
}

.checkout-card {
  background-color: #ffffff;
  border: 2px solid #FFDC00;
  border-radius: 28px;
  padding: 28px 20px;
  box-shadow: 0 10px 40px rgba(255, 220, 0, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .checkout-card {
    padding: 36px 28px;
  }
}

.checkout-card-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 16px;
  margin-bottom: 20px;
  display: block;
}

.checkout-card-anchor {
  font-size: 0.9375rem;
  color: #64748b;
  margin-bottom: 4px;
}

.checkout-card-anchor span {
  text-decoration: line-through;
}

.checkout-card-price {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .checkout-card-price {
    font-size: 3.5rem;
  }
}

.checkout-card-note {
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 6px;
}

.checkout-card-guarantee {
  font-size: 0.875rem;
  font-weight: 700;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.checkout-card-divider {
  width: 100%;
  border-top: 1px dashed #e2e8f0;
  margin: 18px 0;
}

.checkout-resume-header {
  width: 100%;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 14px;
}

.checkout-resume-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-resume-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.875rem;
  text-align: left;
}

.checkout-item-title {
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-item-price {
  font-size: 0.8125rem;
  color: #94a3b8;
  text-decoration: line-through;
  flex-shrink: 0;
  font-weight: 500;
}

.checkout-card-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6px;
}

.checkout-security-subtext {
  font-size: 0.8125rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

/* ==========================================================================
   8. GUARANTEE SECTION (DESIGN IDÊNTICO À IMAGEM DE REFERÊNCIA)
   ========================================================================== */
.guarantee-card {
  max-width: 520px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1.5px solid #d1fae5;
  border-radius: 28px;
  padding: 44px 28px 36px 28px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.06);
  text-align: center;
}

.guarantee-icon-circle {
  width: 76px;
  height: 76px;
  background-color: #ecfdf5;
  border: 1.5px solid #a7f3d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.guarantee-card-title {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.15;
  color: #111827;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .guarantee-card-title {
    font-size: 1.85rem;
  }
}

.guarantee-card-title .text-green {
  color: #16a34a;
}

.guarantee-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 20px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-card-highlight {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.5;
}

/* ==========================================================================
   9. DELIVERY (COMO RECEBE)
   ========================================================================= */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.delivery-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.delivery-number {
  width: 32px;
  height: 32px;
  background-color: #111827;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.9375rem;
  margin: 0 auto 12px auto;
}

.delivery-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.delivery-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   10. FAQ SECTION (ACCORDION)
   ========================================================================= */
.faq-list {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.faq-trigger {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 700;
  color: #64748b;
  transition: transform var(--transition-fast);
}

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

.faq-content {
  display: none;
  padding: 0 16px 16px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.faq-item.active .faq-content {
  display: block;
}

/* ==========================================================================
   11. FINAL CTA SECTION (DESIGN IDÊNTICO À REFERÊNCIA LP1)
   ========================================================================== */
.final-cta-card {
  max-width: 580px;
  margin: 0 auto;
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

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

.final-cta-card p {
  font-size: 0.9375rem;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.final-cta-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
}

.final-cta-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.final-cta-bullets li .check {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
}

.timer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0f172a;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 6px 12px;
  min-width: 58px;
}

.timer-value {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
}

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

.timer-colon {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-color);
}

/* ==========================================================================
   12. FOOTER (FUNDO BRANCO CLEAN)
   ========================================================================== */
.footer {
  background-color: #ffffff;
  color: #64748b;
  padding: 40px 0 24px 0;
  font-size: 0.75rem;
  line-height: 1.6;
  border-top: 1px solid #e2e8f0;
}

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

.footer-brand {
  font-family: var(--font-title);
  font-weight: 800;
  color: #111827;
  font-size: 1rem;
}

.footer-legal-text {
  max-width: 720px;
  color: #64748b;
  font-size: 0.6875rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 4px;
}

.footer-links a {
  color: #4b5563;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #111827;
  text-decoration: underline;
}

/* ==========================================================================
   13. TOAST NOTIFICATION (PROVA SOCIAL)
   ========================================================================== */
.sticky-cta-bar {
  display: none !important;
}

@media (min-width: 768px) {
  .sticky-info {
    display: flex;
    flex-direction: column;
  }
}

.sticky-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}

.sticky-price {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
}

.sticky-cta-bar .btn-cta {
  padding: 12px 20px;
  font-size: 0.875rem;
  width: 100%;
}

@media (min-width: 768px) {
  .sticky-cta-bar .btn-cta {
    width: auto;
  }
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 74px;
  left: 14px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 98;
  transform: translateX(-150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 300px;
}

.toast-notification.active {
  transform: translateX(0);
}

.toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.toast-text {
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--text-dark);
}

.toast-name {
  font-weight: 700;
}

.toast-time {
  font-size: 0.6875rem;
  color: var(--text-light);
}
