/* ══════════════════════════════════════════════════════════════════
   interior.css — shared styles for all interior pages
   (servicios, nosotros, ubicaciones)
   ══════════════════════════════════════════════════════════════════ */

/* ─── Page Hero (shared) ────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 72px;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, #0d2040 0%, var(--bg) 70%);
}
.page-hero__glow {
  position: absolute;
  width: 600px; height: 400px;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(29,106,189,0.14) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.page-hero__content { max-width: 760px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 0.6rem; opacity: 0.5; }

.page-hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 16px 0 20px;
}
.page-hero__title .accent { color: var(--orange); }
.page-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ─── Services quick nav ────────────────────────────────────────── */
.services-nav {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.services-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.services-nav__inner::-webkit-scrollbar { display: none; }

.services-nav__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 14px 20px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.services-nav__item i { font-size: 0.875rem; color: var(--orange); }
.services-nav__item:hover { color: var(--text); border-color: var(--orange); }

/* ─── Service Section ───────────────────────────────────────────── */
.service-section { padding: 96px 0; }
.service-section--alt { background: var(--bg-alt); }

.service-section__inner {
  max-width: 820px;
}

.service-section__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.service-section__icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  flex-shrink: 0;
}
.service-section__icon--orange { background: var(--orange-glow); border: 1px solid var(--orange-border); color: var(--orange); }
.service-section__icon--blue   { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); color: #60a5fa; }
.service-section__icon--teal   { background: rgba(20,184,166,0.1); border: 1px solid rgba(20,184,166,0.2); color: #2dd4bf; }
.service-section__icon--green  { background: rgba(34,197,94,0.1);  border: 1px solid rgba(34,197,94,0.2);  color: #4ade80; }
.service-section__icon--purple { background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2); color: #c084fc; }

.service-section__type {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}
.service-section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.service-section__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 18px;
  transition: border-color 0.2s, background 0.2s;
}
.feature-item:hover {
  border-color: var(--orange-border);
  background: var(--surface-2);
}
.feature-item > i {
  color: var(--orange);
  font-size: 0.875rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.feature-item strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.feature-item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .service-features { grid-template-columns: 1fr; }
  .service-section { padding: 72px 0; }
  .services-nav__item { padding: 12px 14px; font-size: 0.75rem; }
}
