/* ==========================================================================
   MANUAL DE BANCADA — DESIGN SYSTEM & ESTILOS GLOBAIS
   Paleta: Emerald Clinical Premium (Deep Forest, Mint Accent, Gold Luxury)
   ========================================================================== */

:root {
  /* Cores Primárias */
  --primary-dark: #091a16;
  --primary-deep: #0f2c25;
  --primary-medium: #16463b;
  --primary-light: #10b981;
  --primary-emerald: #059669;
  --primary-mint: #34d399;
  
  /* Acentos de Luxo & Alerta */
  --accent-gold: #f59e0b;
  --accent-gold-light: #fef3c7;
  --accent-gold-dark: #b45309;
  --danger-red: #ef4444;
  --danger-bg: #fef2f2;
  
  /* Neutros */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --border-subtle: #cbd5e1;
  
  /* Tipografia */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 40px -8px rgba(16, 185, 129, 0.15);
  --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.3);
  
  /* Transições & Bordas */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ==========================================================================
   COMPONENTES GERAIS (BOTÕES, BADGES, TAGS)
   ========================================================================== */

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
  background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.btn-outline {
  border: 1.5px solid var(--primary-light);
  color: var(--primary-deep);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-light);
  color: #ffffff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.btn-xl {
  padding: 22px 42px;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.btn-subtext {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
}

/* Efeito Pulsante Padrão */
.pulse-btn {
  animation: pulseShadow 2.5s infinite;
}

@keyframes pulseShadow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* BOTÃO ÚNICO DE CHECKOUT: VERDE TRANSLÚCIDO E PULSANTE */
.btn-checkout-translucent {
  background: rgba(16, 185, 129, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2.5px solid #2fd398;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 25px rgba(47, 211, 152, 0.35), inset 0 0 15px rgba(47, 211, 152, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: translucentPulse 2.2s infinite ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.btn-checkout-translucent:hover {
  background: rgba(16, 185, 129, 0.42);
  border-color: #34d399;
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 0 45px rgba(47, 211, 152, 0.7), inset 0 0 25px rgba(47, 211, 152, 0.35);
  color: #ffffff !important;
}

@keyframes translucentPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 211, 152, 0.65), 0 0 25px rgba(16, 185, 129, 0.35), inset 0 0 10px rgba(47, 211, 152, 0.2);
    border-color: rgba(47, 211, 152, 0.8);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(47, 211, 152, 0), 0 0 40px rgba(47, 211, 152, 0.6), inset 0 0 20px rgba(47, 211, 152, 0.4);
    border-color: #34d399;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 211, 152, 0), 0 0 25px rgba(16, 185, 129, 0.35), inset 0 0 10px rgba(47, 211, 152, 0.2);
    border-color: rgba(47, 211, 152, 0.8);
  }
}

.final-anchor-text {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-mint);
  text-decoration: none;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-bottom: 2px dashed rgba(47, 211, 152, 0.6);
  transition: all 0.2s ease;
}

.final-anchor-text:hover {
  color: #ffffff;
  border-bottom-color: var(--accent-gold);
  transform: translateY(-2px);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 48px;
}

/* ==========================================================================
   TOP BAR & NAVBAR
   ========================================================================== */

.top-bar {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-badge {
  background: var(--accent-gold);
  color: #000;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
}

.top-bar-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.top-bar-timer strong {
  color: var(--accent-gold);
}

.main-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  z-index: 999;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
}

.site-brand-logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand-logo {
  height: 64px;
  width: auto;
  margin: 0 auto 12px;
  display: block;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   HERO SECTION (DOBRA 1)
   ========================================================================== */

.hero-section {
  padding: 56px 0 80px;
  background: linear-gradient(180deg, #f0fdf4 0%, var(--bg-body) 100%);
  overflow: hidden;
}

.hero-container-centered {
  max-width: 920px;
  margin: 0 auto;
}

.hero-header-block {
  margin-bottom: 28px;
}

/* Card Visual de Transformação (Antes vs Depois - 780x780) */
.transformation-wrapper {
  margin-bottom: 40px;
}

.transformation-card {
  max-width: 780px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid #bbf7d0;
  box-shadow: 0 20px 45px -10px rgba(16, 185, 129, 0.25);
  overflow: hidden;
  transition: var(--transition);
}

.transformation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 55px -10px rgba(16, 185, 129, 0.35);
  border-color: var(--primary-light);
}

.transformation-img {
  width: 100%;
  max-width: 780px;
  height: auto;
  display: block;
  object-fit: cover;
}

.transformation-footer {
  background: #ecfdf5;
  border-top: 1px solid #a7f3d0;
  padding: 16px 24px;
}

.transformation-caption {
  font-size: 0.98rem;
  color: var(--primary-deep);
  line-height: 1.55;
}

.hero-action-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.hero-bullets-box {
  text-align: left;
}

.justify-center {
  justify-content: center;
}

/* Showcase Visual do Produto (Método FDF) */
.product-showcase-visual {
  margin-top: 56px;
}

.product-mockup-frame {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border-color);
  background: #ffffff;
  transition: var(--transition);
}

.product-mockup-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(15, 44, 37, 0.2);
}

.product-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-caption-bar {
  background: var(--primary-deep);
  color: #ffffff;
  padding: 14px 20px;
  font-size: 0.95rem;
}

/* Banner Visual dos Bônus */
.bonus-bundle-banner {
  margin-bottom: 40px;
}

.bonus-mockup-frame {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid #fde68a;
  background: #ffffff;
  transition: var(--transition);
}

.bonus-mockup-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(245, 158, 11, 0.2);
}

.bonus-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

.bonus-bundle-caption {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 14px 20px;
  font-size: 0.95rem;
  border-top: 2px solid var(--accent-gold);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  color: var(--primary-emerald);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-bullets {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-main);
}

.check-icon {
  background: var(--primary-light);
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.security-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  flex-wrap: wrap;
}

/* Mockup Card do Hero */
.mockup-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: var(--transition);
}

.mockup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(16, 185, 129, 0.25);
}

.mockup-header {
  background: var(--primary-dark);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mockup-search-bar {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 6px;
}

.mockup-body {
  padding: 22px;
}

.mockup-table-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.badge-tag {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-deep);
}

.badge-status {
  font-size: 0.78rem;
  background: #dcfce7;
  color: #166534;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
}

.table-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 1fr;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  background: var(--bg-alt);
  align-items: center;
}

.table-head {
  background: var(--primary-deep);
  color: #ffffff;
  font-weight: 700;
}

.active-row {
  background: #ecfdf5;
  border-left: 3px solid var(--primary-light);
}

.cell-tag {
  color: var(--primary-emerald);
  font-weight: 600;
}

.cell-dose {
  color: var(--text-main);
  font-weight: 500;
}

.cell-time {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.mockup-formula-card {
  background: #f8fafc;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 14px;
}

.formula-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

.mockup-formula-card code {
  font-family: monospace;
  font-size: 0.78rem;
  color: #334155;
  line-height: 1.4;
  display: block;
}

.mockup-footer-callout {
  font-size: 0.82rem;
  color: var(--primary-emerald);
  font-weight: 600;
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   DOBRA 2 — CENÁRIO DA MADRUGADA (DORES REAIS)
   ========================================================================== */

.problem-section {
  padding: 80px 0;
  background: #ffffff;
}

.scenes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.scene-card {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
}

.scene-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.highlighted-card {
  background: #fffbeb;
  border-color: #fde68a;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
}

.scene-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.scene-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.highlighted-card .scene-badge {
  color: var(--accent-gold-dark);
}

.scene-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.scene-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ==========================================================================
   DOBRA 3 — A QUEBRA DE PADRÃO
   ========================================================================== */

.breakthrough-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

.breakthrough-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.breakthrough-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  background: var(--accent-gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.breakthrough-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.lead-p {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 14px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}

.comp-col {
  padding: 24px;
  border-radius: var(--radius-md);
}

.comp-col.old-way {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.comp-col.old-way h4 {
  color: #991b1b;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.comp-col.old-way li {
  color: #7f1d1d;
  font-size: 0.95rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.comp-col.old-way li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 800;
}

.comp-col.new-way {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.comp-col.new-way h4 {
  color: #065f46;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.comp-col.new-way li {
  color: #064e3b;
  font-size: 0.95rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.comp-col.new-way li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 800;
}

.quote-box {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  text-align: center;
}

.quote-box blockquote {
  font-size: 1.2rem;
  font-weight: 600;
}

.quote-box strong {
  color: var(--primary-mint);
}

/* ==========================================================================
   DOBRA 4 — O MECANISMO ÚNICO (MÉTODO F·D·F)
   ========================================================================== */

.method-section {
  padding: 80px 0;
  background: #ffffff;
}

.method-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.step-card {
  flex: 1;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 54px;
  height: 54px;
  background: var(--primary-deep);
  color: var(--primary-mint);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-emerald);
  margin-bottom: 8px;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  font-size: 1.8rem;
  color: var(--primary-light);
  font-weight: 800;
}

/* ==========================================================================
   DOBRA 5 — OS 6 MÓDULOS (TABS INTERATIVAS)
   ========================================================================== */

.modules-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

.modules-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 24px;
  justify-content: center;
}

.tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary-deep);
}

.tab-btn.active {
  background: var(--primary-deep);
  color: #ffffff;
  border-color: var(--primary-deep);
  box-shadow: var(--shadow-md);
}

.modules-content {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.pane-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.pane-badge {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-emerald);
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  display: inline-block;
}

.pane-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.pane-info p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.pane-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pane-info li {
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding-left: 20px;
}

.pane-info li::before {
  content: "✔";
  color: var(--primary-light);
  position: absolute;
  left: 0;
  font-weight: 800;
}

.preview-box {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.preview-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  background: var(--accent-gold-light);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.preview-box p {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 10px;
}

.preview-box small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================================================
   DOBRA 6 — PARA QUEM É / NÃO É
   ========================================================================== */

.audience-section {
  padding: 80px 0;
  background: #ffffff;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.audience-card {
  padding: 36px;
  border-radius: var(--radius-lg);
}

.audience-card.for-you {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}

.audience-card.not-for-you {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.audience-card.for-you .card-title {
  color: #166534;
}

.audience-card.not-for-you .card-title {
  color: #991b1b;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-list li {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-main);
}

/* ==========================================================================
   DOBRA 7 — O EMPILHAMENTO DE BÔNUS (BONUS STACK)
   ========================================================================== */

.bonus-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-body) 0%, #f0fdf4 100%);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.bonus-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.bonus-ribbon {
  position: absolute;
  top: 14px;
  right: -28px;
  background: var(--accent-gold);
  color: #000000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 32px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}

.bonus-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.bonus-number {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-emerald);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}

.bonus-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.bonus-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.bonus-price {
  font-size: 0.88rem;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.bonus-price del {
  color: #94a3b8;
}

.bonus-price strong {
  color: var(--primary-emerald);
  font-weight: 800;
}

.bonus-card-thumb-wrap {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 14px 0 18px 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  background: #f8fafc;
}

.bonus-card-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-card-thumb {
  transform: scale(1.03);
}

/* ==========================================================================
   DOBRA 8 — STACK DE VALOR & OFERTA IRRECUSÁVEL
   ========================================================================== */

.offer-section {
  padding: 90px 0;
  background: var(--primary-dark);
  color: #ffffff;
}

.offer-box {
  background: #0f2c25;
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  text-align: center;
}

.offer-badge {
  background: var(--accent-gold);
  color: #000000;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 18px;
}

.offer-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.offer-subtitle {
  font-size: 1.1rem;
  color: var(--primary-mint);
  margin-bottom: 36px;
}

.mega-stack-mockup-frame {
  max-width: 100%;
  margin: 0 auto 36px auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--accent-gold);
  background: #000000;
  transition: var(--transition);
}

.mega-stack-mockup-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

.mega-stack-img {
  width: 100%;
  height: auto;
  display: block;
}

.mega-stack-caption {
  background: rgba(6, 35, 30, 0.95);
  color: #ffffff;
  padding: 12px 18px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(212, 175, 55, 0.4);
}

.stack-table {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 36px;
  text-align: left;
}

.stack-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
}

.stack-price {
  font-weight: 600;
  color: #cbd5e1;
}

.total-row {
  border-bottom: none;
  font-weight: 800;
  font-size: 1.1rem;
  padding-top: 18px;
  color: #ffffff;
}

.total-price del {
  color: #f87171;
}

.pricing-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.price-callout {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.main-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.installments {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.currency {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-emerald);
}

.price-value {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-emerald);
}

.cash-price {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.offer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: left;
}

/* ==========================================================================
   DOBRA 9 — GARANTIA INCONDICIONAL
   ========================================================================== */

.guarantee-section {
  padding: 80px 0;
  background: #ffffff;
}

.guarantee-box {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.guarantee-badge-visual {
  text-align: center;
}

.seal-icon {
  font-size: 4rem;
  margin-bottom: 8px;
}

.seal-text strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.seal-text span {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-emerald);
  letter-spacing: 0.1em;
}

.guarantee-text h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.guarantee-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

/* ==========================================================================
   DOBRA ESPECIAL — ORDER BUMPS (UPGRADE NO CHECKOUT)
   ========================================================================== */

.order-bumps-section {
  padding: 85px 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
}

.order-bumps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 36px;
}

@media (max-width: 768px) {
  .order-bumps-grid {
    grid-template-columns: 1fr;
  }
}

.order-bump-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.order-bump-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-emerald);
}

.bump-tag {
  background: var(--primary-deep);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent-gold);
}

.bump-img-wrap {
  width: 100%;
  background: #0f172a;
  overflow: hidden;
}

.bump-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.order-bump-card:hover .bump-img {
  transform: scale(1.02);
}

.bump-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.bump-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}

.bump-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.bump-highlight {
  background: #f1f5f9;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.85rem;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bump-footer {
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bump-price {
  font-size: 1rem;
  color: var(--text-main);
}

.bump-price del {
  color: #94a3b8;
}

.bump-price strong {
  font-size: 1.25rem;
  color: var(--primary-emerald);
}

.bump-check-hint {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  background: #0d3e35;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
}

/* ==========================================================================
   DOBRA 10 — FAQ INTERATIVO
   ========================================================================== */

.faq-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

.faq-container {
  max-width: 820px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: var(--primary-light);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
}

.accordion-icon {
  font-size: 1.4rem;
  color: var(--primary-emerald);
  font-weight: 700;
  transition: var(--transition);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  background: #ffffff;
}

.accordion-body p {
  padding-bottom: 20px;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   DOBRA 11 — CHAMADA FINAL & FOOTER
   ========================================================================== */

.final-cta-section {
  padding: 90px 0;
  background: #ffffff;
}

.final-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 40px;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: left;
}

.path-card {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.path-old {
  background: #fef2f2;
  border-color: #fecaca;
}

.path-new {
  background: #ecfdf5;
  border-color: #a7f3d0;
  box-shadow: var(--shadow-md);
}

.path-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.path-old .path-tag { color: #dc2626; }
.path-new .path-tag { color: #059669; }

.path-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.path-old h3 { color: #991b1b; }
.path-new h3 { color: #065f46; }

.path-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
}

.final-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.final-subtext {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.footer {
  background: var(--primary-dark);
  color: #94a3b8;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  max-width: 800px;
}

.footer-logo strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.footer-legal p {
  line-height: 1.6;
  margin-bottom: 8px;
}

/* ==========================================================================
   STICKY MOBILE BAR (FLUTUANTE)
   ========================================================================== */

.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 12px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 998;
}

.sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-price span {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

.sticky-price strong {
  font-size: 1.1rem;
  color: var(--primary-emerald);
  font-weight: 800;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.35rem;
  }
  
  .scenes-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .method-steps {
    flex-direction: column;
  }
  
  .step-connector {
    transform: rotate(90deg);
    margin: 8px 0;
  }
  
  .pane-grid {
    grid-template-columns: 1fr;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
  }
  
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  
  .guarantee-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .paths-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.95rem;
  }
  
  .section-title {
    font-size: 1.85rem;
  }
  
  .offer-box {
    padding: 28px 18px;
  }
  
  .pricing-card {
    padding: 24px 16px;
  }
  
  .price-value {
    font-size: 3rem;
  }
  
  .offer-features {
    grid-template-columns: 1fr;
  }
  
  .btn-lg, .btn-xl {
    padding: 16px 24px;
    font-size: 1.05rem;
    width: 100%;
  }

  .hero-action-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
  }

  .transformation-card {
    border-radius: var(--radius-md);
  }

  .transformation-caption {
    font-size: 0.88rem;
  }
  
  .sticky-mobile-bar {
    display: block;
  }
  
  body {
    padding-bottom: 70px;
  }
}
