.rodape{
    background-color: #333;
    color: #FFF;

    & .faixa-gov{
        height: .5rem;
    }

    & .container{
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
        padding-block: 4rem;
    }

    & .brasao{
        height: 152px;
        width: auto;
    }
}

    .rodape__conteudo{
        display: flex;
        flex-direction: column;
        gap: 1rem;

        & > p{
            line-height: 150%;
        }
    }

        .conteudo__sead{
            display: flex;
            flex-direction: column;
            gap: .5rem;

            & :first-child{
                font-weight: 600;
            }
        }

/* RESPONSIVIDADE */
@media screen and (width <= 500px) {
    .rodape .container{
        flex-direction: column;
        padding-block: 2rem;
    }
}   
