.sobre-section {
  position: relative;
  background: rgb(var(--color-bg-light));
  overflow: hidden;
}

.sobre-glow {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgb(var(--color-gold) / 0.16);
  filter: blur(120px);
  pointer-events: none;
}

.sobre-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
}

.sobre-title {
  margin: 20px 0 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  color: rgb(var(--color-coal));
}

.sobre-desc {
  margin: 0 0 36px;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgb(var(--color-text-secondary));
}

.value-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.value-card-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgb(var(--color-gold));
  color: #ffffff;
}

.value-card-icon svg {
  width: 17px;
  height: 17px;
}

.value-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #121212;
}

.value-card-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgb(var(--color-text-secondary));
}

.value-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgb(var(--color-coal) / 0.08);
}

.value-stat-number {
  margin: 0 0 4px;
  font-size: 1.75rem;
  font-weight: 700;
  color: rgb(var(--color-coal));
}

.value-stat-label {
  margin: 0;
  font-size: 0.8125rem;
  color: rgb(var(--color-text-secondary));
}

@media (min-width: 640px) {
  .value-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sobre-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre-card {
  width: 100%;
  border-radius: var(--radius-card);
  background: rgb(var(--color-coal-card));
  padding: 24px;
  box-shadow: 0 30px 60px -24px rgb(var(--color-coal) / 0.45);
}

.sobre-card-eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.5);
}

.sobre-card-title {
  margin: 12px 0 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.sobre-metric {
  margin-bottom: 16px;
}

.sobre-metric:last-of-type {
  margin-bottom: 0;
}

.sobre-metric-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.75rem;
}

.sobre-metric-label {
  color: rgb(255 255 255 / 0.55);
}

.sobre-metric-value {
  color: #ffffff;
  font-weight: 600;
}

.sobre-metric-bar {
  height: 4px;
  border-radius: 2px;
  background: rgb(255 255 255 / 0.08);
  overflow: hidden;
}

.sobre-metric-bar > span {
  display: block;
  height: 100%;
  border-radius: 2px;
  background: rgb(var(--color-gold));
}

.sobre-card-footer {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  font-size: 0.6875rem;
  color: rgb(255 255 255 / 0.45);
}

@media (min-width: 1024px) {
  .sobre-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}
