.diferenciais__container {
    position: relative;
    background-image: url(../img/diferenciais_background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    width: 100%;
    height: 150px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 0; /* Para garantir que a camada fique atrás do conteúdo */
}

.diferenciais__container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.5); /* A opacidade define o "escurecimento" */
    z-index: 1;
}

/* Garante que os elementos fiquem acima do ::before */
.diferencial {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white; /* Se quiser o texto branco para contraste */
}

@media screen and (max-width: 1024px) {
  .diferenciais__container{
    display: none;
  }
}