#banners .carousel-indicators li {
  width: 10px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 10px;
  border-top: 0px;
  border-bottom: 0px;    
}

#banners .carousel-indicators .active {
    width: 30px;
}

.banner-desktop{
  width: 100%;
}
.banner-mobile{
  width: 100%;
  display: none;
}

@media(max-width: 992px){
  .banner-desktop{
    display: none;
  }
  .banner-mobile{
    display: block;
  }
}

/**********************************************/
#sobre{
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--main-white);
}

#sobre h1{
  color: var(--main-black);
  font-size: 28px;
  font-weight: 300;
  margin: 0;
}

#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%;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  box-shadow: 10px 10px 8px rgba(0,0,0,0.5);
}

#sobre h6{
  font-weight: bold;
  font-size: 21px;
}

#sobre ul{
  margin-left: 20px;
}

#sobre ul li{
  margin-bottom: 5px;
}

/***********************************/

#duvidas{
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f3c8b3;
}

#duvidas h1{
  color: var(--main-empresa);
  font-size: 28px;
  font-weight: 300;
}

#duvidas strong{
  font-weight: bold;
  color: var(--main-empresa);
}

#duvidas .title{
  font-size: 42px;
  line-height: 44px;
  color: var(--main-black);
}

#duvidas .sub{
  font-size: 18px;
  line-height: 18px;
  color: var(--main-black);
}

#duvidas .title strong{
  font-weight: bold;
  color: var(--main-black);
}

@media(max-width: 767px){
  #duvidas .botao a{
    width: 100%;
  }
}

/***********************************/
#blog h1{
  color: var(--main-black);
  font-size: 28px;
}

#blog .faixa{
  height: 3px;
  width: 200px;
  background-color: var(--main-empresa);
}

#blog .imagem img{
    max-width: 100%;
    border-radius: 10px;
}

#blog .item{
  margin-bottom: 20px;
}

#blog .item-info{
    margin-top: 10px;
}

#blog .item-info .autor{
    font-size: 12px;
}

#blog .item-info .resumo{
    margin-top: 10px;
}

#blog .botao{
    margin-top: 10px;
}

#blog .botao i{
  color: var(--main-empresa);
}

@media(max-width: 767px){
  #blog .botao a{
    width: 100%;
  }
}