.leiaBtn{
    width: fit-content;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--cor-2);
    padding-bottom: 10px;
    text-decoration: none;
    transition: ease .3s;
}
.leiaBtn:hover{
    color: var(--cor-2);
    transition: ease .3s;
}

.banner{
    width: 100%;
    position: relative;
    padding-top: 84px;
}
.banner .picture{
    display: flex;
    width: 100%;
}
.banner .picture img{
    width: 100%;
}
.banner .picture img.desktop{
    width: 100%;
    object-fit: cover;
}
.banner .picture img.mobile{
    display: none;
    width: 100%;
    object-fit: contain;
}
.banner .absolute-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 84px;
}
.banner .absolute-container .container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}
.banner .absolute-container .container h2{
    font-size: 48px;
}
.banner .absolute-container .container span{
    width: 63px;
    height: 1px;
    background-color: var(--cor-2);
    margin: auto;
    display: flex;
}


/* DESTAQUE */
.destaque{
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}
.destaque::before {
    content: "";
    width: 100%;
    height: 114px;
    background-image: url(../imagens/blog/bg1.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top: -25px;
}
.destaque .container{
    gap: 50px;
}
.destaque .titulo{
    width: 100%;
}
.destaque .titulo h2{
    font-weight: 500;
}
.destaque .blog-destaque{
    width: 100%;
    justify-content: space-between;
    gap: 50px 0;
}

/* DESTAQUE PRINCIPAL */
.destaque .blog-maior{
    width: 55.68%;
}
.destaque .blog-maior .box{
    width: 100%;
    border-radius: 10px;
}
.destaque .blog-maior .box .box-img{
    width: 100%;
}
.destaque .blog-maior .box .box-img a{
    width: 100%;
    height: 408px;
}
.destaque .blog-maior .box .box-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.destaque .blog-maior .box .box-text{
    width: 100%;
    padding: 30px 0px;
    gap: 20px;
}
.destaque .blog-maior .box .box-text .title{
    font-size: 24px;
    line-height: 1.2;
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; 
   -webkit-box-orient: vertical;
}

/* DESTAQUE LATERAL */
.destaque .blog-menor{
    width: 42%;
    flex-direction: column;
    gap: 33px;
}
.destaque .blog-menor .box{
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
}
.destaque .blog-menor .box .box-img{
    width: 191px;
    height: 112px;
}
.destaque .blog-menor .box .box-img a,
.destaque .blog-menor .box .box-img img{
    width: 191px;
    height: 112px;
    object-fit: contain;
    border-radius: 10px;
}
.destaque .blog-menor .box .box-text{
    max-width: calc(100% - 211px);
    width: 100%;
    padding: 10px 20px;
    gap: 20px;
}
.destaque .blog-menor .box .box-text .title{
    font-size: 20px;
    line-height: 1.2;
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; 
   -webkit-box-orient: vertical;
}

/* CATEGORIAS DO BLOG */
.conteudo{
    width: 100%;
}
.conteudo .container{
    gap: 75px;
    padding: 0px 0 100px;
}
.conteudo .categorias{
    width: 100%;
    position: relative;
}
.conteudo .categorias::before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #eee;
}
.conteudo .categorias .categorias-slider{
    width: 100%;
    position: relative;
}
.conteudo .categorias .categorias-slider .slick-track{
    margin: 0;
}
.conteudo .categorias .categorias-slider .box{
    display: flex;
    justify-content: center;
    text-align: center;
    color: var(--cor-3);
    font-size: 18px;
    padding-bottom: 20px;
    transition: ease .3s;
    position: relative;
    z-index: 1;
}
.conteudo .categorias .categorias-slider .box.active,
.conteudo .categorias .categorias-slider .box:hover{
    font-weight: 600;
    color: var(--primaria);
    border-bottom: 1px solid var(--cor-2);
    transition: ease .3s;
}
.conteudo .categoria-box{
    width: 100%;
    justify-content: space-evenly;
    gap: 49px;
}
.conteudo .categoria-box .box{
    width: 384px;
}
.conteudo .box .box-img{
    width: 100%;
}
.conteudo .box .box-img img{
    width: 100%;
    border-radius: 10px;
}
.conteudo .box .box-text{
    width: 100%;
    padding: 30px 0px;
    gap: 20px;
}
.conteudo .box .box-text .title{
    font-size: 20px;
    line-height: 1.2;
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; 
   -webkit-box-orient: vertical;
}


/* 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: 1280px){

}

@media screen and (max-width: 1100px){
    .banner .picture img{
        height: 464px;
        object-fit: cover;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .destaque .blog-maior,
    .destaque .blog-menor{
        max-width: 600px;
        width: 100%;
        margin: auto;
    }
}

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

@media screen and (max-width: 600px){
    .banner .picture img.desktop{
        display: none;
    }
    .banner .picture img.mobile{
        display: flex;
        height: fit-content;
    }
}

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

}

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

}