/* MÓDULO HERO: Pantalla Completa y Video Fluido */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* El video se ajusta automáticamente sin deformarse en móviles o PCs */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Overlay para oscurecer el video y dar la estética Ambient / Dark Mode */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 16, 0.80);
  z-index: -1;
}

/* Textos sobre el video */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero-title {
  color: var(--accent-glow, #66fcf1);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 0 25px rgba(102, 252, 241, 0.3);
}

.hero-subtitle {
  color: var(--text-main, #c5c6c7);
  font-size: 1.1rem;
  opacity: 0.85;
  letter-spacing: 1.5px;
  font-weight: 300;
}
