/* =========================
   BENEFÍCIOS — Mobile First
========================= */

.beneficios {
  background-color: var(--bg-gray);
  padding: var(--space-12) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- Grade 2×2 no mobile --- */
.beneficios__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9) var(--space-6);
}

/* --- Item --- */
.beneficio {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

/* --- Ícone --- */
.beneficio__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: invert(15%) sepia(90%) saturate(2500%) hue-rotate(315deg)
    brightness(80%) contrast(95%);
}

/* --- Texto --- */
.beneficio__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.beneficio__title {
  font-family: var(--font-main);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.beneficio__subtitle {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.3;
}

/* =========================
   DESKTOP (≥ 768px)
========================= */
@media (min-width: 768px) {
  .beneficios {
    padding: var(--space-9) 0;
  }

  /* 4 colunas em linha */
  .beneficios__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  /* Divisores verticais entre itens */
  .beneficio {
    padding: var(--space-5) var(--space-9);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: center;
  }

  .beneficio:first-child {
    padding-left: 0;
    justify-content: flex-start;
  }

  .beneficio:last-child {
    padding-right: 0;
    border-right: none;
    justify-content: flex-end;
  }

  .beneficio__icon {
    width: 42px;
    height: 42px;
  }
}
