.shh-contHeader {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 70vh;
}

.shh-filtroHeader {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.shh-contTitulos {
  position: relative;
  z-index: 9;
  height: 100%;
}

.shh-colTitulos {
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .shh-colTitulos {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .shh-colTitulos {
    width: 100%;
  }
}

.shh-h1Header {
  color: var(--textoClaro);
  font-size: 50px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .shh-h1Header {
    font-size: 40px;
  }
}

.shh-h2Header {
  color: var(--textoClaro);
  font-size: 20px;
}

.shh-btnCtaHeader {
  background-color: var(--color2);
  color: var(--textoClaro);
  border-radius: 5px;
  padding: 5px 10px;
  border: 0px;
  transition: 0.3s;
}
.shh-btnCtaHeader:hover {
  background-color: var(--color2Hover);
  transition: 0.3s;
}