.hidden {
    display: none!important;
}
.conteudo{
    width: 100%;
    background-image: url("../imagens/blog/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0 200px;
}
.conteudo .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    gap: 130px;
}


.blog{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.blog .titulo{
    width: 100%;
    display: flex;
}
.blog-content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.blog-content .box{
    width: 400px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #ffffff96;
    border: 1px solid var(--text-color6);
    border-radius: 10px;
    gap: 30px;
}
.blog-content .box .box-img{
    width: 100%;
    height: 340px;
    display: flex;
}
.blog-content .box .box-img img{
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
}
.blog-content .box .box-text{
    width: 100%;
    height: 178px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.blog-content .box .box-text span{
    font-weight: 600;
}
.blog-content .box .box-text p{
    color: #858585;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
}
.blog-content .box .box-text a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: var(--btn-green);
    border-radius: 50px;
    font-weight: 600;
    transition: ease .3s;
    margin-top: auto;
}
.blog-content .box .box-text a:hover{
    background-color: var(--btn-green1);
    transition: ease .3s;
}
.blog-content .ver-todos{
    width: 100%;
    display: flex;
    margin-top: 30px;
}
.blog-content .ver-todos .todosBtn{
    width: 200px;
    margin: 0 auto;
    padding: 15px;
    background-color: var(--btn-green);
    border-radius: 50px;
    font-weight: 600;
    transition: ease .3s;
    text-align: center;
}
.blog-content .ver-todos .todosBtn:hover{
    background-color: var(--btn-green1);
    transition: ease .3s;
}


.footer-banner{
    height: 36vw;
    background-color: transparent;
    position: relative;
}
.footer-banner img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: -65px;
}
.main-footer{
    padding-top: 0px;
}
/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){

}

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

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

@media screen and (max-width: 1280px){
    .blog-content .box{
        width: 31%;
    }

}

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

}

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

/* MOBILE */
@media screen and (max-width: 1000px){
    .blog .titulo{
        justify-content: center;
        text-align: center;
    }
    .blog-content{
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }
    .blog-content .box{
        width: 336px;
    }
}

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

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

}

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

}