/* ============================================
   NOSOTROS — Estilos específicos
   Depende de style.css (incluye .page-hero base,
   .cta-band, .section-header)
   ============================================ */

.page-hero { padding: 9rem 0 6rem; }
.page-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.page-hero-img-wrap { position: relative; }
.page-hero-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
}
.founded-pill {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  padding: 1.25rem 1.75rem;
  z-index: 2;
}
.founded-pill .num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.founded-pill .label { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  border-left: 3px solid var(--gold);
  transition: transform 0.25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }
.value-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--cream-2); line-height: 1; margin-bottom: 0.75rem;
}
.value-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden; text-align: center;
  transition: transform 0.25s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-card-body { padding: 1.25rem; }
.team-name { font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.8125rem; color: var(--gold); font-weight: 500; margin-bottom: 0.625rem; }
.team-bio { font-size: 0.8125rem; color: var(--muted); line-height: 1.55; }

/* Timeline */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: '';
  position: absolute; left: 0.5rem; top: 0.5rem; bottom: 0;
  width: 1px; background: var(--border);
}
.tl-item { position: relative; padding-bottom: 2.5rem; }
.tl-item::before {
  content: '';
  position: absolute; left: -2rem; top: 0.375rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}
.tl-year {
  font-size: 0.75rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 0.375rem;
}
.tl-item h3 { font-size: 1.125rem; margin-bottom: 0.375rem; }
.tl-item p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

/* Awards */
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.award-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
  transition: transform 0.2s;
}
.award-card:hover { transform: translateY(-3px); }
.award-icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.875rem; }
.award-card h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.375rem; }
.award-card p { font-size: 0.8rem; color: var(--muted); }

/* Mission band */
.mission-band {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 5rem; text-align: center;
}
.mission-band h2 {
  color: var(--white); margin-bottom: 1.5rem;
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}
.mission-band p {
  color: rgba(247,245,240,0.75);
  max-width: 600px; margin: 0 auto 2.5rem;
  font-size: 1.0625rem; line-height: 1.7;
}
