/* ==========================================================================
   PÁGINA DE VISIÓN 
   ========================================================================== */

/* 1. Banner Hero Visión */
.banner-vision {
  background: linear-gradient(135deg, var(--vzla-azul) 0%, #1c2656 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--vzla-amarillo);
  animation: fadeInBg 1.2s ease-out forwards;
}

.banner-vision .caption-text {
  font-family: "Georama", Arial, sans-serif !important;
  color: var(--vzla-amarillo) !important;
  font-size: 10pt !important;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* Titular Principal */
.banner-vision .header-vision-titulo {
  font-family: "Georama", Arial, sans-serif;
  font-size: 38pt !important;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  margin: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards; /* Ajustado el tiempo */
}

.banner-vision .linea-decorativa-blanca {
  width: 80px;
  height: 4px;
  background-color: var(--vzla-amarillo) !important;
  border-radius: 2px;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  animation: scaleLine 0.6s ease-out 0.9s forwards;
}

/* Texto de la cita/lema */
.banner-vision .hero-subtexto {
  font-family: "Georama", Arial, sans-serif;
  font-size: 14pt !important;
  line-height: 20pt;
  color: rgba(255, 255, 255, 0.85) !important;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

@keyframes fadeInBg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scaleLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 992px) {
  .banner-vision {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .banner-vision {
    padding: 2rem 0;
  }

  .banner-vision .linea-decorativa-blanca {
    width: 60px;
  }

  .banner-vision .header-vision-titulo {
    font-size: 2.25rem !important;
    line-height: 2.6rem !important;
  }

  .banner-vision .hero-subtexto {
    font-size: 1rem !important;
    line-height: 1.6rem !important;
  }

  .bloque-vision-card {
    padding: 1.5rem !important;
  }

  .card-vision-pilar h4 {
    font-size: 0.95rem !important;
  }

  .card-vision-pilar p {
    font-size: 0.95rem !important;
    line-height: 1.4rem !important;
  }
}
