/* ═══════════════════════════════════════
       NOSOTROS PAGE — LOCAL STYLES
    ═══════════════════════════════════════ */

    /* ── helpers ── */
    .ns-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #3E78A4;
      margin-bottom: 12px;
    }
    .ns-tag::before {
      content: "";
      display: block;
      width: 2px;
      height: 13px;
      background: currentColor;
      flex-shrink: 0;
    }
    .ns-tag--light { color: rgba(255,255,255,0.5); }

    .ns-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: 20px;
      padding: 5px 16px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      margin-bottom: 18px;
    }
    .ns-hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #3E78A4;
      flex-shrink: 0;
    }

    .ns-title {
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.08;
      color: #1a2a38;
      margin-bottom: 16px;
    }
    .ns-title--white { color: #fff; }
    .ns-title span  { color: #3E78A4; }
    .ns-title em    { font-style: italic; color: #3E78A4; }

    .ns-body {
      font-size: 0.95rem;
      font-weight: 400;
      color: #575755;
      line-height: 1.8;
    }
    .ns-body--white { color: rgba(255,255,255,0.72); }

    .ns-divider { height: 1px; background: #e2e6ea; border: none; margin: 0; }

    /* ── section spacing ── */
    .ns-light  { background: #fff;     padding-block: 92px; }
    .ns-alt    { background: #f4f6f8; padding-block: 92px; }
    .ns-dark   { background: #254358; padding-block: 92px; }
    .ns-deeper { background: #0e1c2a; padding-block: 92px; }
    .ns-accent { background: linear-gradient(135deg, #2d6a9f 0%, #3E78A4 50%, #4a8bbf 100%); padding-block: 80px; }

    /* ── HERO ── */
    .ns-hero {
      position: relative;
      min-height: 55vh;
      display: flex;
      align-items: center;
      background: #1a2a38;
      overflow: hidden;
      padding-top: 80px;
    }
    .ns-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('https://images.pexels.com/photos/2892618/pexels-photo-2892618.jpeg?auto=compress&cs=tinysrgb&w=1600');
      background-size: cover;
      background-position: center 50%;
      opacity: 0.22;
    }
    .ns-hero-inner {
      position: relative;
      z-index: 1;
      padding-block: 48px;
      text-align: center;
    }
    .ns-breadcrumb {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 28px;
      font-size: 0.75rem;
      font-weight: 500;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .ns-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
    .ns-breadcrumb a:hover { color: #3E78A4; }
    .ns-breadcrumb span { color: rgba(255,255,255,0.25); }
    .ns-hero h1 {
      font-size: clamp(2.2rem, 5.5vw, 4.2rem);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.05;
      color: #fff;
      margin-bottom: 28px;
      text-align: center;
    }
    .ns-hero h1 span { color: #3E78A4; }
    .ns-hero-sub {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      max-width: 860px;
      line-height: 1.75;
      margin-left: auto;
      margin-right: auto;
    }

    /* ── ORIGEN ── */
    .origen-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .origen-text p + p { margin-top: 18px; }
    .origen-year {
      font-size: 5rem;
      font-weight: 800;
      color: rgba(62,120,164,0.1);
      line-height: 1;
      margin-bottom: -10px;
    }
    .quote-box {
      background: linear-gradient(150deg, #1a2a38 0%, #254358 100%);
      border-radius: 12px;
      padding: 38px 34px;
      border-top: 3px solid #3E78A4;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    }
    .quote-box blockquote {
      font-size: 1.12rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.65;
      margin: 0 0 22px;
    }
    .quote-box blockquote span { color: #3E78A4; }
    .quote-box-attr {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .quote-box-attr-name { font-size: 0.8rem; font-weight: 600; color: #fff; }
    .quote-box-attr-role { font-size: 0.74rem; font-weight: 400; color: rgba(255,255,255,0.45); }

    /* ── MISIÓN Y VISIÓN ── */
    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .mv-card {
      border-radius: 8px;
      padding: 38px 34px;
    }
    .mv-card--light {
      background: #fff;
      border: 1px solid #e2e6ea;
      border-top: 3px solid #3E78A4;
    }
    .mv-card--dark {
      background: #254358;
      border: 1px solid rgba(62,120,164,0.3);
    }
    .mv-card h3 {
      font-size: 1.1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 16px;
      color: #1a2a38;
    }
    .mv-card--dark h3 { color: #fff; }
    .mv-card p {
      font-size: 0.92rem;
      line-height: 1.8;
      color: #575755;
      font-weight: 400;
    }
    .mv-card--dark p { color: rgba(255,255,255,0.65); }
    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
    }
    .pill {
      background: rgba(62,120,164,0.1);
      border: 1px solid rgba(62,120,164,0.25);
      color: #3E78A4;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 5px 13px;
      border-radius: 20px;
    }

    /* ── VALORES ── */
    .valores-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }
    .valor-card {
      background: #fff;
      border: 1px solid #e2e6ea;
      border-top: 3px solid transparent;
      border-radius: 8px;
      padding: 28px 22px;
      transition: border-top-color 0.2s, box-shadow 0.2s;
    }
    .valor-card:hover {
      border-top-color: #3E78A4;
      box-shadow: 0 12px 36px rgba(62,120,164,0.13);
      transform: translateY(-5px);
    }
    .valor-card {
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.2s ease;
    }
    .valor-icon {
      width: 36px;
      height: 36px;
      color: #3E78A4;
      margin-bottom: 16px;
    }
    .valor-card h4 {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #3E78A4;
      margin-bottom: 10px;
    }
    .valor-card p {
      font-size: 0.82rem;
      color: #7C8488;
      line-height: 1.65;
    }

    /* ── EQUIPO ── */
    .equipo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    .team-card {
      background: #fff;
      border: 1px solid #e2e6ea;
      border-radius: 8px;
      overflow: hidden;
      transition: box-shadow 0.2s;
    }
    .team-card:hover {
      box-shadow: 0 6px 24px rgba(62,120,164,0.13);
    }
    .team-photo {
      height: 200px;
      background: linear-gradient(160deg, #1a2a38 0%, #254358 50%, #2d4f6b 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .team-photo svg {
      width: 56px;
      height: 56px;
      color: rgba(62,120,164,0.5);
    }
    .team-info {
      padding: 20px 20px 24px;
    }
    .team-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: #1a2a38;
      margin-bottom: 4px;
    }
    .team-role {
      font-size: 0.76rem;
      font-weight: 600;
      color: #3E78A4;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 10px;
    }
    .team-desc {
      font-size: 0.82rem;
      color: #7C8488;
      line-height: 1.6;
    }
    .team-card--cta {
      background: transparent;
      border: 2px dashed rgba(62,120,164,0.35);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 24px;
      text-align: center;
      gap: 14px;
      cursor: pointer;
      transition: border-color 0.2s;
    }
    .team-card--cta:hover { border-color: #3E78A4; }
    .team-card--cta svg {
      width: 36px;
      height: 36px;
      color: rgba(62,120,164,0.45);
    }
    .team-card--cta p {
      font-size: 0.84rem;
      color: #7C8488;
      line-height: 1.6;
    }
    .team-card--cta a {
      font-size: 0.8rem;
      font-weight: 700;
      color: #3E78A4;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      text-decoration: none;
    }
    .team-card--cta a:hover { text-decoration: underline; }

    /* ── COSMIN ── */
    .cosmin-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .cosmin-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(62,120,164,0.15);
      border: 1px solid rgba(62,120,164,0.35);
      border-radius: 20px;
      padding: 6px 14px;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #3E78A4;
      margin-bottom: 22px;
    }
    .cosmin-bullets {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 26px;
    }
    .cosmin-bullet {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .cosmin-bullet-dot {
      width: 7px;
      height: 7px;
      background: #3E78A4;
      border-radius: 50%;
      margin-top: 7px;
      flex-shrink: 0;
    }
    .cosmin-bullet-text {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.65;
    }
    .cosmin-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(62,120,164,0.3);
      border-radius: 10px;
      padding: 40px 36px;
      text-align: center;
    }
    .cosmin-logo-box {
      display: block;
      margin: 0 auto 28px;
      text-align: center;
    }
    .cosmin-logo-box img {
      max-width: 200px;
      height: auto;
    }
    .cosmin-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 28px;
    }
    .cosmin-stat-num {
      display: block;
      font-size: 1.8rem;
      font-weight: 800;
      color: #3E78A4;
      line-height: 1;
      margin-bottom: 5px;
    }
    .cosmin-stat-label {
      font-size: 0.73rem;
      color: rgba(255,255,255,0.5);
      font-weight: 400;
      line-height: 1.4;
    }

    /* ── OBJETIVOS ── */
    .obj-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }
    .obj-card {
      background: #fff;
      border: 1px solid #e2e6ea;
      border-radius: 8px;
      padding: 28px 22px;
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .obj-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(37,67,88,0.1);
    }
    .obj-num {
      position: absolute;
      top: 16px;
      right: 18px;
      font-size: 3.2rem;
      font-weight: 800;
      color: rgba(62,120,164,0.07);
      line-height: 1;
      user-select: none;
    }
    .obj-card h4 {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #1a2a38;
      margin-bottom: 10px;
    }
    .obj-card p {
      font-size: 0.82rem;
      color: #7C8488;
      line-height: 1.65;
    }

    /* ── CTA ── */
    .ns-cta-inner {
      text-align: center;
      max-width: 620px;
      margin: 0 auto;
    }
    .ns-cta-inner h2 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 800;
      text-transform: uppercase;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 16px;
      text-align: center;
    }
    .ns-cta-inner p {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.8);
      line-height: 1.75;
      margin-bottom: 34px;
    }
    .ns-cta-btns {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-ns-white {
      background: #fff;
      color: #3E78A4;
      padding: 14px 30px;
      border-radius: 9999px;
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .btn-ns-white:hover { opacity: 0.9; }
    .btn-ns-outline {
      background: transparent;
      color: #fff;
      padding: 12px 28px;
      border-radius: 9999px;
      border: 2px solid rgba(255,255,255,0.5);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: border-color 0.2s;
    }
    .btn-ns-outline:hover { border-color: #fff; }

    /* ── STATS BOX (origen section) ── */
    .ns-stats-box {
      margin-top: 20px;
      background: #f4f6f8;
      border-radius: 8px;
      padding: 24px 26px;
      display: flex;
      gap: 0;
      justify-content: center;
    }
    .ns-stat-item {
      text-align: center;
      padding: 0 28px;
    }
    .ns-stat-item--mid {
      border-left: 1px solid #e2e6ea;
      border-right: 1px solid #e2e6ea;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .valores-grid, .obj-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .origen-grid, .mv-grid, .cosmin-grid { grid-template-columns: 1fr; }
      .equipo-grid { grid-template-columns: repeat(2, 1fr); }
      .valores-grid, .obj-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      /* Hero */
      .ns-hero { padding-top: 80px; min-height: auto; }
      .ns-hero-inner { padding-block: 32px; }
      .ns-hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        white-space: normal;
        word-break: break-word;
      }
      .ns-hero-sub { font-size: 0.9rem; }

      /* Secciones */
      .ns-light, .ns-alt, .ns-dark, .ns-deeper, .ns-accent { padding-block: 52px; }

      /* Grids → 1 columna */
      .equipo-grid, .valores-grid, .obj-grid { grid-template-columns: 1fr; }
      .origen-grid, .mv-grid, .cosmin-grid { grid-template-columns: 1fr; gap: 28px; }

      /* Timeline origen */
      .origen-year { font-size: 3.5rem; }

      /* Stats box → columna */
      .ns-stats-box { flex-direction: column; padding: 16px 20px; gap: 0; }
      .ns-stat-item { padding: 12px 0; border-left: none !important; border-right: none !important; border-bottom: 1px solid #e2e6ea; }
      .ns-stat-item:last-child { border-bottom: none; }
      .ns-stat-item--mid { border-left: none; border-right: none; }

      /* Cards padding */
      .quote-box, .mv-card { padding: 24px 18px; }
      .cosmin-stats { grid-template-columns: 1fr; }

      /* CTA bottom */
      .ns-cta-btns { flex-direction: column; align-items: center; gap: 12px; }
      .btn-ns-white, .btn-ns-outline { width: 100%; justify-content: center; text-align: center; box-sizing: border-box; }
    }
