/* ===========================
   SECCIÓN HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("/assets/img/hero.jpg") center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

/* Capa degradada profesional */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(26, 33, 77, 0.88) 0%,
    rgba(26, 33, 77, 0.75) 40%,
    rgba(26, 33, 77, 0.88) 100%
  );
  z-index: 1;
}

/* Contenedor del contenido central */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 30px;
  opacity: 0;
  transform: translateY(40px);
}

.hero-content.visible {
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

/* Animación suave de entrada del texto */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   TÍTULO PRINCIPAL
=========================== */
.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 50px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Colores corporativos destacados */
.highlight-blue {
  color: var(--dodger-blue);
  font-weight: 700;
  text-shadow: 0 0 30px rgba(13, 151, 255, 0.6);
}

.highlight-red {
  color: var(--accent-red);
  font-weight: 700;
  text-shadow: 0 0 30px rgba(251, 5, 6, 0.6);
}

/* Botón del hero */
.hero .btn {
  margin-top: 10px;
  animation: pulse 2s ease-in-out infinite;
}

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }
  
  .hero-content {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.4;
  }
}