/* 
 * footer.css
 * Estilos para el pie de página
 */

.footer {
  background-color: var(--color-footer-background);
  color: var(--color-text);
  padding: 3rem 0;
  width: 100%;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.footer-social,
.footer-logo,
.footer-links {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  margin: 0 auto;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.icon {
  font-size: 1.8rem;
  color: var(--color-text);
  transition: color 0.3s ease, transform 0.3s;
}

.icon:hover {
  color: var(--color-footer-hover);
  transform: scale(1.1);
}

.logo-footer {
  max-width: 150px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-links ul li a:hover {
  color: var(--color-footer-hover);
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #888;
  margin: 0.5rem 0;
}

/* Estilos responsivos para el footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}