#paginaSac {
    float: left;
    width: 100%;
}

/* Bloco Inicial */

.blocoInicial {
    float: left;
    width: 100%;
    padding: 70px 0 0 0;
}

.blocoInicial .container {
    display: flex;
    align-items: flex-end;
}

.blocoInicial .boxTextos {
    margin-bottom: 50px;
}

.blocoInicial .boxTextos .boxTexto {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.blocoInicial .boxTextos .boxConsideracao {
    float: left;
    width: 100%;
    border-left: solid 3px #D30F5F;
    padding: 10px 15px;
}

.blocoInicial .boxTextos .boxConsideracao p {
    margin: 0;
    font-weight: 500;
}

.blocoInicial figure {
    text-align: center;
}

/* Frase Destaque */

.fraseDestaque {
    float: left;
    width: 100%;
    background: linear-gradient(to right, #322AA2, #D30F5F);
    padding: 30px 0;
}

.fraseDestaque .container {
    display: flex;
    justify-content: center;
}

.fraseDestaque p {
    color: #fff;
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    max-width: 60%;
    line-height: 28px;
}

/* Pilares */

.boxPilares {
    float: left;
    width: 100%;
    padding: 70px 0;
}

.boxPilares figure img {
    width: 100%;
    float: left;
    border-radius: 12px;
}

.boxPilares .boxTextos {
    padding-left: 50px;
}

.boxPilares .boxTextos ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
}

.boxPilares .boxTextos ul li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.boxPilares .boxTextos ul li span {
    color: #322AA2;
    margin: 0 0 0 10px;
    font-size: 13px;
    line-height: 20px;
}

/* Atuação */

.boxAtuacao {
    float: left;
    width: 100%;
    background-color: #E8F2FC;
    padding: 70px 0;
}

.boxAtuacao figure img {
    width: 100%;
    float: left;
    border-radius: 12px;
}

.boxAtuacao .boxTexto {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.boxAtuacao .boxTextos ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
}

.boxAtuacao .boxTextos ul li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.boxAtuacao .boxTextos ul li span {
    color: #322AA2;
    margin: 0 0 0 10px;
    font-size: 13px;
    line-height: 20px;
}

@media (max-width: 1000px) {

    /* Pilares */

    .boxPilares .col-sm-5,
    .boxPilares .col-sm-7 {
        float: left;
        width: 100%;
    }

    .boxPilares figure {
        margin-bottom: 30px;
    }

    .boxPilares figure img {
        width: 100%;
    }

    .boxPilares .boxTextos {
        padding-left: 15px;
    }

    /* Atuação */

    .boxAtuacao .container {
        display: flex;
        flex-direction: column-reverse;
    }

    .boxAtuacao .col-sm-5,
    .boxAtuacao .col-sm-7 {
        float: left;
        width: 100%;
    }

    .boxAtuacao figure {
        margin-bottom: 30px;
    }

    .boxAtuacao figure img {
        width: 100%;
    }

    .boxAtuacao .boxTextos {
        padding-left: 15px;
    }

}

@media (max-width: 768px) {

    /* Bloco Inicial */

    .blocoInicial {
        padding: 40px 0 0 0;
    }

    .blocoInicial .container {
        flex-direction: column;
        align-items: center;
    }

    .blocoInicial figure {
        margin-top: 0;
    }

    /* Frase Destaque */

    .fraseDestaque p {
        max-width: 100%;
        font-size: 15px;
        line-height: 25px;
    }

    /* Pilares */

    .boxPilares {
        padding: 40px 0;
    }

    .boxPilares .boxTextos ul {
        grid-template-columns: repeat(1, 1fr);
    }

    /* Atuação */

    .boxAtuacao {
        padding: 40px 0;
    }

    .boxAtuacao .boxTextos ul {
        grid-template-columns: repeat(1, 1fr);
    }

}