/* Clase para el color del texto */
.texto-azul {
    color: #000126;
}

/* Clase para el color de fondo */
.bg-azul {
    background-color: #000126;
}
.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,1,38,0.4) !important;
  background-color: #00012e !important;
}

.hover-outline:hover {
  background-color: white !important;
  color: #000126 !important;
  border-color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

.hover-scale:hover {
      transform: scale(1.05);
}

.texto-azul {
color: #001D30 !important;
}


.img-container {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9; /* ajusta si quieres más alto o cuadrado */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}