.footer_container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer_info {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.copyrights {
    width: 100%;
    display: flex;
    justify-content: center;
}

footer {
    padding: 30px 0;
}

.redes_footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.redes_footer ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.redes_footer ul li a {
    color: #fff;
}

.footer_address {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo_footer {
    display: flex;
    justify-content: flex-end;
}



@media(max-width:576px) {
    .footer_info {
        flex-direction: column;
        font-size: 22px;
        font-weight: 300;
        gap: 30px;
    }

    .footer_info strong {
        font-weight: 800;
    }

    .redes_footer ul li {
        /*width: 30%;*/
        font-size: 24px;
        display: flex;
        justify-content: center;
    }

    .redes_footer ul {
        flex-wrap: wrap;
        gap: 15px 0;
    }

    .logo_footer {
        justify-content: center;
    }

    .logo_footer .custom-logo {
        width: 120px;
    }

    .redes_footer {
        gap: 50px;
    }

    .copyrights p {
        font-size: 20px;
        text-align: center;
        font-weight: 300;
    }

    .copyrights {
        margin-top: 50px;
    }
}