.rodape{
    padding: 50px 10vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #fff;
}

.rodape-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rodape-versao{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rodape-img{
    width: 100px;
}

.rodape-versao{
    font-size: 9px;
    color: #fff;
}

.rodape-opcoes{
    display: flex;
    flex-direction: column;
    align-items: end;
}


.rodape-item{
    padding-bottom: 10px;
}

.rodape-ajuda-link{
    color: #fff;
    font-size: 11px;
}

.rodape-logo{
    text-align: center;
}

@media screen and (max-width: 550px){
    
    .rodape{
        flex-direction: column;
        height: 30vh;
    }
    .rodape-logo{
        order: 0;
    }

    .rodape-container{
        width: 100%;
        align-items: center;
        justify-content: space-around;
        order: 4;
    }

    .rodape-container-ajuda{
        width: 100%;
    }

    .rodape-opcoes{
        order: 1;
        align-items: center;
        justify-content: space-around;
    }
    
}