﻿/* ==========================================================================
   DO SALÁRIO AOS DEZ MIL REAIS - MÉTODO DOS QUATRO BOLSOS
   Estilos Principais (Mobile-First, Alta Performance, Design Futurista e Compacto)
   ========================================================================== */

:root {
  /* Paleta de Cores */
  --bg-main: #03140e;
  --bg-darker: #020d09;
  --bg-card: rgba(7, 34, 25, 0.75);
  --bg-card-elevated: rgba(10, 48, 35, 0.85);
  --bg-card-highlight: rgba(16, 185, 129, 0.08);

  /* Acentos Verdes */
  --primary-glow: #00E599;
  --primary-accent: #10b981;
  --primary-dark: #059669;
  --primary-light: #6ee7b7;
  --primary-gradient: linear-gradient(135deg, #00E599 0%, #059669 100%);
  --primary-btn-text: #022016;

  /* Acentos Dourados */
  --gold-accent: #f59e0b;
  --gold-light: #fbbf24;
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);

  /* Textos */
  --text-main: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-highlight: #ffffff;

  /* Bordas e Sombras */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-emerald: rgba(0, 229, 153, 0.22);
  --border-emerald-strong: rgba(0, 229, 153, 0.5);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px -10px rgba(0, 229, 153, 0.2);

  /* Tipografia */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --max-width: 1100px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.55;
  overflow-x: hidden;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 229, 153, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 229, 153, 0.06) 0%, transparent 60%);
  background-attachment: fixed;
  padding-bottom: calc(75px + 16px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-highlight);
  line-height: 1.22;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
}

strong {
  color: var(--text-highlight);
  font-weight: 600;
}

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

/* 1. Faixa Superior (Top Banner) */
.top-bar {
  background: linear-gradient(90deg, #021a12 0%, #063c2c 50%, #021a12 100%);
  border-bottom: 1px solid var(--border-emerald);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-bar-badge {
  background: rgba(0, 229, 153, 0.15);
  color: var(--primary-glow);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 229, 153, 0.3);
}

/* Seções Gerais */
.section {
  padding: 42px 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 62px 0;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 153, 0.08);
  border: 1px solid var(--border-emerald);
  color: var(--primary-glow);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 760px;
  margin-bottom: 22px;
}

.text-center { text-align: center; }
.center-content { display: flex; flex-direction: column; align-items: center; }

/* 2. Hero Section */
.hero-section {
  padding: 28px 0 42px 0;
  text-align: center;
}

.hero-headline {
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff 0%, #d1fae5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-subheadline {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 24px auto;
}

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

/* Botões de Ação (CTAs) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: var(--primary-btn-text);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px -4px rgba(0, 229, 153, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  width: 100%;
  max-width: 460px;
  text-align: center;
  position: relative;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(0, 229, 153, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.btn-microcopy {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.4;
}

.first-cta-box {
  width: 100%;
  max-width: 480px;
  margin: 20px auto 26px auto;
  text-align: center;
}

/* Benefícios Rápidos */
.quick-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
  width: 100%;
  max-width: 820px;
}

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

.benefit-pill {
  background: rgba(6, 32, 23, 0.6);
  border: 1px solid var(--border-emerald);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  text-align: left;
  backdrop-filter: blur(10px);
}

.benefit-pill svg {
  flex-shrink: 0;
  color: var(--primary-glow);
}

/* Oferta Resumida no Hero */
.hero-offer-box {
  background: linear-gradient(180deg, rgba(8, 42, 31, 0.8) 0%, rgba(4, 23, 17, 0.9) 100%);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  max-width: 560px;
  margin: 26px auto 0 auto;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.hero-offer-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.price-display {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-glow);
  margin-bottom: 2px;
}

.price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mockups Visuais */
.mockup-container {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 26px auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.mockup-scene {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.ebook-3d {
  width: 200px;
  height: 290px;
  position: relative;
  perspective: 1200px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .ebook-3d {
    width: 230px;
    height: 330px;
  }
}

.ebook-cover {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #062b20 0%, #031811 50%, #083c2c 100%);
  border: 1px solid rgba(0, 229, 153, 0.4);
  border-radius: 4px 12px 12px 4px;
  box-shadow: -12px 16px 30px -5px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 229, 153, 0.2);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transform: rotateY(-12deg) rotateX(3deg);
}

.ebook-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0.1) 50%, rgba(0,0,0,0.3) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ebook-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold-light);
  font-weight: 700;
}

.ebook-title {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-top: 8px;
}

.ebook-subtitle {
  font-size: 0.75rem;
  color: var(--primary-glow);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.4px;
}

.ebook-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  align-self: flex-start;
}

.sheet-mockup {
  width: 100%;
  max-width: 420px;
  background: #072319;
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 35px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 229, 153, 0.15);
  overflow: hidden;
  font-size: 0.76rem;
}

.sheet-header {
  background: #041811;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.sheet-dots { display: flex; gap: 5px; }
.sheet-dot { width: 7px; height: 7px; border-radius: 50%; background: #334155; }
.sheet-dot:nth-child(1) { background: #ef4444; }
.sheet-dot:nth-child(2) { background: #f59e0b; }
.sheet-dot:nth-child(3) { background: #10b981; }

.sheet-title { color: var(--text-muted); font-size: 0.72rem; font-weight: 600; }
.sheet-body { padding: 12px; }
.sheet-metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin-bottom: 10px; }
.sheet-metric-card { background: rgba(4, 24, 17, 0.7); border: 1px solid rgba(255, 255, 255, 0.05); padding: 6px 8px; border-radius: 6px; }
.sheet-metric-card .label { font-size: 0.65rem; color: var(--text-muted); }
.sheet-metric-card .val { font-size: 0.9rem; font-weight: 700; color: var(--text-highlight); }
.val-green { color: var(--primary-glow) !important; }
.val-gold { color: var(--gold-light) !important; }

.sheet-table { width: 100%; border-collapse: collapse; }
.sheet-table th, .sheet-table td { padding: 5px 6px; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.sheet-table th { color: var(--text-muted); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; }

.progress-bar-container { background: rgba(255, 255, 255, 0.08); border-radius: 999px; height: 6px; overflow: hidden; margin-top: 4px; }
.progress-bar-fill { background: var(--primary-gradient); height: 100%; border-radius: 999px; }

/* Miniaturas Reais do Ebook */
.ebook-thumbnails-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 18px 0 10px 0;
}

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

.ebook-preview-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-emerald);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ebook-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 229, 153, 0.25);
  border-color: var(--primary-glow);
}

.ebook-thumb-wrapper {
  position: relative;
  width: 100%;
  background: #f1f5f9;
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
}

.ebook-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.ebook-preview-card:hover .ebook-thumb-img {
  transform: scale(1.03);
}

.preview-overlay-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(3, 20, 14, 0.85);
  backdrop-filter: blur(8px);
  color: var(--primary-glow);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 153, 0.3);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ebook-preview-info {
  padding: 12px 14px;
  background: #ffffff;
  color: #0f172a;
  border-top: 1px solid #e2e8f0;
  text-align: left;
}

.ebook-preview-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.ebook-preview-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.ebook-preview-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.45;
}

/* Lightbox Modal */
.lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 13, 9, 0.92);
  backdrop-filter: blur(12px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-container {
  background: #072319;
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-backdrop.active .lightbox-container {
  transform: scale(1);
}

.lightbox-header {
  padding: 12px 18px;
  background: #041811;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.lightbox-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.lightbox-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lightbox-body {
  padding: 14px;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  background: #020d09;
}

.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}

/* Capturas Reais */
.real-asset-img-container {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-emerald);
  overflow: hidden;
  background: #02120b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  margin-top: 14px;
}

.real-asset-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Seção Problemas */
.pain-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 24px 0;
}

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

.pain-point-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.pain-point-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(30, 15, 15, 0.4);
}

.pain-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 1px;
}

.pain-text {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.problem-closing-box {
  background: linear-gradient(135deg, rgba(6, 35, 26, 0.9) 0%, rgba(10, 48, 35, 0.6) 100%);
  border: 1px solid var(--border-emerald);
  padding: 20px 18px;
  border-radius: var(--radius-lg);
  margin-top: 20px;
  text-align: center;
  max-width: 860px;
}

/* Mecanismo 4 Bolsos */
.pockets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 26px 0;
}

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

.pocket-card {
  background: var(--bg-card);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
}

.pocket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
}

.pocket-number {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-glow);
  background: rgba(0, 229, 153, 0.12);
  border: 1px solid rgba(0, 229, 153, 0.25);
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pocket-title {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pocket-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.highlight-callout {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-left: 4px solid var(--gold-light);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  color: #fef08a;
  font-size: 0.9rem;
  margin-top: 18px;
  text-align: left;
}

/* Transformação Antes vs Depois */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 26px 0;
}

@media (min-width: 768px) {
  .comparison-container {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-col {
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  backdrop-filter: blur(12px);
}

.comparison-before {
  background: rgba(30, 12, 12, 0.5);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.comparison-after {
  background: rgba(6, 36, 26, 0.7);
  border: 1px solid var(--border-emerald);
  box-shadow: 0 8px 25px -8px rgba(0, 229, 153, 0.2);
}

.col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.col-title { font-size: 1.2rem; font-weight: 700; }
.before-title { color: #fca5a5; }
.after-title { color: var(--primary-glow); }

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
}

.icon-cross { color: #ef4444; flex-shrink: 0; margin-top: 2px; }
.icon-check { color: var(--primary-glow); flex-shrink: 0; margin-top: 2px; }

.disclaimer-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 18px;
}

/* O Que Está Incluído */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 26px 0;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  backdrop-filter: blur(14px);
}

.module-badge {
  display: inline-block;
  background: rgba(0, 229, 153, 0.15);
  color: var(--primary-glow);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.module-title { font-size: 1.3rem; margin-bottom: 10px; color: #ffffff; }
.module-desc { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 14px; }

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.feature-checklist-item svg { color: var(--primary-glow); flex-shrink: 0; }

/* Calculadora Interativa Fiel ao Produto */
.calc-interactive-widget {
  background: linear-gradient(180deg, #072a1e 0%, #03140e 100%);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 14px;
}

.calc-grid-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

@media (min-width: 600px) {
  .calc-grid-controls {
    grid-template-columns: 1fr 1fr;
  }
}

.calc-input-group {
  background: rgba(4, 22, 16, 0.8);
  border: 1px solid rgba(0, 229, 153, 0.2);
  padding: 10px 12px;
  border-radius: 8px;
}

.calc-input-group label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.calc-input-group input[type="number"] {
  width: 100%;
  background: #020c08;
  border: 1px solid rgba(0, 229, 153, 0.3);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
}

.calc-scenarios-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  margin-top: 10px;
}

.calc-scenarios-table th, .calc-scenarios-table td {
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-scenarios-table th {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* Como Funciona */
.steps-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 26px 0;
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-3px);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--primary-btn-text);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0, 229, 153, 0.4);
}

.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #ffffff; }
.step-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.45; }

/* Para Quem É / Não É */
.audience-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 26px 0;
}

@media (min-width: 768px) {
  .audience-container {
    grid-template-columns: 1fr 1fr;
  }
}

.audience-card {
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  backdrop-filter: blur(12px);
}

.audience-for { background: rgba(6, 34, 25, 0.7); border: 1px solid var(--border-emerald); }
.audience-not { background: rgba(28, 14, 14, 0.6); border: 1px solid rgba(239, 68, 68, 0.25); }

/* Oferta Principal */
.offer-box-main {
  background: linear-gradient(180deg, #072a1e 0%, #03140e 100%);
  border: 2px solid var(--primary-glow);
  border-radius: var(--radius-xl);
  padding: 32px 20px;
  box-shadow: 0 20px 50px -15px rgba(0, 229, 153, 0.25), 0 0 0 1px rgba(0, 229, 153, 0.4);
  max-width: 800px;
  margin: 28px auto;
  position: relative;
  text-align: center;
}

.offer-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0;
  text-align: left;
}

@media (min-width: 640px) {
  .offer-items-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-item-pill {
  background: rgba(4, 22, 16, 0.8);
  border: 1px solid rgba(0, 229, 153, 0.2);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
}

.offer-item-pill svg { color: var(--primary-glow); flex-shrink: 0; }

.ethical-anchor-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.strike-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-weight: 600;
}

.offer-big-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-glow);
  line-height: 1.1;
  margin: 8px 0;
}

@media (min-width: 640px) {
  .offer-big-price {
    font-size: 3.4rem;
  }
}

.offer-conditions {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Garantia */
.guarantee-box {
  background: var(--bg-card);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  max-width: 800px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  backdrop-filter: blur(14px);
}

@media (min-width: 640px) {
  .guarantee-box {
    flex-direction: row;
    text-align: left;
    gap: 24px;
  }
}

.guarantee-icon-shield {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(0, 229, 153, 0.1);
  border: 2px solid var(--border-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-glow);
}

/* Prova e Confiança */
.trust-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

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

.trust-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.pillar-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 229, 153, 0.12);
  color: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
}

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 24px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: var(--border-emerald);
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  color: var(--text-highlight);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-answer-content {
  padding: 0 18px 16px 18px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* Chamada Final */
.final-cta-card {
  background: linear-gradient(180deg, #072e20 0%, #03150e 100%);
  border: 1px solid var(--border-emerald-strong);
  border-radius: var(--radius-xl);
  padding: 38px 20px;
  text-align: center;
  box-shadow: 0 16px 45px -15px rgba(0, 229, 153, 0.25);
  max-width: 900px;
  margin: 0 auto;
}

.recap-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 26px 0;
}

.recap-pill {
  background: rgba(0, 229, 153, 0.1);
  border: 1px solid rgba(0, 229, 153, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Rodapé */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 35px 0 35px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 14px 0;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-link:hover { color: var(--primary-glow); }

.educational-disclaimer {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  max-width: 840px;
  margin: 18px auto 0 auto;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #94a3b8;
}

/* Sticky Mobile Bar */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(3, 20, 14, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-emerald);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)) 14px;
  z-index: 999;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transform: translateY(130%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .sticky-mobile-cta { display: none !important; }
}

.sticky-info { display: flex; flex-direction: column; }
.sticky-product-name { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; }
.sticky-price { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--primary-glow); }

.btn-sticky-mobile {
  background: var(--primary-gradient);
  color: var(--primary-btn-text);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 229, 153, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

/* Modais */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-container {
  background: #06231a;
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title { font-size: 1.15rem; font-weight: 700; color: #ffffff; }

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover { color: #ffffff; }

.modal-body {
  padding: 20px;
  overflow-y: auto;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.modal-body h4 { color: #ffffff; margin: 14px 0 6px 0; font-size: 1rem; }
.modal-body p { margin-bottom: 10px; font-size: 0.9rem; }
