.rodape_cinza{
    background-color: var(--preto-lavado);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rodape_cinza--logo svg {
    width: 40%;
    margin: 3rem 0;
    fill: var(--branco); /* Texto principal */
}

.rodape_cinza--logo svg:hover {
    fill: var(--amarelo-criativo);
}

.menu__rodape--logo svg {
    width: 40%;
    margin: 3rem 0;
    fill: var(--preto-lavado); 
}

.menu__rodape--logo svg:hover {
    fill: var(--branco);
}


.rodape_cinza--endereco{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 17rem;
    line-height: 1.5;
}

.rodape_cinza--endereco--bloco{
    color: var(--branco);
    margin: 0 0 5rem 0;

}

.rodape_cinza--endereco--bloco:hover{
    color: var(--amarelo-criativo);
}

.rodape_cinza--endereco--titulo{
    font-size: 1.5rem;
}

.rodape_cinza--endereco--texto{
    font-size: 1.125rem;
}

.rodape_preto{
    background-color: var(--preto-lavado);
    display: flex;
    justify-content: center;
    color: var(--branco);
    padding: 1rem 0;
    font-size: .75rem;
}


/* Para dispositivos móveis */
@media only screen and (max-width: 900px) {
    .rodape_cinza{
        justify-content: center;
        align-items: center;
    }

    .rodape_cinza--logo{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rodape_cinza--endereco{
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .rodape_cinza--endereco--bloco{
        margin: 0 0 3rem 0;
    }

    .rodape_cinza--endereco--bloco:nth-last-child(n){
        margin: 0 0 5rem 0;
    }

    .rodape_cinza--endereco--titulo{
        font-size: 1.25rem;
    }

    .rodape_cinza--endereco--texto{
        font-size: 0.875rem;
    }
}

/* Para desktops */
@media only screen and (min-width: 769px) {

}