/* =========================
   NOSOTROS - BASE
========================= */

.nosotros-page {
  overflow: hidden;
  background: #ffffff;
}

.nosotros-page section {
  position: relative;
}

.nosotros-section-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.nosotros-section-heading h2 {
  margin: 0;
  color: var(--color-dark);
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.6px;
  font-weight: 900;
}

.nosotros-section-heading p {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.72;
}

.nosotros-page .section-label {
  margin-bottom: 18px;
}

/* =========================
   UTILIDADES VISUALES
========================= */

.nosotros-soft-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(79, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 107, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 34%,
    transparent 100%
  );
}

.nosotros-dark-label {
  color: #dfe4ff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 720px) {
  .nosotros-section-heading {
    max-width: 100%;
    margin-bottom: 34px;
    text-align: left;
  }

  .nosotros-section-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -1.2px;
  }

  .nosotros-section-heading p {
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
  }

  .nosotros-page .section-label {
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .nosotros-section-heading h2 {
    font-size: clamp(29px, 8.8vw, 39px);
  }
}