#paginaQuemSomos {
    float: left;
    width: 100%;
}

/* Bloco Inicial */

.blocoInicial {
    float: left;
    width: 100%;
    background: linear-gradient(to right, #322AA2, #D30F5F);
    padding: 100px 0;
}

.blocoInicial .boxTextos {
    float: left;
    width: 100%;
}

.blocoInicial .boxTextos .container {
    display: flex;
    justify-content: center;
}

.blocoInicial .boxTextos .boxTexto {
    float: left;
    width: 100%;
    text-align: center;
}

.blocoInicial .boxTextos .boxTexto p {
    color: #fff;
}

.blocoInicial .listaImagens {
    float: left;
    width: 100%;
    margin-top: 50px;
}

.blocoInicial .listaImagens ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.blocoInicial .listaImagens ul li {
    padding: 0 10px;
}

.blocoInicial .listaImagens ul li img {
    border-radius: 24px;
    width: 100%;
}

/* Por Que Escolher */

.porQueEscolher {
    float: left;
    width: 100%;
    padding: 80px 0;
}

.porQueEscolher .container {
    display: flex;
    align-items: center;
}

/* Conteúdos */

.boxConteudos {
    float: left;
    width: 100%;
    margin-bottom: 80px;
}

.boxConteudos .boxBg {
    float: left;
    width: 100%;
    background-color: #E8F2FC;
    border-radius: 32px;
    padding: 50px;
    display: flex;
    align-items: center;
}

.boxConteudos .boxBg:nth-child(even) {
    flex-direction: row-reverse;
}

.boxConteudos .boxBg + .boxBg {
    margin-top: 50px;
}

.boxConteudos .boxBg .boxTexto {
    float: left;
    width: 100%;
}

.boxConteudos .boxBg .tituloPrincipal {
    margin: 0 0 20px 0;
}

.boxConteudos .boxBg figure img {
    width: 100%;
}

@media (max-width: 1000px) {

    /* Bloco Inicial */

    .blocoInicial .boxTextos .col-sm-5 {
        width: 100%;
        float: left;
    }

}

@media (max-width: 768px) {

    /* Bloco Inicial */

    .blocoInicial {
        padding: 60px 0;
    }

    .blocoInicial .tituloPrincipal {
        margin: 0 0 20px 0;
    }

    .blocoInicial .listaImagens {
        margin-top: 30px;
    }

    /* Por Que Escolher */

    .porQueEscolher {
        padding: 40px 0;
    }

    .porQueEscolher .container {
        flex-direction: column;
    }

    .porQueEscolher .boxTextos {
        float: left;
        width: 100%;
        margin-bottom: 30px;
    }

    /* Conteúdos */

    .boxConteudos {
        margin-bottom: 40px;
    }

    .boxConteudos .boxBg,
    .boxConteudos .boxBg:nth-child(even) {
        border-radius: 15px;
        padding: 25px;
        flex-direction: column;
    }

    .boxConteudos .boxBg + .boxBg {
        margin-top: 20px;
    }

    .boxConteudos .boxBg .col-sm-6 {
        padding: 0;
    }

    .boxConteudos .boxBg figure {
        float: left;
        width: 100%;
        margin-top: 30px;
    }

    .boxConteudos .boxBg figure img {
        width: 100%;
    }

}