/* ===================================
   HERO.CSS - Pantalla de Bienvenida
   =================================== */

/* Hero Section - 100vh Ultra Grande y Perfectamente Centrado */
.hero {
   height: 100vh;
    /* Casi toda la pantalla */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--white);
}

/* Contenedor del Hero */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Logo Principal AUREO - Ultra Grande */
.hero-logo {
  font-size: clamp(2rem, 10vw, 10rem);
    /* Nombre en GRANDE */
    font-weight: 600;
    letter-spacing: clamp(8px, 5vw, 35px);
    margin-right: calc(clamp(6px, 1.5vw, 25px) * -1);
    /* Centrado perfecto compensando el letter-spacing */
    color: var(--primary-dark);
    text-transform: uppercase;
}

/* Subtítulo del Hero */
.hero-subtitle {
  font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 20px;
}

/* Animación de entrada */
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animación de subtítulo */
@keyframes heroSubtitleFadeIn {
  to {
    opacity: 0.7;
    transform: translateY(0);
  }
}

/* Indicador de scroll - Icono 🡫 */
.scroll-indicator {
   margin-top: 50px;
    font-size: 20px;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.1);
}

.scroll-arrow {
  animation: arrowBounce 2s infinite;
}

@keyframes fadeIn {
  to {
    opacity: 0.5;
  }
}

@keyframes arrowBounce {
  0%, 20% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-10px);
  }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-logo {
    font-size: var(--font-size-hero-mobile);
    letter-spacing: 0.1em;
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .scroll-indicator {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    font-size: calc(var(--font-size-hero-mobile) * 0.8);
    letter-spacing: 0.05em;
  }
  
  .hero-subtitle {
    font-size: var(--font-size-sm);
  }
  
  .scroll-indicator {
    font-size: 1.2rem;
  }
}
