.resumoInformacoes {
    float: left;
    width: 100%;
    background-color: #0A121F;
    padding: 50px 0;
}

.resumoInformacoes h2 {
    float: left;
    width: 100%;
    color: #fff;
    font-weight: bold;
    margin: 0 0 30px 0;
    line-height: 44px;
    font-size: 30px;
    text-align: center;
}

/* Lista */

.resumoInformacoes .boxLista {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resumoInformacoes .boxLista ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
}

.resumoInformacoes .boxLista ul li {
    list-style: none;
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
    background: #1E2A3B;
    border-bottom: solid 1px #3C4552;
    align-items: center;
}

.resumoInformacoes .boxLista ul li span {
    color: #fff;
    padding: 25px;
    font-size: 14px;
}

.resumoInformacoes .boxLista ul li span + span {
    border-left: solid 1px #0A121F;
}

.resumoInformacoes .boxLista ul li span a {
    text-decoration: underline;
    color: #fff;
}

@media only screen and (max-width: 768px) {

    .resumoInformacoes {
        padding: 25px 0;
    }

    .resumoInformacoes h2 {
        font-size: 22px;
        line-height: 150%;
        margin: 0 0 30px 0;
    }

    .resumoInformacoes .boxLista .col-sm-7 {
        padding: 0;
        width: 100%;
        float: left;
        max-width: 100%;
        flex-basis: 100%;
    }

    .resumoInformacoes .boxLista ul li span {
        padding: 12px;
        font-size: 13px;
        line-height: 20px;
    }

}