main{
	overflow: hidden;
}

.banner{
    width: 100%;
    height: 550px;
    position: relative;
}
.banner picture{
    width: 100%;
    height: 550px;
    display: flex;
}
.banner picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .absolute-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.banner .absolute-container .container{
    display: flex;
    align-items: self-end;
    padding: 80px 0;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}
.banner .absolute-container .container .text{
    gap: 40px;
    flex-direction: column;
}
.banner .absolute-container .container .text h1{
    font-size: 4.5vw;
    color: #fff;
}
.banner .absolute-container .container .text span{
    font-size: 0.8vw;
    color: #ffffffc9;
    text-transform: uppercase;
}


.blog{
    width: 100%;
    background-color: var(--bg1);
}
.blog .container{
    width: 1100px;
    gap: 50px;
}

.blog-mais{
    width: 100%;
    background-color: var(--bg1);
}
.blog-mais .container{
    gap: 50px;
}
.blog-mais .titulo{
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.blog-mais .titulo h2{
    font-weight: 500;
}
.blog-mais .titulo a{
    background-color: #000;
    padding: 10px 20px;
    color: #fff;
    border-radius: 50px;
}
.blog-mais .conteudo{
    width: 100%;
    justify-content: space-between;
}
.blog-mais .conteudo .box{
    width: 49%;
    position: relative;
}
.blog-mais .conteudo .box img{
    width: 100%;
}
.blog-mais .conteudo .box span.filtro{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%, rgba(255,255,255,0) 100%);
}
.blog-mais .conteudo .box .absolute{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 40px;
    z-index: 2;
}
.blog-mais .conteudo .box .absolute .texto{
    width: 760px;
    gap: 25px;
    align-self: self-end;
}
.blog-mais .conteudo .box .absolute .texto p{
    color: #ffffffed;
}
.blog-mais .conteudo .box .absolute .texto h3{
    color: #fff;
}
.blog-mais .conteudo .box .absolute .texto ul{
    width: 100%;
    list-style: disc;
    list-style-position: inside;
}
.blog-mais .conteudo .box .absolute .texto li{
    color: #6A6A6A;
}



@media screen and (min-width: 2000px) {
	.banner .absolute-container .container .text h1{
	    font-size: 75px;
	}
	
}
/* 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: 1150px){
	.contato .info {
	    width: 48%;
	}
    .blog .container{
        width: 90%;
    }
    .blog-mais .conteudo .box{
        height: 400px;
    }
    .blog-mais .conteudo .box img{
        height: 100%;
        object-fit: cover;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .blog-mais .conteudo{
        gap: 50px;
        justify-content: center;
    }
    .blog-mais .conteudo .box{
        width: 400px;
        height: 500px;
    }
}

@media screen and (max-width: 800px){
    .banner .absolute-container .container .text h1{
        font-size: 50px;
    }
    .banner .absolute-container .container .text span{
        font-size: 20px;
    }
}

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

@media screen and (max-width: 400px){
    .blog-mais .conteudo .box{
        width: 100%;
    }
}

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

}