.buscaPorAreas {
    float: left;
    width: 100%;
    /* background: url('../img/bg-busca-por-areas.png') center center #fff no-repeat; */
    background-size: auto 100%;
    padding: 70px 0;
}

.buscaPorAreas .container {
    position: relative;
}

.buscaPorAreas h2 {
    color: #3D3D3D;
    text-align: center;
    float: left;
    width: 100%;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.buscaPorAreas .subtitulo {
    color: #3D3D3D;
    text-align: center;
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 50px 0;
}

.buscaPorAreas .boxSeletor {
    float: left;
    width: 100%;
    margin-bottom: 40px;
}

.buscaPorAreas .boxSeletor .tituloBloco {
    float: left;
    color: #3D3D3D;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 20px 0;
}

.buscaPorAreas .boxSeletor .boxBotoes {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.buscaPorAreas .boxSeletor .boxBotoes button {
    color: #AE0A0B;
    border-radius: 100px;
    border: solid 1px #AE0A0B;
    background: none;
    padding: 7px 20px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    margin-bottom: 10px;
    margin-right: 10px;
}

.buscaPorAreas .boxSeletor .boxBotoes button:hover,
.buscaPorAreas .boxSeletor .boxBotoes button.active {
    background-color: #AE0A0B;
    color: #fff;
}

.buscaPorAreas #listaProdutos {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.buscaPorAreas #listaProdutos > *:only-child {
    grid-column: 1 / -1;
    max-width: 50%;
    width: 100%;
    margin: 0 auto;
}

.buscaPorAreas #listaProdutos li {
    list-style: none;
    background-color: #FFFFFF;
    border-radius: 8px;
    border: solid 1px #CCCCCC;
    float: left;
    width: 100%;
    padding: 20px;
}

.buscaPorAreas #listaProdutos li .boxHeader {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buscaPorAreas #listaProdutos li .boxHeader .fase {
    color: #444444;
}

.buscaPorAreas #listaProdutos li .boxHeader .tipo {
    display: flex;
    align-items: center;
}

.buscaPorAreas #listaProdutos li .boxHeader .tipo span {
    color: #444444;
    margin-left: 10px;
}

.buscaPorAreas #listaProdutos li .tituloCard {
    float: left;
    width: 100%;
    color: #121520;
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0;
}

.buscaPorAreas #listaProdutos li .description {
    float: left;
    width: 100%;
    margin: 0 0 30px 0;
}

.buscaPorAreas #listaProdutos li .boxPrecos {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.buscaPorAreas #listaProdutos li .boxPrecos .precoDe {
    color: #999999;
    font-size: 16px;
    text-decoration: line-through;
    margin: 0;
}

.buscaPorAreas #listaProdutos li .boxPrecos .precoPor {
    color: #444444;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
}

.buscaPorAreas #listaProdutos li .boxPrecos .precoCartao {
    color: #444444;
    font-size: 14px;
    margin: 0 0 25px 0;
}

.buscaPorAreas #listaProdutos li .boxPrecos .linkCard {
    background: #AE0A0B;
    text-align: center;
    border-radius: 4px;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

/* Sem Resultado */

.buscaPorAreas #listaProdutos li.semResultados {
    text-align: center;
    margin-top: 50px;
}

.buscaPorAreas #listaProdutos li.semResultados span {
    font-size: 16px;
    font-weight: 600;
}

/* Loader */

.buscaPorAreas #loaderBuscaPorArea {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: none;
}

.buscaPorAreas #loaderBuscaPorArea .boxFlex {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buscaPorAreas #loaderBuscaPorArea .boxFlex img {
    width: 150px;
}

@media only screen and (max-width: 768px) {

    .buscaPorAreas {
        padding: 50px 0;
    }

    .buscaPorAreas .subtitulo {
        margin: 0 0 35px 0;
    }

    .buscaPorAreas #listaProdutos {
        grid-template-columns: repeat(1, 1fr);
    }

    .buscaPorAreas #listaProdutos > *:only-child {
        max-width: max-content;
        grid-column: initial;
    }

}