/* ============================================================================
   Vuelame — footer.css
   ============================================================================
   Site footer compartido entre home y páginas de ruta.
   ========================================================================== */

.site-footer {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--color-primary); opacity: 1; }
