.header{
    border-bottom: 1px solid #c1c1c1;
}
.formulario-footer{
    display: none;
}


.conteudo-blog{
	width: 100%;
}	
.conteudo-blog .topo{
	width: 100%;
    min-height: 350px;
	background-color: var(--bg1);
	padding: 50px 0;
    justify-content: center;
}
.conteudo-blog .topo .container{
	gap: 20px;
}
.conteudo-blog .topo .container h2{
    width: 100%;
	line-height: 1.1;
}
.conteudo-blog .topo .container .bottom{
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}
.conteudo-blog .topo .container .bottom p span{
	font-size: 18px;
	font-weight: 600;
}
.conteudo-blog .topo .container .bottom .redes{
	gap: 10px;
}
.conteudo-blog .topo .container .bottom .redes a{
	width: 43px;
	height: 43px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #552E4B;
	transition: scale .3s;
}
.conteudo-blog .topo .container .bottom .redes a:hover{
	scale: 1.2;
	transition: scale .3s;
}
.conteudo-blog .topo .container .bottom .redes a i{
	color: #fff;
	font-size: 22px;
}
.conteudo-blog .meio{
	width: 100%;
	background-color: #fff;
	padding: 100px 0 150px;
    word-break: break-word;
}
.conteudo-blog .meio .texto{
	max-width: 1024px;
	width: 100%;
	margin: auto;
    list-style: inside;
}
.conteudo-blog .meio .texto img{
    max-width: 100%;
    object-fit: contain;
}
.conteudo-blog .meio .texto h2,
.conteudo-blog .meio .texto h3,
.conteudo-blog .meio .texto h4,
.conteudo-blog .meio .texto h5,
.conteudo-blog .meio .texto h6{
    font-size: revert;
}



.relacionados{
    width: 100%;
    padding: 100px 0;
    background-color: var(--bg1)
}
.relacionados .container{
    gap: 75px;
}
.relacionados .topo{
    width: 100%;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}
.relacionados .topo h2{
    font-weight: 700;
}
.relacionados .topo a{
    font-weight: 600;
}
.relacionados .blog-div{
    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;
    background-color: #fff;
    align-content: flex-start; 
    -webkit-box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.30);
    box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.30); 
}
.relacionados .blog-div .box .img,
.relacionados .blog-div .box .img a,
.relacionados .blog-div .box .img img{
    width: 100%;
    max-height: 307px;
    object-fit: cover;
    border-top-left-radius: 30px;
}
.relacionados .blog-div .box .texto{
    display: flex;
    width: 100%;
    padding: 20px 20px 40px;
    gap: 30px;
    background-color: #ffffff;
    border-bottom-right-radius: 30px;
}
.relacionados .blog-div .box .texto .txt{
    display: flex;
    gap: 15px;
}
.relacionados .blog-div .box .texto .txt span{
    width: fit-content;
    font-size: 16px;
    color: var(--primaria);
    font-weight: 600;
}
.relacionados .blog-div .box .texto .txt h6{
    color: #383838;
    font-size: 20px;
    font-weight: 700;
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
}
.relacionados .blog-div .box .texto .txt p{
    color: var(--cor-1);
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical; 
    font-size: 16px;
}


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

}

/* MOBILE */
@media screen and (max-width: 1000px){
    .relacionados .blog-div{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .relacionados .blog-div .box{
        max-width: 400px;
    }
}

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

@media screen and (max-width: 600px){
    .relacionados .topo{
        flex-direction: column;
    }
}

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

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

}