/* -----------------------------
   RODAPÉ — ONDE COMPRAR
----------------------------- */

.site-footer {
  background: var(--footer-bg, #0f172a);
  color: var(--footer-text, #f1f5f9);
  padding: 4.5rem 0 2rem;
}

.site-footer__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
  text-align: center;
}

.site-footer__subtitle {
  text-align: center;
  color: var(--footer-muted, #94a3b8);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  background: var(--footer-btn-bg, rgba(255, 255, 255, 0.08));
  border: 1px solid var(--footer-btn-border, rgba(255, 255, 255, 0.18));
  color: var(--footer-text, #f1f5f9);
  transition: all 0.25s ease;
}

.store-btn:hover {
  background: var(--footer-btn-hover, rgba(255, 255, 255, 0.16));
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.site-footer__brand {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--footer-muted, #94a3b8);
  margin-bottom: 0.5rem;
}

.site-footer__social {
  text-align: center;
  font-size: 0.85rem;
  color: var(--footer-muted, #94a3b8);
  margin-bottom: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--accent);
}

.footer-social-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.site-footer__disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--footer-muted, #94a3b8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.site-footer__copy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--footer-muted, #64748b);
  padding-top: 1.5rem;
  border-top: 1px solid var(--footer-divider, rgba(255, 255, 255, 0.08));
}

@media (max-width: 480px) {
  .store-btn {
    width: 100%;
    min-width: unset;
  }
}
