/* ─────────────────────────────────────────
   nosotros.css — Estilos exclusivos de Nosotros
   ───────────────────────────────────────── */

/* ─── PAGE HEADER ─── */
.page-header {
  background: linear-gradient(100deg, var(--azul) 60%, #0d1f3c 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 30px,
    rgba(255,255,255,.018) 30px, rgba(255,255,255,.018) 31px
  );
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--oro), var(--rojo), var(--oro));
}
.page-header-content { position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oro);
  border-left: 3px solid var(--oro);
  padding-left: .6rem;
  margin-bottom: .8rem;
}
.page-header h1 {
  font-family: var(--fuente-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 0;
}
.page-header p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin: .8rem 0 0;
}

/* ─── QUIÉNES SOMOS ─── */
.quienes-section {
  padding: 80px 0;
  background: #fff;
}
.quienes-lead {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #444;
  font-weight: 300;
}
.quienes-highlight {
  border-left: 4px solid var(--oro);
  padding: 1.2rem 1.5rem;
  background: var(--gris-claro);
  font-family: var(--fuente-display);
  font-size: 1.15rem;
  color: var(--azul);
  font-weight: 600;
  line-height: 1.6;
  margin: 2rem 0;
}
.quienes-body {
  font-size: .95rem;
  color: #555;
  line-height: 1.8;
}

/* ─── EMBLEMA ─── */
.emblema-outer {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(26,58,92,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gris-claro);
}
.emblema-inner {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.emblema-badge {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--azul);
  color: var(--oro);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  white-space: nowrap;
}

/* ─── STATS ─── */
.stat-num {
  font-family: var(--fuente-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gris-medio);
  margin-top: .2rem;
}

/* ─── HISTORIA ─── */
.historia-section {
  padding: 80px 0;
  background: var(--gris-claro);
}
.historia-timeline {
  position: relative;
  padding-left: 2rem;
}
.historia-timeline::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--oro), var(--rojo));
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2.45rem;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--oro);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--oro);
}
.timeline-year {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: .3rem;
}
.timeline-item h5 {
  font-family: var(--fuente-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: .4rem;
}
.timeline-item p {
  font-size: .92rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ─── MISIÓN / VISIÓN ─── */
.mision-section {
  padding: 80px 0;
  background: #fff;
}
.mv-card {
  height: 100%;
  padding: 2.5rem 2rem;
  border: 1px solid #e8e4dd;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s;
}
.mv-card:hover { box-shadow: 0 16px 48px rgba(26,58,92,.1); }
.mv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.mv-card.mision::before { background: var(--rojo); }
.mv-card.vision::before  { background: var(--oro); }
.mv-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.mv-card.mision .mv-icon { background: rgba(192,57,43,.08); color: var(--rojo); }
.mv-card.vision  .mv-icon { background: rgba(212,160,23,.10); color: var(--oro); }
.mv-card h4 {
  font-family: var(--fuente-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 1rem;
}
.mv-card p { font-size: .95rem; color: #555; line-height: 1.8; margin: 0; }

/* ─── VALORES ─── */
.valores-section {
  padding: 80px 0;
  background: var(--gris-claro);
}
.valor-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  background: #fff;
  border: 1px solid #e8e4dd;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.valor-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,58,92,.09);
}
.valor-icon {
  width: 48px;
  height: 48px;
  background: var(--azul);
  color: var(--oro);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.valor-text h6 {
  font-family: var(--fuente-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: .3rem;
}
.valor-text p { font-size: .85rem; color: #666; line-height: 1.65; margin: 0; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(100deg, var(--azul) 55%, var(--rojo) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 30px,
    rgba(255,255,255,.025) 30px, rgba(255,255,255,.025) 31px
  );
}
.cta-banner h2 {
  font-family: var(--fuente-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  font-weight: 700;
}
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1.05rem; }