#bg{
  background-image: url('../../images/bg-produtos.jpg');
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 250px;
}

#bg .box{
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
}

#bg .box h1{
  color: #fff;
  font-size: 32px;
  line-height: 32px;
}

#bg .box .faixa{
  background-color: var(--main-empresa);
  height: 3px;
  width: 250px;
}

/***************************************************/

#produto{
  padding-top: 30px;
  padding-bottom: 30px;
}

#produto .title{
  font-size: 32px;
  font-weight: bold;
}

#produto .faixa{
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  height: 3px;
  background-color: var(--main-empresa);
}

#produto .lista{
  display: flex;
  justify-content: initial;
  flex-wrap: wrap;
  list-style: none;
}

#produto .lista li{
  float: left;
  width: 23%;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 30px;
}

#produto .item{
  border: 1px solid #cecece;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  padding: 10px;
}

#produto figure{
  min-height: 212px;
}

#produto img{
  max-width: 100%;
}

#produto .item .nome{
  font-weight: bold;
}

#produto .botao{
  margin-top: 10px;
}

#produto .botao .btn-produto{
  width: 100%;
}

#produto .btn-catag{
  padding-left: 50px;
  padding-right: 50px;
}

@media(max-width: 1200px){
  #produto .lista li{
    width: 31%;
    margin-left: 1%;
    margin-right: 1%;
  }
}

@media(max-width: 767px){
  #produto figure{
    min-height: auto;
  }

  #produto .lista li{
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
  }
}

@media(max-width: 380px){
  #produto figure{
    min-height: auto;
  }

  #produto .lista li{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
/***************************************************/

#main img{
  max-width: 100%;
}