/* ADV Technology — nosotros.html styles */

/* ── Page hero (shared pattern for inner pages) ─ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color: var(--white);
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-block: 1rem .75rem;
}
.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .6rem; }
.breadcrumb span { color: var(--white); }

/* ── Quiénes somos grid ─────────────────────── */
.nos-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.nos-intro-image {
  position: relative;
}
.nos-intro-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.nos-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--blue-dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-md);
}
.nos-badge i { font-size: 1.5rem; color: var(--orange); }
.nos-badge strong { display: block; font-size: .9rem; }
.nos-badge span { font-size: .78rem; color: rgba(255,255,255,.7); }

/* ── Estadísticas (sección azul) ────────────── */
.section--blue {
  background: var(--blue-dark);
  color: var(--white);
}
.nos-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.nos-stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: .5rem;
}
.nos-stat-card span {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}

/* ── Valores ─────────────────────────────────── */
.nos-valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.nos-valor-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--orange);
}
.nos-valor-icon {
  width: 52px;
  height: 52px;
  background: rgba(240,90,26,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 1rem;
}
.nos-valor-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
}
.nos-valor-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Proceso ─────────────────────────────────── */
.nos-proceso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.nos-proceso-step {
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gray-100);
}
.nos-proceso-step:hover { border-left-color: var(--orange); }
.nos-proceso-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: .5rem;
}
.nos-proceso-step h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .4rem;
}
.nos-proceso-step p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Ubicación ───────────────────────────────── */
.nos-ubicacion-map {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.nos-ubicacion-map iframe {
  width: 100%;
  height: 100%;
}

.nos-ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.nos-ubicacion-details {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-block: 1.5rem 2rem;
}

/* ── Ubicación — override contact-item (fondo claro) ── */
.nos-ubicacion-details .contact-item {
  color: var(--gray-700);
}
.nos-ubicacion-details .contact-item:hover {
  color: var(--orange);
}
.nos-ubicacion-details .contact-item a {
  color: var(--gray-700);
}
.nos-ubicacion-details .contact-item a:hover {
  color: var(--orange);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .nos-intro-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .nos-intro-image   { order: -1; }
  .nos-badge         { bottom: 1rem; left: 1rem; }
  .nos-stats-grid    { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .nos-valores-grid  { grid-template-columns: 1fr 1fr; }
  .nos-proceso-grid  { grid-template-columns: 1fr 1fr; }
  .nos-ubicacion-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nos-stats-grid   { grid-template-columns: 1fr 1fr; }
  .nos-valores-grid { grid-template-columns: 1fr; }
  .nos-proceso-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .nos-stats-grid { grid-template-columns: 1fr 1fr; }
  .nos-stat-card strong { font-size: 2rem; }
}
