/* ESTILOS FOOTER */
#footer {
    width: 100%;
    background-color: var(--c-white);
    padding: 80px 0;
}

#footer .footer-container {
    max-width: 1300px;
    margin: auto;
}

#footer .footer-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#footer .footer-home {
    max-width: 180px;
}

#footer .footer-row .footer-col {
    width: 27%;
    padding: 40px;
}

/* #footer .footer-row .footer-col:first-child {
    text-align: center;
} */

#footer .footer-row .footer-col.full {
    width: 80%;    
    text-align: center;
    padding-bottom: 0;
}

#footer .footer-row .footer-col.big {
    width: 46%;    
    border-right: 2px solid var(--c-primary);
    border-left: 2px solid var(--c-primary);
}

#footer .footer-row .footer-col p,
#footer .logos-footer div p {
    font-size: 0.813rem;
    line-height: 1.22rem;
}

#footer .footer-row .footer-col.big .sellos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;

    img {
        max-width: 100px;
    }
}

#footer .footer-row .rrss {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

#footer .footer-row .rrss a svg {
    width: 40px;
    height: 40px;
    fill: var(--c-grey);
    transition: var(--all-transition);
}

#footer .footer-row .rrss a:hover svg {
    fill: var(--c-primary);
}

#footer .logos-footer {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    padding: 20px 20px 0px 20px;
    margin-top: 20px;
    border-top: 2px solid var(--c-primary);
}

#footer .logos-footer div {
    text-align: center;
    width: 50%;
    display: flex;
    align-items: center;
}


#footer .logos-footer div p{
    margin-bottom: 0;
}

#footer .logos-footer img {
    margin: auto;
    max-width: 60%;
}

#footer .logos-footer .links-legales {
    font-size: 0.813rem;
    line-height: 1.22rem;
    text-align: center;
}

.site-footer {
    display: none;
}



/*--- RESPONSIVE FOOTER ---*/
@media screen and (max-width: 1400px) {
    #footer .logos-footer {
        margin-right: 20px;
        margin-left: 20px;
    }
}

@media screen and (max-width: 1300px) {
    #footer .footer-row .rrss {
        gap: 10px;
    }

    #footer .footer-row .footer-col.big .sellos {
        img {
            max-width: 90px;
        }
    }
}

@media screen and (max-width: 1080px) {
    #footer .footer-row {
        justify-content: center;
        gap: 0;
    }

    #footer .footer-row .footer-col {
        width: 48%;
        order: 1;
        text-align: right;
        justify-content: flex-start;
        border-right: 2px solid var(--c-primary);
    }

    #footer .footer-row .footer-col.rrss {
        border-right: none;
    }

    #footer .footer-row .footer-col.big {
        width: 80%;
        order: 2;
        border: none;
    }

    #footer .logos-footer {
        margin-top: 0;
    }

    #footer .footer-row .footer-col.full {
        order: 3;
        padding-bottom: 40px;
        padding-top: 0;
        border: none;
    }

    #footer .footer-row .footer-col.big .sellos {
        img {
            max-width: 120px;
        }
    }
}

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 991px) {
    #footer {
        padding: 60px 0;
    }

    #footer .footer-row .footer-col {
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    #footer .logos-footer {
        padding-right: 0;
        padding-left: 0;
    }

    #footer .logos-footer img {
        max-width: 85%;
    }

    #footer .footer-row .footer-col.full {
        width: 100%;    
    }

    #footer .footer-row .footer-col.big .sellos {
        img {
            max-width: 80px;
        }
    }

    #footer .logos-footer {
        flex-direction: column;
    }

    #footer .logos-footer div {
        text-align: center;
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    #footer {
        padding: 40px 0;
    }

    #footer .footer-row .footer-col {
        width: 100%;
        border-right: none;
        text-align: center;
        justify-content: center;
    }

    #footer .footer-row .footer-col.big {
        width: 90%;
    }

    #footer .logos-footer img {
        max-width: 100%;
    }

    #footer .footer-row .footer-col.big .sellos {
        flex-wrap: wrap;
    }
}