.hero-partners {
  background-image: url('../img/bg-hero-partners.webp');
  background-size: cover;
  /* Substitua pelo caminho da sua imagem de fundo */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Ajuste a altura conforme necessário */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: relative;
}

.juntos {
  font-size: 5em;
  letter-spacing: 10px;
  line-height: 0.8em;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
}

.resultados {
  line-height: 0.5em;
  font-size: 6.5em;
  color: white;
  margin-top: -24px;
}

.potencializamos {
  font-size: 4em;
  line-height: 0.9em;
  text-transform: uppercase;
  font-weight: bold;
  color: #343434;
  text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
  display: inline-block;
}

.dot {
  font-size: 7em;
  color: var(--first_orange);
  margin-top: -142px;
  margin-left: -12px;
}

.dot-mobile {
  display: none;
}

#section-partners {
  background-image: url('../img/bg-partners.webp');
  background-size: cover;
  /* Substitua pelo caminho da sua imagem de fundo */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Ajuste a altura conforme necessário */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  font-family: 'Open Sans', sans-serif !important;
}

.section-head {
  font-weight: bold;
  color: var(--second_black);
}

.section-paragraph {
  text-align: justify;
}

.stats-text h6 {
  font-weight: bold;
}

.stats-text h4 {
  font-weight: bold;
  color: var(--first_orange);
}

/* Counter */
@property --num-1 {
  syntax: "<integer>";
  initial-value: 0;
  inherits: true;
}

@property --num-2 {
  syntax: "<integer>";
  initial-value: 0;
  inherits: true;
}

@property --num-3 {
  syntax: "<integer>";
  initial-value: 0;
  inherits: true;
}

.active-counter {
  animation: counter 5s normal ease-in-out forwards;
}

.counter-1 {
  counter-reset: num var(--num-1);
}

.counter-2 {
  counter-reset: num var(--num-2);
}

.counter-3 {
  counter-reset: num var(--num-3);
}

.counter::after {
  content: counter(num);
}

@keyframes counter {
  from {
    --num-1: 0;
    --num-2: 0;
    --num-3: 0;
  }

  to {
    --num-1: 108;
    --num-2: 430;
    --num-3: 104;
  }
}

/* End Counter */

@media(max-width: 992px) {
  .juntos {
    font-size: 3em;
  }

  .potencializamos {
    font-size: 2.65em;
  }

  .resultados {
    line-height: 0.8em;
    font-size: 5em;
  }

  .dot {
    display: none;
  }

  .dot-mobile {
    display: initial;
    font-size: 1.5em;
    color: var(--first_orange);
    margin-top: 0;
    margin-left: 0;
  }
}