.banner{
    width: 100%;
    min-height: 400px;
    background-color: var(--bg1);
    z-index: 10;
    position: relative;
}
.banner .container{
    align-self: center;
    justify-content: center;
    padding: 50px 0;
}
.banner .texto{
    width: 100%;
    align-content: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}
.banner .texto h2{
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}
.banner .texto p,
.banner .texto p span{
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: #fff;
}


.conteudo-blog{
	width: 100%;
}	
.conteudo-blog .meio{
	width: 100%;
	padding: 100px 0;
    word-break: break-word;
}
.conteudo-blog .meio .texto{
	width: 100%;
	margin: auto;
}


.relacionados{
    width: 100%;
}
.relacionados .container{
    gap: 30px;
}
.relacionados .titulo{
    width: 100%;
    justify-content: center;
    text-align: center;
}
.relacionados .titulo h2{
	font-size: 48px;
	font-weight: 800;
}
.relacionados .titulo h2{
	color: var(--cor-3);
}
.relacionados .blog-div{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: stretch;
    align-items: stretch;
    column-gap: 35px;
    row-gap: 35px;
}
.relacionados .blog-div .box{
    width: 100%;
    position: relative;
    gap: 20px;
}
.relacionados .blog-div .box .img{
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
}
.relacionados .blog-div .box .img img{
    width: 100%;
    border-radius: 10px;
    transition: transform .4s;
}
.relacionados .blog-div .box .texto{
    width: 100%;
    gap: 20px;
    position: relative;
}
.relacionados .blog-div .box .texto h3{
    font-size: 26px;
    color: var(--primaria);
    font-weight: 700;
    font-family: var(--fonte-1);
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; 
}
.relacionados .blog-div .box .texto p{
    font-size: 16px;
    color: #3D3D3D;
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; 
    margin-bottom: 50px;
}
.relacionados .blog-div .box .texto a{
    color: #9F6C5D;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    bottom: 0;
}
.box:hover .img img{
    transform: scale(1.15);
    transition: transform .4s;
}
.box .texto span{
    width: fit-content;
    padding: 5px 20px;
    border-radius: 5px;
    background-color: #F0DFC8;
    font-size: 14px;
    font-weight: 700;
    color: #3D3D3D;
}
.box .texto a{
    color: #9F6C5D;
    font-size: 16px;
    font-weight: 600;
}

/* 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){
    .relacionados .blog-div{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .relacionados .blog-div .box{
        max-width: 400px;
    }
}

@media screen and (max-width: 800px){
    .banner .texto h2{
        font-size: 44px;
    }
}

@media screen and (max-width: 600px){
    .banner .texto h2
    {
        font-size: 40px;
    }
}

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

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

}