.masthead {
  position: relative;
  height: 100vh;
  background: url('../img/header.jpg') no-repeat center center;
  background-position: center bottom;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.masthead::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.masthead .content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}


.masthead h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Estilo para o subtítulo */
.masthead h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  font-weight: normal;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Estilo para a classe highlight */
.highlight {
  color: #10A37F; /* Cor de destaque */
  font-weight: bold;
}


section {
  padding: 5rem 0;
}
.contador-container {
  background-color: #106852;
  border-radius: 15px;
  padding: 10px;
  margin: 2rem 0;
  color: white;
  position: absolute;
  top: 80%;
  left: 10%;
  transform: translate(0%, 20%);
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 3;
}

.contador-item {
  text-align: center;
  padding: 10px;
  flex: 1 1 calc(25% - 1rem);
  box-sizing: border-box;
  position: relative;
}

.contador-item h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.contador-item p {
  margin: 0;
  font-size: 1rem;
}

.divider {
  height: 100%;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  display: block;
}

/* Hide the divider in smaller screens */
@media (max-width: 768px) {
  .contador-item h2 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
  }
  .contador-item {
      flex: 1 1 calc(50% - 1rem);
  }
  .row > * {
    flex-shrink: 0;
    width: 47% !important;
    max-width: 100%;
  }
  #emp{
    margin-left: -20px !important;
  }

#video{
  width: 100%;
}

}

header.masthead {
  position: relative;
  z-index: 1;
}

#efeito {
  position: relative;
  margin-top: -50px; /* Ajuste esse valor conforme necessário */
  z-index: 2;
  background-color: rgba(255, 255, 255, 0); /* Fundo semi-transparente */
  padding-top: 60px; /* Para garantir que o conteúdo não se sobreponha demais ao header */
}

#efeito::before {
  content: "";
  display: block;
  height: 50px; /* Ajuste esse valor conforme necessário */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}











