/* === Footer === */
.main-footer {
  background: #001f3f;
  color: #fff;
  padding: 2rem 1rem 1rem;
  font-size: 0.9rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.9rem;
  font-weight: bold;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a:hover {
  color: #0e7bbe;
}
.social {
	height: 30px;
  	width: auto;
}
.social-links {
  display: flex;
  gap: 10px; /* Espacio entre íconos */
  justify-content: center; /* Centrar horizontalmente */
  align-items: center;
  margin-top: 10px;
}

.social-links a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff5722; /* Color al pasar el ratón */
}


.footer-info h4,
.footer-legal h4 {
  color: #0e7bbe;
  margin-bottom: 0.5rem;
}

.footer-info ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-info li,
.footer-legal li {
  margin-bottom: 0.3rem;
}

.footer-info a,
.footer-legal a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-info a:hover,
.footer-legal a:hover {
  color: #0e7bbe;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: #0e7bbe;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: none;
  color: #FFF;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}
