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


.conteudo-blog{
	width: 100%;
}	
.conteudo-blog .meio{
	width: 100%;
	padding: 100px 0;
    word-break: break-word;
}
.conteudo-blog .meio .texto{
	width: 100%;
	margin: auto;
}
.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,
.conteudo-blog .meio .texto p{
    font-size: inherit;
}


.relacionados{
    width: 100%;
    padding: 0 0 100px 0;
}
.relacionados .container{
    gap: 75px;
}
.relacionados .blog-div{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: stretch;
    align-items: stretch;
    column-gap: 35px;
    row-gap: 35px;
}
.relacionados .box{
    max-width: 552px;
    width: 100%;
    height: fit-content;
    margin: auto;
    position: relative;
    align-content: flex-start;
    border-radius: 10px;
    background-color: #fff;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
    transition: ease .3s;
}
.relacionados .box .img,
.relacionados .box .img a,
.relacionados .box .img img{
    width: 100%;
    max-height: 307px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: transform .3s;
}
.relacionados .box .img a{
    overflow: hidden;
}
.relacionados .box:hover .img img{
    transform: scale(1.2);
    transition: transform .3s;
}
.relacionados .box .texto{
    display: flex;
    width: 100%;
    padding: 20px 20px 40px;
    gap: 30px;
}
.relacionados .box .texto .txt{
    display: flex;
    gap: 15px;
}
.relacionados .box .texto .txt span {
    width: fit-content;
    font-size: 20px;
    color: var(--sub-t);
}
.relacionados .box .texto .txt h5 {
    color: var(--titulo);
    font-size: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.relacionados .box .texto .txt a {
    margin-top: 10px;
    padding: 5px 0;
    width: fit-content;
}
.relacionados .box:hover .texto .txt a {
    background-color: var(--hover-1);
    padding: 5px 20px;
    border-radius: 5px;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
    transition: ease .3s;
}





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

@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){

}