.footer {
  background: rgb(10 118 114); /* Color de tu paleta al 50% */
  color: #fff;
  padding: 50px 10% 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* Logo a la izquierda */
.footer-logo img {
  max-width: 350px;
  margin-bottom: 20px;
}

/* Enlaces */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #FFD700;
}

/* Contacto con Font Awesome */
.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px; /* espacio entre ícono y texto */
}

.footer-contact i {
  color: #FFD700; /* Cambia según tu paleta */
  font-size: 24px; /* tamaño uniforme */
}

/* Redes sociales */
.footer-social .social-icons {
  display: flex;
  gap: 12px;
}

.footer-social .social-icons a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
}

.footer-social .social-icons a img:hover {
  transform: scale(1.1);
}

/* Línea inferior */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #ddd;
}

/* 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;
  }
}
