.boxPorQueEscolher {
    float: left;
    width: 100%;
    padding: 70px 0;
}

.boxPorQueEscolher .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.boxPorQueEscolher .container::after,
.boxPorQueEscolher .container::before {
    display: none!important;
}

/* Box Textos */

.boxPorQueEscolher .boxTextos h2 {
    color: #292929;
    margin: 0 0 30px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

.boxPorQueEscolher .boxTextos p {
    float: left;
    width: 100%;
    color: #3D3D3D;
    margin: 0 0 20px 0;
}

.boxPorQueEscolher .boxTextos ul {
    float: left;
    width: 100%;
    padding: 0 0 0 25px;
    margin: 0 0 20px 0;
}

.boxPorQueEscolher .boxTextos ul li {
    color: #3D3D3D;
    float: left;
    width: 100%;
}

.boxPorQueEscolher .boxTextos ul li + li {
    margin-top: 5px;
}

.boxPorQueEscolher .boxTextos a {
    color: #fff;
    background: #CE0708;
    display: inline-block;
    padding: 12px 60px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 20px;
    text-decoration: none;
}

/* Resultados */

.boxPorQueEscolher .boxResultados .titulo {
    color: #292929;
    margin: 0 0 30px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    float: left;
    width: 100%;
}

.boxPorQueEscolher .boxResultados .titulo strong {
    color: #CE0708;
}

.boxPorQueEscolher .boxResultados .listaResultadosLink {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0 0 50px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.boxPorQueEscolher .boxResultados .listaResultadosLink li {
    list-style: none;
    color: #CE0708;
    border: solid 1px #CE0708;
    border-radius: 99px;
    text-align: center;
    padding: 10px 0;
    transition: all 0.1s linear;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.boxPorQueEscolher .boxResultados .listaResultadosLink li.active,
.boxPorQueEscolher .boxResultados .listaResultadosLink li:hover {
    background: #CE0708;
    color: #fff;
}

.boxPorQueEscolher .boxResultados .easy-pie-chart-results {
    float: left;
    width: 100% !important;
    padding: 0;
    position: relative;
    min-height: 320px;
    text-align: center;
}

.boxPorQueEscolher .boxResultados .easy-pie-chart-results::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 150px;
    background: url('../images/bg-after-charts.png');
    z-index: -1;
}

.boxPorQueEscolher .boxResultados .easy-pie-chart-results::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
    background: url('../images/bg-after-charts.png');
    z-index: -1;
}

.boxPorQueEscolher .boxResultados .easy-pie-chart-results .boxPercent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
}

.boxPorQueEscolher .boxResultados .easy-pie-chart-results .boxPercent .prePorcentagem {
    color: #0A121F;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.boxPorQueEscolher .boxResultados .easy-pie-chart-results .boxPercent .percent {
    color: #0A121F;
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
}

@media only screen and (max-width: 950px) {

    .boxPorQueEscolher {
        padding: 40px 0;
    }

    .boxPorQueEscolher .container {
        flex-direction: column;
    }

    .boxPorQueEscolher .col-sm-6,
    .boxPorQueEscolher .col-sm-5 {
        float: left;
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        padding: 0 5px;
    }

    .boxPorQueEscolher .boxTextos {
        margin-bottom: 40px;
    }

    .boxPorQueEscolher .boxTextos a {
        width: 100%;
        text-align: center;
    }

    .boxPorQueEscolher .boxResultados .titulo {
        text-align: center;
    }

}