  .page-hero-sobre {
    padding: 160px 0 var(--space-2xl);
    background: linear-gradient(180deg, var(--bg-2) 0%, white 100%);
    position: relative;
    overflow: hidden;
  }
  .page-hero-sobre .container { position: relative; z-index: 1; }
  .page-hero-sobre h1 {
    font-size: clamp(48px, 7vw, 108px);
    color: var(--brand-navy);
    font-weight: 800;
    letter-spacing: -0.035em;
    max-width: 1200px;
    margin-bottom: var(--space-lg);
  }
  .page-hero-sobre h1 .accent { color: var(--brand-red); font-style: italic; font-weight: 600; }
  .page-hero-sobre .lede {
    font-size: 22px;
    color: var(--ink-2);
    max-width: 680px;
    line-height: 1.55;
  }
  .page-hero-path {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-3);
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
  }
  .page-hero-path .current { color: var(--brand-red); }

  /* Manifest section */
  .manifest {
    padding: var(--space-3xl) 0;
    background: white;
  }
  .manifest-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-3xl);
    align-items: start;
  }
  .manifest-sticky {
    position: sticky;
    top: 100px;
  }
  .manifest-eyebrow-big {
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-red);
    font-weight: 600;
    margin-bottom: var(--space-md);
  }
  .manifest-title {
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--brand-navy);
    letter-spacing: -0.025em;
    line-height: 1.1;
  }
  .manifest-body p {
    font-size: 18px;
    color: var(--ink-2);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
    max-width: 640px;
  }
  .manifest-body p.large {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--brand-navy);
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: var(--space-xl);
    padding-left: var(--space-md);
    border-left: 3px solid var(--brand-red);
  }

  /* Timeline / History */
  .history {
    padding: var(--space-3xl) 0;
    background: var(--brand-navy);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .history::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
  }
  .history .container { position: relative; z-index: 1; }
  .history .section-head h2 { color: white; }
  .history .section-head p { color: rgba(255,255,255,0.7); }
  .timeline {
    position: relative;
    margin-top: var(--space-2xl);
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.15);
  }
  .timeline-event {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    position: relative;
  }
  .timeline-event:nth-child(even) { direction: rtl; }
  .timeline-event:nth-child(even) .timeline-content { direction: ltr; text-align: right; }
  .timeline-event:nth-child(even) .timeline-year { direction: ltr; }
  .timeline-dot {
    grid-column: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .timeline-dot::before {
    content: '';
    width: 14px; height: 14px;
    background: var(--brand-red);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(212, 46, 46, 0.2);
  }
  .timeline-year {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
  }
  .timeline-content h4 {
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
  }
  .timeline-content p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.6;
    max-width: 360px;
  }
  .timeline-event:nth-child(even) .timeline-content p { margin-left: auto; }

  /* Values */
  .values {
    padding: var(--space-3xl) 0;
    background: var(--bg-2);
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
  }
  .value-card {
    background: white;
    padding: var(--space-xl);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: all .3s;
  }
  .value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(10,37,64,0.15);
    border-color: var(--brand-navy);
  }
  .value-num {
    font-family: ui-monospace, monospace;
    font-size: 11px;
    color: var(--brand-red);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
  }
  .value-card h3 {
    font-size: 28px;
    color: var(--brand-navy);
    margin-bottom: var(--space-md);
  }
  .value-card p {
    color: var(--ink-3);
    font-size: 15px;
    line-height: 1.6;
  }

  /* Team */
  .team {
    padding: var(--space-3xl) 0;
    background: white;
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
  .team-card {
    background: var(--bg-2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
  }
  /* CEO section */
  .team-ceo-section {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-3xl);
    align-items: center;
  }
  .team-ceo-photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(10, 37, 64, 0.2);
  }
  .team-ceo-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .team-ceo-content h2 {
    font-size: clamp(32px, 4vw, 52px);
    color: var(--brand-navy);
  }
  .team-ceo-role {
    font-family: ui-monospace, monospace;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-top: 6px;
    margin-bottom: var(--space-xl);
  }
  .team-ceo-quote {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 24px);
    color: var(--brand-navy);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
    border-left: 3px solid var(--brand-red);
  }
  .team-ceo-bio {
    color: var(--ink-3);
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
  }

  /* Legacy grid (keep for compatibility) */
  .team-photo {
    aspect-ratio: 2/3;
    background: var(--bg-3);
    position: relative;
  }
  .team-info {
    padding: var(--space-lg);
  }
  .team-info h4 {
    font-size: 20px;
    color: var(--brand-navy);
    margin-bottom: 4px;
  }
  .team-info p {
    font-size: 13px;
    color: var(--ink-3);
    font-family: ui-monospace, monospace;
    letter-spacing: 0.05em;
  }

  /* Facility */
  .facility {
    padding: var(--space-3xl) 0;
    background: var(--bg-2);
  }
  .facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }
  .facility-visual {
    aspect-ratio: 4/3;
    background: var(--brand-navy);
    position: relative;
    overflow: hidden;
  }
  .facility-visual .photo-placeholder {
    width: 100%; height: 100%;
  }
  .facility-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: var(--space-xl);
    border-top: 1px solid var(--line);
  }
  .facility-stat {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--line);
  }
  .facility-stat .num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-navy);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .facility-stat .num small { color: var(--brand-red); font-size: 0.4em; font-weight: 600; }
  .facility-stat .lbl {
    font-size: 13px;
    color: var(--ink-3);
    margin-top: 6px;
  }

  /* Coverage */
  .coverage {
    padding: var(--space-3xl) 0;
    background: white;
  }
  .coverage-map {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--brand-navy);
    overflow: hidden;
    margin-top: var(--space-2xl);
  }
  .coverage-map::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .coverage-map svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
  }
  .coverage-label {
    position: absolute;
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 10px;
    background: rgba(10, 37, 64, 0.9);
    border: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
    z-index: 3;
  }
  .coverage-label.primary {
    background: var(--brand-red);
    border-color: var(--brand-red);
  }
  .coverage-legend {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(10, 37, 64, 0.95);
    padding: 16px;
    font-family: var(--font-display);
    font-size: 12px;
    color: white;
    z-index: 4;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .coverage-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
  }
  .coverage-legend .legend-item:first-of-type { margin-top: 10px; }
  .legend-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
  }

  @media (max-width: 900px) {
    .page-hero { padding: 120px 0 var(--space-xl); }
    .page-hero h1 { font-size: clamp(36px, 9vw, 56px); }
    .manifest-section,
    .timeline-section,
    .values-section,
    .team-section,
    .facility-section { padding: var(--space-2xl) 0; }
    .manifest-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .manifest-sticky { position: static; }
    .manifest-text h2 { font-size: clamp(26px, 7vw, 40px); }
    .timeline::before { left: 16px; }
    .timeline-event,
    .timeline-event:nth-child(even) {
      display: flex;
      flex-direction: row;
      direction: ltr;
      gap: var(--space-md);
      align-items: flex-start;
    }
    .timeline-event > div:empty { display: none; }
    .timeline-event:nth-child(even) .timeline-content { text-align: left; }
    .timeline-event:nth-child(even) .timeline-content p { margin-left: 0; }
    .timeline-dot {
      flex-shrink: 0;
      width: 32px;
      display: flex;
      justify-content: center;
      padding-top: 8px;
    }
    .timeline-content {
      flex: 1;
      padding: 0 0 var(--space-md) 0;
    }
    .timeline-content p { max-width: 100%; }
    .timeline-year { font-size: 28px; margin-bottom: 6px; }
    .timeline-content h4 { font-size: 18px; margin-bottom: 6px; }
    .timeline-content p { font-size: 14px; }
    .values-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .team-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
    .team-ceo-section { grid-template-columns: 1fr; gap: var(--space-xl); text-align: center; }
    .team-ceo-photo { max-width: 320px; margin: 0 auto; }
    .team-ceo-quote { border-left: none; padding-left: 0; text-align: center; }
    .team-ceo-bio { margin: 0 auto; }
    .facility-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    .team-grid { grid-template-columns: 1fr; }
    .timeline-year { font-size: 26px; }
    .value-card { padding: var(--space-md); }
  }
