footer{
    margin: 3em 0 0 0;
}
.r1{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2em;
    padding: 2em;
    border-radius: 60px;
}
@media only screen and (min-width: 541px), only screen and (min-device-width: 541px) {
    footer .r1{
        background-image: url("../imagens/bg-rodape-desktop.png");
    }
}
@media only screen and (max-width: 540px), only screen and (max-device-width: 540px) {
    footer .r1{
        background-image: url("../imagens/bg-rodape-mobile.png");
    }
}

footer .r1 .logo{
    margin-top: 10px;
}
footer .r1 .logo img{
    width: 100%;
    max-width: 158px;
    aspect-ratio: 158/55;
}

footer .r1 .infos{

}
footer .r1 .infos a{
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.5em;
    color: #fff;
}
footer .r1 .infos a:not(:last-child){
    margin: 0 0 1em 0;
}
footer .r1 .infos a .icone{

}
footer .r1 .infos a .icone img{
    height: 1.2em;
}
footer .r1 .infos a .texto,
footer .r1 .infos a .texto b{
    color: #fff;
}

footer .r1 .redes{
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5em;
    margin-top: 15px;
}
footer .r1 .redes .rede{

}
footer .r1 .redes .rede a{
    display: block;
    padding: 7px;
    background: var(--azul);
    border-radius: 10px;
}
footer .r1 .redes .rede a:hover{
    background: var(--azul_hover);
}
footer .r1 .redes .rede a img{
    display: block;
    width: 100%;
    max-width: 24px;
    aspect-ratio: 24/24;
}

footer .r1 .separador{
    width: 3px;
    height: 3.5em;
    margin-top: 5px;
    background: var(--azul);
}

footer .r2{
    padding: 1em;
    text-align: center;
}
footer .r2 a{
    color: var(--verde);
}
@media only screen and (min-width: 1025px), only screen and (min-device-width: 1025px) {
    .r1{
        flex-wrap: nowrap;
    }
}
@media only screen and (max-width: 1024px), only screen and (max-device-width: 1024px) {
    .r1{
        flex-wrap: wrap;
    }
    .r1 .logo,
    .r1 .redes{
        width: 100%;
        text-align: center;
    }
    footer .r1 .separador{
        display: none;
    }
    footer .r1 .redes{
        justify-content: center;
    }
}
@media only screen and (max-width: 540px), only screen and (max-device-width: 540px) {
    footer .r2,
    footer .r2 a{
        font-size: 14px;
    }
}