.benefits {
  min-height: 100svh;
  padding: 32px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.benefits .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 58%, rgba(0, 247, 255, 0.1), transparent 18%),
    radial-gradient(
      circle at 52% 38%,
      rgba(0, 247, 255, 0.07),
      transparent 12%
    ),
    radial-gradient(circle at 76% 34%, rgba(0, 247, 255, 0.06), transparent 14%);
  pointer-events: none;
  z-index: 0;
}

.benefits::after {
  content: "";
  position: absolute;
  left: 30%;
  top: 48.6%;
  width: 46%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 247, 255, 0),
    rgba(0, 247, 255, 0.16),
    rgba(0, 247, 255, 0)
  );
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 0;
}

.benefits-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.benefits h2 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.benefits h2 span {
  color: var(--neon);
}

.benefits-subtitle {
  font-size: 14px;
  color: var(--muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}

.benefit-card {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 247, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.benefit-index {
  padding-left: 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #7fefff;
  margin-bottom: 8px;
  display: inline-block;
}

/* CARD PRINCIPAL */
.benefit-card.highlight {
  position: relative;
  grid-row: span 2;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 247, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(0, 247, 255, 0.18);
  box-shadow:
    0 0 30px rgba(0, 247, 255, 0.12),
    0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}

.benefit-card.highlight::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 44px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 247, 255, 0.28),
    rgba(0, 247, 255, 0.02)
  );
  transform: translateY(-50%);
  pointer-events: none;
}

.benefit-card:not(.highlight) {
  position: relative;
}

.benefit-card:not(.highlight)::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 247, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.35);
}

.benefit-badge {
  display: inline-block;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 247, 255, 0.12);
  color: #bffcff;
  margin-bottom: 14px;
}

.benefit-highlight-points {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefit-highlight-points span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.benefits-cta {
  text-align: center;
  margin-top: 26px;
}

.btn-benefits-primary {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  color: #041018;
  background: linear-gradient(90deg, var(--neon), var(--neon-strong));

  box-shadow:
    0 0 18px rgba(0, 217, 255, 0.35),
    0 10px 30px rgba(0, 217, 255, 0.15);

  transition: all 0.25s ease;
}

.btn-benefits-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 26px rgba(0, 217, 255, 0.6),
    0 16px 40px rgba(0, 217, 255, 0.2);
}

.benefits-cta-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card.highlight {
    grid-row: auto;
  }

  .benefits::after,
  .benefit-card.highlight::after {
    display: none;
  }
}
