/* ════════════════════════════════════════
   Método Sexo com Qualidade — style.css
   Premium Dark | Preto · Vermelho · Dourado
   v3 — Full Conversion Page Redesign
════════════════════════════════════════ */

/* ── GOOGLE FONTS IMPORT ─────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ── RESET & BASE ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --bg-primary:    #080810;
  --bg-secondary:  #0e0e1a;
  --bg-card:       #111120;
  --bg-card-2:     #161628;
  --bg-card-hover: #1c1c30;
  --text-main:     #F5F5F5;
  --text-muted:    #E0E0EC;
  --text-dim:      #606078;

  /* Accent Palette */
  --red:           #E53935;
  --red-deep:      #B71C1C;
  --red-glow:      rgba(229,57,53,0.22);
  --red-glow-lg:   rgba(229,57,53,0.12);
  --gold:          #FFD700;
  --gold-light:    #FFE566;
  --gold-muted:    #C9A84C;
  --gold-glow:     rgba(255,215,0,0.18);
  --green:         #22C55E;

  /* Borders */
  --border:        rgba(255,255,255,0.06);
  --border-red:    rgba(229,57,53,0.28);
  --border-gold:   rgba(255,215,0,0.28);

  /* Shadows */
  --shadow-red:    0 8px 40px rgba(229,57,53,0.3), 0 2px 12px rgba(0,0,0,0.5);
  --shadow-card:   0 4px 32px rgba(0,0,0,0.45);
  --shadow-deep:   0 24px 80px rgba(0,0,0,0.7);

  /* Radius */
  --radius:        16px;
  --radius-sm:     10px;
  --radius-xs:     6px;

  /* Transitions */
  --tr:            0.28s ease;
  --tr-slow:       0.5s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── DECORATIVE GRAIN OVERLAY ─────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── CONTAINER ────────────────────────── */
.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ── TYPOGRAPHY HELPERS ───────────────── */
.eyebrow, .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before, .section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-eyebrow.gold-eye { color: var(--gold-muted); }
.section-eyebrow.gold-eye::before { background: var(--gold-muted); }

.section-title {
  font-size: clamp(1.9rem, 4.8vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.025em;
}
.section-title.left { text-align: left; }

.accent-red   { color: var(--red); }
.accent-gold  { color: var(--gold); }
.accent-green { color: var(--green); }
.gold         { color: var(--gold); }

/* ── GRADIENT TEXT ────────────────────── */
.gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-red {
  background: linear-gradient(135deg, #FF5252 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── DIVIDER LINE ─────────────────────── */
.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-red), transparent);
  margin: 0;
}

/* ── FADE-IN ANIMATION ────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

/* ── PULSE ANIMATION ──────────────────── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(229,57,53,0.4), 0 2px 12px rgba(0,0,0,0.5); }
  50%       { box-shadow: 0 16px 60px rgba(229,57,53,0.7), 0 4px 20px rgba(0,0,0,0.5); }
}
.pulse-btn { animation: pulse-glow 2.4s ease-in-out infinite; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 8px 32px rgba(255,215,0,0.25), 0 2px 12px rgba(0,0,0,0.5); }
  50%       { box-shadow: 0 16px 60px rgba(255,215,0,0.45), 0 4px 20px rgba(0,0,0,0.5); }
}
.pulse-gold { animation: pulse-gold 2.4s ease-in-out infinite; }

/* ── FLOAT ANIMATION ──────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* ── SHIMMER ──────────────────────────── */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ────────────────────────────────────────
   BUTTONS
──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF4444 0%, var(--red) 50%, var(--red-deep) 100%);
  color: #fff;
  font-weight: 800;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  letter-spacing: 0.08em;
  padding: 20px 42px;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  box-shadow: var(--shadow-red);
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
  border: none;
  text-transform: uppercase;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 60px rgba(229,57,53,0.55), 0 4px 20px rgba(0,0,0,0.5);
}
.btn-primary:active { transform: translateY(0) scale(0.99); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-muted) 100%);
  color: #111;
  font-weight: 900;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  letter-spacing: 0.08em;
  padding: 22px 48px;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255,215,0,0.3), 0 2px 12px rgba(0,0,0,0.5);
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
  border: none;
  text-transform: uppercase;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255,215,0,0.45), 0 4px 20px rgba(0,0,0,0.5);
}

.btn-large { padding: 24px 52px; font-size: 1.1rem; width: 100%; max-width: 520px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 15px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--tr);
  text-transform: uppercase;
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* ── TRUST ROW ────────────────────────── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.trust-row span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.garantia-trust { justify-content: flex-start; }

/* ── BADGE ────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid;
}
.badge-red   { color: var(--red);  background: rgba(229,57,53,0.12);  border-color: var(--border-red); }
.badge-gold  { color: var(--gold); background: rgba(255,215,0,0.10);  border-color: var(--border-gold); }
.badge-green { color: var(--green); background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.25); }

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
#topbar {
  background: linear-gradient(135deg, rgba(229,57,53,0.15), rgba(200,40,40,0.08));
  border-bottom: 1px solid var(--border-red);
  padding: 18px 0;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
#topbar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229,57,53,0.08), transparent);
  animation: topbar-shine 4s ease-in-out infinite;
}
@keyframes topbar-shine {
  0% { left: -60%; }
  100% { left: 160%; }
}
#topbar strong { color: var(--gold); }

/* ════════════════════════════════════════
   SEÇÃO 1 — HERO
════════════════════════════════════════ */
#hero {
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(229,57,53,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(180,30,30,0.06) 0%, transparent 70%);
}
#hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-red), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,57,53,0.1);
  border: 1px solid var(--border-red);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--red);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-headline {
  font-size: clamp(2.2rem, 6.5vw, 3.9rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 44px;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.3vw, 1.18rem);
  line-height: 1.75;
  font-weight: 400;
}
.hero-sub strong { color: var(--text-main); font-weight: 700; }

/* VSL */
.vsl-wrapper {
  margin-bottom: 36px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border-red),
    0 0 60px rgba(229,57,53,0.15),
    0 32px 80px rgba(0,0,0,0.7);
  position: relative;
}
.vsl-cover {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vsl-cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.vsl-cover:hover img { opacity: 0.8; }
.vsl-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(229,57,53,0.6);
  transition: transform 0.3s;
}
.vsl-play-btn svg { width: 40px; height: 40px; margin-left: 4px; }
.vsl-cover:hover .vsl-play-btn { transform: scale(1.1); }

.vsl-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(229,57,53,0.4), transparent 50%, rgba(255,215,0,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.vsl-inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.vsl-inner iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Checklist rápida */
.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-bottom: 40px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-muted);
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-checklist li:first-child { color: var(--text-main); font-weight: 700; }
.hero-checklist .check { color: var(--green); font-weight: 700; font-size: 1rem; }

/* CTA block */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.price-tag {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}
.price-tag strong { font-size: 1.05rem; }

/* Social proof mini */
.social-proof-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-dim);
  margin-top: 4px;
}
.social-proof-avatars {
  display: flex;
}
.social-proof-avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-proof-avatars span:first-child { margin-left: 0; }

/* ════════════════════════════════════════
   SEÇÃO PROVA SOCIAL — NÚMEROS
════════════════════════════════════════ */
#stats-bar {
  padding: 40px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), transparent);
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-block {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ════════════════════════════════════════
   SEÇÃO VÍDEO AULAS
════════════════════════════════════════ */
#videoaulas {
  padding: 100px 0 80px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(229,57,53,0.08) 0%, transparent 65%);
  text-align: center;
}
#videoaulas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(229,57,53,0.4);
}

.videoaulas-subtitle {
  max-width: 580px;
  margin: -16px auto 52px;
  color: var(--text-muted);
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  line-height: 1.75;
}

/* Grid vídeo aulas */
.vaulas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}

.vaula-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  text-align: left;
  position: relative;
}
.vaula-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-red);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(229,57,53,0.12);
}

.featured-vaula {
  grid-column: span 2;
  border-color: var(--border-red);
  box-shadow: 0 0 0 1px rgba(229,57,53,0.2), 0 12px 48px rgba(229,57,53,0.1);
}

.vaula-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #05050e;
}
.vaula-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: brightness(0.7) saturate(0.8);
}
.vaula-card:hover .vaula-thumb img {
  transform: scale(1.08);
  filter: brightness(0.55) saturate(0.6);
}

.vaula-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: background var(--tr);
}
.vaula-card:hover .vaula-play-overlay { background: rgba(229,57,53,0.15); }

.vaula-play-btn {
  width: 50px; height: 50px;
  background: rgba(229,57,53,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--tr), box-shadow var(--tr);
  box-shadow: 0 4px 24px rgba(229,57,53,0.6);
}
.featured-vaula .vaula-play-btn { width: 64px; height: 64px; }
.vaula-play-btn svg { width: 20px; height: 20px; color: #fff; margin-left: 3px; }
.featured-vaula .vaula-play-btn svg { width: 26px; height: 26px; }
.vaula-card:hover .vaula-play-btn {
  transform: scale(1.15);
  box-shadow: 0 8px 36px rgba(229,57,53,0.8);
}

.vaula-num-badge {
  position: absolute;
  top: 10px; left: 12px;
  background: rgba(8,8,16,0.85);
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-red);
}

.vaula-info { padding: 14px 16px 18px; }
.vaula-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229,57,53,0.1);
  border: 1px solid rgba(229,57,53,0.2);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 8px;
}
.vaula-info h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.3;
}
.featured-vaula .vaula-info h3 { font-size: 1.08rem; }
.vaula-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.58;
}

.vaula-mais {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(229,57,53,0.07), rgba(21,21,40,0.9));
  border-color: rgba(229,57,53,0.22);
  border-style: dashed;
  min-height: 200px;
  cursor: pointer;
}
.vaula-mais-inner { padding: 28px 22px; text-align: center; }
.vaula-mais-icon { font-size: 2.6rem; margin-bottom: 14px; display: block; }
.vaula-mais h3 { font-size: 1.45rem; font-weight: 900; margin-bottom: 10px; line-height: 1.1; }
.vaula-mais p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.55; }
.vaula-mais .btn-primary { font-size: 0.78rem; padding: 12px 22px; }

/* Stats bar (under video section) */
.vaulas-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  gap: 4px;
}
.stat-num { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 900; line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 0.72rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 52px; background: var(--border); flex-shrink: 0; }

/* ════════════════════════════════════════
   SEÇÃO — O QUE VOCÊ VAI APRENDER (NOVA)
════════════════════════════════════════ */
#aprender-novo {
  padding: 100px 0 88px;
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,215,0,0.04) 0%, transparent 70%);
  text-align: center;
}
#aprender-novo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.aprender-intro {
  max-width: 600px;
  margin: -12px auto 60px;
  color: var(--text-muted);
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  line-height: 1.75;
}

.aprender-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}

.aprender-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
  position: relative;
  overflow: hidden;
}
.aprender-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--red));
  transition: height 0.4s ease;
  border-radius: 0 0 3px 3px;
}
.aprender-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 24px rgba(255,215,0,0.06);
}
.aprender-card:hover::before { height: 100%; }

.aprender-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(229,57,53,0.08));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.aprender-card-text { flex: 1; }
.aprender-check {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.aprender-card-text p {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

/* ════════════════════════════════════════
   SEÇÃO — TUDO QUE VOCÊ RECEBE
════════════════════════════════════════ */
#recebe {
  background: var(--bg-secondary);
  position: relative;
}
#recebe::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), transparent);
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}
.video-card-destaque {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(229,57,53,0.07) 0%, var(--bg-card) 60%);
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.product-card.featured {
  border-color: var(--border-red);
  box-shadow: 0 0 0 1px rgba(229,57,53,0.2), 0 8px 40px rgba(229,57,53,0.1);
}

.card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #060612;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.04); }

.card-play-icon {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
  background: rgba(229,57,53,0.15);
  transition: background var(--tr);
  pointer-events: none;
}
.video-card-destaque:hover .card-play-icon { background: rgba(229,57,53,0.25); }

.card-body { padding: 20px 18px 24px; }
.card-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--red);
  background: rgba(229,57,53,0.12);
  border: 1px solid var(--border-red);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.badge-video {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  border-color: transparent;
  font-size: 0.68rem;
  padding: 4px 10px;
}
.card-badge.bonus {
  color: var(--gold);
  background: rgba(255,215,0,0.1);
  border-color: var(--border-gold);
}
.card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.video-card-destaque .card-body h3 { font-size: 1.15rem; }
.card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.card-micro-list { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; }
.card-micro-list li { font-size: 0.8rem; color: var(--green); font-weight: 600; }

.mini-cta {
  text-align: center;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0 40px rgba(255,215,0,0.04);
}
.mini-cta p { font-size: 0.98rem; color: var(--text-muted); }

/* ════════════════════════════════════════
   SEÇÃO — ACESSO COMPLETO (NOVA)
════════════════════════════════════════ */
#acesso-completo {
  padding: 100px 0 88px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(229,57,53,0.07) 0%, transparent 70%);
  text-align: center;
}
#acesso-completo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-red), transparent);
}

.acesso-subtitle {
  max-width: 560px;
  margin: -12px auto 60px;
  color: var(--text-muted);
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  line-height: 1.75;
}

.acesso-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  margin-bottom: 60px;
}

.acesso-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acesso-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
  position: relative;
  overflow: hidden;
}
.acesso-item::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  opacity: 0;
  transition: opacity var(--tr);
}
.acesso-item:hover {
  transform: translateX(6px);
  border-color: var(--border-red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(229,57,53,0.08);
}
.acesso-item:hover::after { opacity: 1; }

.acesso-item-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(229,57,53,0.15), rgba(255,215,0,0.08));
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.acesso-item-text { flex: 1; }
.acesso-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 3px;
}
.acesso-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.acesso-item-check {
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
}

/* Mockup visual */
.acesso-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mockup-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.mockup-main {
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px var(--border-red),
    0 0 60px rgba(229,57,53,0.2),
    0 32px 80px rgba(0,0,0,0.7);
  width: 100%;
  animation: float 6s ease-in-out infinite;
}
.mockup-badge-floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(255,215,0,0.1);
}
.mockup-badge-floating .mbf-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.mockup-badge-floating .mbf-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.mockup-badge-2 {
  position: absolute;
  top: -16px;
  left: -16px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 4px 20px rgba(229,57,53,0.5);
}

/* Seals row */
.acesso-seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.seal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  transition: border-color var(--tr);
}
.seal-item:hover { border-color: var(--border-red); }
.seal-icon { font-size: 1.5rem; }
.seal-text { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); line-height: 1.3; }
.seal-text strong { color: var(--text-main); display: block; font-size: 0.85rem; }

/* ════════════════════════════════════════
   SEÇÃO — ÁREA DE MEMBROS
════════════════════════════════════════ */
#membros {
  padding: 100px 0 88px;
  background: var(--bg-secondary);
  position: relative;
}
#membros::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.membros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.membros-desc {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.75;
}

.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  font-size: 0.98rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.check-green { color: var(--green); font-size: 1.1rem; font-weight: 800; }

.img-glow-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border),
    0 0 80px rgba(229,57,53,0.1),
    0 32px 100px rgba(0,0,0,0.7);
}
.img-glow-wrap img { width: 100%; display: block; }

/* ════════════════════════════════════════
   SEÇÃO — MÓDULOS / O QUE VOCÊ VAI APRENDER (OLD)
════════════════════════════════════════ */
#aprender {
  padding: 100px 0 88px;
  position: relative;
}
#aprender::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0;
  transition: opacity var(--tr);
}
.module-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-red);
  box-shadow: 0 14px 42px rgba(0,0,0,0.45);
}
.module-card:hover::before { opacity: 1; }

.module-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(229,57,53,0.18);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.module-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--text-main); }
.module-card ul { display: flex; flex-direction: column; gap: 8px; }
.module-card ul li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.module-card ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--red);
}
.module-card ul li.muted {
  color: rgba(144,144,168,0.4);
  font-style: italic;
}

/* ════════════════════════════════════════
   SEÇÃO — AUDIOBOOK
════════════════════════════════════════ */
#audiobook {
  padding: 100px 0 88px;
  background: var(--bg-secondary);
  position: relative;
}
#audiobook::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
}

.audio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.audio-text p { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 14px; line-height: 1.7; }
.audio-text .btn-outline { margin-top: 12px; }

.audio-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.audio-img-1 {
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
  max-width: 300px;
  width: 100%;
}
.audio-player-mock {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: var(--bg-card-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 20px rgba(255,215,0,0.08);
}
.player-title { font-size: 0.85rem; font-weight: 800; margin-bottom: 10px; color: #fff; }
.player-bar { height: 3px; background: var(--border); border-radius: 3px; margin-bottom: 10px; position: relative; }
.player-progress { height: 100%; width: 38%; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: 3px; }
.player-progress::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translate(50%, -50%);
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.player-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  cursor: default;
}
.player-btn.play {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  border: none;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(229,57,53,0.5);
}

/* ════════════════════════════════════════
   SEÇÃO — DEPOIMENTOS
════════════════════════════════════════ */
#depoimentos {
  padding: 100px 0 88px;
  position: relative;
}
#depoimentos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.carousel { position: relative; user-select: none; }
.carousel-track-wrap { overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; align-items: stretch; will-change: transform; }
.depo-slide { flex-shrink: 0; padding: 0 8px; box-sizing: border-box; }
.depo-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform var(--tr), border-color var(--tr);
}
.depo-slide.active-slide img { border-color: var(--border-red); }
.depo-slide img:hover { transform: translateY(-5px); border-color: var(--border-red); }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(17,17,32,0.95);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--tr);
  backdrop-filter: blur(8px);
}
.carousel-btn:hover { background: var(--red); border-color: var(--red); box-shadow: var(--shadow-red); }
.carousel-btn:disabled { opacity: 0.2; pointer-events: none; }
.carousel-btn.prev { left: -23px; }
.carousel-btn.next { right: -23px; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all var(--tr);
  padding: 0;
}
.dot.active { background: var(--red); width: 28px; border-radius: 4px; }

/* ════════════════════════════════════════
   SEÇÃO — GARANTIA
════════════════════════════════════════ */
#garantia {
  padding: 100px 0 88px;
  background: var(--bg-secondary);
  position: relative;
}
#garantia::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.3), transparent);
}

.garantia-inner {
  background: var(--bg-card);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: 0 0 60px rgba(34,197,94,0.05), 0 24px 80px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.garantia-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.garantia-img {
  width: 180px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 28px rgba(34,197,94,0.3));
  animation: float 6s ease-in-out infinite;
}

.garantia-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}
.garantia-text p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 20px;
  max-width: 480px;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   SEÇÃO — FAQ (NOVA)
════════════════════════════════════════ */
#faq {
  padding: 100px 0 88px;
  position: relative;
}
#faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.faq-subtitle {
  max-width: 520px;
  margin: -12px auto 56px;
  color: var(--text-muted);
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.faq-item.active {
  border-color: var(--border-red);
  box-shadow: 0 8px 32px rgba(229,57,53,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  transition: color var(--tr);
}
.faq-question:hover { color: var(--red); }
.faq-item.active .faq-question { color: var(--red); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--text-dim);
  transition: all var(--tr);
  background: rgba(255,255,255,0.03);
}
.faq-item.active .faq-icon {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
  border-left: 3px solid rgba(229,57,53,0.3);
  padding-left: 18px;
}

/* ════════════════════════════════════════
   SEÇÃO — OFERTA FINAL
════════════════════════════════════════ */
#oferta {
  padding: 100px 0 100px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(229,57,53,0.12) 0%, transparent 70%);
}
#oferta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), transparent);
}

.oferta-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 24px;
  padding: 56px 52px;
  display: flex;
  align-items: center;
  gap: 56px;
  box-shadow:
    0 0 0 1px rgba(255,215,0,0.08),
    0 0 80px rgba(229,57,53,0.15),
    0 32px 100px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}
.oferta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.oferta-img-wrap { width: 220px; flex-shrink: 0; }
.oferta-img-wrap img {
  width: 100%;
  filter: drop-shadow(0 0 32px rgba(229,57,53,0.3));
  animation: float 6s ease-in-out infinite;
}

.oferta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.oferta-desc { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.7; }
.oferta-desc strong { color: var(--text-main); }

.oferta-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.oferta-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-muted);
}
.oferta-includes li:first-child { font-size: 1rem; font-weight: 700; color: var(--text-main); }
.oferta-tag-novo {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 2px 7px;
  border-radius: 3px;
  vertical-align: middle;
  text-transform: uppercase;
}

.scarcity-box {
  background: rgba(229, 57, 53, 0.08);
  border: 1px dashed rgba(229, 57, 53, 0.4);
  border-radius: 8px;
  padding: 18px;
  margin: 24px 0;
  text-align: center;
}
.scarcity-header {
  color: var(--red);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.cd-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 8px 12px;
  min-width: 60px;
}
.cd-box span:first-child {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
}
.cd-box span:last-child {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 4px;
}
.cd-sep {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.scarcity-box p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.price-block { margin-bottom: 28px; }
.price-old { font-size: 0.86rem; color: var(--text-dim); }
.price-old s { opacity: 0.6; }
.price-current {
  font-size: clamp(2.6rem, 6.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-parcel { font-size: 0.88rem; color: var(--text-muted); margin-top: 6px; }
.price-parcel strong { color: var(--text-main); }

/* ── FOOTER ───────────────────────────── */
#footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg-secondary);
}
#footer p {
  font-size: 0.85rem;
  color: rgba(144,144,168,0.4);
  margin-bottom: 5px;
}
.footer-disclaimer { font-size: 0.8rem !important; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 16px; }
.footer-links a { font-size: 0.72rem; color: var(--text-dim); transition: color var(--tr); }
.footer-links a:hover { color: var(--red); }

/* ════════════════════════════════════════
   MOBILE RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 860px) {
  .vaulas-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-vaula { grid-column: span 2; }
  .vaula-mais { grid-column: span 2; }

  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .video-card-destaque { grid-column: span 2; }

  .aprender-grid { grid-template-columns: repeat(2, 1fr); }

  .acesso-layout { grid-template-columns: 1fr; gap: 40px; }
  .acesso-mockup { order: -1; }

  .membros-inner { grid-template-columns: 1fr; gap: 40px; }
  .membros-img { order: -1; }

  .audio-inner { grid-template-columns: 1fr; gap: 40px; }
  .audio-text { order: 1; }
  .audio-img-wrapper { order: 2; }

  .stats-row { gap: 0; }
  .stat-block { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-block:nth-child(even) { border-right: none; }
}

@media (max-width: 700px) {
  #hero { padding: 56px 0 52px; }
  .hero-headline { font-size: 2rem; }

  .vaulas-grid { grid-template-columns: 1fr; }
  .featured-vaula, .vaula-mais { grid-column: span 1; }

  .vaulas-stats { flex-wrap: wrap; }
  .stat-item { flex: 1 1 calc(50% - 1px); padding: 22px 14px; }
  .stat-divider:nth-child(4) { display: none; }

  .cards-grid-4, .video-card-destaque { grid-column: span 1; }
  .cards-grid-4 { grid-template-columns: 1fr; }

  .aprender-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .garantia-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 28px;
  }
  .garantia-trust { justify-content: center; }

  .oferta-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 32px;
  }
  .oferta-img-wrap { width: 160px; margin: 0 auto; }
  .oferta-includes { align-items: flex-start; text-align: left; }

  .trust-row { justify-content: center; }
  .btn-primary, .btn-gold { width: 100%; max-width: 100%; }
  .btn-large { width: 100%; }

  .mockup-badge-floating { bottom: -10px; right: 0; }
  .mockup-badge-2 { left: 0; top: -12px; }

  .acesso-seals { gap: 10px; }

  #footer p { font-size: 0.9rem !important; }
  .footer-disclaimer { font-size: 0.85rem !important; }
}

@media (max-width: 440px) {
  .modules-grid { grid-template-columns: 1fr; }
  .hero-checklist { flex-direction: column; align-items: center; }
  .stat-item { flex: 1 1 100%; }
  .stat-divider { display: none; }
  .stat-block { flex: 1 1 100%; border-right: none; }
}
