.hero-sobre {
      min-height: 340px;
      background: linear-gradient(to right, rgba(8,20,32,.88) 52%, rgba(8,20,32,.45)),
                  url('https://images.unsplash.com/photo-1563213126-a4273aed2016?w=1400&q=80') center/cover no-repeat;
    }
    .hero-sobre h1 {
      font-family: var(--font-h); font-size: 42px; font-weight: 800; line-height: 1.18;
      max-width: 480px; color: var(--white);
    }
    .hero-sobre h1 span { color: var(--teal); }
    .hero-sobre p { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.7; max-width: 420px; margin-top: 16px; }

    /* Enfoque cards with teal border */
    .enfoque-card {
      background: var(--white); border-radius: var(--radius);
      padding: 32px 28px; border: 1.5px solid var(--border);
      box-shadow: 0 2px 14px rgba(0,0,0,.05);
    }
    .enfoque-card.highlight { border-color: var(--teal); background: #f0faf8; }
    .enfoque-card h3 { font-family: var(--font-h); font-size: 17px; font-weight: 700; margin: 16px 0 10px; }
    .enfoque-card p { font-size: 13.5px; color: var(--gray); line-height: 1.7; }

    /* Valores */
    .valores-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; margin-top: 48px; }
    .valor { text-align: center; flex: 0 0 120px; }
    .valor .icon-circle { margin: 0 auto 12px; }
    .valor p { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; }

    /* Trayectoria */
    .tray-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
    .tray-card { background: var(--light-bg); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--border); }
    .tray-sq { width: 36px; height: 36px; background: var(--teal); border-radius: 6px; margin-bottom: 18px; }
    .tray-card h3 { font-family: var(--font-h); font-size: 15px; font-weight: 700; margin-bottom: 10px; }
    .tray-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

    @media(max-width:900px){
      .tray-grid { grid-template-columns: 1fr; }
      .valores-grid { gap: 20px; }
    }