/* ─── BENEFÍCIOS ─── */
.benefits-bg {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0a1020 50%, var(--bg-deep) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
}
.benefit-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.benefit-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 0.92rem;
  color: var(--white-dim);
  line-height: 1.7;
}
