/**
 * @file
 * Styles for Footer Backus 2026 block.
 */

.footer-backus-2026 {
  padding: 2rem 1rem;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

.footer-backus-2026__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-backus-2026__logo {
  margin-bottom: 2rem;
}

.footer-backus-2026__logo img {
  max-width: 200px;
  height: auto;
}

.footer-backus-2026__social {
  margin-bottom: 2rem;
}

.footer-backus-2026__social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-backus-2026__social-item {
  display: inline-block;
}

.footer-backus-2026__social-link {
  display: block;
  transition: opacity 0.3s ease;
}

.footer-backus-2026__social-link:hover {
  opacity: 0.7;
}

.footer-backus-2026__social-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.footer-backus-2026__social-name {
  font-size: 0.875rem;
  color: #333;
}

.footer-backus-2026__consumo-responsable {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-backus-2026__consumo-responsable-link {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-backus-2026__consumo-responsable-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.footer-backus-2026__consumo-responsable-image {
  max-width: 200px;
  height: auto;
  display: block;
}

.footer-backus-2026__consumo-responsable-copy {
  font-size: 0.875rem;
  color: #333;
  text-align: center;
  line-height: 1.5;
  max-width: 600px;
}

.footer-backus-2026__legal {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.footer-backus-2026__legal p {
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .footer-backus-2026 {
    padding: 1.5rem 1rem;
  }

  .footer-backus-2026__logo img {
    max-width: 150px;
  }

  .footer-backus-2026__social-list {
    gap: 1rem;
  }

  .footer-backus-2026__social-icon {
    width: 28px;
    height: 28px;
  }

  .footer-backus-2026__consumo-responsable-image {
    max-width: 150px;
  }

  .footer-backus-2026__consumo-responsable-copy {
    font-size: 0.8125rem;
    padding: 0 1rem;
  }
}
