.rodape{
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-4);
    padding: 15px;
    box-sizing: border-box;
}

.rodape__logo{
    background: url('./../img/logo02.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60%;
    height: 70px;
    filter: invert();
}

.rodape__texto{
    color: var(--white);
    font-size: .8rem;
}

@media screen and (min-width: 1024px){
    .rodape{
        flex-direction: row;
        justify-content: space-around;
    }

    .rodape__logo{
        width: 50%;
    }

    .rodape :nth-child(2){
        order: -1;
    }

    .rodape__texto{
        font-size: .9rem;
    }
}