.diferenciais {
  background: var(--grad-deep-space);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.theme-light .diferenciais {
  background: var(--grad-lavender-mint);
  color: var(--ink-900);
}

.diferenciais::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -200px;
  width: 700px;
  height: 500px;
  background: radial-gradient(closest-side, rgba(34, 197, 94, 0.15), transparent 70%);
  pointer-events: none;
}

.theme-light .diferenciais::before {
  background: radial-gradient(closest-side, rgba(134, 239, 172, 0.3), transparent 70%);
}

.diferenciais-head {
  text-align: left;
  max-width: 780px;
  margin-bottom: var(--space-16);
  position: relative;
}

.diferenciais-head .eyebrow {
  color: var(--violet-300);
  margin-bottom: var(--space-4);
}

.theme-light .diferenciais-head .eyebrow {
  color: var(--violet-700);
}

.diferenciais-head h2 {
  font-size: var(--fs-display-lg);
  line-height: var(--lh-snug);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.diferencial {
  padding: var(--space-3) var(--space-2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  position: relative;
  transition: background var(--dur-base) var(--ease-out-quart);
  min-width: 0;
}

.theme-light .diferencial {
  border-top-color: var(--color-border);
}

.diferencial:hover {
  background: rgba(255, 255, 255, 0.02);
}

.theme-light .diferencial:hover {
  background: rgba(91, 33, 182, 0.03);
}

/* always 3-col, so right border on cols 1 and 2 (positions 3n+1, 3n+2) */
.diferencial:nth-child(3n+1),
.diferencial:nth-child(3n+2) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-light .diferencial:nth-child(3n+1),
.theme-light .diferencial:nth-child(3n+2) {
  border-right-color: var(--color-border);
}

.diferencial-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--violet-300);
  font-weight: 500;
}

.theme-light .diferencial-number {
  color: var(--violet-700);
}

.diferencial h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: var(--ls-snug);
  line-height: 1.2;
  text-wrap: balance;
}

.diferencial p {
  color: var(--ink-200);
  font-size: 0.75rem;
  line-height: 1.45;
  margin: 0;
  text-wrap: pretty;
}

.theme-light .diferencial p {
  color: var(--ink-600);
}

@media (min-width: 600px) {
  .diferencial {
    padding: var(--space-5) var(--space-4);
    gap: var(--space-2);
  }

  .diferencial-number {
    font-size: 0.8125rem;
  }

  .diferencial h3 {
    font-size: 1.0625rem;
  }

  .diferencial p {
    font-size: 0.8125rem;
    line-height: var(--lh-normal);
  }
}

@media (min-width: 900px) {
  .diferencial {
    padding: var(--space-7) var(--space-5);
    gap: var(--space-3);
  }

  .diferencial-number {
    font-size: 0.875rem;
  }

  .diferencial h3 {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .diferencial p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1100px) {
  .diferencial {
    padding: var(--space-8) var(--space-6);
  }

  .diferencial-number {
    font-size: 0.9375rem;
  }

  .diferencial h3 {
    font-size: 1.375rem;
  }

  .diferencial p {
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
  }
}
