.conteudo{
    width: 100%;
    padding: 100px 0;
    background-color: var(--bg3);
}
.conteudo .container{
    gap: 80px;
}
.conteudo .topo{
    width: 100%;
    gap: 80px;
}
.conteudo .topo .titulo{
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    gap: 30px;
}
.conteudo .topo .titulo span.categoria{
    background-color: var(--azul);
    padding: 7px 15px;
    border-radius: 3px;
    color: #ffffffed;
    font-size: 14px;
}
.conteudo .topo .titulo h2{
    font-size: 48px;
}
.conteudo .topo .img{
    width: 100%;
}
.conteudo .topo .img img{
    width: 100%;
    object-fit: contain;
}
.conteudo .textos{
    margin: auto;
    max-width: 1100px;
    width: 100%;
}


/* BLOG */
.outros{
    width: 100%;
}
.outros .container{
    gap: 25px;
}
.outros .container .topo{
    width: 100%;
    gap: 25px;
}
.outros .container .topo .barra{
    background-color: var(--primaria);
    height: 
}
.outros .container .titulo{
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.outros .container .blog-boxs{
    width: 100%;
    margin-top: 45px;
    gap: 30px 2%;
    justify-content: space-evenly;
}
.outros .container .blog-boxs .box{
    width: 32%;
    gap: 20px;
    border: 1px solid var(--cor-5);
    border-radius: 5px;
}
.outros .container .blog-boxs .box .img{
    width: 100%;
    border-radius: 5px;
}
.outros .container .blog-boxs .box .img a,
.outros .container .blog-boxs .box .img img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
}
.outros .container .blog-boxs .box .texto{
    padding: 20px;
    gap: 10px;
}
.outros .container .blog-boxs .box .texto .categoria{
    color: var(--azul);
    font-size: 12px;
    font-family: "neue-m";
}
.outros .container .blog-boxs .box .texto p{
    border-top: 1px solid var(--cor-5);
    padding-top: 10px;
}
.outros .container .blog-boxs .box .texto p span{
    font-size: 16px;
}
.outros .container .blog-boxs .box .texto a{
    margin-top: 15px;
    transition: ease .3s;
}
.outros .container .blog-boxs .box .texto a:hover{
    color: var(--azul);
    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: 1100px){
    .outros .container .blog-boxs .box{
        width: 400px;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .outros .container .blog-boxs .box{
        width: 400px;
    }
}

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

@media screen and (max-width: 600px){
    .outros .container .blog-boxs .box{
        width: 100%;
    }
}

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

}

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

}