.benefits_title {
  text-align: center;
  font-weight: 100;
  color: #1E1E1E;
  font-size: 1.2rem;
  line-height: normal;
  padding: 0 8px;
  max-width: 80%;
  margin: 0 auto;
}

.benefits-container {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1108px;
  margin: 30px auto;
}

.benefits-container.active {
  display: flex;
  flex-wrap: wrap;
}

.benefit-item {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  height: 78px;
  width: 100%;
  max-width: 254px;
  border-radius: 8px;
}

.benefit-item .icono-items {
  color: var(--blue);
  font-size: 1.8rem;
}

.benefit-item img {
  height: 20px;
}

.benefit-item__info {
  line-height: 1.2;
}

.benefit-item__info b {
  font-size: 15px;
}

.benefit-item__info p {
  font-size: 13px;
  color: #5b5b5b;
}

.benefit-item__info a,
.benefit-item__info button {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.btn-more-benefits {
  display: block;
  text-align: center;
  background-color: var(--darkBlue);
  color: var(--white);
  font-weight: bold;
  padding: 6px 0;
  border-radius: 26px;
  max-width: 304px;
  margin: auto;
}

@media screen and (min-width: 600px) {
  .benefits_title {
    font-size: clamp(26px, 28px, 30px);
    max-width: 95%;
  }
}

@media screen and (min-width: 800px) {
  .benefits-container.active {
    flex-wrap: nowrap;
  }
}