
/* Footer */
footer {
  background-color: #000; /* Fondo negro */
  color: #fff; /* Texto blanco */
  padding: 50px 0;
  text-align: center;
  margin-top: 30px; /* Margen superior */
}

footer .footer-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

footer .footer-section {
  flex: 1;
}

footer .footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

footer .footer-section p {
  margin: 0;
  font-size: 14px;
}

footer .footer-section ul {
  list-style: none;
  padding: 0;
}

footer .footer-section ul li {
  margin-bottom: 10px;
}

footer .footer-section ul li a {
  color: #fff; /* Color claro para los enlaces */
  text-decoration: none; /* Elimina el subrayado */
  transition: color 0.3s ease; /* Suaviza el cambio de color al pasar el mouse */
}

footer .social-icons {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 20px 0;
}

footer .social-icons li {
  margin: 0 10px;
}

footer .social-icons li a {
  color: #fff;
  font-size: 24px;
}
