header{
    box-shadow: 0px 5px 8px 4px rgba(0, 0, 0, 0.1);
}


.conteudo{
    width: 100%;
    padding: 50px 0;
    position: relative;
    background-image: url(../imagens/blog/bg1.png);
    background-size: auto;
    background-position: top left;
    background-repeat: no-repeat;
}
.conteudo .topo{
    width: 100%;
    position: relative;
    z-index: 10;
    gap: 30px;
    color: var(--primaria);
}
.conteudo .topo h1{
    font-size: 60px;
}
.conteudo .topo img{
    width: 100%;
    border-radius: 20px;
}
.conteudo .topo .btn-voltar{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FDF11E;
    color: var(--primaria);
    border-radius: 5px;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
}
.conteudo .texto{
    width: 100%;
    padding: 60px 0;
    position: relative;
    z-index: 10;
    color: var(--primaria);
}
.conteudo .texto ol{
    list-style-position: inside;
}
.conteudo .texto ul{
    list-style: disc;
    list-style-position: inside;
}
.conteudo .texto p{
    padding-top: 10px;
}


.galeria{
    width: 100%;
    position: relative;
    padding-bottom: 100px;
    background-image: url(../imagens/blog/bg2.png);
    background-size: auto;
    background-position: bottom right;
    background-repeat: no-repeat;
}
.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-radius: 5px;
    color: var(--primaria);
    background-color: var(--cor-3);
    transition: ease .3s;
}
.galeria .mobile i:hover,
.galeria .desktop i:hover{
    background-color: var(--cor-4);
    transition: ease .3s;
}
.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%;
    padding: 50px 0;
    background: var(--main-3);
}
.relacionados .titulo{
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.relacionados .titulo h2{
    color: #fff;
}
.relacionados .titulo h2 strong{
    color: var(--cor-2);
}
.relacionados .box-div{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.relacionados .box-div .box{
    max-width: calc(100% / 3 - 14px);
    width: 100%;
    border-radius: 22px;
    background-color: #fff;
}
.relacionados .box-div .box .img{
    display: flex;
    width: 100%;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    overflow: hidden;
    position: relative;
}
.relacionados .box-div .box .img img{
    width: 100%;
    border-top-right-radius: 22px;
    border-top-left-radius: 22px;
    transition: ease .3s;
}
.relacionados .box-div .box .img span{
    position: absolute;
    z-index: 10;
    left: 10px;
    top: 10px;
    border-radius: 50px;
    padding: 5px 20px;
    color: var(--primaria);
    background-color: var(--cor-2);
}
.relacionados .box-div .box .texto{
    width: 100%;
    padding: 20px;
}
.relacionados .box-div .box .texto span{
    color: #20343ea3;
}
.relacionados .box-div .box .texto h4{
    color: var(--primaria);
}
.relacionados .box-div .box .texto p{
    margin-top: 20px;
}
.relacionados .box-div .box .link{
    width: 100%;
    padding: 20px;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.relacionados .box-div .box .link a{
    max-width: 148px;
    width: 100%;
    min-height: 39px;
    text-align: center;
    padding: 10px 40px;
    border-radius: 5px;
    background-color: var(--cor-3);
    color: var(--primaria);
    flex-shrink: 0;
    white-space: nowrap;
    transition: ease .3s;
}
.relacionados .box-div .box .link a:hover{
    background-color: var(--cor-4);
    transition: ease .3s;
}
.box:hover .img img{
    transform: scale(1.1);
    transition: ease .3s;
} 




/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){
    

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

@media screen and (max-width: 1440px){
    .conteudo .topo h1{
        font-size: 4vw;
    }
}

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

}

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

}

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

/* MOBILE */
@media screen and (max-width: 1000px){
    .conteudo,
    .galeria{
        background-image: unset;
    }
    .conteudo .topo h1{
        font-size: 40px;
    }
}

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

    .relacionados .box-div{
        justify-content: center;
    }
    .relacionados .box-div .box{
        max-width: 300px;
    }
}

@media screen and (max-width: 600px){
    .conteudo .topo h1{
        font-size: 36px;
    }
}

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

}

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

}

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

}