.banner{
    width: 100%;
    height: 107px;
    overflow: hidden;
    position: relative;
    background-image: url(../imagens/blog/bg2.png), url(../imagens/blog/bg1.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right bottom, left top;
    background-size: auto;
    justify-content: center;
}	


.conteudo{
    width: 100%;
    padding: 50px 0;
    position: relative;
}
.conteudo .topo{
    width: 100%;
    position: relative;
    z-index: 10;
    gap: 30px;
}
.conteudo .topo h1{
    line-height: 1;
}
.conteudo .topo img{
    width: 100%;
    border-radius: 20px;
}
.conteudo .topo .btn-voltar{
    position: absolute;
    top: 10px;
    left: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #00000033;
    border-radius: 50%;
    color: var(--cor-1);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}
.conteudo .texto{
    width: 100%;
    padding: 60px 0;
    position: relative;
    z-index: 10;
}
.conteudo .texto ol{
    list-style-position: inside;
}
.conteudo .texto ul{
    list-style: disc;
    list-style-position: inside;
}
.conteudo .texto p,
.conteudo .texto a,
.conteudo .texto li{
    font-size: 14px;
}

.galeria{
    width: 100%;
    position: relative;
    padding-bottom: 50px;
    margin-top: -30px;
}
.galeria::after{
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 378px;
    background-color: var(--cor-1);
}
.galeria .container{
    align-items: center;
    position: relative;
    z-index: 10;
    gap: 30px;
}
.galeria .mobile{
    display: none;
    margin: 0 auto;
    gap: 20px;
}
.galeria .desktop{
    position: absolute;
    z-index: 10;
}
.galeria .mobile i,
.galeria .desktop i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: var(--cor-1);
    background-color: #fff;
}
.galeria .desktop.gal-prev{
    left: -70px;
}
.galeria .desktop.gal-next{
    right: -70px;
}
.galeria .galeria-slider{
    width: 100%;
}
.galeria .galeria-slider .box{
    width: 97%;
    height: 446px;
    margin: 0 auto;
}
.galeria .galeria-slider .box img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}


.relacionados{
    width: 100%;
}
.relacionados .container{
    gap: 50px;
}
.relacionados .titulo{
    width: 100%;
    justify-content: center;
    text-align: center;
}
.relacionados .blog-box{
    width: 100%;
    gap: 30px 15px;
}
.relacionados .blog-box .box{
    max-width: calc(100% - 66% - 19px);
    width: 100%;
    border: 1px solid #00000033;
    border-radius: 5px;
    padding-bottom: 20px;
}
.relacionados .blog-box .box .img{
    width: 100%;
    height: 314px;
    border-radius: 5px;
    overflow: hidden;
}
.relacionados .blog-box .box .img img{
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: ease .5s;
}
.relacionados .blog-box .box:hover .img img{
    transform: scale(1.2);
    transition: ease .5s;
}
.relacionados .blog-box .box .texto{
    width: 100%;
    padding: 20px;
    gap: 10px;
}
.relacionados .blog-box .box .texto p{
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; 
}
.relacionados .blog-box .box a.link{
    display: flex;
    gap: 10px;
    color: var(--cor-1);
    margin-top: auto;
    padding: 0 20px;
}


.paginacao{
    margin-top: 25px;
}


/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){
    .conteudo .topo .btn-voltar{
        position: relative;
        left: 0;
        top: 0;
    }

    .galeria .desktop.gal-prev {
        left: -50px;
    }
    .galeria .desktop.gal-next {
        right: -50px;
    }
}

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

}

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

}

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

}

@media screen and (max-width: 1100px){
    .galeria::after{
        height: 40vw;
    }
    .galeria .desktop{
        display: none!important;
    }
    .galeria .mobile{
        display: flex;
    }
    .galeria .galeria-slider .box{
        height: 35vw;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .banner .container{
        flex-direction: column;
        text-align: center;
    }

    .relacionados .blog-box .box{
        max-width: calc(100% - 50% - 15px);
    }
}

@media screen and (max-width: 800px){
    .galeria{
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 600px){
    .relacionados .blog-box{
        justify-content: center;
    }
    .relacionados .blog-box .box{
        max-width: 427px;
    }
}

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

}

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

}

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

}