/* ====== Tokens (ajusta colores/tipografía) ====== */
:root {
    --sf-bg: #f8f9fa;
    /* fondo footer */
    --sf-fg: #1f2937;
    /* texto principal */
    --sf-muted: #6b7280;
    /* texto secundario */
    --sf-border: #e5e7eb;
    /* líneas */
    --sf-link: #0f62fe;
    /* links */
}

/* ====== Contenedor genérico ====== */
.site-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ====== Barra fija inferior ====== */
.site-footer-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sf-bg);
    color: var(--sf-fg);
    border-top: 1px solid var(--sf-border);
    z-index: 50;
}

.site-footer-bar__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 44px;
    font-size: 14px;
}

.link-reset {
    color: inherit;
    text-decoration: none;
}

.link-reset:hover {
    color: var(--sf-link);
    text-decoration: underline;
}

/* Si tu contenido queda tapado por la barra fija, añade padding-bottom al main/page */
body {
    padding-bottom: 48px;
}

/* opcional; quítalo si no lo necesitas */

/* ====== Footer grande ====== */
.site-footer {
    background: var(--sf-bg);
    color: var(--sf-fg);
    border-top: 1px solid var(--sf-border);
    padding: 28px 0;
    margin-top: 20px;
}

.site-footer__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

.site-footer__col {}

.site-footer__col--social {
    display: flex;
    flex-direction: column;
}

.site-footer__title {
    margin: 4px 0 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #111827;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
    font-size: 14px;
}

.site-footer__links a {
    color: var(--sf-muted);
    text-decoration: none;
}

.site-footer__links a:hover {
    color: var(--sf-link);
    text-decoration: underline;
}

.site-footer__social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.site-footer__socialLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--sf-border);
    color: #0a66c2;
}

.site-footer__socialLink:hover {
    filter: brightness(.95);
}

/* Espaciados utilitarios (si los necesitas) */
.pb-footer {
    padding-bottom: 48px;
}

.mt-footer {
    margin-top: 24px;
}