/* ========================================
   RESET E VARIÁVEIS
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores */
  --primary-color: #a855c7;
  --primary-dark: #8b3fa8;
  --secondary-color: #c084fc;
  --accent-color: #ffd700;
  --dark-color: #2c2c2c;
  --light-color: #f8f8f8;
  --white: #ffffff;
  --text-color: #333333;
  --text-light: #666666;
  --purple-gradient: linear-gradient(135deg, #a855c7 0%, #8b3fa8 100%);

  /* Espaçamentos */
  --section-padding: 120px;
  --spacing-xl: 80px;
  --spacing-lg: 60px;
  --spacing-md: 40px;
  --spacing-sm: 20px;
  --largura-tt: 1920px;

  /* Fontes */
  --font-primary: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   CONTAINER E LAYOUT
======================================== */

.container {
  max-width: var(--largura-tt);
  margin: 0 auto;
  padding-left: var(--section-padding);
  padding-right: var(--section-padding);
}

section {
  padding: var(--spacing-xl) 0;
  text-align: center;
}

/* ========================================
   TIPOGRAFIA
======================================== */

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

/* ========================================
   HEADER
======================================== */

.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

/* ========================================
   BOTÕES
======================================== */

.cta-button,
.cta-button-small,
.cta-button-large {
  background: var(--purple-gradient);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 85, 199, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-button::before,
.cta-button-small::before,
.cta-button-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover::before,
.cta-button-small:hover::before,
.cta-button-large:hover::before {
  left: 100%;
}

.cta-button {
  padding: 18px 50px;
  margin: var(--spacing-md) auto;
  display: inline-block;
}

.cta-button-small {
  padding: 12px 30px;
  font-size: 1rem;
}

.cta-button-large {
  padding: 22px 60px;
  font-size: 1.3rem;
}

.cta-button:hover,
.cta-button-small:hover,
.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(168, 85, 199, 0.5);
}

.cta-button:active,
.cta-button-small:active,
.cta-button-large:active {
  transform: translateY(-1px);
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: relative;
}

/* Faixa de Promoção */
.promo-banner {
  background: var(--purple-gradient);
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.promo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 5px 0;
}

.promo-subtext {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
}

/* Container Principal */
.hero-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-lg) var(--section-padding);
  max-width: var(--largura-tt);
  margin: 0 auto;
  width: 100%;
}

/* Título */
.hero-title {
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--dark-color);
  text-align: center;
  line-height: 1.4;
  max-width: 1000px;
  margin: 0 auto var(--spacing-lg) auto;
}

/* Badges */
.hero-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid #e5e5e5;
  padding: 12px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.badge:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 199, 0.15);
}

.badge-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #22c55e;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
}

.badge-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-color);
}

/* ========================================
   BOTÕES PADRÃO
======================================== */

/* Botão Primário - Roxo */
.btn-primario {
  background: var(--purple-gradient);
  color: var(--white);
  border: none;
  padding: 22px 60px;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(168, 85, 199, 0.3);
  text-transform: uppercase;
  display: inline-block;
  margin-top: var(--spacing-sm);
}

.btn-primario:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(168, 85, 199, 0.4);
}

.btn-primario:active {
  transform: translateY(-1px);
}

/* Botão Secundário - Verde (para oferta) */
.btn-secundario {
  background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
  color: var(--white);
  border: none;
  padding: 24px 70px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 0 #15803d, 0 10px 25px rgba(34, 197, 94, 0.4);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.btn-secundario:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #15803d, 0 12px 30px rgba(34, 197, 94, 0.5);
}

.btn-secundario:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #15803d, 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* ========================================
   RESULTADOS - CARROSSEL
======================================== */

.results {
  background-color: var(--white);
  color: var(--dark-color);
  padding: var(--spacing-xl) 0;
}

.results .section-title {
  color: var(--dark-color);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.results .btn-primario {
  margin-top: var(--spacing-md);
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.carousel-container {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.carousel-slide {
  min-width: calc(25% - 15px);
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
  background: transparent;
  border: none;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  font-size: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.carousel-btn:hover {
  opacity: 1;
  transform: scale(1.2);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--spacing-md);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e5e5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

/* ========================================
   COPY AGRESSIVA - VISUAL ESCURO E MINIMALISTA
======================================== */

.copy-section {
  background-color: #0e0e0f;
  color: #f5f5f5;
  padding: 120px 24px;
}

.copy-section .container {
  max-width: var(--largura-tt);
}

/* Highlight - Dourado */
.copy-section .highlight {
  color: #d4af37;
}

.copy-section .highlight-full {
  color: #d4af37;
}

/* Headline */
.copy-headline {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 64px;
  text-align: center;
}

/* Blocos de Texto */
.copy-block {
  margin: 1rem 0;
}

.copy-text-short {
  font-size: 18px;
  margin-bottom: 4px;
  color: #b5b5b5;
}

.copy-text {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #f5f5f5;
}

.copy-text-emphasis {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.copy-text-big {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
}

.copy-destaque {
  font-size: 20px;
  font-weight: 600;
  margin: 16px 0;
}

/* Confronto */
.copy-confronto {
  margin: 96px 0;
  padding-left: 24px;
  border-left: 3px solid #d4af37;
}

.copy-subtitle {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}

.copy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 32px;
}

.copy-list li {
  font-size: 20px;
  margin-bottom: 12px;
}

.copy-list-positive li {
  opacity: 0.9;
}

.copy-list-negative li {
  opacity: 0.9;
}

/* Quebra de Ilusão */
.copy-quebra {
  text-align: center;
  margin: 120px 0;
}

.copy-statement {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* Animação Fade In ao Scroll */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bloco de Imagem */
.copy-image-block {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.copy-image {
  border-radius: 16px;
}

/* Dor Amplificada */
.copy-dor {
  margin: 64px 0;
  position: relative;
  z-index: 10;
}

.copy-dor {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 32px;
  padding: 0 20px;
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #c5a028 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Virada de Chave */
.copy-virada {
  margin: 64px 0;
}

.sobre-poe {
  margin-top: -150px;
}
.copy-list-clean {
  list-style: none;
  padding-left: 0;
  margin: 32px 0;
}

.copy-list-clean li {
  font-size: 20px;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

/* .copy-list-clean li:before {
  content: "•";
  color: #d4af37;
  position: absolute;
  left: px;
  font-size: 24px;
} */

/* Solução */
.copy-solucao {
  background-color: #1a1a1c;
  padding: 64px;
  border-radius: 16px;
  margin: 120px 0;
}

.copy-solucao .copy-text,
.copy-solucao .copy-text-emphasis {
  color: #f5f5f5;
}

.copy-title-destaque {
  font-size: 42px;
  margin-bottom: 32px;
  color: #d4af37;
  font-weight: 800;
}

.copy-solucao .copy-list-clean li {
  color: #f5f5f5;
}

.copy-solucao .copy-list-clean li:before {
  color: #d4af37;
}

/* Posicionamento */
.copy-posicionamento {
  margin: 64px 0;
  padding: 80px 40px;
  text-align: center;
  background-image: url("../images/certificado_exemplo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  position: relative;
}

.copy-posicionamento::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.89);
  border-radius: 16px;
  z-index: 1;
}

.copy-posicionamento * {
  position: relative;
  z-index: 2;
}

/* CTA Final */
.copy-cta-final {
  text-align: center;
  margin-top: 120px;
}

.copy-question {
  font-size: 28px;
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 600;
}

.copy-microtexto {
  font-size: 14px;
  color: #b5b5b5;
  margin-top: 16px;
  text-align: center;
}

/* Value Breakdown */
.value-breakdown {
  background: #1a1a1c;
  border-radius: 20px;
  padding: 48px;
  margin: 64px auto 48px;
  max-width: 700px;
}

.value-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.value-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item-priceless {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 199, 0.15) 0%,
    rgba(139, 63, 168, 0.15) 100%
  );
  border: 1px solid rgba(168, 85, 199, 0.3);
}

.value-check {
  width: 28px;
  height: 28px;
  background: #a855c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.value-content {
  flex: 1;
}

.value-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.value-desc {
  font-size: 14px;
  color: #b5b5b5;
  margin: 0;
  line-height: 1.4;
}

.value-price {
  font-size: 18px;
  font-weight: 700;
  color: #d4af37;
  margin: 0;
  white-space: nowrap;
}

.value-price-inestimavel {
  font-size: 16px;
  font-weight: 700;
  color: #a855c7;
  margin: 0;
  white-space: nowrap;
  font-style: italic;
}

.value-total {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-total-label {
  font-size: 18px;
  color: #b5b5b5;
  margin: 0;
  font-weight: 600;
}

.value-total-amount {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-decoration: line-through;
  text-decoration-color: #f44336;
  text-decoration-thickness: 3px;
}

.value-offer {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #a855c7 0%, #8b3fa8 100%);
  border-radius: 16px;
  margin-bottom: 32px;
}

.value-offer-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin: 0 0 8px 0;
  letter-spacing: 2px;
}

.value-offer-price {
  font-size: 64px;
  font-weight: 900;
  color: #d4af37;
  margin: 0 0 12px 0;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.value-offer-installments {
  font-size: 18px;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .value-breakdown {
    padding: 32px 24px;
    margin: 48px auto 32px;
  }

  .value-title {
    font-size: 24px;
  }

  .value-item {
    flex-direction: column;
    gap: 12px;
  }

  .value-price,
  .value-price-inestimavel {
    text-align: left;
  }

  .value-total {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .value-offer-price {
    font-size: 48px;
  }

  .value-offer-installments {
    font-size: 16px;
  }
}

.copy-cta-final .btn-primario {
  background-color: #d4af37;
  color: #000;
  border: none;
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.copy-cta-final .btn-primario:hover {
  transform: scale(1.05);
  background-color: #d4af37;
}

/* ========================================
   PROMESSA-MÃE (ÂNCORA MENTAL)
======================================== */

.promise-anchor {
  background: linear-gradient(135deg, #faf8ff 0%, #f3ebff 100%);
  padding: 80px 0;
  text-align: center;
}

.promise-text {
  font-size: 28px;
  color: #000;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.4;
}

.promise-text-highlight {
  font-size: 32px;
  color: #000;
  font-weight: 700;
  margin-bottom: 48px;
  line-height: 1.3;
}

.promise-text-highlight br {
  display: block;
}

.promise-points {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.promise-points p {
  font-size: 20px;
  color: #555;
  font-weight: 600;
  margin: 0;
  position: relative;
  padding-left: 24px;
}

.promise-points p::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a855c7;
  font-weight: 700;
  font-size: 22px;
}

@media (max-width: 768px) {
  .promise-anchor {
    padding: 60px 0;
  }

  .promise-text {
    font-size: 22px;
  }

  .promise-text-highlight {
    font-size: 26px;
  }

  .promise-points {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

/* ========================================
   SOBRE O CURSO - MÓDULOS
======================================== */

.about {
  background-color: #ffffff;
  padding: 80px 0;
}

.about .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}

.about .section-description {
  font-size: 20px;
  color: #666;
  text-align: center;
  margin-bottom: 64px;
  font-weight: 400;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.module-card {
  background: #fff;
  padding: 32px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.module-card:hover {
  border-color: #a855c7;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(168, 85, 199, 0.12);
}

.module-icon {
  width: 100%;
  height: 120px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 16px;
}

.module-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.module-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.3;
}

.module-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about {
    padding: 60px 0;
  }

  .about .section-title {
    font-size: 32px;
  }

  .about .section-description {
    font-size: 18px;
    margin-bottom: 48px;
  }

  .module-card {
    padding: 24px;
  }

  .module-title {
    font-size: 20px;
  }

  .module-description {
    font-size: 15px;
  }
}

/* ========================================
   BÔNUS ESPECIAIS
======================================== */

.bonus-section {
  background: linear-gradient(135deg, #faf8ff 0%, #f3ebff 100%);
  padding: 80px 0;
}

.bonus-title {
  font-size: 42px;
  font-weight: 800;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}

.bonus-subtitle {
  font-size: 20px;
  color: #666;
  text-align: center;
  margin-bottom: 64px;
  font-weight: 400;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(168, 85, 199, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(168, 85, 199, 0.16);
  border-color: #a855c7;
}

.bonus-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #a855c7 0%, #8b3fa8 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.bonus-icon {
  width: 100%;
  height: 120px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: none;
  overflow: hidden;
  padding: 16px;
}

.bonus-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.bonus-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.3;
}

.bonus-card-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsivo */
@media (max-width: 968px) {
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .bonus-section {
    padding: 60px 0;
  }

  .bonus-title {
    font-size: 32px;
  }

  .bonus-subtitle {
    font-size: 18px;
    margin-bottom: 48px;
  }

  .bonus-card {
    padding: 32px 24px;
  }

  .bonus-card-title {
    font-size: 20px;
  }

  .bonus-card-description {
    font-size: 15px;
  }
}

/* ========================================
   PROMOÇÃO LEVE 3, PAGUE 1
======================================== */

.promo-section {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid #f0f0f0;
}

.promo-header {
  text-align: center;
  margin-bottom: 64px;
}

.promo-title {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.promo-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #a855c7 0%, #8b3fa8 100%);
  border-radius: 2px;
}

.promo-subtitle {
  font-size: 20px;
  color: #666;
  font-weight: 400;
}

.promo-content {
  max-width: 1200px;
  margin: 0 auto;
}

.promo-block {
  margin-bottom: 80px;
}

.promo-block-header {
  text-align: center;
  margin-bottom: 80px;
}

.promo-block-title {
  font-size: 42px;
  font-weight: 800;
  color: #000;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.promo-block-subtitle {
  font-size: 20px;
  color: #666;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Faixas Horizontais */
.promo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.promo-strip:last-of-type {
  margin-bottom: 0;
}

.promo-strip:first-of-type {
  margin-top: 0;
}

.promo-strip-right {
  grid-template-columns: 1fr 2fr;
}

.promo-strip-content {
  background: #ffffff;
  padding: 40px;
}

.promo-strip-title {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.3;
}

.promo-strip-description {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.promo-strip-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.promo-strip-list li {
  font-size: 16px;
  color: #666;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.promo-strip-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #a855c7;
  font-weight: 700;
}

.promo-strip-visual {
  background: linear-gradient(135deg, #a855c7 0%, #8b3fa8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.promo-strip-number {
  font-size: 100px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.promo-block-footer {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-top: 80px;
  font-style: italic;
  position: relative;
  padding-top: 40px;
}

.promo-block-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #a855c7;
}

.promo-item {
  background: #fafafa;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.promo-item:hover {
  border-color: #a855c7;
  box-shadow: 0 8px 24px rgba(168, 85, 199, 0.1);
  transform: translateY(-2px);
}

.promo-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.promo-item-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #faf8ff 0%, #f3ebff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-item-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.3;
}

.promo-item-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.promo-item-list li {
  font-size: 16px;
  color: #555;
  padding: 10px 0 10px 32px;
  position: relative;
  line-height: 1.5;
}

.promo-item-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a855c7;
  font-weight: 700;
  font-size: 18px;
}

/* Certificado */
.promo-certificate {
  background: linear-gradient(135deg, #a855c7 0%, #8b3fa8 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(168, 85, 199, 0.2);
}

.certificate-icon {
  width: 100%;
  max-width: 600px;
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
}

.certificate-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.certificate-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.certificate-description {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

.highlight-purple {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #f4d03f;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Responsivo */
@media (max-width: 768px) {
  .promo-section {
    padding: 60px 0;
  }

  .promo-title {
    font-size: 32px;
  }

  .promo-subtitle {
    font-size: 18px;
  }

  .promo-block-header {
    margin-bottom: 60px;
  }

  .promo-block-title {
    font-size: 32px;
  }

  .promo-block-subtitle {
    font-size: 18px;
  }

  /* Faixas empilhadas no mobile */
  .promo-strip,
  .promo-strip-right {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .promo-strip-content {
    padding: 32px 24px !important;
  }

  .promo-strip-visual {
    order: -1;
    padding: 32px 24px;
    justify-content: center;
  }

  .promo-strip-number {
    font-size: 80px;
  }

  .promo-strip-title {
    font-size: 24px;
  }

  .promo-strip-description {
    font-size: 16px;
  }

  .promo-strip-list li {
    font-size: 15px;
  }

  .promo-block-footer {
    font-size: 18px;
    margin-top: 60px;
    padding-top: 30px;
  }

  .promo-item {
    padding: 24px;
  }

  .promo-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .promo-item-title {
    font-size: 20px;
  }

  .promo-item-list li {
    font-size: 15px;
  }

  .promo-certificate {
    padding: 32px 24px;
  }

  .certificate-icon {
    max-width: 100%;
    padding: 15px;
  }

  .certificate-title {
    font-size: 28px;
  }

  .certificate-description {
    font-size: 18px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.feature-card {
  background-color: var(--light-color);
  padding: var(--spacing-md);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ========================================
   BENEFÍCIOS
======================================== */

.benefits {
  background: var(--purple-gradient);
  color: var(--white);
  padding: var(--spacing-xl) 0;
}

.benefits .section-title {
  color: var(--white);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-md);
  border-radius: 15px;
  text-align: left;
  transition: background-color 0.3s ease;
}

.benefit-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.benefit-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-right: var(--spacing-md);
  min-width: 80px;
  text-align: center;
}

.benefit-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.benefit-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   DEPOIMENTOS
======================================== */

.testimonials {
  background-color: var(--light-color);
  padding: var(--spacing-xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.testimonial-card {
  background-color: var(--white);
  padding: var(--spacing-md);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-stars {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* ========================================
   GARANTIA
======================================== */

.guarantee {
  background-color: var(--white);
  padding: var(--spacing-lg) 0;
}

.guarantee-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-badge {
  font-size: 5rem;
  margin-bottom: var(--spacing-sm);
}

.guarantee-seal {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.guarantee-content h2 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
}

.guarantee-content p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* ========================================
   FAQ
======================================== */

.faq {
  background: #ffffff;
  padding: var(--spacing-xl) 0;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: #a855c7;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-item.active .faq-question {
  color: #a855c7;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #a855c7;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .faq-icon {
    font-size: 1.3rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 16px 20px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

/* ========================================
   QUEM SOU EU
======================================== */

.about-me {
  background: #ffffff;
  padding: var(--spacing-xl) 0;
}

.about-me-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-me-image {
  position: sticky;
  top: 100px;
}

.about-me-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(168, 85, 199, 0.15);
}

.about-me-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a855c7;
  margin-bottom: 8px;
}

.about-me-subtitle {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #a855c7;
}

.about-me-greeting {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about-me-story {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.highlight-purple {
  color: #fff;
  font-weight: 700;
}

.highlight-gold {
  color: #d4af37;
  font-weight: 700;
}

.about-me-cta-box {
  background: #faf8ff;
  border-left: 4px solid #d4af37;
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 4px;
}

.about-me-cta-text {
  font-size: 1.1rem;
  color: #333333;
  margin: 0;
  line-height: 1.6;
}

.about-me-credentials {
  background: #faf8ff;
  border: 2px solid #d4af37;
  border-radius: 8px;
  padding: 28px 32px;
  margin-top: 32px;
  list-style: none;
}

.about-me-credentials li {
  font-size: 1.05rem;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.6;
}

.about-me-credentials li:last-child {
  margin-bottom: 0;
}

@media (max-width: 968px) {
  .about-me-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-me-image {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-me-name {
    font-size: 2rem;
  }

  .about-me-text {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about-me-name {
    font-size: 1.8rem;
  }

  .about-me-greeting {
    font-size: 1.2rem;
  }

  .about-me-story {
    font-size: 1rem;
  }

  .about-me-cta-box {
    padding: 16px 20px;
  }

  .about-me-cta-text {
    font-size: 1rem;
  }

  .about-me-credentials {
    padding: 20px 24px;
  }

  .about-me-credentials li {
    font-size: 1rem;
  }
}

/* ========================================
   CTA FINAL
======================================== */

.final-cta {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8d9e8 100%);
  padding: var(--spacing-xl) 0;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.price-box {
  background-color: var(--white);
  padding: var(--spacing-md);
  border-radius: 15px;
  max-width: 500px;
  margin: var(--spacing-md) auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.price-before {
  font-size: 1.2rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 10px;
}

.price-current {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.price-installments {
  font-size: 1.1rem;
  color: var(--text-color);
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.security-badges p {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 600;
}

/* ========================================
   FOOTER
======================================== */

.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: var(--spacing-md) 0;
  text-align: center;
}

.footer p {
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 768px) {
  :root {
    --section-padding: 30px;
    --spacing-xl: 50px;
    --spacing-lg: 40px;
    --spacing-md: 30px;
  }

  /* Hero Section */
  .hero-container {
    padding: var(--spacing-md) var(--section-padding);
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-badges {
    gap: 15px;
  }

  .badge {
    padding: 10px 20px;
  }

  .badge-text {
    font-size: 0.9rem;
  }

  .btn-primario {
    padding: 18px 45px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
  }

  .btn-secundario {
    padding: 20px 50px;
    font-size: 1.15rem;
    width: 100%;
    max-width: 400px;
  }

  .promo-text {
    font-size: 0.95rem;
  }

  .promo-subtext {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /* Carrossel */
  .carousel {
    flex-direction: column;
  }

  .carousel-slide {
    min-width: calc(50% - 10px);
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .benefit-content {
    text-align: center;
  }

  .price-current {
    font-size: 2.2rem;
  }

  .security-badges {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .cta-button,
  .cta-button-large {
    padding: 16px 35px;
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-badges {
    flex-direction: column;
    width: 100%;
  }

  .badge {
    width: 100%;
    justify-content: center;
  }

  .btn-primario {
    padding: 16px 35px;
    font-size: 1rem;
    width: 100%;
  }

  .btn-secundario {
    padding: 18px 40px;
    font-size: 1.05rem;
    width: 100%;
  }

  .promo-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .promo-subtext {
    font-size: 0.75rem;
  }

  /* Carrossel */
  .carousel-slide {
    min-width: 100%;
  }

  .carousel-btn {
    display: none;
  }

  /* Copy Section */
  .copy-headline {
    font-size: 1.8rem;
  }

  .copy-text-short {
    font-size: 1.4rem;
    text-align: center;
  }

  .copy-text-big {
    font-size: 1.5rem;
  }

  .copy-statement {
    font-size: 1.6rem;
  }

  .copy-title-destaque {
    font-size: 2rem;
  }

  .copy-question {
    font-size: 1.5rem;
  }
}
