.footer {
  background-color: #1e1e1e; /* Color negro */
  color: white;
  padding: 15px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-text {
  flex: 1;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 24px;
  transition: 0.3s;
}


.social-icons a:hover {
  color: #25D366; /* Verde de WhatsApp */
}

.social-icons a .fa-instagram,
.social-icons a .fa-whatsapp {
    transition: color 0.3s;
}
.social-icons a .fa-instagram:hover,
.social-icons a:hover .fa-instagram {
    color: #E4405F;
    /* Color oficial de Instagram */
}


