
.header{
    border-bottom: 1px solid #ffffff40;
}

/* FILTRO */
.filtros{
    width: 100%;
    background-color: var(--bg1);
    padding: 200px 0 50px;
}
.filtros .container{
    overflow: auto;
}
.filtros .container .links{
    max-width: 100%;
    overflow-x: auto;
    gap: 30px;
    display: flex;
    margin: 0 auto;
    padding-bottom: 30px;
}
.filtros .container .links::-webkit-scrollbar {
  height: 5px;
}
.filtros .container .links::-webkit-scrollbar-track {
  background: #ffffff40;
}
.filtros .container .links::-webkit-scrollbar-thumb {
  background: var(--verde);
}
.filtros .container .links::-webkit-scrollbar-thumb:hover {
  background: var(--verde);
}
.filtros .container .links a{
    color: #838BA1;
    font-family: var(--ff-secondary);
    transition: ease .3s;
}
.filtros .container .links a.ativo,
.filtros .container .links a:hover{
    color: var(--bg2);
    transition: ease .3s;
}

/* NOTICIAS */
.noticias{
    width: 100%;
    background-color: var(--bg2);
}
.noticias .container{
    gap: 50px;
}
.noticias .titulo{
    width: 100%;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
.noticias .titulo a{
    display: flex;
    align-items: center;
    font-family: var(--ff-secondary);
    font-weight: 600;
    gap: 15px;
}
.noticias .conteudo{
    width: 100%;
    gap: 49px;
}
.noticias .conteudo .box.vazio{
    width: 100%;
    justify-content: center;
}
.noticias .conteudo .box.vazio h3{
    font-size: 32px;
}
.noticias .conteudo .box{
    width: 384px;
    gap: 20px;
    transition: ease .3s;
}
.noticias .conteudo .box:hover{
    scale: 1.05;
    transition: ease .3s;
}
.noticias .conteudo .box .img{
    width: 100%;
    height: 268px;
}
.noticias .conteudo .box .img img{
    width: 100%;
    height: 268px;
    object-fit: cover;
    border-radius: 20px;
}
.noticias .conteudo .box .text{
    width: 100%;
    padding: 0 20px;
    gap: 20px;
    flex-direction: column;
}
.noticias .conteudo .box .text span{
    font-family: var(--ff-secondary);
    font-size: 14px;
    font-weight: 600;
}
.noticias .conteudo .box .text a{
    font-family: var(--ff-secondary);
    font-weight: 600;
    display: flex;
    gap: 15px;
    align-items: center;
}



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

}

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

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

}

@media screen and (max-width: 1300px){
    .noticias .conteudo .box{
        width: 30%;
    }
}


@media screen and (max-width: 1100px){
    .noticias .conteudo{
        gap: 46px;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .noticias .conteudo{
        gap: 30px;
    }
    .noticias .conteudo .box {
        width: 47%;
    }
}

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

@media screen and (max-width: 600px){
    .noticias .conteudo{
        gap: 50px;
    }
    .noticias .conteudo .box{
        width: 384px;
    }
}

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

}

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

}