/* ============ TOKENS ============ */
:root {
  --bg: oklch(0.16 0.02 160);
  --fg: oklch(0.98 0.005 100);
  --card: oklch(0.21 0.025 160);
  --muted: oklch(0.72 0.02 160);
  --primary: oklch(0.42 0.09 155);
  --accent: oklch(0.32 0.08 155);
  --cta: oklch(0.88 0.19 96);
  --cta-fg: oklch(0.15 0.02 160);
  --highlight: oklch(0.72 0.16 42);
  --border: oklch(0.28 0.02 160);
  --secondary: oklch(0.24 0.02 160);
  --radius: 1rem;
  --display: "Anton", "Bebas Neue", system-ui, sans-serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--display); letter-spacing: 0.01em; line-height: 1.05; }
p { line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }
iframe { border: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 960px; }
.faq-container { max-width: 780px; }
.center { display: flex; justify-content: center; }
.mt { margin-top: 3.5rem; }
.muted { color: var(--muted); }
.small { font-size: .75rem; }
.upper { text-transform: uppercase; letter-spacing: .1em; }
.accent { color: var(--cta); }
.strike { text-decoration: line-through; color: var(--muted); }

/* ============ ANIMATIONS ============ */
@keyframes fade-up { from { opacity: 0; transform: translateY(24px);} to { opacity:1; transform:none;} }
@keyframes pulse-cta {
  0%,100% { box-shadow: 0 10px 30px -8px oklch(0.88 0.19 96 / .45), 0 0 0 0 oklch(0.88 0.19 96 / .5); }
  50% { box-shadow: 0 10px 30px -8px oklch(0.88 0.19 96 / .55), 0 0 0 14px oklch(0.88 0.19 96 / 0); }
}
@keyframes float-slow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes shine { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
.fade-up { animation: fade-up .7s ease-out both; }

.shine {
  background: linear-gradient(90deg, oklch(0.88 0.19 96), oklch(0.72 0.16 42), oklch(0.88 0.19 96));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 3s linear infinite;
}

/* ============ BUTTONS ============ */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, oklch(0.9 0.19 96), oklch(0.82 0.19 80));
  color: var(--cta-fg);
  font-weight: 900; font-size: 1.05rem; letter-spacing: .04em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: pulse-cta 2.4s ease-in-out infinite;
  text-align: center;
}
.btn-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 18px 40px -10px oklch(0.88 0.19 96 / .6); }

.btn-secondary {
  display: block; width: 100%;
  margin-top: 2rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  background: var(--secondary);
  border: 1px solid var(--border);
  text-align: center;
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  transition: background .2s;
}
.btn-secondary:hover { background: var(--accent); }

.nav-cta {
  border: 1px solid oklch(0.88 0.19 96 / .4);
  background: oklch(0.88 0.19 96 / .1);
  color: var(--cta);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  transition: background .2s;
}
.nav-cta:hover { background: oklch(0.88 0.19 96 / .2); }

/* ============ PILL/BADGE ============ */
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid oklch(0.88 0.19 96 / .4);
  background: oklch(0.88 0.19 96 / .1);
  color: var(--cta);
  padding: .4rem 1rem; border-radius: 999px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em;
}
.pill-highlight {
  border-color: oklch(0.72 0.16 42 / .4);
  background: oklch(0.72 0.16 42 / .1);
  color: var(--highlight);
}
.pill-fire {
  background: var(--highlight);
  border-color: transparent;
  color: white;
  font-weight: 900;
}

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; }
.nav {
  position: absolute; inset: 0 0 auto 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; max-width: 1200px; margin: 0 auto; left: 0; right: 0;
}
.logo { display: flex; align-items: center; gap: .5rem; }
.logo-badge {
  display: grid; place-items: center;
  width: 2.25rem; height: 2.25rem; border-radius: .75rem;
  background: var(--cta); color: var(--cta-fg); font-size: 1.2rem;
}
.logo-text { font-family: var(--display); font-size: 1.125rem; letter-spacing: .05em; }

.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at top right, oklch(0.88 0.19 96 / .15), transparent 60%),
    linear-gradient(to bottom, oklch(0.16 0.02 160 / .7), var(--bg));
}

.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding: 9rem 1.5rem 6rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 7fr 5fr; padding-top: 10rem; padding-bottom: 8rem; }
}

.h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900; text-transform: uppercase;
  line-height: .95;
}
.lead { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted); max-width: 34rem; }

.benefits { margin-top: 2rem; display: grid; grid-template-columns: 1fr; gap: .75rem; }
@media (min-width: 640px) { .benefits { grid-template-columns: 1fr 1fr; } }
.benefits li { display: flex; align-items: flex-start; gap: .5rem; font-weight: 500; }
.benefits .check {
  display: grid; place-items: center;
  width: 1.5rem; height: 1.5rem; margin-top: .1rem; flex-shrink: 0;
  border-radius: 999px; background: var(--cta); color: var(--cta-fg);
  font-size: .8rem; font-weight: 900;
}
.check {
  display: inline-grid; place-items: center;
  width: 1.25rem; height: 1.25rem; border-radius: 999px;
  background: var(--cta); color: var(--cta-fg);
  font-size: .7rem; font-weight: 900; flex-shrink: 0;
}

.hero-cta-row {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
}
@media (min-width: 640px) { .hero-cta-row { flex-direction: row; align-items: center; } }
.stars { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--muted); }
.stars span:first-child { color: var(--cta); letter-spacing: .15em; }

/* VSL */
.vsl-mobile { margin-top: 2rem; }
.hero-right { display: none; }
@media (min-width: 900px) { .hero-right { display: block; } .vsl-mobile { display: none; } }

.vsl { position: relative; max-width: 22rem; margin: 0 auto; }
.vsl-glow {
  position: absolute; inset: -1rem;
  background: linear-gradient(135deg, oklch(0.88 0.19 96 / .3), oklch(0.72 0.16 42 / .2), transparent);
  filter: blur(2rem); border-radius: 2rem; pointer-events: none;
}
.vsl-frame {
  position: relative; overflow: hidden;
  border: 1px solid oklch(0.88 0.19 96 / .4);
  background: black; border-radius: 1.5rem;
  aspect-ratio: 9 / 16;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.6);
}
.vsl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.vsl-tag {
  position: absolute; top: -.75rem; right: -.75rem;
  background: var(--highlight); color: white;
  padding: .25rem .75rem; border-radius: 999px;
  font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

/* ============ SECTIONS ============ */
.section { padding: 6rem 0; position: relative; }
@media (min-width: 640px) { .section { padding: 8rem 0; } }
.band {
  background: linear-gradient(to bottom, oklch(0.24 0.02 160 / .2), oklch(0.24 0.02 160 / .1), oklch(0.24 0.02 160 / .2));
  border-top: 1px solid oklch(0.28 0.02 160 / .5);
  border-bottom: 1px solid oklch(0.28 0.02 160 / .5);
}
.section-title { max-width: 48rem; margin: 0 auto; text-align: center; }
.section-title h2 { margin-top: 1.25rem; font-size: clamp(2rem, 5vw, 3.75rem); text-transform: uppercase; }
.section-title .sub { margin-top: 1.25rem; color: var(--muted); font-size: 1.05rem; }

.grid-4 {
  margin-top: 4rem;
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.grid-3 {
  margin-top: 4rem;
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 1.5rem;
  box-shadow: 0 10px 25px -12px rgba(0,0,0,.4);
  transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); border-color: oklch(0.88 0.19 96 / .5); }
.card h3 { margin-top: 1.25rem; font-size: 1.25rem; }
.card p { margin-top: .5rem; font-size: .875rem; color: var(--muted); }
.card.row { display: flex; align-items: flex-start; gap: 1rem; padding: 1.75rem; }
.card.row h3 { margin-top: 0; font-size: 1.1rem; }
.card.row p { margin-top: 1rem; }

.icon {
  display: grid; place-items: center;
  width: 3rem; height: 3rem; border-radius: 1rem;
  background: oklch(0.88 0.19 96 / .15); color: var(--cta);
  font-size: 1.4rem;
}
.icon-lg {
  display: grid; place-items: center; flex-shrink: 0;
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  background: linear-gradient(135deg, var(--cta), var(--highlight));
  color: var(--cta-fg); font-size: 1.6rem;
  box-shadow: 0 8px 20px -6px oklch(0.88 0.19 96 / .5);
}

/* ============ BONOS ============ */
.bonos { margin-top: 4rem; display: flex; flex-direction: column; gap: 1.25rem; }
.bono {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 1.5rem;
  box-shadow: 0 10px 25px -12px rgba(0,0,0,.4);
  transition: border-color .25s, transform .25s;
}
@media (min-width: 640px) { .bono { flex-direction: row; align-items: center; gap: 1.5rem; padding: 1.75rem; } }
.bono:hover { border-color: oklch(0.88 0.19 96 / .6); transform: translateY(-2px); }
.bono-n {
  display: grid; place-items: center; flex-shrink: 0;
  width: 4rem; height: 4rem; border-radius: 1rem;
  background: linear-gradient(135deg, var(--cta), var(--highlight));
  color: var(--cta-fg); font-family: var(--display); font-size: 1.5rem;
  box-shadow: 0 8px 20px -6px oklch(0.88 0.19 96 / .5);
}
.bono-body { flex: 1; min-width: 0; }
.bono-tag { font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; color: var(--cta); }
.bono-body h3 { margin-top: .25rem; font-size: 1.15rem; }
.bono-body p { margin-top: .4rem; font-size: .875rem; color: var(--muted); }
.bono-val { text-align: left; }
@media (min-width: 640px) { .bono-val { text-align: right; } }
.bono-val .strike { font-family: var(--display); font-size: 1.5rem; }
.badge {
  display: inline-flex; align-items: center; gap: .25rem;
  margin-top: .25rem;
  background: var(--cta); color: var(--cta-fg);
  padding: .1rem .75rem; border-radius: 999px;
  font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em;
}
.bonos-total {
  margin-top: 3rem;
  border: 2px dashed oklch(0.88 0.19 96 / .5);
  background: oklch(0.88 0.19 96 / .1);
  border-radius: 1.5rem; padding: 2rem; text-align: center;
}
.bonos-total .big { font-family: var(--display); font-size: 2rem; }
.bonos-total .muted { margin-top: .5rem; font-size: .875rem; }

/* ============ COUNTDOWN ============ */
.scarcity {
  max-width: 48rem; margin: 3.5rem auto;
  position: relative; overflow: hidden;
  border: 2px solid oklch(0.88 0.19 96 / .6);
  background: linear-gradient(135deg, oklch(0.72 0.16 42 / .2), var(--card), oklch(0.88 0.19 96 / .1));
  border-radius: 1.5rem; padding: 2rem;
  box-shadow: 0 20px 50px -20px oklch(0.88 0.19 96 / .2);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.scarcity h3 { max-width: 32rem; font-size: 1.75rem; text-transform: uppercase; }
@media (min-width: 640px) { .scarcity h3 { font-size: 2rem; } }
.scarcity .muted { max-width: 32rem; font-size: .95rem; }
.countdown { display: flex; align-items: center; gap: .75rem; color: var(--cta); }
.cd-box {
  min-width: 92px;
  border: 1px solid oklch(0.88 0.19 96 / .4);
  background: oklch(0.16 0.02 160 / .7);
  border-radius: 1rem;
  padding: .75rem 1rem;
  box-shadow: inset 0 2px 8px rgba(0,0,0,.3);
}
.cd-v { font-family: var(--display); font-size: 3rem; line-height: 1; color: var(--cta); }
.cd-l { margin-top: .25rem; font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
.cd-sep { font-family: var(--display); font-size: 2rem; color: oklch(0.88 0.19 96 / .5); }
.scarcity-social {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem;
  font-size: .75rem; color: var(--muted);
}

/* ============ OFERTAS ============ */
.ofertas {
  margin-top: 4rem;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 768px) { .ofertas { grid-template-columns: 1fr 1fr; } }

.oferta {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 2rem;
  box-shadow: 0 10px 25px -12px rgba(0,0,0,.4);
}
.oferta.premium {
  border: 2px solid var(--cta);
  background: linear-gradient(135deg, var(--card), var(--card), var(--accent));
  box-shadow: 0 25px 50px -12px oklch(0.88 0.19 96 / .2);
  overflow: hidden;
}
.oferta.premium::after {
  content: ""; position: absolute; right: -4rem; top: -4rem;
  width: 12rem; height: 12rem; border-radius: 999px;
  background: oklch(0.88 0.19 96 / .2); filter: blur(3rem);
  pointer-events: none;
}
.oferta-badge {
  position: absolute; right: 1.25rem; top: 1.25rem;
  background: var(--cta); color: var(--cta-fg);
  padding: .25rem .75rem; border-radius: 999px;
  font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .15em;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.oferta-tag { font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
.oferta-tag.accent { color: var(--cta); }
.oferta-title { margin-top: .5rem; font-size: 1.75rem; }
.price { margin-top: 1.5rem; display: flex; align-items: baseline; gap: .5rem; }
.price-v { font-family: var(--display); font-size: 3rem; }
.price-v.big { font-size: 4rem; }
.list-basic, .list-premium { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; font-size: .875rem; }
.list-basic li { color: var(--muted); }
.list-premium li { display: flex; align-items: flex-start; gap: .5rem; font-weight: 500; }

.bonus-box {
  margin-top: 1.25rem;
  border: 1px dashed oklch(0.88 0.19 96 / .4);
  background: oklch(0.88 0.19 96 / .05);
  border-radius: 1rem; padding: 1rem;
}
.bonus-title { font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; color: var(--cta); margin-bottom: .5rem; }
.bonus-box ul { display: flex; flex-direction: column; gap: .5rem; }
.bonus-box li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; font-weight: 500; }

.trust {
  margin-top: 1rem; display: flex; justify-content: center; gap: 1rem;
  font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted);
}

/* ============ GUARANTEE ============ */
.guarantee {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 3rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
}
.guarantee::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, oklch(0.42 0.09 155 / .4), transparent 70%);
  pointer-events: none;
}
.guarantee-badge {
  position: relative;
  display: grid; place-items: center;
  width: 8rem; height: 8rem; margin: 0 auto;
  border: 4px solid var(--cta); border-radius: 999px;
  background: linear-gradient(135deg, oklch(0.88 0.19 96 / .9), oklch(0.72 0.16 42 / .9));
  color: var(--cta-fg); font-size: 3rem;
  box-shadow: 0 0 60px -10px oklch(0.88 0.19 96 / .6);
}
.guarantee-days {
  position: absolute; bottom: -.75rem;
  background: var(--bg); color: var(--cta);
  padding: .25rem .75rem; border-radius: 999px;
  font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .15em;
}
.guarantee h2 { position: relative; margin-top: 2rem; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }
.guarantee .muted { position: relative; margin: 1.25rem auto 0; max-width: 40rem; font-size: 1.05rem; }
.guarantee .center { position: relative; }

/* ============ FAQ ============ */
.faq { margin-top: 3.5rem; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1rem; box-shadow: 0 6px 15px -8px rgba(0,0,0,.3);
  overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem; text-align: left;
  font-family: var(--display); font-size: 1.15rem;
}
.chev { color: var(--cta); transition: transform .3s; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; padding: 0 1.25rem;
  overflow: hidden;
  font-size: .9rem; color: var(--muted); line-height: 1.7;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 1.25rem 1.25rem; }

/* ============ FOOTER ============ */
footer { border-top: 1px solid var(--border); background: var(--bg); padding: 3rem 0; }
.footer-grid {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
@media (min-width: 768px) { .footer-grid { flex-direction: row; justify-content: space-between; } }
.logo-badge { width: 2rem; height: 2rem; font-size: 1rem; border-radius: .5rem; }
.foot-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.25rem; font-size: .75rem; color: var(--muted); }
.foot-nav a { transition: color .2s; }
.foot-nav a:hover { color: var(--cta); }
