/* Tipografía general */
body {
  font-family: 'Bebas Neue', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: white;
  overflow-x: hidden;
}

/* Sección HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) blur(6px); /* Más oscuro y con blur */
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png'); /* o cualquier textura */
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
}

.hero-logo {
  width: 130px;
  max-width: 80vw;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0.9;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-logo {
    width: 180px;
  }
}
