.atendimento-section {
      position: relative;
      background: url('../assets/2.jpg') center center / cover no-repeat;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
}

.overlay-atendimento {
      background-image: linear-gradient(to top, #032149d5 25%, #537895 100%);
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
}

.atendimento-conteudo {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px;
      color: white;
      animation-duration: 1.5s;
}

.contador::after {
  margin-left: 2px;
  font-weight: bold;
}

.linha-flex {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
}

.texto-estatisticas {
      flex: 1;
      min-width: 300px;
}

.subtitulo {
      font-weight: bold;
      text-transform: uppercase;
      font-size: 0.9rem;
      margin-bottom: 10px;
}

.titulo {
      font-size: 2rem;
      font-weight: bold;
      line-height: 1.3;
}

.estatisticas-grid {
      flex: 1.5;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      min-width: 300px;
}

.estatistica h3 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #a7eef3;
}

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

/* Responsivo */
@media (max-width: 1024px) {
      .atendimento-section {
            height: 100%;
            width: 100%;
      }

      .linha-flex {
            flex-direction: column;
      }

      .titulo {
            font-size: 1.8rem;
      }

      .estatisticas-grid {
            grid-template-columns: 1fr;
            gap: 20px;
      }
}