#home{
  background: url('../../images/bg-home.jpg');
  background-color: var(--main-roxo);
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 850px;
}

#home .box{
  display: flex;
  flex-direction: column;
  align-items: initial;
  justify-content: center;
  height: 100%;
}

#home .box2{
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
}

#home img{
  max-width: 100%;
}

#home .box h1, #home .box h5{
  color: var(--main-white);
}

#home .box h1{
  font-size: 48px;
  font-weight: 300;
  margin: 0;
}

#home .box h1 strong{
  color: var(--main-verde);
  font-weight: 700;
}

#home .box h3{
  margin-top: 20px;
  font-weight: bold;
  font-size: 32px;
  color: var(--main-white);
}

#home .box h5{
  font-size: 21px;
  font-weight: 300;
}

#home .box .botao a{
  padding-left: 30px;
  padding-right: 30px;
}

@media(max-width: 992px){
  #home{
    background-position: left center;
  }
  #home .box2{
    display: none;
  }
  #home .box h1, #home .box h3 {
    text-align: center;
  }
  #home .botao{
    text-align: center;
  }
}

@media(max-width: 767px){
  #home .logo img{
    max-width: 200px;
  }
  #home .box h1{
    font-size: 42px;
  }
  #home .botao a {
    width: 100%;
  }
}

/**********************************************/
#sobre{
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--main-white);
}

#sobre h1{
  color: var(--main-black);
  font-size: 28px;
  font-weight: 300;
}

#sobre strong{
  font-weight: bold;
  color: var(--main-roxo);
}

#sobre .faixa{
  height: 3px;
  width: 200px;
  background-color: var(--main-empresa);
}

#sobre img{
  max-width: 100%;
}

/**********************************************/
#beneficios{
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--main-yellow);
}

#beneficios h1{
  color: var(--main-black);
  font-size: 28px;
  font-weight: 300;
}

#beneficios strong{
  font-weight: bold;
  color: var(--main-roxo);
}

#beneficios .title{
  font-size: 42px;
  line-height: 44px;
}

#beneficios .sub{
  font-size: 18px;
  line-height: 18px;
}

#beneficios .title strong{
  font-weight: bold;
  color: var(--main-roxo);
}

#beneficios .box{
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#beneficios .menu{
  background-color: var(--main-white);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  padding: 20px;
}

#beneficios .menu .item{
  display: flex;
  justify-content: initial;
  align-items: center;
  border-bottom: 1px solid #cecece;
  padding-bottom: 10px;
  padding-top: 10px;
}

#beneficios .menu .item .icone{
  min-width: 50px;
  min-height: 50px;
  background-color: var(--main-roxo);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#beneficios .menu .item .icone i{
  color: var(--main-empresa)
  font-size: 24px;
}

#beneficios .menu .item .texto{
  margin-left: 20px;
}

#beneficios .box .botao a{
  padding-left: 30px;
  padding-right: 30px;
}

@media(max-width: 767px){
  #beneficios .box .botao{
    margin-bottom: 20px;
  }

  #beneficios .box .botao a{
    width: 100%;
  }
}

/**********************************************/
#produtos{
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--main-empresa);
}

#produtos h1{
  color: var(--main-white);
  font-size: 28px;
  font-weight: 300;
}

#produtos p{
  color: var(--main-white);
  font-size: 18px;
}

#produtos strong{
  font-weight: bold;
  color: var(--main-white);
}

#produtos .lista{
  display: flex;
  justify-content: center;
  align-items: initial;
  flex-wrap: wrap;
  list-style: none;
}

#produtos .lista .lista-item{
  float: left;
  width: 31%;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 20px;
}

#produtos .imagem{
  background-position: center center;
  background-size: cover;
  width: 100%;    
  height: 400px;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}

#produtos .imagem img{
    max-width: 100%;
    border-radius: 10px;
}

#produtos .item-info{
    margin-top: 10px;
}

#produtos .item-info .title{
    font-size: 21px;
    font-weight: bold;
    color: var(--main-white);
}

#produtos .item-info .resumo{
    margin-top: 10px;
    color: var(--main-white);
}

#produtos .botao{
    margin-top: 10px;
}

#produtos .botao i{
  color: var(--main-empresa);
}

#produtos .btn{
  padding-left: 30px;
  padding-right: 30px;
}

@media(max-width: 992px){
  #produtos .lista .lista-item{
    width: 48%;
  }
}

@media(max-width: 767px){
  #produtos .botao a{
    width: 100%;
  }
}

@media(max-width: 560px){
  #produtos .lista .lista-item{
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
}

/**********************************************/

#faq{
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--main-white);
}

#faq h1{
  color: var(--main-black);
  font-size: 28px;
  font-weight: 300;
}

#faq strong{
  font-weight: bold;
  color: var(--main-roxo);
}

#faq .title{
  font-size: 42px;
  line-height: 44px;
}

#faq .sub{
  font-size: 18px;
  line-height: 18px;
}

#faq .title strong{
  font-weight: bold;
  color: var(--main-roxo);
}

#faq .box{
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#faq .botao{
  margin-bottom: 20px;
}

#faq .card{
    border: 1px solid #cecece;
    background: #fff;
}

#faq .card-header{
  background: #fff;
   padding: 0;
}

#faq .card-header .btn-card{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  text-decoration: none;
}

#faq .card-header .tit{
  margin-left: 30px;
  font-size: 18px;
  line-height: 20px;
}

#faq .card-header .icone{
  background-color: var(--main-empresa);
  height: 50px;
  width: 50px;
  min-width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}

#faq .card-header .icone i{
  background-color: #fff;
  color: var(--main-empresa);
    padding: 3px 7px;
    border-radius: 5px; 
}

#faq .card-header .btn:focus{
  box-shadow: none;
}

@media(max-width: 992px){
  #faq .botao a{
    width: 100%;
  }
}