.nosotros {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(-48px, -4.2vw, -26px);
  padding: calc(var(--section-space) + 48px) 32px;
  background: var(--color-bg);
}

.nosotros::before {
  content: "";
  position: absolute;
  inset: 2% auto auto 50%;
  width: min(520px, 72vw);
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(var(--rgb-accent), 0.12) 0%, rgba(var(--rgb-accent), 0) 72%);
  pointer-events: none;
  z-index: 0;
}

.nosotros__header {
  width: min(1080px, 100%);
  margin-bottom: var(--space-48);
}

.nosotros__header > h2 {
  max-width: 980px;
}

.nosotros__header > p:not(.nosotros__eyebrow) {
  max-width: 920px;
}

.nosotros__eyebrow {
  margin-bottom: var(--space-12);
  color: var(--color-accent);
  font-size: var(--font-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nosotros__support-copy {
  max-width: 920px;
  margin-inline: auto;
  color: var(--color-text);
  font-size: var(--font-body-lg);
}

.nosotros__actions {
  margin-top: var(--space-8);
}

.nosotros .values {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.nosotros .values .value {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 28px;
  border-radius: 22px;
  background: var(--surface-panel);
  border: 1px solid rgba(var(--rgb-border), 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.nosotros .values .value h3 {
  margin-bottom: 14px;
  font-size: var(--font-h4);
  font-weight: 600;
  line-height: var(--leading-h4);
  color: var(--color-white);
}

.nosotros .values .value p {
  font-size: var(--font-body);
  line-height: var(--leading-body);
  color: var(--color-text-secondary);
}

.nosotros .values .value:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--rgb-accent), 0.34);
  background: rgba(var(--rgb-surface-elevated), 0.96);
  box-shadow: 0 22px 40px rgba(var(--rgb-bg), 0.3);
}

@media screen and (max-width: 1100px) {
  .nosotros .values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 769px) {
  .nosotros {
    margin-top: -20px;
    padding: calc(var(--section-space-tight) + 18px) 20px var(--section-space-tight);
  }

  .nosotros .values {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nosotros .values .value {
    min-height: 0;
    padding: 22px 20px;
  }

  .nosotros .values .value h3 {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.35;
  }

  .nosotros .values .value p {
    font-size: 15px;
    line-height: 1.55;
  }

  .nosotros::before {
    width: 320px;
    height: 220px;
    top: 4%;
  }
}
