:root{
  --bg: #05050a;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.75);
  --stroke: rgba(255,255,255,.12);
  --card: rgba(10, 10, 18, .72);
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 22px;

  --accent: #ff2bd6;
  --accent2: #22ffcc;

  --max: 1080px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(255,43,214,.15), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(34,255,204,.12), transparent 55%),
    radial-gradient(900px 700px at 50% 90%, rgba(140,80,255,.10), transparent 60%),
    var(--bg);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  overflow-x: hidden;
}

/* HERO full width */
.hero{
  position: relative;
  width: 100vw;
  min-height: min(78vh, 820px);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92; /* más visible */
  filter: contrast(1.08) saturate(1.10);
  transform: scale(1.02);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  /* MUY suave: no “apaga” el vídeo */
  background:
    radial-gradient(1000px 600px at 50% 25%, rgba(0,0,0,.10), rgba(0,0,0,.25)),
    linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.28));
}

.hero-content{
  position: relative;
  text-align: center;
  padding: 28px 18px;
  max-width: 980px;

  /* Ajuste fino del espaciado */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}


.kicker{
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.05;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #e6e6e6 30%,
    #b8b8b8 55%,
    #f5f5f5 80%,
    #ffffff 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 10px rgba(255,255,255,.55),
    0 0 24px rgba(200,200,200,.35),
    0 8px 38px rgba(0,0,0,.9);

  letter-spacing: .08em;
  margin: 0; /* importante para el gap */
}

.sub{
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(24px, 2.8vw, 36px); /* un poco más grande */
  line-height: 1.05;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #e0e0e0 30%,
    #a8a8a8 55%,
    #f0f0f0 80%,
    #ffffff 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 12px rgba(255,255,255,.6),
    0 0 28px rgba(200,200,200,.4),
    0 10px 45px rgba(0,0,0,.92);

  letter-spacing: .10em;
}

.gold{
  background: linear-gradient(
    180deg,
    #fff6cc 0%,
    #ffd700 45%,
    #c79b00 65%,
    #fff2a8 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 10px rgba(255,215,0,.55),
    0 0 22px rgba(255,170,0,.35),
    0 8px 32px rgba(0,0,0,.9);

  letter-spacing: .06em;
}


.hero h1{
  margin: 4px 0 2px;
  font-family: "New Rocker", system-ui, sans-serif;
  font-size: clamp(44px, 6.2vw, 90px);
  line-height: 1.02;

  background: linear-gradient(
    180deg,

    
     #ffffff 0%,  /*ROJO FUEGO */
    #ffb3b3 25%,
    #ff1a1a 50%,
    #990000 75%,
    #ffffff 100%
    
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow:
 
    0 0 10px rgba(255,0,0,.8), 
    0 0 25px rgba(200,0,0,.7),
    0 0 50px rgba(150,0,0,.6),
    0 10px 60px rgba(0,0,0,.8);
  
 }

.hero h1{
  background-size: 200% auto;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}


.cta-row{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-row.left{
  justify-content: flex-start;
}


.btn{
  appearance: none;
  padding: 12px 22px;
  border-radius: 40px;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #fff;
  background: rgba(0,0,0,0.35);

  border: 2px solid rgba(255,0,0,.8);

  backdrop-filter: blur(6px);

  box-shadow:
    0 0 10px rgba(255,0,0,.8),
    0 0 30px rgba(180,0,0,.6);

  transition: all .3s ease;
}

.btn:hover{
  background: linear-gradient(
    135deg,
    #ff1a1a,
    #990000
  );

  box-shadow:
    0 0 20px rgba(255,0,0,1),
    0 0 60px rgba(200,0,0,.9);

  transform: translateY(-3px) scale(1.03);
}

.btn.secondary{
  background: rgba(0,0,0,.20);
  color: var(--text);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.btn:active{ transform: translateY(1px); }

.fine{
  margin-top: 14px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.5;
  text-shadow: 0 14px 55px rgba(0,0,0,.75);
}

/* CONTENT */
.wrap{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.section{
  display: grid;
  gap: 16px;
}

.section h2{
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.01em;
}

.card{
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: var(--radius);
  padding: clamp(16px, 2.6vw, 26px);
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

.grid{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
}

.wa-img{
  width: 140px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  background: rgba(0,0,0,.25);
}
.wa-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.muted{
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.footer{
  padding: 28px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  text-align: center;
}

/* Responsive */
@media (max-width: 720px){
  .grid{ grid-template-columns: 1fr; }
  .wa-img{ width: 100%; max-width: 240px; }
  .cta-row.left{ justify-content: center; }
}
