.site-footer {
  position: relative;
  z-index: 1;
  padding: 1.75rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
}

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

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-text);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0.03em;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.social-button:hover,
.social-button:focus-visible {
  transform: translateY(-2px);
  color: var(--color-text);
}

.social-button-whatsapp {
  border-color: rgba(52, 211, 153, 0.28);
  background: rgba(52, 211, 153, 0.08);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
}

.social-button-whatsapp:hover,
.social-button-whatsapp:focus-visible {
  border-color: rgba(52, 211, 153, 0.48);
  background: rgba(52, 211, 153, 0.14);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.22);
}

.social-button-facebook {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.08);
}

.social-button-facebook:hover,
.social-button-facebook:focus-visible {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.14);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.22);
}
