/* Footer compartido de BolsaHoy — idéntico en todas las páginas (lo inyecta
   assets/site-footer.js). Adaptado a claro y oscuro con los tokens del sitio. */
.bh-site-footer {
  margin-top: 64px;
  border-top: 1px solid var(--bh-line);
  background: var(--bh-bg-elevated);
  color: var(--bh-ink);
}
.bh-site-footer * { box-sizing: border-box; }
.bh-site-footer .bh-foot-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 44px 0 30px;
}
.bh-site-footer .bh-foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
}
.bh-site-footer .bh-foot-tagline {
  margin: 14px 0 16px;
  max-width: 300px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--bh-ink-muted);
}
.bh-site-footer .bh-foot-brand img { height: 24px; width: auto; display: block; }
.bh-site-footer .bh-foot-social { display: flex; gap: 10px; }
.bh-site-footer .bh-foot-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bh-ink-muted);
  background: rgba(var(--bh-fg-rgb, 120, 130, 150), .08);
  border: 1px solid var(--bh-line);
  transition: color .16s ease, background .16s ease, transform .16s ease, border-color .16s ease;
}
.bh-site-footer .bh-foot-social a:hover {
  color: #fff; background: var(--bh-blue); border-color: var(--bh-blue);
  transform: translateY(-2px);
}
.bh-site-footer h4 {
  margin: 0 0 14px;
  font-size: 12px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase;
  color: var(--bh-ink-muted);
}
.bh-site-footer .bh-foot-col a {
  display: block;
  margin-bottom: 11px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  color: var(--bh-ink-muted);
  transition: color .15s ease;
  width: fit-content;
}
.bh-site-footer .bh-foot-col a:hover { color: var(--bh-blue); }
.bh-site-footer .bh-foot-bottom {
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--bh-line);
  display: flex; flex-direction: column; gap: 8px;
}
.bh-site-footer .bh-foot-bottom p { margin: 0; font-size: 13px; color: var(--bh-ink-muted); }
.bh-site-footer .bh-foot-legalnote { font-size: 12px; opacity: .8; line-height: 1.55; }

@media (max-width: 780px) {
  .bh-site-footer .bh-foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .bh-site-footer .bh-foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .bh-site-footer .bh-foot-grid { grid-template-columns: 1fr; }
}
