footer {
  background: #1c1c1c;
  color: #fff;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer .social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

footer .social-icons a {
  background: #fff;
  color: #1c1c1c;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Colores oficiales de cada red social al pasar el cursor */
footer .social-icons a[href*="facebook"]:hover {
  background: #fff;
  color: #1877f2; /* azul Facebook */
}

footer .social-icons a[href*="instagram"]:hover {
  background: #fff;
  color: #e1306c; /* rosa/morado Instagram */
}

footer .social-icons a[href*="youtube"]:hover {
  background: #fff;
  color: #ff0000; /* rojo YouTube */
}

footer .social-icons a[href^="mailto"]:hover {
  background: #fff;
  color: #d44638; /* rojo oscuro correo */
}

footer .footer-text {
  max-width: 600px;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  margin-top: 10px;
  padding: 0 10px;
  box-sizing: border-box;
  text-transform: lowercase;
}