/* home.css — estilos específicos de la página de inicio */

/* === HEADER TRANSPARENTE PARA HERO === */
.header-transparent {
  background-color: transparent;
  border-bottom: none;
}

.header-transparent.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* === HERO HOME === */
.hero-home {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: absolute;
  z-index: 1;
  text-align: left;
  padding: 0 var(--spacing-lg);
  bottom: 30px;
  left: 0;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(1.6rem, 3.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-home {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-content {
    padding: 0 var(--spacing-md);
    bottom: 40px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    line-height: 1.1;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
}

@media (max-width: 480px) {
  .hero-home {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem);
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-content {
    bottom: 30px;
  }
}
