.diferencial {
  background-image: url('../img/bg-2-mobile.png');
  background-size: cover;
  background-position: center;
  display: flex;
  width: 100%;
  height: 34.06rem;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
  gap: 20px 40px;
  flex-wrap: wrap;
}

.diferencial>div {
  padding: 2rem 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  align-items: center;
}

.diferencial .title {
  padding-bottom: 1rem;
  margin: 0 auto;
}

.diferencial-item {
  /* margin-top: 2rem; */
  text-align: center;
}

.diferencial-item h3 {
  font-weight: bold;
}

.diferencial-item h3,
.diferencial-item p,
.diferencial h2 {
  color: var(--white);
}

.diferencial-item h3,
.diferencial-item p {
  font-size: 1rem;
}

@media screen and (min-width:800px) {
  .diferencial {
    height: 25rem;
  }

  .diferencial>div {
    display: grid;
    grid-template-rows: 100px 1fr;
    grid-template-columns: 1fr 1fr 1fr;

  }

  .diferencial>div h2 {
    grid-row: 1;
    grid-column: 2;
  }

  .diferencial-item {
    grid-row: 2;
    position: relative;
  }

  .diferencial-item:nth-child(2)::after,
  .diferencial-item:nth-child(4)::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 1px;
    height: 150px;
    background-color: var(--yellow);
    right: 0;
    top: -50px;
  }

  .diferencial-item p {
    padding: 0 1rem;
  }

  .line {
    display: none;
  }
}