/* =========================================
   FOOTER
========================================= */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 35px 0;
    background: var(--card-bg);
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

/* =========================================
   LOGO
========================================= */
.footer-brand {
    display: flex;
    align-items: center;
}
.footer-logo {
    width: 230px;
    height: auto;
    display: block;
}

/* =========================================
   NAVEGACIÓN
========================================= */
.footer-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer-nav a {
    color: var(--muted-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-nav a:hover {
    color: var(--primary);
}

/* =========================================
   COPYRIGHT
========================================= */
.footer-copy {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;

    color: var(--muted-color);
    font-size: 13px;
    white-space: nowrap;
}
.footer-copy a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}
.footer-copy a:hover {
    color: var(--primary);
}
.footer-separator {
    color: var(--border-color);
}

/* =========================================
   FOOTER RESPONSIVE
========================================= */
@media (max-width: 768px) {
    .site-footer {
        padding: 35px 0 30px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    /* LOGO */
    .footer-brand {
        justify-content: center;
    }
    .footer-logo {
        width: 200px;
        max-width: 100%;
    }
    /* NAVEGACIÓN */
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
    }
    /* COPYRIGHT */
    .footer-copy {
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
        text-align: center;
    }
}
