/* home.css — Estilos sección Hero */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
  background: #1a0d2e; /* base morado oscuro por si la imagen tarda */
}

/* Fondo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  transform: scale(1.05);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* Gradiente morado-marino que combina con el banner */
  background:
    linear-gradient(
      160deg,
      rgba(30, 10, 60, 0.72) 0%,
      rgba(26, 43, 109, 0.60) 50%,
      rgba(10, 5, 30, 0.80) 100%
    );
  z-index: 1;
}

/* Contenido */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  opacity: 0; /* activado por animate-fade-in-up */
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5.625rem);
  color: white;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-title-accent {
  display: block;
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: white;
  font-weight: 600;
  font-style: italic;
  max-width: 720px;
}

/* Botones */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
  transition: var(--transition-base);
}

.hero-btn-primary:hover {
  box-shadow: 0 0 24px rgba(212, 160, 23, 0.6);
  transform: translateY(-4px);
}

.hero-btn-icon { font-size: 0.875rem; }

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 2px solid white;
  color: white;
  font-family: var(--font-body);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-base);
}

.hero-btn-secondary:hover {
  background: white;
  color: var(--color-primary-dark);
  transform: translateY(-4px);
}
