.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 60px;
  background: #0a0a0a;
}

.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }

/* fondo borroso — llena todo el espacio lateral */
.video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(22px) brightness(0.6) saturate(1.3);
  transform: scale(1.1);
  opacity: 0.65;
  pointer-events: none;
}

/* video principal completo, pegado a la derecha */
.video-main {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
}

/* rojo de marca a la izquierda, transparente sobre el video */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(180, 20, 20, 0.95) 0%,
    rgba(140, 15, 15, 0.82) 35%,
    rgba(80,  8,  8, 0.35) 58%,
    transparent 75%
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: left;
  padding: 3rem 2rem 3rem 7vw;
  max-width: 560px;
  animation: fadeUp 0.8s ease both;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--oro-light); margin-bottom: 2rem;
}
.hero-kicker::before { content: ''; width: 28px; height: 1.5px; background: var(--oro); }
.hero-kicker::after  { content: ''; width: 28px; height: 1.5px; background: var(--oro); }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.88; letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--oro-light); display: block; }
.hero-sub {
  font-size: 0.97rem; line-height: 1.75; font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 440px; margin: 1.75rem 0 2.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-sub strong { color: #fff; font-weight: 500; }
.hero-btns { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.4); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; animation: bounce 2s ease infinite; }
.hero-scroll::after { content: '↓'; font-size: 1rem; }

@media (max-width: 768px) {
  .hero { align-items: center; }
  .hero-content { text-align: center; padding: 3rem 2rem; max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin: 1.75rem auto 2.5rem; }
  .video-main { object-position: center center; }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.72) 100%);
  }
}
