*{
    font-weight: unset;
    font-size: unset;
}
.leiaBtn{
    width: fit-content;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--cor-2);
    padding-bottom: 10px;
    text-decoration: none;
    transition: ease .3s;
}
.leiaBtn:hover{
    color: var(--cor-2);
    transition: ease .3s;
}


/* CONTEUDO */
.blog{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 144px 0 100px;
}
.blog .container{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.blog .topo{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 50px;
}
.blog .topo .texto{
    max-width: 566px;
    width: 100%;
    gap: 50px;
}
.blog .topo .texto h2{
    font-weight: 500;
}
.blog .topo .texto .link{
    align-items: center;
    gap: 15px;
    font-weight: 500; 
    font-size: 20px;
    transition: ease .3s;  
}
.blog .topo .texto .link i{
    color: var(--cor-2);
}
.blog .topo .texto .link:hover{
    color: var(--cor-2);
    transition: ease .3s;
}
.blog .topo .img{
    max-width: 488px;
    width: 100%;
}
.blog .topo .img img{
    max-width: 488px;
    width: 100%;
}
.blog .meio{
    max-width: 800px;
    width: 100%;
    margin: auto;
}	
.blog .meio iframe{
    width: 100%;
    height: 500px;
}


/* CATEGORIAS DO BLOG */
.conteudo{
    width: 100%;
}
.conteudo .container{
    gap: 75px;
    padding: 100px 0;
    border-top: 1px solid #eee;
}
.conteudo .topo{
    width: 100%;
    justify-content: space-between;
    gap: 50px 20px;
}
.conteudo .topo .titulo{
    gap: 25px;
}
.conteudo .topo .titulo h6{
    font-weight: 500;
    font-size: 18px;
}
.conteudo .topo .titulo span{
    display: flex;
    width: 63px;
    height: 1px;
    background-color: var(--cor-2);
}
.conteudo .topo .titulo h2{
    font-weight: 500;
}
.conteudo .topo .link{
    align-items: center;
    gap: 10px;
    font-weight: 500; 
    transition: ease .3s;  
}
.conteudo .topo .link i{
    color: var(--cor-2);
}
.conteudo .topo .link:hover{
    color: var(--cor-2);
    transition: ease .3s;
}
.conteudo .categoria-box{
    width: 100%;
    justify-content: space-evenly;
    gap: 49px;
}
.conteudo .categoria-box .box{
    width: 384px;
}
.conteudo .box .box-img{
    width: 100%;
}
.conteudo .box .box-img img{
    width: 100%;
    border-radius: 10px;
}
.conteudo .box .box-text{
    width: 100%;
    padding: 30px 0px;
    gap: 20px;
}
.conteudo .box .box-text .title{
    font-size: 20px;
    line-height: 1.2;
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; 
   -webkit-box-orient: vertical;
}


/* 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: 1150px){
    .blog .topo{
        justify-content: center;
        gap: 50px;
    }
    .blog .topo .texto,
    .blog .topo .img,
    .blog .topo .img img{
        max-width: 566px;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    
}

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

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

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

}

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

}