.boxItensInclusos {
    float: left;
    width: 100%;
    background-color: #0F1A2A;
    padding: 0 0 70px 0;
}

.boxItensInclusos h2 {
    float: left;
    width: 100%;
    color: #fff;
    font-weight: bold;
    margin: 0 0 60px 0;
    font-size: 26px;
    text-align: center;
    line-height: 36px;
}

.boxItensInclusos h2 strong {
    color: #DCB24C;
}

.boxItensInclusos .boxBaixo {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Menu Lateral */

.boxItensInclusos .menuLateral .divAuto {
    float: left;
    width: 100%;
    overflow: auto;
}

.boxItensInclusos .menuLateral ul {
    float: left;
    width: 100%;
    padding: 15px;
    margin: 0;
    background-color: #1E2A3B;
    border-radius: 16px;
}

.boxItensInclusos .menuLateral ul li {
    float: left;
    width: 100%;
    list-style: none;
    color: #F1F4F9;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.1s linear;
}

.boxItensInclusos .menuLateral ul li + li {
    margin-top: 5px;
}

.boxItensInclusos .menuLateral ul li.active,
.boxItensInclusos .menuLateral ul li:hover {
    background-color: #BC7B00;
}

/* Conteúdo */

.boxItensInclusos .boxImagens ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
}

.boxItensInclusos .boxImagens ul li {
    float: left;
    width: 100%;
    text-align: center;
}

.boxItensInclusos .boxImagens ul li p {
    float: left;
    width: 100%;
    color: #fff;
    font-size: 20px;
    margin: 0 0 50px 0;
    font-weight: 600;
}

.boxItensInclusos .boxImagens ul li figure img {
    height: auto;
}

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

    .boxItensInclusos h2 {
        font-size: 22px;
        line-height: 32px;
        margin: 0 0 40px 0;
    }

    .boxItensInclusos h2 br {
        display: none;
    }

    .boxItensInclusos .boxBaixo {
        flex-direction: column;
    }

    .boxItensInclusos .boxBaixo .col-sm-3,
    .boxItensInclusos .boxBaixo .col-sm-9 {
        float: left;
        width: 100%;
        flex-basis: 100%;
        padding: 0;
        max-width: 100%;
    }

    .boxItensInclusos .boxBaixo .col-sm-3 {
        overflow: hidden;
    }

    .boxItensInclusos .menuLateral ul {
        min-width: 2330px;
        padding: 10px;
    }

    .boxItensInclusos .menuLateral ul li {
        width: auto;
    }

    .boxItensInclusos .menuLateral ul li + li {
        margin: 0 0 0 5px!important;
    }

    .boxItensInclusos .boxImagens ul li p {
        font-size: 16px;
        margin: 0 0 30px 0;
    }

    .boxItensInclusos .boxBaixo .boxImagens {
        margin-top: 40px;
    }

}