.mem-ben {
  background-color: #f4f5f7;
  display: flex;
  justify-content: center;
  padding: 80px 1.5rem;
}

.mem-ben__container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.mem-ben__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mem-ben__overline {
  display: block;
  color: var(--gold-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.mem-ben__title {
  color: var(--blue-color);
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

/* ---- Grid de items ---- */
.mem-ben__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.mem-ben__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mem-ben__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-color);
  letter-spacing: 1px;
}

.mem-ben__line {
  width: 36px;
  height: 2px;
  background-color: var(--gold-color);
  border-radius: 999px;
}

.mem-ben__item h3 {
  color: var(--blue-color);
  font-size: 19px;
  font-weight: 700;
  margin: 0;
}

.mem-ben__item p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ---- Responsive ---- */
@media (min-width: 640px) {
  .mem-ben__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .mem-ben__title {
    font-size: 34px;
  }
}

@media (min-width: 1024px) {
  .mem-ben__title {
    font-size: 38px;
  }
}
