/* Footer links y colores ya existentes */
.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #f39c12;
}

.footer-menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    display: block;
}

.footer-socials a {
    font-size: 20px;
}

/* ------------------- RESPONSIVE ------------------- */
@media screen and (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 5px !important;
        /*padding-bottom: 20px;*/
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    /* Menús verticales en móviles */
    .footer-menu {
        flex-direction: column;
        gap: 0;
    }

    .footer-menu li {
        margin-bottom: 10px;
    }

    .footer-socials {
        justify-content: center;
    }
}
