/* Footer general */
.footer-section {
  background-color: var(--azul-oscuro);
  color: var(--blanco);
  font-size: 0.95rem;
}

.footer-section h5 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section a {
  color: var(--blanco);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--amarillo);
}

.footer-section img {
  max-width: 120px;
}

.footer-section .social-icons a {
  margin-right: 0.8rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.footer-section .social-icons a:hover {
  transform: scale(1.2);
}

.footer-section .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer-section small {
  color: rgba(255, 255, 255, 0.6);
}