/* ============================================
   CAP — LISTA DE ESPERA
   Landing · Fê Torrano
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-alt: #161616;
  --cream: #0f0f0f;
  --cream-dark: #141414;
  --card: #181818;
  --text: #e9e9e9;
  --text-light: #a5a5a5;
  --accent: #d4a017;
  --accent-hover: #b8860b;
  --accent-soft: #f1c644;
  --gold: #d4a017;
  --ok: #39c977;
  --err: #e74c3c;
  --border: rgba(212,160,23,0.18);
  --radius: 14px;
  --shadow: 0 20px 60px rgba(0,0,0,0.55);
  --shadow-strong: 0 30px 80px rgba(0,0,0,0.75);
  --shadow-gold: 0 12px 40px rgba(212,160,23,0.25);
  --max: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-2.tight { gap: 32px; }
.align-center { align-items: center; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow.dark { color: var(--accent); }
.eyebrow.light { color: var(--gold); }

.lead {
  font-size: 19px;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 40px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn:hover {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 100%);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(212,160,23,0.4);
}
.btn:active { transform: translateY(-1px); }
.btn-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-top: 4px;
  text-transform: none;
}
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 20px 44px; font-size: 16px; }
.btn-xl { padding: 24px 50px; font-size: 18px; }

.btn.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(212,160,23,0.55);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212,160,23,0.55); }
  70%  { box-shadow: 0 0 0 22px rgba(212,160,23,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); }
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--accent); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--bg);
  color: #fff;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(212,160,23,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #13131a 100%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-copy { max-width: 880px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(34px, 5.2vw, 62px);
  margin: 22px 0 28px;
  color: #fff;
}
.hero h1 .hl {
  color: var(--accent-soft);
  position: relative;
  display: inline-block;
}
.hero h1 .hl::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 12px;
  background: rgba(212,160,23,0.18);
  z-index: -1;
  transform: skewX(-8deg);
}
.hero h1 .hl-soft {
  color: rgba(255,255,255,0.65);
  font-style: italic;
  font-weight: 600;
}
.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 auto 48px;
}
.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hero-tags li { font-weight: 500; }

/* ============ LOGO BAR ============ */
.logobar {
  background: var(--bg-soft);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logobar-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.logobar-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.logobar-items span:hover { color: var(--accent); cursor: default; }

/* ============ EMPATIA ============ */
.empatia { padding: 120px 0; background: var(--bg); }
.empatia h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 28px;
}
.empatia p { font-size: 17px; color: var(--text-light); margin-bottom: 18px; }
.empatia .destaque {
  padding: 20px;
  background: var(--card);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  color: var(--text);
  font-size: 17px;
}
.empatia-card {
  background: var(--card);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.empatia-card h3 { font-size: 24px; margin-bottom: 24px; }
.check-list { list-style: none; }
.check-list li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--text-light);
  font-size: 15px;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 14px;
  width: 22px; height: 22px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ============ MÉTODO ============ */
.metodo { padding: 120px 0; background: var(--bg-soft); color: #fff; }
.metodo h2 { font-size: clamp(32px, 4.5vw, 52px); color: #fff; margin-bottom: 20px; }
.metodo .lead { color: rgba(255,255,255,0.7); }
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px auto;
}
.pillar {
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
}
.pillar:hover {
  background: rgba(212,160,23,0.08);
  border-color: rgba(212,160,23,0.5);
  transform: translateY(-6px);
}
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-soft);
  margin-bottom: 16px;
}
.pillar h4 { font-size: 22px; color: #fff; margin-bottom: 12px; }
.pillar p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ============ DOIS GRUPOS ============ */
.dois-grupos { padding: 120px 0; background: var(--bg); }
.dois-grupos h2 { font-size: clamp(30px, 4vw, 44px); margin: 18px 0 60px; text-align: center; }
.grupo {
  padding: 48px 40px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease);
}
.grupo:hover { transform: translateY(-6px); }
.grupo.alt { background: var(--bg-soft); }
.tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212,160,23,0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 20px;
}
.grupo.alt .tag { background: rgba(255,255,255,0.1); color: #fff; }
.grupo h3 { font-size: 26px; margin-bottom: 18px; }
.grupo p { color: var(--text-light); font-size: 16px; }

/* ============ ENTREGÁVEIS ============ */
.entregaveis { padding: 120px 0; background: var(--bg); }
.entregaveis h2 { font-size: clamp(32px, 4.5vw, 50px); margin-bottom: 18px; }
.modulos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.modulo {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.modulo:hover { border-color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.modulo.highlight {
  background: linear-gradient(135deg, rgba(212,160,23,0.08), rgba(212,175,55,0.1));
  border-color: var(--gold);
}
.modulo summary {
  padding: 24px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.modulo summary::-webkit-details-marker { display: none; }
.modulo summary::after {
  content: '+';
  margin-left: auto;
  font-size: 26px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.3s;
}
.modulo[open] summary::after { transform: rotate(45deg); }
.mod-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.mod-count {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: auto;
  margin-right: 16px;
}
.modulo ul { padding: 0 28px 28px 84px; list-style: none; }
.modulo ul li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  padding-left: 18px;
}
.modulo ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.modulo ul li:last-child { border-bottom: none; }
.modulo ul li strong { color: var(--accent-soft); }

/* ============ BÔNUS ============ */
.bonus { padding: 120px 0; background: var(--bg-alt); color: #fff; }
.bonus h2 { color: #fff; font-size: clamp(30px, 4vw, 44px); margin-bottom: 60px; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus-item {
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s var(--ease);
}
.bonus-item:hover { background: rgba(212,160,23,0.08); transform: translateY(-5px); }
.bonus-item.featured-mec {
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,160,23,0.08));
  border-color: rgba(212,175,55,0.5);
  position: relative;
}
.bonus-item.featured-mec::before {
  content: 'OFICIAL';
  position: absolute;
  top: 14px; right: 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #000;
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
}
.bonus-icon.mec-seal {
  width: 110px;
  height: 110px;
  margin: 0 auto 22px;
}
.bonus-icon.mec-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(212,175,55,0.5));
}
.bonus-item.bonus-photo {
  padding: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  text-align: left;
  display: flex;
  flex-direction: column;
}
.bonus-img {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.bonus-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.85) 100%);
}
.bonus-content { padding: 24px 26px 28px; }
.bonus-content h4 { font-size: 20px; color: #fff; margin-bottom: 10px; }
.bonus-content p { font-size: 14px; color: rgba(255,255,255,0.65); }
.bonus-item h4 { font-size: 20px; color: #fff; margin-bottom: 10px; }
.bonus-item p { font-size: 14px; color: rgba(255,255,255,0.65); }

.bonus-img-whats {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18) 0%, transparent 60%),
    linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  position: relative;
}
.bonus-img-whats::after {
  content: "";
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='white' d='M16 3C9 3 3.5 8.5 3.5 15.5c0 2.5.7 4.9 2 7L3 29l6.7-2.4c2 1.1 4.3 1.7 6.3 1.7 7 0 12.5-5.5 12.5-12.5S23 3 16 3zm0 22.5c-1.9 0-3.7-.5-5.3-1.5l-.4-.2-4 1.4 1.4-3.9-.2-.4A10.3 10.3 0 0 1 5.7 15.5C5.7 9.8 10.3 5.2 16 5.2s10.3 4.6 10.3 10.3S21.7 25.5 16 25.5zm5.7-7.7c-.3-.2-1.8-.9-2.1-1-.3-.1-.5-.2-.7.2-.2.3-.8 1-.9 1.2-.2.2-.3.2-.6.1-.3-.2-1.3-.5-2.5-1.5-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.2-.2.2-.3.3-.5.1-.2 0-.4 0-.5 0-.1-.7-1.6-.9-2.2-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.2 5.1 4.5.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.8-.7 2-1.4.2-.7.2-1.3.2-1.4-.1-.1-.3-.2-.6-.3z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
  opacity: 0.95;
  background-color: transparent;
}

/* ============ PROVA SOCIAL ============ */
.prova { padding: 120px 0; background: var(--bg); }
.prova h2 { font-size: clamp(32px, 4.5vw, 48px); }
.video-depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
  margin-bottom: 60px;
}
.video-depo {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.video-depo:hover { transform: translateY(-6px); }
.video-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  align-self: flex-start;
  margin: 18px 0 0 18px;
  border-radius: 100px;
}
.video-tag.alt { background: var(--gold); color: #0a0a0a; }
.video-tag.dark { background: #0a0a0a; color: #fff; border: 1px solid var(--border); }
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 16px;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-depo figcaption {
  padding: 22px 24px 28px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============ FÊ ============ */
.fe { padding: 120px 0; background: var(--bg); }
.fe h2 { font-size: clamp(32px, 4.5vw, 50px); margin: 18px 0 28px; }
.fe p { font-size: 17px; color: var(--text-light); margin-bottom: 18px; }
.fe-copy .btn { margin-top: 20px; }
.shadow-overlay {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: #0b0b0f;
  border: 1px solid var(--border);
}
.photo-real {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.95) contrast(1.05);
}
.shadow-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85) 100%),
              radial-gradient(ellipse at 30% 20%, rgba(212,160,23,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.photo-caption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  z-index: 1;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

/* ============ OFERTA / LISTA ============ */
.oferta {
  padding: 120px 0;
  background: var(--bg);
  color: #fff;
  position: relative;
}
.oferta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(212,160,23,0.14) 0%, transparent 60%);
}
.oferta .container { position: relative; }
.oferta h2 {
  font-size: clamp(32px, 4.5vw, 50px);
  color: #fff;
  margin-bottom: 18px;
}
.oferta .lead { color: rgba(255,255,255,0.75); }
.oferta-card {
  max-width: 620px;
  margin: 60px auto 0;
  padding: 56px 44px;
  background: var(--card);
  color: var(--text);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  position: relative;
  text-align: center;
}
.oferta-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0a0a;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.oferta-card h3 {
  font-size: 28px;
  margin: 12px 0 28px;
}
.oferta-list {
  list-style: none;
  text-align: left;
  margin: 0 auto 36px;
  max-width: 440px;
}
.oferta-list li {
  padding: 10px 0;
  color: var(--text);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.oferta-list li:last-child { border-bottom: none; }

/* ============ FORM ============ */
.waitlist-form {
  text-align: left;
  margin-top: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.25s var(--ease);
}
.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
  background: var(--bg-soft);
}
.form-group input.error {
  border-color: var(--err);
  box-shadow: 0 0 0 3px rgba(231,76,60,0.15);
}
.form-message {
  min-height: 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  margin: 8px 0 14px;
}
.form-message.success { color: var(--ok); }
.form-message.error { color: var(--err); }
#submit-btn {
  width: 100%;
  margin-top: 10px;
}
#submit-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.seguranca {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-light);
  flex-wrap: wrap;
}

/* ============ FAQ ============ */
.faq { padding: 120px 0; background: var(--bg-alt); }
.faq h2 { font-size: clamp(30px, 4vw, 44px); margin: 18px 0 40px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--card);
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.25s;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 28px 24px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ CTA FINAL ============ */
.cta-final {
  padding: 120px 0;
  color: #fff;
  background-image:
    radial-gradient(ellipse at center, rgba(212,160,23,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #151510 100%);
}
.cta-final h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final .lead {
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #060606;
  color: var(--text-light);
  padding: 60px 0 30px;
  font-size: 13px;
  border-top: 1px solid var(--border);
}
.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.foot-top nav { display: flex; gap: 28px; }
.foot-top a { color: var(--text-light); transition: color 0.2s; }
.foot-top a:hover { color: var(--accent); }
.disclaimer {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.disclaimer a { color: var(--text-light); margin: 0 4px; }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .video-depo-grid { grid-template-columns: 1fr; }
  .modulos { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 80px; }
  section { padding: 80px 0 !important; }
}
@media (max-width: 600px) {
  .pillars, .bonus-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 17px; }
  .btn-xl { padding: 20px 28px; font-size: 15px; }
  .oferta-card { padding: 40px 24px; }
  .modulo summary { padding: 20px; font-size: 17px; }
  .modulo ul { padding: 0 20px 24px 20px; }
  .mod-count { display: none; }
  .foot-top { flex-direction: column; gap: 20px; }
  .oferta-badge { font-size: 10px; padding: 6px 16px; }
}
