  /* footer.css */
footer {
  background-color: #850770;
  color: #eee;
  padding: 3rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 220px;
  text-align: center;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffcc00; /* Color amarillo directo */
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #16F5E1; /* Color azul turquesa directo */
}

footer p {
  margin-top: 2rem;
  color: #fff;
}
