/* =====================================================
   DOMÍNIO TOTAL DO FUTEBOL — style.css
   Mobile First | Dark/Light Theme | Bootstrap 5
   ===================================================== */


/* =====================================================
   1. VARIÁVEIS DE TEMA
   ===================================================== */

/* =====================================================
   1. VARIÁVEIS DE TEMA
   ===================================================== */

[data-theme="dark"] {
  --bg-primary:     #0a0a0a;
  --bg-secondary:   #111111;
  --bg-card:        #161616;
  --bg-alt:         #111111;
  --bg-navbar:      rgba(10, 10, 10, 0.95);
  --border-color:   #2a2a2a;
  --text-primary:   #f0f0f0;
  --text-secondary: #a1a1aa;
  --text-muted:     #71717a;
  --accent:         #e8231a;
  --accent-dark:    #c01a12;
  --accent-glow:    rgba(232, 35, 26, 0.22);
  --accent-glow-lg: rgba(232, 35, 26, 0.08);
  --hero-overlay:   rgba(0, 0, 0, 0.72);
  --card-shadow:    0 4px 24px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] {
  --bg-primary:     #f8f9fa;
  --bg-secondary:   #ffffff;
  --bg-card:        #ffffff;
  --bg-alt:         #f1f5f9;
  --bg-navbar:      rgba(255, 255, 255, 0.97);
  --border-color:   #e2e8f0;
  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;
  --accent:         #c01a12;
  --accent-dark:    #a01510;
  --accent-glow:    rgba(192, 26, 18, 0.15);
  --accent-glow-lg: rgba(192, 26, 18, 0.05);
  --hero-overlay:   rgba(0, 0, 0, 0.65);
  --card-shadow:    0 4px 24px rgba(0, 0, 0, 0.1);
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.35s ease, color 0.35s ease;
  /* overflow-x sem transform no body — preserva position:fixed dos filhos */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .benefit-title,
.guarantee-title, .urgency-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.fw-600 { font-weight: 600; }
.text-accent { color: var(--accent) !important; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--accent-dark); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }


/* =====================================================
   3. UTILITÁRIOS
   ===================================================== */

.section-pad { padding: 5rem 0; }
.section-alt { background-color: var(--bg-alt); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.section-header { margin-bottom: 3rem; }


/* =====================================================
   4. BOTÃO ACCENT (CTA)
   ===================================================== */

.btn-accent {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border: 2px solid #22c55e;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-color: #4ade80;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.35);
}

.btn-accent:active { transform: translateY(0); }

.btn-hero {
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
  border-radius: 8px;
}

.btn-hero-outline {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff !important;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.btn-hero-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  color: #fff !important;
}


/* =====================================================
   5. TOGGLE TEMA
   ===================================================== */

.theme-toggle-btn {
  background: transparent;
  border: 1.5px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.theme-toggle-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}


/* =====================================================
   6. NAVBAR
   ===================================================== */

#mainNav {
  background-color: var(--bg-navbar);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  /* Bootstrap fixed-top já aplica position:fixed.
     Aqui só reforçamos z-index alto e isolamos a camada. */
  z-index: 9999 !important;
}

#mainNav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  color: var(--text-primary) !important;
  letter-spacing: 0.02em;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary) !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover { color: var(--text-primary) !important; }
.nav-link:hover::after { width: 70%; }

.navbar-toggler { color: var(--text-primary); padding: 0.25rem; }
.navbar-toggler i { font-size: 1.5rem; }
.navbar-collapse { padding-top: 0.75rem; }

@media (min-width: 992px) {
  .navbar-collapse { padding-top: 0; }
}


/* =====================================================
   7. HERO SECTION
   ===================================================== */

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

/* Container dos slides de fundo */
.hero-bg-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden; /* clip apenas aqui, não no pai */
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Slides de fundo — opacity transition, SEM transform */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero-field-line {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  background: var(--bg-primary);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 5rem;
  padding-bottom: 8rem;
  transform: none !important;
  will-change: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-stats { gap: 1.5rem !important; }

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-micro-guarantee {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
}

.hero-indicators {
  position: absolute;
  bottom: 9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.hero-dot {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.hero-dot.active {
  background: var(--accent);
  width: 48px;
}


/* =====================================================
   8. BARRA DE CONFIANÇA
   ===================================================== */

.trust-bar {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
}

.trust-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  white-space: nowrap;
}


/* =====================================================
   9. CARDS DE BENEFÍCIOS
   ===================================================== */

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
  transition: height 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow), 0 0 30px var(--accent-glow);
}

.benefit-card:hover::before { height: 60%; }

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.benefit-title {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}


/* =====================================================
   10. MOCKUP DO EBOOK + CARROSSEL DE FOTOS
   ===================================================== */

.ebook-mockup-wrapper {
  position: relative;
  display: inline-block;
}

.ebook-mockup {
  position: relative;
  display: inline-block;
}

/* Capa principal do livro */
.ebook-cover {
  width: 220px;
  height: 310px;
  border-radius: 8px 12px 12px 8px;
  overflow: hidden;
  position: relative;
  box-shadow:
    -8px 0 16px rgba(0,0,0,0.4),
    0 20px 60px rgba(0,0,0,0.5),
    inset -3px 0 8px rgba(0,0,0,0.3);
  border-left: 6px solid #1a1a1a;
}

.ebook-cover-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.ebook-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, rgba(34,197,94,0.12) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.ebook-cover-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.ebook-cover-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 0.25rem;
}

.ebook-cover-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  letter-spacing: 0.05em;
}

.ebook-shadow {
  position: absolute;
  bottom: -16px; left: 10px; right: -10px;
  height: 24px;
  background: rgba(0,0,0,0.4);
  filter: blur(12px);
  border-radius: 50%;
}

/* Badge flutuante */
.ebook-floating-badge {
  position: absolute;
  top: -12px; right: -10px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  box-shadow: 0 4px 16px var(--accent-glow);
  white-space: nowrap;
  animation: floatBadge 3s ease-in-out infinite;
  max-width: calc(100vw - 2rem);
}

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

/* ---- Carrossel de fotos do eBook ---- */
.ebook-photos-carousel {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  border: 1px solid var(--border-color);
  position: relative;
}

.ebook-photos-carousel .carousel-inner {
  border-radius: 14px;
}

.ebook-photo-slide {
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay leve para legibilidade das legendas */
.ebook-photo-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
}

.ebook-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  padding: 1rem 1.25rem;
}

.ebook-photo-caption span {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.85rem;
  border-radius: 4px;
}

/* Controles do carrossel de fotos */
.ebook-photos-carousel .carousel-control-prev,
.ebook-photos-carousel .carousel-control-next {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  top: 50%; bottom: auto;
  transform: translateY(-50%);
  margin: 0 0.6rem;
  opacity: 0.85;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.ebook-photos-carousel .carousel-control-prev:hover,
.ebook-photos-carousel .carousel-control-next:hover {
  background: var(--accent);
  opacity: 1;
}

.ebook-photos-carousel .carousel-control-prev-icon,
.ebook-photos-carousel .carousel-control-next-icon {
  width: 16px; height: 16px;
}

/* Indicadores */
.ebook-photos-carousel .carousel-indicators {
  margin-bottom: 0.5rem;
}

.ebook-photos-carousel .carousel-indicators button {
  width: 22px !important;
  height: 3px !important;
  border-radius: 2px;
  border: none !important;
  background-color: rgba(255,255,255,0.4) !important;
  transition: background-color 0.3s ease, width 0.3s ease;
  margin: 0 2px;
}

.ebook-photos-carousel .carousel-indicators button.active {
  background-color: var(--accent) !important;
  width: 36px !important;
}


/* =====================================================
   11. CAPÍTULOS
   ===================================================== */

.chapters-list {
  display: flex;
  flex-direction: column;
}

.chapter-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s ease;
}

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

.chapter-item strong {
  display: block;
  font-size: 0.95rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}

.chapter-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.chapter-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 2.5rem;
  padding-top: 0.1rem;
  line-height: 1;
}

.chapter-item-more .chapter-num { color: var(--text-muted); }
.chapter-item-more strong { color: var(--text-secondary); }


/* =====================================================
   12. DEPOIMENTOS
   ===================================================== */

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.testimonial-card-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(34,197,94,0.05) 100%);
  position: relative;
}

.testimonial-card-featured::before {
  content: '✦ Destaque';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  display: flex;
  gap: 2px;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 1.25rem;
  flex-grow: 1;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.social-proof {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: inline-block;
}

.social-proof strong { color: var(--text-primary); }


/* =====================================================
   13. GARANTIA
   ===================================================== */

.guarantee-card {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 0 40px var(--accent-glow-lg);
}

.guarantee-seal {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 3px solid var(--accent);
  color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}

.guarantee-seal i { font-size: 2.2rem; display: block; margin-bottom: 0.15rem; }
.guarantee-seal span { font-size: 1.0rem; line-height: 1.1; }

.guarantee-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.guarantee-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}


/* =====================================================
   14. PREÇO
   ===================================================== */

.pricing-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow-lg) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 0 60px var(--accent-glow);
}

.pricing-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.pricing-original { font-size: 0.9rem; color: var(--text-muted); }
.pricing-original del { color: var(--text-muted); }

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin: 0.25rem 0;
  line-height: 1;
}

.price-currency {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
}

.price-value {
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.price-cents {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pricing-installment {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.pricing-features li i { flex-shrink: 0; font-size: 1rem; }

.btn-cta-final { font-size: 1.1rem; border-radius: 10px; }

.pricing-security { font-size: 0.8rem; color: var(--text-muted); }

.payment-badges {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.payment-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}


/* =====================================================
   15. URGÊNCIA
   ===================================================== */

.urgency-section {
  background: linear-gradient(135deg, #0d1a12 0%, #0a0a0a 50%, #0d1a12 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .urgency-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 50%, #f0fdf4 100%);
}

.urgency-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(34,197,94,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(34,197,94,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.urgency-inner { position: relative; }

.urgency-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.urgency-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}


/* =====================================================
   16. RODAPÉ
   ===================================================== */

.site-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
}

.footer-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--text-primary) !important;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 0.5rem; }

.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  color: var(--text-muted) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  background: var(--accent-glow);
}

.footer-divider { border-color: var(--border-color); margin: 0 0 1.25rem; }

.footer-bottom {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  gap: 0.5rem;
}
.footer-dev a { font-weight: 600; }


/* =====================================================
   17. WHATSAPP FLUTUANTE
   ===================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9998;
  transition: box-shadow 0.3s ease, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  color: #fff !important;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 10px); top: 50%;
  transform: translateY(-50%) translateX(4px);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--border-color);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}


/* =====================================================
   18. ANIMAÇÕES
   ===================================================== */

.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s ease forwards;
}

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }

.scroll-reveal:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.12s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.19s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.26s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.33s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.40s; }


/* =====================================================
   19. RESPONSIVO
   ===================================================== */

/* ── XS: até 575px (maioria dos smartphones) ── */
@media (max-width: 575px) {

  /* Espaçamento geral */
  .section-pad { padding: 3rem 0; }
  .container { padding-left: 1.1rem; padding-right: 1.1rem; }

  /* Hero */
  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 7rem;
    text-align: center;
  }
  .hero-field-line { height: 70px; }
  .hero-indicators { bottom: 6.5rem; }
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 1rem !important; }
  .hero-subtitle { font-size: 0.97rem; }
  .hero-micro-guarantee { font-size: 0.8rem; }

  /* Botões hero — empilha vertical */
  .hero-content .animate-fade-up a.btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-right: 0 !important;
  }

  /* Trust bar — permite quebra em 2 colunas */
  .trust-bar .d-flex { flex-wrap: wrap; gap: 0.6rem !important; }
  .trust-item { font-size: 0.8rem; flex: 0 0 calc(50% - 0.3rem); }

  /* Benefícios */
  .benefit-card { padding: 1.5rem 1.1rem; }
  .benefit-title { font-size: 1.05rem; }

  /* Carrossel de fotos do eBook */
  .ebook-photos-carousel { max-width: 100%; }

  /* Capítulos */
  .chapter-num { font-size: 1rem; min-width: 2rem; }
  .chapter-item strong { font-size: 0.88rem; }
  .chapter-item p { font-size: 0.8rem; }

  /* Depoimentos */
  .testimonial-card { padding: 1.25rem; }
  .testimonial-quote { font-size: 0.88rem; }

  /* Garantia */
  .guarantee-card { padding: 1.5rem 1rem; }
  .guarantee-title { font-size: 1.25rem; }
  .guarantee-desc { font-size: 0.88rem; }

  /* Pricing */
  .pricing-card { padding: 2rem 1rem; }
  .price-value { font-size: 3.5rem; }
  .price-currency { font-size: 1.2rem; }
  .price-cents { font-size: 1.6rem; }
  .pricing-features li { font-size: 0.85rem; }

  /* Urgência */
  .urgency-desc { font-size: 0.95rem; }

  /* Autores */
  .author-photo { width: 120px; height: 120px; }
  .author-name { font-size: 1.2rem; }
  .author-bio { font-size: 0.88rem; }

  /* Rodapé */
  .footer-desc { max-width: 100%; }
  .footer-bottom { text-align: center; }
  .footer-dev { text-align: center; }
}

/* ── SM: 576px–767px (smartphones grandes / landscape) ── */
@media (min-width: 576px) and (max-width: 767px) {
  .trust-item { font-size: 0.82rem; }
  .hero-content { text-align: center; }
  .author-photo { width: 110px; height: 110px; }
}

/* ── MD+: 768px+ ── */
@media (min-width: 768px) {
  .ebook-photo-slide { height: 380px; }
}


/* =====================================================
   20. MOVIMENTO REDUZIDO
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-slide { animation: none; transform: scale(1); }
  .ebook-floating-badge { animation: none; }
}


/* =====================================================
   CORREÇÕES ADICIONAIS
   ===================================================== */

/* 1. Hero: garante que o conteúdo nunca se mova */
.hero-content {
  will-change: auto !important;
  transform: none !important;
}

/* 2. Carrossel do eBook — formato retangular de livro */
.ebook-photo-slide {
  width: 100%;
  /* Proporção de livro/capa: 2:3 aprox */
  aspect-ratio: 3 / 4;
  height: auto !important;
  background-size: cover;
  background-position: center top;
  position: relative;
}

/* Container do carrossel com largura máxima de livro */
.ebook-photos-carousel {
  max-width: 320px;
  margin: 0 auto;
}

/* Sombra de livro no carrossel */
.ebook-photos-carousel {
  box-shadow:
    -6px 0 14px rgba(0,0,0,0.4),
    0 20px 50px rgba(0,0,0,0.5),
    inset -3px 0 8px rgba(0,0,0,0.2);
  border-left: 5px solid #111;
}

/* 3. Imagem do eBook na seção de preço */
.pricing-ebook-img-wrap {
  position: relative;
  display: inline-block;
}

.pricing-ebook-img {
  width: 100%;
  max-width: 260px;
  border-radius: 8px 14px 14px 8px;
  border-left: 6px solid #111;
  box-shadow:
    -8px 0 18px rgba(0,0,0,0.5),
    0 24px 60px rgba(0,0,0,0.5);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-ebook-glow {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: rgba(34, 197, 94, 0.25);
  filter: blur(18px);
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 575px) {
  .ebook-photos-carousel {
    max-width: 100%;
  }
  .ebook-photo-slide {
    aspect-ratio: 3 / 4;
  }
}


/* =====================================================
   SEÇÃO DOS AUTORES
   ===================================================== */

.author-row {
  position: relative;
}

/* Foto */
.author-photo-wrap {
  display: inline-block;
  position: relative;
}

.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid #f9f7f7;
  box-shadow: 0 0 0 5px var(--accent-glow);
  display: block;
}

/* Nome */
.author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Bio */
.author-bio {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* Divisor entre autores */
.author-divider {
  border-color: var(--border-color);
  margin: 0;
}

/* ---- Animações de scroll dos autores ---- */

.author-reveal-left,
.author-reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.author-reveal-left  { transform: translateX(-36px); }
.author-reveal-right { transform: translateX(36px); }

.author-reveal-left.is-visible,
.author-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile: entrada vinda de baixo (mais natural em tela pequena) */
@media (max-width: 575px) {
  .author-reveal-left,
  .author-reveal-right {
    transform: translateY(28px);
  }
  .author-photo {
    width: 180px;
    height: 180px;
  }
}
