footer {
  background-color: #1b1c24; 
  color: #fff;
  font-family: "Lato", sans-serif !important;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  bottom: 0;
  margin-top: auto;       /* se empuja hacia el final */
}

footer .footer-wrap {
  display: flex;
  flex-direction: column;   /* en vertical por defecto (móvil) */
  gap: 15px;
  align-items: center;
  background-color: #282015; 
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;         /* 👈 permite saltar de línea si no caben */
  gap: 20px;
  justify-content: center; /* 👈 centrados en horizontal */
}

footer .footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .footer-links a:hover {
  color: #f4d58d;  
}

footer .footer-cookies {
  font-size: 13px;
}

/* En pantallas grandes, horizontalizar */
@media (min-width: 768px) {
  footer .footer-wrap {
    flex-direction: column;  
  }
}
