#home{
  background: url('../../images/bg-home.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 650px;
}

#home .box{
  display: flex;
  flex-direction: column;
  align-items: initial;
  justify-content: center;
  height: 100%;
  text-align: center;
}

#home img{
  max-width: 100%;
}

#home .box h1, #home .box h3, #home .box h5{
  color: #fff;
}

#home .box h1{
  font-weight: bold;
  font-size: 52px;
  margin: 0;
}

#home .box h3{
  font-size: 32px;
  font-weight: 400;
}
#home .box h5{
  font-size: 21px;
  font-weight: 300;
}


@media(max-width: 767px){
  #home .logo img{
    max-width: 200px;
  }
  #home .box h1{
    font-size: 42px;
  }
  #home .botao a {
    width: 100%;
  }
}

/**********************************************/

#sobre{
  padding-top: 30px;
  padding-bottom: 30px;
}

#sobre h1{
  color: var(--main-black);
  font-size: 28px;
  font-weight: 300;
}

#sobre h1 strong{
  font-weight: bold;
}

#sobre .faixa{
  height: 3px;
  width: 200px;
  background-color: var(--main-empresa);
}

#sobre img{
  max-width: 100%;
}

/**********************************************/

#assistencia{
  background: url('../../images/bg-assistencia.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 450px;
}

#assistencia .titulo{
  color: #fff;
  text-transform: uppercase;
  font-size: 38px;
  line-height: 38px;
  font-weight: bold;
}

#assistencia .imagem{
  margin-top: 20px;
}

#assistencia .texto{
  color: #fff;
  margin-top: 20px;
}

#assistencia .box{
  display: flex;
  justify-content: center;
  align-items: center;
}

@media(max-width: 767px){
  #assistencia .botao a{
    width: 100%;
  }
}

@media(max-width: 389px){
  #assistencia .titulo{
    font-size: 32px;
    line-height: 32px;
  }
}

/***********************************************/

#indicadores{
  background-color: #f4f4f4;
}

#indicadores .item{
  padding: 0px 5px 0px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 130px;
}

#indicadores .item .icone{
  margin-right: 15px;
  min-width: 56px;
  text-align: center;
}

#indicadores .item .icone i{
  color: var(--main-empresa);
  font-size: 45px;
}

#indicadores .item .texto{
  color: var(--main-empresa);
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

#indicadores .item .texto .box{
  font-size: 21px;
  font-weight: bold;
  line-height: 21px;
  color: var(--main-laranja);
}

#indicadores .item .texto .sub{
  font-size: 16px;
  color: var(--main-black);
  min-height: 36px;
}

@media(max-width: 1200px){
  #indicadores .item{
    margin-bottom: 10px;
  }
}

@media(max-width: 992px){
  #indicadores .item .texto{
    height: 70px;
  }
}

/***********************************************/

#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: 20px;
}

#produto .item{
  border: 1px solid #cecece;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  padding: 10px;
}

#produto figure{
  min-height: 230px;
}

#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;
  }
}



