.footer {
  background: #ffd700; /* Color institucional */
  color: #1e3a8a;
  padding: 50px 10% 20px;
  font-family: 'Poppins', sans-serif; /* Texto general más elegante */
}

/* Contenedor */
/* Contenedor del footer centrado con columnas más cercanas */
.footer-container {
  display: flex;
  justify-content: center; /* centra todo el conjunto de columnas */
  align-items: flex-start;
  gap: 65px; /* menos espacio entre columnas */
  flex-wrap: wrap; /* permite que en móvil se acomoden verticalmente */
}

/* Logo a la izquierda */
.footer-logo img {
  max-width: 210px;
  margin-bottom: 20px;
}

/* Títulos de secciones */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-family: 'Poppins', sans-serif; /* Títulos con más presencia */
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  color: #1e3a8a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Wave sobre el footer */
.footer-wave {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -5px; /* para que encaje justo sobre el footer */
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px; /* altura del wave */
}

/* Enlaces */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-family: 'Poppins', sans-serif; /* enlaces destacados */
  font-weight: 500;
  text-decoration: none;
  color: #1e3a8a;
  transition: color 0.3s, transform 0.2s;
}

.footer-links ul li a:hover {
  color: #1e3a8a;
  transform: translateX(4px);
}

/* Contacto con Font Awesome */
.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px; 
  font-weight: 500;
  font-size: 15px;
}

.footer-contact i {
  color: #1e3a8a;
  font-size: 24px;
}

/* Redes sociales */
.footer-social .social-icons {
  display: flex;
  gap: 12px;
}

.footer-social .social-icons a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s, filter 0.3s;
}

.footer-social .social-icons a img:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}

/* Línea inferior */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1e3a8a;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links ul li,
  .footer-contact p {
    justify-content: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}
