#paginaNoticias {
    float: left;
    width: 100%;
}

/* Bloco Inicial */

.blocoInicial {
    float: left;
    width: 100%;
    background: url('../images/bg-topo.jpg') center center no-repeat;
    background-size: cover;
    padding: 170px 0 80px 0;
}

.blocoInicial .col-sm-6 {
    padding: 0 15px;
}

.blocoInicial .preTitulo {
    color: #AAAAAA;
    float: left;
    width: 100%;
    font-size: 13px;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    font-weight: 500;
}

.blocoInicial h1 {
    color: #444444;
    float: left;
    width: 100%;
    font-size: 30px;
    line-height: 42px;
    font-weight: 500;
    margin: 0 0 30px 0;
}

.blocoInicial h1 strong {
    color: #EF373E;
}

.blocoInicial p {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

/* Filtros */

.boxFiltros {
    float: left;
    width: 100%;
    padding: 50px 0;
}

.boxFiltros .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.boxFiltros select {
    height: 45px;
    width: 300px;
    border-radius: 10px;
    padding: 0 15px;
    border: solid 1px #061021;
    font-size: 14px;
}

.boxFiltros form {
    width: 300px;
    position: relative;
}

.boxFiltros form input {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 14px;
    border: solid 1px #061021;
}

.boxFiltros form button {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    height: 45px;
    border: 0;
    background: none;
    width: 45px;
}

.boxFiltros form button svg {
    width: 20px;
    fill: #EF373E;
}

/* Listagem de Posts */

.listagemDePosts {
    float: left;
    width: 100%;
}

.listagemDePosts .container {
    display: flex;
    align-items: flex-start;
}

.listagemDePosts .col-sm-9,
.listagemDePosts .col-sm-3 {
    padding: 0 15px;
}

.listagemDePosts .listaPosts {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0 0 60px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

/* Demo Rápida */

.boxLinkDemoRapida {
    float: left;
    width: 100%;
    padding: 70px 0;
}

.boxLinkDemoRapida .boxBg {
    float: left;
    width: 100%;
    background: url('../images/bg-topo.jpg') top right no-repeat;
    background-size: cover;
    border-radius: 40px;
    padding: 50px;
    text-align: center;
}

.boxLinkDemoRapida .boxBg .preTitulo {
    color: #717680;
    float: left;
    width: 100%;
    font-size: 13px;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: center;
}

.boxLinkDemoRapida .boxBg h2 {
    color: #444444;
    float: left;
    width: 100%;
    font-size: 30px;
    line-height: 42px;
    font-weight: 600;
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
}

.boxLinkDemoRapida .boxBg a {
    color: #fff;
    background-color: #EF373E;
    border-radius: 10px;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.1s linear;
    font-weight: 600;
    display: inline-block;
}

.boxLinkDemoRapida .boxBg a:hover {
    transform: scale(1.03);
}

@media screen and (max-width: 1000px) {

    #paginaNoticias .container {
        width: 100%;
        max-width: 100%;
    }

    /* Bloco Inicial */

    .blocoInicial .col-sm-5 {
        float: left;
        width: 100%;
        padding: 0 25px;
    }

    /* Listagem de Posts */

    .listagemDePosts .listaPosts {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 768px) {

    /* Bloco Inicial */

    .blocoInicial {
        padding: 130px 0 30px 0;
    }

    .blocoInicial h1 {
        font-size: 24px;
        line-height: 34px;
        margin: 0 0 25px 0;
    }

    /* Filtros */

    #paginaNoticias .container {
        flex-direction: column;
    }

    .boxFiltros select {
        width: 100%;
    }

    .boxFiltros form {
        width: 100%;
        margin-top: 10px;
    }

    /* Listagem */

    .listagemDePosts .col-sm-9,
    .listagemDePosts .col-sm-3 {
        float: left;
        width: 100%;
    }

    .listagemDePosts .col-sm-3 {
        margin-top: 40px;
    }

    /* Link Demo Rápida */

    .boxLinkDemoRapida {
        padding: 50px 0;
    }

    .boxLinkDemoRapida .container {
        padding: 0 20px!important;
        float: left;
        width: 100%;
    }

    .boxLinkDemoRapida .boxBg {
        padding: 30px 20px;
    }

    .boxLinkDemoRapida .boxBg h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .boxLinkDemoRapida .boxBg a {
        width: 100%;
    }

}

@media screen and (max-width: 450px) {

    /* Listagem de Posts */

    .listagemDePosts .listaPosts {
        grid-template-columns: repeat(1, 1fr);
    }

}