#cab{
  display: block;
}

#cab .cab-img{
  background-repeat: no-repeat;  
  background-position: center;
  background-size: auto;
  height: 300px;
}

#cab .caixa-cabecalho{
  height: 100%;
}

#cab .texto-cabecalho{
  display: flex;
  align-items: initial;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

#cab .texto-cabecalho h1{
  color: var(--main-white);
  margin: 0;
  margin-left: 20px;
  text-shadow: 5px 5px 11px rgb(0 0 0 / 60%);
  font-size: 6vh;
  line-height: 6vh;
}

#cab .texto-cabecalho h3{
  color: #fff;  
  font-size: 2vh;
  margin-left: 20px;
  text-shadow: 5px 5px 11px rgb(0 0 0 / 20%);
  text-transform: uppercase;
  letter-spacing: 5px;
}
/***********************************************/

#cab-mob{
  display: none;
}

#cab-mob .titulo{
  background-color: var(--main-empresa);
  text-align: center;
}

#cab-mob .titulo h1{
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 31px;
  margin-bottom: 0;
}

#cab-mob .imagem{
  max-width: 100%;
}

@media(max-width: 992px){
  #cab{
    display: none;
  }

  #cab-mob{
    display: block;
  }
}
