/**
 * Quiniela Liga MX - Footer
 * Estilos del footer de la aplicación
 */

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #7a7c7e, #636365);
  color: white;
  padding: 1rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-section p {
  opacity: 0.8;
  line-height: 1.8;
}

.footer-section a {
  display: block;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer-section a:hover {
  opacity: 1;
  color: var(--secondary-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  opacity: 0.8;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}
