/**
 * Estilos para el componente Hero Section
 * Sección de bienvenida con gradiente y layout centrado
 */

.hero {
  text-align: center;
  padding: var(--spacing-lg) 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero .display-1 {
  font-size: clamp(2rem, 8vw, 4rem);
  font-family: var(--display);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero .lead {
  font-size: 1.25rem;
  font-family: var(--body);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, var(--rojo) 0%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}

/* Responsive */
@media (max-width: var(--bp-md)) {
  .hero {
    min-height: 50vh;
  }

  .hero .display-1 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .hero .lead {
    font-size: 1rem;
  }
}
