.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--luxury-black);
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.4) contrast(1.1);
  transform: scale(1.03);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.45) contrast(1.1);
}

@media (min-width: 992px) {
  .hero-bg-video {
    /* Ajuste para evitar que el video vertical se vea muy mal cortado en PC */
    object-fit: cover;
    object-position: center 20%;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.85) 80%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--primary-gold);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
  animation: fadeInDown 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-title span {
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.scroll-indicator:hover {
  color: var(--primary-gold);
}

.scroll-indicator i {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

/* Animaciones Clave */
@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-title span {
    font-size: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-actions a {
    width: 100%;
    text-align: center;
  }
}
