.boxPilares {
    float: left;
    width: 100%;
    background: linear-gradient(0deg, rgba(255,153,154,1) 0%, rgba(255,255,255,1) 90%);
    padding: 90px 0 0 0;
}

.boxPilares h2 {
    color: #292929;
    margin: 0 0 50px 0;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    line-height: 36px;
}

.boxPilares h2 strong {
    color: #F50D0E;
}

/* Lista Botões */

.boxPilares .listaBotoesSection {
    float: left;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
    margin: 0 0 50px 0;
    border-radius: 8px;
    padding-bottom: 5px;
}

.boxPilares .listaBotoes {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-width: 1050px;
    background: #fff;
}

.boxPilares .listaBotoes li {
    list-style: none;
    cursor: pointer;
    text-align: center;
    padding: 20px;
    color: #27364B;
    font-size: 14px;
    font-weight: 600;
    border-bottom: solid 3px transparent;
    transition: all 0.1s linear;
}

.boxPilares .listaBotoes li:hover,
.boxPilares .listaBotoes li.active {
    border-color: #FF7171;
}

/* Lista Conteúdos */

.boxPilares .listaConteudos {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
}

.boxPilares .listaConteudos li {
    list-style: none;
    display: none;
    text-align: center;
}

.boxPilares .listaConteudos li.active {
    display: block;
}

.boxPilares .listaConteudos li p {
    float: left;
    width: 100%;
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 30px;
}

.boxPilares .listaConteudos li figure {
    margin-top: 30px;
    float: left;
    width: 100%;
}

@media only screen and (max-width: 900px) {

    .boxPilares {
        padding: 40px 0 0 0;
    }

    .boxPilares h2 {
        margin: 0 0 40px 0;
        font-size: 22px;
        line-height: 32px;
    }

    .boxPilares h2 br {
        display: none;
    }

    .boxPilares .listaBotoesSection {
        margin: 0 0 30px 0;
    }

    .boxPilares .listaConteudos li figure {
        margin-top: 20px;
    }

    .boxPilares .listaConteudos li p br {
        display: none;
    }

}