.banner{
    width: 100%;
    min-height: 290px;
    padding-top: 115px;
    padding-bottom: 50px;
    overflow: hidden;
    position: relative;
    background-image: url(../imagens/produtos/bg1.png), url(../imagens/produtos/bg2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right bottom, left top;
    background-size: auto;
    justify-content: center;
}	
.banner .container{
    align-items: center;
    justify-content: space-between;
}
.banner p{
    max-width: 470px;
    width: 100%;
}	


.conteudo{
    width: 100%;
}
.conteudo .container{
    gap: 50px;
}
.conteudo .produtos-categorias-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
}
.conteudo .produtos-categorias{
    display: flex;
    gap: 15px;
    white-space: nowrap;
    width: max-content;
    margin: 0 auto;
}
.conteudo .produtos-categorias-wrapper::-webkit-scrollbar {
    height: 5px;
}
.conteudo .produtos-categorias-wrapper::-webkit-scrollbar-thumb {
  background: var(--cor-1);
}
.conteudo .produtos-categorias a:hover,
.conteudo .produtos-categorias a.ativo{
    background: var(--cor-1);
    color: #fff;
    transition: ease .3s;
}
.conteudo .produtos-categorias a{
    text-align: center;
    width: fit-content;
    min-height: 47px;   
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--cor-1);
    background-color: #fff;
    border: 1px solid var(--cor-1);
    border-radius: 5px;
    white-space: nowrap;
    transition: ease .3s;
}
.conteudo .produtos-box{
    width: 100%;
    gap: 50px 15px;
}
.conteudo .produtos-box .box:hover{
    transform: translateY(-20px);
    transition: ease .3s;
}
.conteudo .produtos-box .box{
    max-width: calc(100% - 75% - 19px);
    width: 100%;
    border: 1px solid #00000033;
    border-radius: 10px;
    padding: 20px 20px 40px 20px;
    transition: ease .3s;
}
.conteudo .produtos-box .box .img{
    width: 100%;
    height: 314px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.conteudo .produtos-box .box .img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
    transition: ease .5s;
}
.conteudo .produtos-box .box .texto{
    width: 100%;
    padding: 20px 0;
    gap: 10px;
    margin-bottom: 30px;
}
.conteudo .produtos-box .box .texto p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; 
}
.conteudo .produtos-box .box a.link{
    display: flex;
    gap: 10px;
    color: var(--cor-1);
    margin-top: auto;
}



/* 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: 1200px){
    .conteudo .produtos-box .box{
        max-width: calc(100% - 66% - 19px);
    }
}

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

}

/* MOBILE */
@media screen and (max-width: 1000px){
    .banner .container{
        flex-direction: column;
        text-align: center;
    }
    .conteudo .produtos-box .box .img{
        height: 25vw;
    }
}

@media screen and (max-width: 800px){
    .conteudo .produtos-box .box{
        max-width: calc(100% - 50% - 7.5px);
    }
    
}

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

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

@media screen and (max-width: 430px){
    .conteudo .produtos-box{
        justify-content: center;
    }
    .conteudo .produtos-box .box{
        max-width: 284px;
        width: 100%;
    }
    .conteudo .produtos-box .box .img {
        height: 160px;
    }
}

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