/* ===================================
   🔥 FOOTER MODERNO – SISTEMA GYM
   =================================== */

.footer {
    width: 100%;
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 10%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: var(--footer-shadow);
    border-top: 1px solid var(--footer-border);
    font-family: var(--font-primary);
}

/* ──────────────── CONTENIDO ──────────────── */
.footer-contenido {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

/* ──────────────── LOGO ──────────────── */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: var(--footer-logo-size);
    filter: brightness(0.9);
    transition: var(--transition-normal);
}

.footer-logo img:hover {
    filter: brightness(1.2);
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
}

/* ──────────────── LINKS ──────────────── */
.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--footer-link);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--footer-link-hover);
    transform: translateY(-2px);
}

/* ──────────────── REDES ──────────────── */
.footer-redes {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    align-items: center;
}

.footer-redes a {
    color: var(--footer-redes-color);
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.footer-redes a:hover {
    color: var(--footer-redes-hover);
    transform: scale(1.15);
}

/* ──────────────── COPYRIGHT ──────────────── */
.footer-copy {
    text-align: center;
    color: var(--footer-text-muted);
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--footer-border);
}

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 900px) {
    .footer-contenido {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        gap: 18px;
    }

    .footer-redes {
        justify-content: center;
    }
}
