/*
 * footer.css — Footer del sitio
 */
footer {
  padding: 3.5rem 4rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex; align-items: center; gap: .75rem;
}
.footer-logo img,
.footer-logo .custom-logo { height: 36px; width: auto; mix-blend-mode: var(--logo-blend); filter: var(--logo-filter); }
.footer-logo .custom-logo-link { display: flex; }
.footer-logo-name { font-family: "Fraunces", serif; font-size: 1.1rem; font-weight: 300; color: var(--text); }
.footer-legal {
  font-family: "JetBrains Mono", monospace;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a { font-size: .8rem; color: var(--muted); text-decoration: none; transition: color .2s; letter-spacing: .04em; }
.footer-social a:hover { color: var(--text); }
