/* Footer  -  Por defecto movil */

#footer {
    background-color: var(--color-negro);
    /* padding: 0 var(--padding-lateral); */
    color: #fff;
    margin-top: 80px;
}

#footer .contenedorFooter {
    /* padding-top: 60px; */
    padding-bottom: 60px;
    position: relative;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}


/* ---------- TOP (logo + redesSociales) ---------- */
#footer .contenedorFooter .footerTop {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 1rem;
}

/* ---------- BOTTOM (grupo + legales) ---------- */
#footer .contenedorFooter .footerBottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1700px;
}

#footer .contenedorFooter .footerTop .brandingTop {
    flex: 0 0 auto;
    display: flex;
    padding-right: 60px;
    flex-direction: column;
    gap: 1rem;
}


#footer .contenedorFooter .footerTop .brandingTop .logo-img {
    max-width: 160px;
}

#footer .contenedorFooter .footerTop .brandingTop .redSocials {
    display: flex;
    gap: 0.5rem;
}

#footer .contenedorFooter .footerTop .brandingTop .redSocials .social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
}

#footer .contenedorFooter .footerTop .columnasEnlaces .columnasEnlaces_contenedor .titulo {
    margin-bottom: 1.75rem;
    padding-right: 10px;
    font-weight: 700;
    font-size: 18px;
    font-style: normal;
    line-height: 24px;
}

#footer .contenedorFooter .footerTop .columnasEnlaces .columnasEnlaces_contenedor .titulo.tallerPosventa {
    margin-top: 0.75rem;
}

#footer .contenedorFooter .footerTop .columnasEnlaces .columnasEnlaces_contenedor .footerLink {
    display: flex;
    color: #fff;
    text-decoration: none;
    transition: color .2s;
    align-items: center;
    gap: 0.5rem;
    margin-top: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

#footer .contenedorFooter .footerTop .columnasEnlaces .columnasEnlaces_contenedor .footerLink:hover {
    color: #bbb;
}


#footer .contenedorFooter .footerBottom .footerBottom_left .footerLink{ color: #fff;}

/* MOBILE */
@media (max-width: 992px) {

    /** dejarlo aqui dentro, es exclusivo para mvl */



    #footer .contenedorFooter .footerTop {
        align-items:flex-start;
    }

    #footer .contenedorFooter .footerTop .columnasEnlaces {
        display: flex;

        flex-wrap: wrap;
        gap: 5rem;
        margin: 0 0 40px 0;
        padding: 40px 0;
        border-top: 1px solid #4B4B4B;
        border-bottom: 1px solid #4B4B4B;
        width: 100%;
        justify-content: space-around;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 1rem;
    }


    #footer .contenedorFooter .footerTop .columnasEnlaces .columnasEnlaces_contenedor {
        border-bottom: 1px solid #4B4B4B;
        border-right: none;
        padding-bottom: 20px;
    }

    #footer .contenedorFooter .footerTop .columnasEnlaces .columnasEnlaces_contenedor:last-child {
        border-bottom: none;
        padding-bottom: 0px;
    }


    #footer .contenedorFooter .footerBottom .footerBottom_left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 32px;
    }

    #footer .contenedorFooter .footerBottom .footerBottom_right {

        /* display: flex;
        gap: 4px;
        flex-wrap: wrap;
        margin-top: 50px;
        justify-content: flex-start;
        width: 100%; */
        margin-top: 50px;
        display: block;
        width: 100%;
        margin-left: 5px;
    }

    #footer .contenedorFooter .footerBottom .footerBottom_left .logo-grupo {
        width: 180px;
        height: auto;
        max-width: none;

        margin: 0 ;
        align-self: flex-start ;
    }

    .gf-footer__links{
        width: 100%;
        display: block !important;
    }

    #footer .contenedorFooter .footerBottom .footerBottom_left .footerLink{ 
        display: inline-block;
        width: fit-content;
        margin-right: 10px;

    }
}


/* DESKTOP */
@media (min-width: 993px) {

    #footer .contenedorFooter .footerTop .columnasEnlaces {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 5rem;
        margin: 0 0 40px 0;
        padding: 40px 0;
        border-top: 1px solid #4B4B4B;
        border-bottom: 1px solid #4B4B4B;
        display: grid;
        /* grid-template-columns: repeat(4, 1fr); */
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    #footer .contenedorFooter .footerTop .columnasEnlaces .columnasEnlaces_contenedor {
        border-right: 1px solid #4B4B4B;
    }

    #footer .contenedorFooter .footerTop .columnasEnlaces .columnasEnlaces_contenedor:last-child {
        border-right: none;
    }


    #footer .contenedorFooter .footerBottom .footerBottom_left {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    #footer .contenedorFooter .footerBottom .footerBottom_left .logo-grupo {
        width: 180px;
        height: auto;
        max-width: none;

    }


    #footer .contenedorFooter .footerBottom .footerBottom_right {
        display: flex;
        gap: 4px;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

}