/* ─────────────────────────────────────────────────────────────
   Footer / social links — solo iconos, sin fondo.
   Usado por co/index.html y ssn.signup.html (footer + pantalla
   final de bienvenida).
───────────────────────────────────────────────────────────── */

.footer-social-row { display: flex; flex-wrap: wrap; gap: 14px; }

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social-btn:hover { color: var(--color-primary); }
.footer-social-btn svg { flex-shrink: 0; }
