/* ================================================================
   BRILLO GARAGE V2 — Conversion Landing Page Styles
   ================================================================ */

:root {
  --red:    #cc1414;
  --red2:   #ff4444;
  --dark:   #080808;
  --dark2:  #0e0e0e;
  --dark3:  #141414;
  --dark4:  #1a1a1a;
  --silver: #c8c8c8;
  --white:  #f0f0f0;
  --grey:   #666;
  --border: rgba(255,255,255,.07);
  --red-glow: rgba(204,20,20,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

.red { color: var(--red); }

/* ── Ripple ── */
.ripple-btn { position: relative; overflow: hidden; }
.ripple-circle {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(255,255,255,.18);
  animation: rippleAnim .65s ease-out forwards;
}
@keyframes rippleAnim { from { transform: scale(0); opacity: 1; } to { transform: scale(1); opacity: 0; } }


/* ================================================================
   NAV
   ================================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled {
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, #1a0000, #2a0000);
  border: 1px solid rgba(204,20,20,.4);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.lm-b { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 16px; color: var(--red); line-height: 1; }
.lm-bar { position: absolute; bottom: 6px; left: 7px; right: 7px; height: 2px; background: var(--red); border-radius: 2px; }
.nav-brand-wrap { display: flex; flex-direction: column; }
.nav-top { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 900; letter-spacing: 3px; color: #f0f0f0; line-height: 1; }
.nav-bot { font-family: 'Montserrat', sans-serif; font-size: 8px; font-weight: 600; letter-spacing: 3px; color: var(--grey); line-height: 1.4; }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-slots {
  font-size: 12px; font-weight: 600; color: #aaa;
  background: rgba(204,20,20,.08);
  border: 1px solid rgba(204,20,20,.2);
  padding: 6px 12px; border-radius: 100px;
  white-space: nowrap;
  display: none;
}
.nav-slots strong { color: var(--red); }
@media (min-width: 600px) { .nav-slots { display: inline-flex; } }

.btn-cta-nav {
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800;
  padding: 10px 18px; border-radius: 8px; border: none;
  letter-spacing: .5px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-cta-nav:hover { background: #e01a1a; transform: translateY(-1px); }


/* ================================================================
   HERO
   ================================================================ */
#hero {
  min-height: 100dvh;
  display: flex; align-items: center;
  padding: 100px 20px 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(204,20,20,.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(204,20,20,.04) 0%, transparent 70%),
    var(--dark);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='.8' fill='rgba(255,255,255,.025)'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr;
  gap: 48px; position: relative; z-index: 1;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 420px; }
}

.hero-alert {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,20,20,.08);
  border: 1px solid rgba(204,20,20,.25);
  color: #ff6666; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; letter-spacing: .5px;
  margin-bottom: 24px;
}
.alert-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  animation: alertPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes alertPulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(204,20,20,.5); } 50%{ box-shadow: 0 0 0 5px rgba(204,20,20,0); } }

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.stroke-text {
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
}

.hero-sub {
  font-size: 16px; color: #aaa; line-height: 1.7;
  max-width: 520px; margin-bottom: 32px;
}
.hero-sub strong { color: var(--white); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 800;
  padding: 16px 28px; border-radius: 10px; border: none;
  letter-spacing: .3px;
  box-shadow: 0 6px 30px rgba(204,20,20,.4);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(204,20,20,.55); background: #e01a1a; }
.btn-hero svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-hero-ghost {
  display: inline-flex; align-items: center;
  color: #999; font-size: 14px; font-weight: 600;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: color .2s, border-color .2s;
}
.btn-hero-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.35); }

.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 0;
  max-width: 520px;
}
.trust-item {
  flex: 1; min-width: 100px;
  display: flex; flex-direction: column; align-items: center;
  gap: 3px; padding: 4px 14px;
}
.trust-item span:first-child { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 900; color: var(--white); }
.trust-item span:last-child { font-size: 11px; color: var(--grey); text-align: center; }
.trust-sep { width: 1px; height: 32px; background: var(--border); }

/* Hero Visual — card stack */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; width: 280px; height: 320px; }

.hcard {
  position: absolute;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px 20px;
  width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
}
.hcard-emoji { font-size: 24px; margin-bottom: 8px; display: block; }
.hcard p { font-size: 13px; color: #aaa; line-height: 1.5; }

.hcard-1 { top: 0; left: 0; transform: rotate(-6deg); }
.hcard-2 { top: 60px; left: 50px; transform: rotate(3deg); z-index: 1; }
.hcard-3 { top: 130px; left: 20px; transform: rotate(-3deg); }

.hcard-solved {
  position: absolute; bottom: 0; right: 0;
  background: linear-gradient(135deg, #0d2000, #1a3a00);
  border: 1px solid rgba(100,220,50,.25);
  border-radius: 14px;
  padding: 18px 22px;
  z-index: 3;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.5), 0 0 20px rgba(100,220,50,.08);
}
.solved-check {
  font-size: 32px; color: #6ddc30;
  font-weight: 900; line-height: 1;
  margin-bottom: 8px;
}
.hcard-solved p { font-size: 13px; color: #ccc; line-height: 1.5; }
.hcard-solved strong { color: #6ddc30; }


/* ================================================================
   PROBLEMAS (Pain cards)
   ================================================================ */
#problemas {
  padding: 80px 0;
  position: relative;
}
#problemas::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,20,20,.3), transparent);
}

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 15px; color: #888; line-height: 1.6;
  max-width: 580px; margin-bottom: 40px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.pain-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 22px 20px;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(204,20,20,.06), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.pain-card:hover { border-color: rgba(204,20,20,.4); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.pain-card:hover::before { opacity: 1; }
.pain-card.active { border-color: var(--red); box-shadow: 0 0 0 1px var(--red), 0 8px 30px rgba(204,20,20,.15); }

.pain-card--basic {
  border-style: dashed;
  background: rgba(255,255,255,.02);
}
.pain-card--basic:hover { border-color: rgba(100,200,80,.4); }
.pain-card--basic.active { border-color: #6ddc30; box-shadow: 0 0 0 1px #6ddc30; }

.pain-emoji { font-size: 32px; margin-bottom: 12px; line-height: 1; }
.pain-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 800; color: var(--white);
  margin-bottom: 6px;
}
.pain-body p { font-size: 13px; color: #888; line-height: 1.5; margin-bottom: 10px; }

.pain-agitate {
  font-size: 12px; color: #cc6666; line-height: 1.5;
  background: rgba(204,20,20,.06);
  border-left: 2px solid rgba(204,20,20,.3);
  padding: 8px 10px; border-radius: 0 6px 6px 0;
  margin-top: 8px; margin-bottom: 12px;
}
.pain-card--basic .pain-agitate { color: #6ddc30; background: rgba(109,220,48,.06); border-left-color: rgba(109,220,48,.3); }

.pain-cta {
  font-size: 12px; font-weight: 700; color: var(--red);
  letter-spacing: .5px; text-transform: uppercase;
}
.pain-card--basic .pain-cta { color: #6ddc30; }


/* ================================================================
   SOLUTION PANEL
   ================================================================ */
.solution-panel {
  background: var(--dark2);
  border-top: 1px solid rgba(204,20,20,.2);
  border-bottom: 1px solid rgba(204,20,20,.2);
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s cubic-bezier(.22,1,.36,1), opacity .4s;
  opacity: 0;
}
.solution-panel:not(.hidden) {
  max-height: 1000px; opacity: 1;
}
.solution-panel.hidden { max-height: 0; opacity: 0; }

.sp-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 36px 20px 40px;
  position: relative;
}
.sp-close {
  position: absolute; top: 16px; right: 20px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  color: #888; font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 6px;
  transition: background .2s, color .2s;
}
.sp-close:hover { background: rgba(204,20,20,.15); color: #fff; }

.sp-content { }

/* Solution content injected by JS */
.sp-header {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.sp-emoji { font-size: 48px; line-height: 1; flex-shrink: 0; }
.sp-title-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 900; color: var(--white);
  margin-bottom: 6px;
}
.sp-title-block p { font-size: 14px; color: #999; line-height: 1.6; max-width: 600px; }

.sp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .sp-grid { grid-template-columns: 1fr 1fr; } }

.sp-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.sp-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #ccc;
}
.sp-features li::before {
  content: '✓';
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(204,20,20,.15); color: var(--red);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

.sp-price-box {
  background: rgba(204,20,20,.06);
  border: 1px solid rgba(204,20,20,.2);
  border-radius: 12px; padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.sp-price-from { font-size: 12px; color: #666; letter-spacing: 1px; }
.sp-price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px; font-weight: 900;
  color: var(--white); line-height: 1;
}
.sp-price-amount small { font-size: 20px; color: #888; }
.sp-price-duration { font-size: 13px; color: #888; }
.sp-price-duration strong { color: #ccc; }
.btn-sp-book {
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800;
  padding: 14px 20px; border-radius: 10px; border: none;
  text-align: center;
  box-shadow: 0 4px 20px rgba(204,20,20,.3);
  transition: background .2s, transform .15s;
}
.btn-sp-book:hover { background: #e01a1a; transform: translateY(-1px); }


/* ================================================================
   LOSS STRIP
   ================================================================ */
.loss-strip {
  background: var(--dark3);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 20px;
}
.loss-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 20px;
}
.loss-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center;
}
.loss-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px; font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.loss-item--green .loss-num { color: #6ddc30; }
.loss-item span:last-child { font-size: 12px; color: #777; line-height: 1.4; }
.loss-sep {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 800; color: #555;
  padding: 0 8px;
}
.btn-loss {
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800;
  padding: 14px 22px; border-radius: 10px; border: none;
  letter-spacing: .3px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-loss:hover { background: #e01a1a; transform: translateY(-1px); }


/* ================================================================
   CÓMO FUNCIONA
   ================================================================ */
#como {
  padding: 90px 0;
  position: relative;
}
#como::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.steps-row {
  display: flex; flex-wrap: wrap; align-items: flex-start;
  gap: 20px; margin-bottom: 36px;
}
.step-v2 {
  flex: 1; min-width: 240px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  position: relative; overflow: hidden;
}
.step-v2::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.step-num-big {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,.04);
  position: absolute; top: 12px; right: 18px;
  letter-spacing: -2px;
}
.step-icon-big { font-size: 36px; margin-bottom: 14px; line-height: 1; }
.step-v2 h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 800; color: var(--white);
  margin-bottom: 8px;
}
.step-v2 p { font-size: 14px; color: #999; line-height: 1.6; margin-bottom: 12px; }
.step-v2 p strong { color: var(--white); }
.step-note {
  font-size: 12px; color: #666;
  background: rgba(255,255,255,.03);
  border-radius: 6px; padding: 8px 10px;
  line-height: 1.4;
}
.step-arrow-v2 {
  font-size: 24px; color: rgba(204,20,20,.4);
  font-weight: 900;
  align-self: center;
  flex-shrink: 0;
  display: none;
}
@media (min-width: 860px) { .step-arrow-v2 { display: block; } }

.no-excuses {
  display: flex; flex-wrap: wrap; gap: 12px;
  padding: 20px 24px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  justify-content: center;
}
.no-excuses span { font-size: 13px; font-weight: 600; color: #6ddc30; }


/* ================================================================
   TESTIMONIOS
   ================================================================ */
#testimonios {
  padding: 90px 0;
  background: var(--dark2);
  position: relative;
}
#testimonios::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 700px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.testi-card:hover { border-color: rgba(204,20,20,.25); box-shadow: 0 6px 30px rgba(0,0,0,.4); }
.testi-card--featured {
  border-color: rgba(204,20,20,.25);
  background: linear-gradient(135deg, #120000, #0e0e0e);
}

.testi-stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }
blockquote {
  font-size: 14px; color: #bbb; line-height: 1.7;
  font-style: italic; flex: 1;
}
blockquote::before { content: '"'; }
blockquote::after  { content: '"'; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #1a0000, var(--red));
  color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-footer strong { font-size: 13px; font-weight: 700; color: var(--white); display: block; }
.testi-footer span { font-size: 11px; color: var(--grey); display: block; }
.testi-badge {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; color: #6ddc30;
  background: rgba(109,220,48,.08);
  border: 1px solid rgba(109,220,48,.2);
  padding: 4px 10px; border-radius: 100px;
}

.trust-numbers {
  display: flex; flex-wrap: wrap; gap: 2px;
  justify-content: center;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.tn-item {
  flex: 1; min-width: 150px;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.tn-item:last-child { border-right: none; }
.tn-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px; font-weight: 900;
  color: var(--white); display: block;
  margin-bottom: 6px;
}
.tn-item p { font-size: 12px; color: var(--grey); line-height: 1.5; }


/* ================================================================
   PRECIOS
   ================================================================ */
#precios {
  padding: 90px 0;
  position: relative;
}
#precios::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 760px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.price-card:hover { border-color: rgba(255,255,255,.15); }
.price-card--featured {
  border-color: rgba(204,20,20,.35);
  background: linear-gradient(160deg, #140000, #0e0e0e);
  box-shadow: 0 0 40px rgba(204,20,20,.08);
}
.price-card--featured:hover { border-color: rgba(204,20,20,.6); }

.price-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 800;
  padding: 4px 16px; border-radius: 100px;
  white-space: nowrap; letter-spacing: .5px;
}

.price-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px; font-weight: 900; color: var(--white);
  margin-top: 8px;
}
.price-tagline { font-size: 13px; color: #888; line-height: 1.4; }
.price-from { font-size: 11px; color: var(--grey); letter-spacing: 1px; margin-top: 8px; }
.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px; font-weight: 900;
  color: var(--white); line-height: 1;
}
.price-card--featured .price-amount { color: #fff; }
.price-sizes { font-size: 11px; color: #666; margin-bottom: 8px; }

.price-includes {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.price-includes li { font-size: 13px; color: #bbb; display: flex; align-items: flex-start; gap: 8px; }
.pi-check { color: #6ddc30; flex-shrink: 0; font-size: 12px; margin-top: 1px; }
.pi-no    { color: #444; flex-shrink: 0; font-size: 12px; margin-top: 1px; }
.pi-grey  { color: #555; }
.pi-add   { color: #f5a623; flex-shrink: 0; font-size: 12px; margin-top: 1px; font-weight: 700; }

.price-note {
  font-size: 12px; color: #666; font-style: italic;
  padding: 10px 0 6px;
  border-top: 1px solid var(--border);
}

.btn-price {
  width: 100%;
  background: var(--dark4); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800;
  padding: 14px 20px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  letter-spacing: .3px;
  transition: background .2s, border-color .2s, transform .15s;
}
.btn-price:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); transform: translateY(-1px); }
.btn-price--featured {
  background: var(--red); border-color: var(--red);
  box-shadow: 0 4px 20px rgba(204,20,20,.35);
}
.btn-price--featured:hover { background: #e01a1a; border-color: #e01a1a; }

/* Extras */
.extras-row {
  margin-bottom: 32px;
}
.extras-row h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 800; color: #888;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.extras-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .extras-grid { grid-template-columns: repeat(3, 1fr); } }

.extra-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  cursor: pointer;
  transition: border-color .2s, transform .15s;
}
.extra-card:hover { border-color: rgba(204,20,20,.3); transform: translateY(-2px); }
.extra-emoji { font-size: 28px; flex-shrink: 0; }
.extra-card div { flex: 1; }
.extra-card strong { font-size: 14px; font-weight: 700; color: var(--white); display: block; margin-bottom: 2px; }
.extra-card span { font-size: 12px; color: var(--grey); display: block; }
.extra-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px; font-weight: 900; color: var(--white);
  flex-shrink: 0;
}

.price-guarantee {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(109,220,48,.04);
  border: 1px solid rgba(109,220,48,.15);
  border-radius: 12px; padding: 20px 24px;
}
.guarantee-icon { font-size: 32px; flex-shrink: 0; }
.price-guarantee strong { font-size: 15px; font-weight: 700; color: var(--white); display: block; margin-bottom: 6px; }
.price-guarantee p { font-size: 13px; color: #888; line-height: 1.6; }


/* ================================================================
   URGENCIA
   ================================================================ */
#urgencia {
  padding: 60px 0;
  background: var(--dark2);
}
.urgency-box {
  background: linear-gradient(135deg, #0d0000, #180000);
  border: 1px solid rgba(204,20,20,.35);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 24px;
  box-shadow: 0 0 60px rgba(204,20,20,.06), inset 0 1px 0 rgba(255,255,255,.04);
}
.urg-left { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 200px; }
.urg-pulse {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  animation: alertPulse 1.5s ease-in-out infinite;
}
.urg-left h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--white);
  margin-bottom: 4px;
}
.urg-left p { font-size: 13px; color: #888; line-height: 1.5; }
.urg-slots { display: flex; align-items: center; gap: 10px; }
.slot-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px; font-weight: 900;
  color: var(--red); line-height: 1;
}
.slot-text { font-size: 13px; color: #888; line-height: 1.4; }
.btn-urgency {
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800;
  padding: 16px 28px; border-radius: 10px; border: none;
  letter-spacing: .3px;
  box-shadow: 0 4px 30px rgba(204,20,20,.45);
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-urgency:hover { background: #e01a1a; transform: translateY(-2px); }


/* ================================================================
   FAQ
   ================================================================ */
#faq {
  padding: 90px 0;
  position: relative;
}
#faq::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.faq-list {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 760px; margin: 0 auto;
}
.faq-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(204,20,20,.3); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  background: none; border: none; color: var(--white);
  font-size: 15px; font-weight: 600;
  padding: 18px 20px; cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--white); }
.faq-item.open .faq-q { color: #fff; }
.faq-icon {
  font-size: 20px; color: var(--red); flex-shrink: 0;
  transition: transform .3s;
  font-weight: 700; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 14px; color: #999; line-height: 1.7;
  padding: 0 20px;
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .3s;
}
.faq-item.open .faq-a {
  max-height: 300px; padding-bottom: 20px;
}


/* ================================================================
   FINAL CTA  (#cta-final)
   ================================================================ */
#finalcta, #cta-final {
  padding: 90px 0;
  background: var(--dark2);
  position: relative; overflow: hidden;
}
#finalcta::before, #cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,20,20,.06), transparent 70%);
  pointer-events: none;
}

/* V2 final box */
.final-box {
  background: linear-gradient(160deg, #120000, #0e0e0e);
  border: 1px solid rgba(204,20,20,.3);
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  position: relative; z-index: 1;
  box-shadow: 0 0 80px rgba(204,20,20,.07);
}
.final-content { max-width: 600px; margin: 0 auto; }
.final-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4.5vw, 46px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.5px; margin-bottom: 16px; color: var(--white);
}
.final-box h2 span { color: var(--red); }
.final-box p { font-size: 15px; color: #888; line-height: 1.7; margin-bottom: 24px; }

.final-micro {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-bottom: 32px;
}
.final-micro span { font-size: 13px; color: #6ddc30; font-weight: 600; }

.btn-final {
  display: inline-block;
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 800;
  padding: 18px 36px; border-radius: 10px; border: none;
  letter-spacing: .3px;
  box-shadow: 0 8px 40px rgba(204,20,20,.45);
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-bottom: 16px;
}
.btn-final:hover { background: #e01a1a; transform: translateY(-2px); box-shadow: 0 12px 50px rgba(204,20,20,.6); }

.final-or { font-size: 13px; color: #555; margin-bottom: 14px; }

.btn-wa-final {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
  padding: 14px 24px; border-radius: 10px;
  transition: background .2s, transform .2s;
}
.btn-wa-final:hover { background: #1db954; transform: translateY(-2px); }
.btn-wa-final svg { width: 20px; height: 20px; }

/* Generic final helpers for V1-style CTA */
.finalcta-inner { position: relative; z-index: 1; text-align: center; }
.finalcta-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--red); text-transform: uppercase; margin-bottom: 20px;
}
.finalcta-btns {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 16px; margin-bottom: 32px;
}
.btn-final-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 800;
  padding: 18px 32px; border-radius: 10px; border: none;
  box-shadow: 0 8px 40px rgba(204,20,20,.45);
  transition: background .2s, transform .2s;
}
.btn-final-main:hover { background: #e01a1a; transform: translateY(-2px); }
.btn-final-main svg { width: 20px; height: 20px; }
.btn-final-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
  padding: 18px 28px; border-radius: 10px;
  transition: background .2s, transform .2s;
}
.btn-final-wa:hover { background: #1db954; transform: translateY(-2px); }
.finalcta-reassure {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
}
.finalcta-reassure span { font-size: 13px; color: #666; font-weight: 500; }
.finalcta-reassure span::before { content: '✓ '; color: #6ddc30; }


/* ================================================================
   STICKY CTA (mobile)
   ================================================================ */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(204,20,20,.2);
  padding: 12px 16px 16px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
@media (max-width: 767px) { .sticky-cta { display: block; } }
.sticky-cta.visible { transform: translateY(0); }

.sticky-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-slots { font-size: 12px; color: #aaa; font-weight: 600; }
.sticky-slots strong { color: var(--red); }
.btn-sticky {
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800;
  padding: 12px 20px; border-radius: 8px; border: none;
  white-space: nowrap; letter-spacing: .3px;
  flex-shrink: 0;
  transition: background .2s;
}
.btn-sticky:hover { background: #e01a1a; }


/* ================================================================
   WA FLOAT / FAB
   ================================================================ */
.wa-float, .wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 700;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  overflow: visible;
}
.wa-float:hover, .wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.wa-float svg, .wa-fab svg { width: 28px; height: 28px; position: relative; z-index: 1; }
.wa-fab-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse { 0%,100%{ transform: scale(1); opacity: .6; } 50%{ transform: scale(1.12); opacity: 0; } }


/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 40px 20px 32px;
}
.footer-row {
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.footer-brand { flex: 1; min-width: 160px; }
.footer-brand p { font-size: 12px; color: #555; margin-top: 8px; line-height: 1.5; }
.footer-links, .footer-social {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a, .footer-social a {
  font-size: 13px; color: #666; transition: color .2s;
}
.footer-links a:hover, .footer-social a:hover { color: var(--red); }
.footer-copy {
  max-width: 1120px; margin: 0 auto;
  font-size: 12px; color: #333;
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 20px;
}
/* also support .footer-inner for V1-style footer */
.footer-inner { max-width: 1120px; margin: 0 auto; text-align: center; }
footer p { font-size: 12px; color: #444; line-height: 1.6; }
footer a { color: #666; transition: color .2s; }
footer a:hover { color: var(--red); }


/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal-up.visible { opacity: 1; transform: none; }


/* ================================================================
   SCROLLBAR
   ================================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }
