#rodape {
    background-color: var(--cor_fundo_rodape);
    padding: var(--padding_rodape);
    color: var(--cor_texto_rodape);
}

#rodape .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
}

#rodape .top .coluna h3.title {
    text-align: center;
    color: var(--cor_texto_titulo_rodape);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: var(--sombra_texto_titulo_rodape);
}

#rodape .top .coluna .item {
    color: var(--cor_texto_rodape);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 20px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
}

#rodape .top .coluna .item svg {
    width: 30px;
    height: 30px;
    margin-right: 5px;
    fill: var(--cor_texto_rodape);
}

#rodape .bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid var(--cor_destaque_rodape);
    padding-top: 10px;
}

#rodape .bottom h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--cor_texto_rodape);
    text-align: center;
}

@media screen and (max-width:800px) {
    #rodape .top {
        flex-direction: column;
    }

    #rodape .top .coluna {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        border-top: 2px solid var(--cor_destaque_rodape);
        margin-top: 10px;
        padding-top: 10px;
    }

    #rodape .top .coluna:first-child {
        border: none;
        margin-top: 0;
        padding-top: 0;
    }

    #rodape .top .coluna h3.title {
        font-size: 22px;
    }

    #rodape .top .coluna .item {
        font-size: 18px;
    }

    #rodape .top .coluna .item svg {
        width: 25px;
        height: 25px;
    }

    #rodape .bottom {
        border-top: 3px solid var(--cor_destaque_rodape);
    }

    #rodape .bottom h3 {
        font-size: 16px;
    }
}