/* =========================================================
   TRAVEL NOW — NOSOTROS STYLES v2.0
========================================================= */

.nosotros-hero {
  min-height: 520px;
  background: linear-gradient(165deg, var(--color-primary) 0%, #1F3C88 60%, #0D2E5E 100%);
  display: flex;
  align-items: center;
  padding: clamp(100px, 14vw, 160px) 0 80px;
  position: relative;
  overflow: hidden;
}
.nosotros-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(47,164,255,.25) 0%, transparent 55%);
}
.nosotros-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-bg-soft));
}

.nosotros-hero .hero-content { position: relative; z-index: 1; }
.nosotros-hero .hero-eyebrow { color: var(--color-accent); }
.nosotros-hero h1 { color: #fff; max-width: 600px; }
.nosotros-hero .hero-desc {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 16px;
}

/* Stats destacados */
.nosotros-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--color-border);
  margin-top: 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ns-stat {
  background: var(--color-bg-card);
  padding: 28px 24px;
  text-align: center;
}
.ns-stat .n {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-display);
  line-height: 1;
}
.ns-stat .n span { color: var(--color-accent); }
.ns-stat .l { font-size: .8rem; color: var(--color-text-muted); margin-top: 6px; }

/* === MISION / VISION === */
.mision-vision {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--color-bg-soft);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-top, var(--color-accent));
}
.mv-card .mv-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--card-top, var(--color-accent));
}
.mv-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.mv-card p { font-size: .9rem; color: var(--color-text-muted); line-height: 1.75; }

/* === VALORES === */
.valores-section {
  padding: clamp(64px, 8vw, 100px) 0;
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.valor-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  transition: all var(--transition-base);
}
.valor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--color-bg-card); }
.valor-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--icon-bg);
  color: var(--icon-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.valor-card h4 { font-size: .95rem; margin-bottom: 8px; }
.valor-card p { font-size: .85rem; color: var(--color-text-muted); line-height: 1.65; }

/* === PROCESO === */
.proceso-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--color-primary);
}
.proceso-section .section-header h2 { color: #fff; }
.proceso-section .section-header p { color: rgba(255,255,255,.6); }

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.proceso-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: rgba(255,255,255,.15);
}

.proceso-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-circle {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  background: rgba(47,164,255,.2);
  border: 2px solid var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
}
.proceso-step h4 { color: #fff; font-size: .95rem; margin-bottom: 8px; }
.proceso-step p { color: rgba(255,255,255,.6); font-size: .82rem; line-height: 1.6; }

/* === CTA === */
.nosotros-cta {
  padding: clamp(64px, 8vw, 100px) 0;
  text-align: center;
  background: var(--color-bg-soft);
}
.nosotros-cta h2 { margin-bottom: 12px; }
.nosotros-cta p { color: var(--color-text-muted); margin-bottom: 28px; font-size: 1rem; }
.nosotros-cta .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 760px) {
  .mv-grid { grid-template-columns: 1fr; }
  .proceso-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proceso-steps::before { display: none; }
  .nosotros-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .proceso-steps { grid-template-columns: 1fr; }
  .nosotros-stats { grid-template-columns: 1fr 1fr; }
}
