.destaque{
    width: 100%;
    background-image: url(../imagens/blog/bg1.png);
    background-size: auto;
    background-position: top left;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.destaque .container{
    gap: 20px;
}
.destaque .box-maior{
    max-width: 650px;
    width: 100%;
}
.destaque .box-maior .box{
    width: 100%;
    border-radius: 22px;
    border: 1px solid #00000033;
}
.destaque .box-maior .box .img{
    display: flex;
    width: 100%;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    overflow: hidden;
}
.destaque .box-maior .box .img img{
    width: 100%;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    transition: ease .3s;
}
.destaque .box-maior .box .texto{
    width: 100%;
    padding: 20px;
}
.destaque .box-maior .box .texto span{
    color: #20343ea3;
}
.destaque .box-maior .box .texto h4{
    color: var(--primaria);
}
.destaque .box-maior .box .texto p{
    margin-top: 20px;
}
.destaque .box-menor{
    max-width: 650px;
    width: 100%;
    gap: 20px;
}
.destaque .box-menor .box{
    width: 100%;
    border-radius: 22px;
    border: 1px solid #00000033;
}
.destaque .box-menor .box .img{
    display: flex;
    width: 100%;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    overflow: hidden;
}
.destaque .box-menor .box .img img{
    width: 100%;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    transition: ease .3s;
}
.destaque .box-menor .box .texto{
    width: 100%;
    padding: 20px;
    justify-content: center;
}
.destaque .box-menor .box .texto span,
.destaque .box-menor .box .texto a{
    color: #20343ea3;
}
.destaque .box-menor .box .texto h4{
    color: var(--primaria);
    margin-bottom: 20px;
}


.conteudo{
    width: 100%;
    background-image: url(../imagens/blog/bg2.png);
    background-size: auto;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}
.conteudo .container{
    gap: 50px;
}
.conteudo .topo{
    width: 100%;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}
.conteudo .topo .h2{
    max-width: 350px;
    width: 100%;
}
.conteudo .topo .categorias{
    max-width: 850px;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
}
.conteudo .topo .categorias::-webkit-scrollbar {
  height: 7px;
}
.conteudo .topo .categorias::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.conteudo .topo .categorias::-webkit-scrollbar-thumb {
  background: var(--cor-3);
}
.conteudo .topo .categorias::-webkit-scrollbar-thumb:hover {
  background: var(--cor-3);
}
.conteudo .topo .categorias a{
    text-align: center;
    min-width: 100px;
    min-height: 39px;
    padding: 10px 40px;
    border-radius: 5px;
    background-color: var(--cor-3);
    color: var(--primaria);
    flex-shrink: 0;
    white-space: nowrap;
    transition: ease .3s;
}
.conteudo .topo .categorias a:hover,
.conteudo .topo .categorias a.ativo{
    background-color: var(--cor-4);
    transition: ease .3s;
}
.conteudo .box-div{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: stretch;
    align-items: stretch;
    column-gap: 20px;
    row-gap: 20px;
}
.conteudo .box-div .box{
    width: 100%;
    border-radius: 22px;
    border: 1px solid #00000033;
}
.conteudo .box-div .box .img{
    display: flex;
    width: 100%;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    overflow: hidden;
    position: relative;
}
.conteudo .box-div .box .img img{
    width: 100%;
    border-top-right-radius: 22px;
    border-top-left-radius: 22px;
    transition: ease .3s;
}
.conteudo .box-div .box .img span{
    position: absolute;
    z-index: 10;
    left: 10px;
    top: 10px;
    border-radius: 50px;
    padding: 5px 20px;
    color: var(--primaria);
    background-color: var(--cor-2);
}
.conteudo .box-div .box .texto{
    width: 100%;
    padding: 20px;
}
.conteudo .box-div .box .texto span{
    color: #20343ea3;
}
.conteudo .box-div .box .texto h4{
    color: var(--primaria);
}
.conteudo .box-div .box .texto p{
    margin-top: 20px;
}
.conteudo .box-div .box .link{
    width: 100%;
    padding: 20px;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.conteudo .box-div .box .link a{
    max-width: 148px;
    width: 100%;
    min-height: 39px;
    text-align: center;
    padding: 10px 40px;
    border-radius: 5px;
    background-color: var(--cor-3);
    color: var(--primaria);
    flex-shrink: 0;
    white-space: nowrap;
    transition: ease .3s;
}
.conteudo .box-div .box .link a:hover{
    background-color: var(--cor-4);
    transition: ease .3s;
}


.box:hover .img img{
    transform: scale(1.1);
    transition: ease .3s;
} 


/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){

}

@media screen and (max-width: 1440px){
    .conteudo .topo .categorias{
        max-width: calc(100% - 400px);
    }
}

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

}

@media screen and (max-width: 1280px){
    
}

@media screen and (max-width: 1100px){
    .destaque,
    .conteudo{
        background-image: unset;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .destaque .container{
        flex-direction: column;
        align-items: center;
    }

    .conteudo .topo{
        flex-direction: column;
        gap: 20px;
    }
    .conteudo .topo .categorias{
        max-width: 100%;
    }
}

@media screen and (max-width: 800px){
    .conteudo .box-div{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 600px){
    .destaque .box-menor .box{
        flex-direction: column;
    }
    .destaque .box-menor .box .img img {
        width: 100%;
        object-fit: cover;
        border-top-left-radius: 22px;
        border-top-right-radius: 22px;
        border-bottom-left-radius: 0;
    }
}

@media screen and (max-width: 480px){
    .conteudo .box-div{
        grid-template-columns: 1fr;
    }
}

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

}

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

}