.banner{
    width: 100%;
    position: relative;
    align-items: center;
}
.banner picture{
    height: 100%;
}
.banner picture:after{
    content: "";
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #00000082;
}
.banner picture,
.banner picture img{
    width: 100%;
    height: 145px;
    object-fit: cover;
    display: flex;
}


.conteudo-blog{
	width: 100%;
    background-color: var(--bg1);
    padding-bottom: 50px;
}	
.conteudo-blog .topo{
	width: 100%;
	padding: 100px 0 50px;
}
.conteudo-blog .topo .container{
	gap: 40px;
}
.conteudo-blog .topo .container .voltar{
    width: fit-content;
}
.conteudo-blog .topo .container .voltar i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    color: #fff;
    font-size: 30px;
    background: linear-gradient(to top, #4C254C, #944c94);
}
.conteudo-blog .topo .container .img{
	width: 100%;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 2px 1px 15px 3px rgba(0, 0, 0, 0.15);
}
.conteudo-blog .topo .container .img img{
    width: 100%;
    object-fit: contain;
    padding: 10px;
}
.conteudo-blog .topo .container .bottom{
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}
.conteudo-blog .topo .container .bottom .redes{
	gap: 25px;
}
.conteudo-blog .topo .container .bottom .redes a{
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	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: var(--primaria);
	font-size: 27px;
}
.conteudo-blog .meio{
	width: 100%;
}
.conteudo-blog .meio .texto{
	width: 100%;
}
.conteudo-blog .meio .texto h2{
    background: linear-gradient(to top, #4C254C, #944c94);
    -webkit-background-clip: text;
     -webkit-text-fill-color: transparent; 
    background-clip: text;
    color: transparent;
}
.conteudo-blog .meio .texto ul{
    list-style: inside;
}
.conteudo-blog .meio .texto ol{
    list-style-position: inside;
}
.conteudo-blog .meio .texto img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}


.relacionados{
    width: 100%;
    background-color: var(--bg1);
    position: relative;
}
.relacionados .container{
    gap: 50px;
    position: relative;
}
.relacionados .titulo{
    width: 100%;
    justify-content: center;
    text-align: center;
}
.relacionados .blog-slider{
    width: 100%;
}
.relacionados .blog-slider .slick-track{
    padding: 10px 0;
}
.relacionados .blog-slider .slick-dotted.slick-slider{
    margin-bottom: 0;
}
.relacionados .blog-slider .slick-dots{
    bottom: 0px;
    position: relative;
    margin: 55px auto 0 0;
    display: flex;
}
.relacionados .blog-slider .slick-dots li button:before{
    font-size: 20px;
    color: #eee!important;
}
.relacionados .blog-slider .slick-dots li.slick-active button:before{
    color: #fff!important;
}
.relacionados .blog-slider .box{
    width: 95%;
    height: 100%;
    margin: auto;
    position: relative; 
    background-color: #fff;
    box-shadow: 2px 0px 10px 3px rgba(0, 0, 0, 0.07);
}
.relacionados .blog-slider .box .img{
    width: 100%;
    height: 217px; 
    position: relative;
    overflow: hidden;
}
.relacionados .blog-slider .box .img a,
.relacionados .blog-slider .box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.relacionados .blog-slider .box:hover .img img{
    transform: scale(1.1);
    transition: transform .5s;
}
.relacionados .blog-slider .box .texto{
    width: 100%;
    padding: 30px 30px 10px;
    gap: 20px;
}
.relacionados .blog-slider .box .texto p{
    text-transform: uppercase;
}
.relacionados .blog-slider .box .texto h4{
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 18px; 
}
.relacionados .blog-slider .box .texto a{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    border-top: 1px solid #6b6b6b;
    border-bottom: 1px solid transparent;
    padding-top: 20px;
    margin-top: auto;
    font-size: 18px;
    text-transform: uppercase;
    transition: ease .3s;
}
.relacionados .container .arrow{
   	position: relative;
    display: flex;
    gap: 10px;
    margin-top: -25px;
    margin: 0 auto;
}
.relacionados .container .arrow i{
    color: #4C254C;
    font-size: 25px;
    transition: transform .5s;
}
.relacionados .container .arrow i:hover{
    transform: scale(1.2);
    transition: transform .5s;
}


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

@media screen and (max-width: 800px){
    .conteudo-blog .topo{
        padding: 50px 0;
    }
}

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

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

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

}