/* ══════════════════════════════════════════════════════════════════
   GINNOA · /servicios/ — Portafolio con jerarquía Línea → Servicio
   ══════════════════════════════════════════════════════════════════ */

.servicios-index main { background: linear-gradient(180deg, #fff 0%, #f7faf9 60%, #fff 100%); }

/* ── Explicación de la jerarquía ── */
.servicios-explain {
  padding-block: clamp(48px, 6vw, 80px);
}
.servicios-explain__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .servicios-explain__grid { grid-template-columns: 1fr; }
}
.servicios-explain__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-accent-strong, #00665c);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  padding: 5px 12px;
  background: rgba(0, 102, 92, 0.08);
  border: 1px solid rgba(0, 102, 92, 0.16);
  border-radius: 999px;
}
.servicios-explain__text h2 {
  font-family: var(--font-display, var(--font-body));
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a1f1d;
  margin: 0 0 18px;
}
.servicios-explain__text h2 em {
  font-style: normal;
  color: var(--brand-accent, #00665c);
}
.servicios-explain__text p {
  font-size: 1rem;
  line-height: 1.65;
  color: #4a5854;
  margin: 0 0 14px;
}
.servicios-explain__text p strong { color: #0a1f1d; font-weight: 600; }
.servicios-explain__hint {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 204, 0, 0.10);
  border: 1px solid rgba(255, 204, 0, 0.32);
  border-radius: 12px;
  font-size: 0.9rem;
  color: #55524a;
  line-height: 1.55;
}
.servicios-explain__hint i {
  color: #b8860b;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.servicios-explain__hint strong { color: #0a1f1d; }

/* Diagrama visual: línea → 3 servicios */
.servicios-explain__diagram {
  position: relative;
  padding: 32px 24px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(0, 102, 92, 0.06), transparent 60%),
    #fff;
  border: 1px solid rgba(0, 34, 30, 0.08);
  border-radius: 20px;
  box-shadow: 0 20px 40px -20px rgba(0, 34, 30, 0.12);
}
.servicios-explain__linea {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #00665c, #65beac);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px -12px rgba(0, 102, 92, 0.5);
  margin: 0 auto 24px;
  max-width: 240px;
  text-align: center;
}
.servicios-explain__badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffcc00;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.servicios-explain__linea strong {
  font-size: 0.98rem;
  color: #fff;
}
.servicios-explain__branch {
  display: grid;
  gap: 10px;
  position: relative;
  padding-top: 12px;
}
.servicios-explain__branch::before {
  content: "";
  position: absolute;
  top: -12px; left: 50%;
  width: 2px; height: 12px;
  background: linear-gradient(180deg, #00665c, transparent);
  transform: translateX(-50%);
}
.servicios-explain__servicio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(0, 102, 92, 0.14);
  border-radius: 10px;
  font-size: 0.88rem;
  color: #0a1f1d;
  font-weight: 500;
}
.servicios-explain__servicio i {
  color: var(--brand-accent, #00665c);
  font-size: 12px;
}

/* ── Tree: líneas + servicios anidados ── */
.servicios-tree {
  padding-block: clamp(40px, 6vw, 72px);
}
.servicios-tree .section-head {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.servicios-tree .section-title em {
  font-style: normal;
  color: var(--brand-accent, #00665c);
}

/* ══════════════════════════════════════════════════════════════════
   EXPLORER · Rail de líneas (tabs) + panel de servicios (una a la vez)
   ══════════════════════════════════════════════════════════════════ */
.svc-explorer {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

/* ── Rail / tablist ── */
.svc-explorer__rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 92px;
}
.svc-tab {
  --line: #00665c; --line-to: #65beac;
  display: flex; align-items: center; gap: 13px;
  width: 100%;
  padding: 13px 15px;
  background: #fff;
  border: 1px solid rgba(0, 34, 30, 0.08);
  border-radius: 16px;
  font: inherit; text-align: left; color: #0a1f1d;
  cursor: pointer;
  box-shadow: 0 12px 26px -20px rgba(0, 34, 30, 0.24);
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .25s, box-shadow .25s, background .25s, color .25s;
}
.svc-tab:hover { transform: translateX(3px); border-color: var(--line); }
.svc-tab:focus-visible { outline: 3px solid rgba(255, 193, 7, 0.6); outline-offset: 2px; }
.svc-tab__icon {
  flex-shrink: 0; width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; font-size: 18px; color: #fff;
  background: linear-gradient(135deg, var(--line), var(--line-to));
  box-shadow: 0 6px 16px -8px var(--line);
}
.svc-tab__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.svc-tab__text strong {
  font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2;
  overflow: hidden; text-overflow: ellipsis;
}
.svc-tab__count {
  font-size: 0.7rem; font-weight: 600; color: #7a8380;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.svc-tab__chevron { flex-shrink: 0; color: #b9c2bf; font-size: 12px; transition: transform .25s, color .25s; }

.svc-tab[aria-selected="true"] {
  border-color: transparent; color: #fff;
  background: linear-gradient(135deg, var(--line), var(--line-to));
  box-shadow: 0 18px 34px -18px var(--line);
}
.svc-tab[aria-selected="true"] .svc-tab__count { color: rgba(255, 255, 255, 0.82); }
.svc-tab[aria-selected="true"] .svc-tab__chevron { color: #fff; transform: translateX(2px); }
.svc-tab[aria-selected="true"] .svc-tab__icon {
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

/* ── Stage / paneles ── */
.svc-explorer__stage { position: relative; min-width: 0; }
.svc-panel {
  --line: #00665c; --line-to: #65beac;
  background: #fff;
  border: 1px solid rgba(0, 34, 30, 0.07);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px -28px rgba(0, 34, 30, 0.20);
  animation: svc-panel-in .4s cubic-bezier(.16,1,.3,1);
}
.svc-panel[hidden] { display: none; }
.svc-panel:focus-visible { outline: 3px solid rgba(255, 193, 7, 0.5); outline-offset: -3px; }
@keyframes svc-panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.svc-panel__head {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: clamp(20px, 2.6vw, 30px);
  color: #fff;
  background: linear-gradient(135deg, var(--line) 0%, var(--line-to) 100%);
  overflow: hidden; isolation: isolate;
}
.svc-panel__head::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("/assets/img/logo/isotipo.svg?v=20260617") right -22px center / 150px no-repeat;
  filter: invert(1) opacity(0.08);
  pointer-events: none;
}
.svc-panel__head > * { position: relative; z-index: 1; }
.svc-panel__head-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 15px; font-size: 22px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.svc-panel__head-text { min-width: 0; }
.svc-panel__badge {
  display: inline-block; margin-bottom: 8px;
  padding: 3px 11px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.30);
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.svc-panel__title {
  font-family: var(--font-display, var(--font-body));
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 700; line-height: 1.15;
  letter-spacing: -0.015em; margin: 0 0 5px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}
.svc-panel__tagline {
  margin: 0; font-size: 0.92rem; line-height: 1.45;
  color: rgba(255, 255, 255, 0.90); max-width: 60ch;
}
.svc-panel__view {
  align-self: center; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff; text-decoration: none; font-size: 0.84rem; font-weight: 600;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background .25s, gap .25s, border-color .25s;
}
.svc-panel__view:hover { background: rgba(255, 255, 255, 0.24); gap: 12px; border-color: rgba(255, 204, 0, 0.6); }

.svc-panel__grid {
  padding: clamp(16px, 2.2vw, 22px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}
.svc-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #fafcfb;
  border: 1px solid rgba(0, 34, 30, 0.06);
  border-radius: 14px; text-decoration: none; color: #0a1f1d;
  transition: transform .25s cubic-bezier(.16,1,.3,1), background .25s, border-color .25s, box-shadow .25s;
}
.svc-card:hover {
  transform: translateY(-3px); background: #fff;
  border-color: var(--line);
  box-shadow: 0 14px 26px -16px rgba(0, 34, 30, 0.28);
}
.svc-card__icon {
  flex-shrink: 0; width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; font-size: 16px; color: #fff;
  background: linear-gradient(135deg, var(--line), var(--line-to));
}
.svc-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.svc-card__body strong { font-size: 0.92rem; font-weight: 700; letter-spacing: -0.005em; color: #0a1f1d; }
.svc-card__body span {
  font-size: 0.79rem; color: #7a8380; line-height: 1.4;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.svc-card__arrow { flex-shrink: 0; color: #b9c2bf; font-size: 12px; transition: transform .2s, color .2s; }
.svc-card:hover .svc-card__arrow { transform: translateX(3px); color: var(--line); }

/* Panel sin servicios activos */
.svc-panel__empty {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(0, 102, 92, 0.04);
  border: 1px dashed rgba(0, 102, 92, 0.28);
  border-radius: 16px;
}
.svc-panel__empty-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--line); color: #fff; border-radius: 13px; font-size: 20px; opacity: 0.92;
}
.svc-panel__empty-text { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 3px; }
.svc-panel__empty-text strong { font-size: 1rem; color: #0a1f1d; }
.svc-panel__empty-text span { font-size: 0.88rem; color: #55625f; line-height: 1.5; }
.svc-panel__empty-cta {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 11px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--line), var(--line-to));
  color: #fff; text-decoration: none; font-size: 0.86rem; font-weight: 600;
  box-shadow: 0 12px 24px -12px var(--line);
  transition: gap .25s;
}
.svc-panel__empty-cta:hover { gap: 12px; }

/* Sin líneas (fallback global) */
.svc-empty--global {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px; padding: 48px 32px;
  background: #fff; border: 1px dashed rgba(0, 102, 92, 0.20);
  border-radius: 18px; color: #55524a;
}
.svc-empty--global i { font-size: 32px; color: var(--brand-accent, #00665c); }
.svc-empty--global a { color: var(--brand-accent, #00665c); font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .svc-explorer { grid-template-columns: 1fr; }
  .svc-explorer__rail {
    position: static;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .svc-tab { flex: 0 0 auto; width: auto; max-width: 250px; scroll-snap-align: start; }
  .svc-tab:hover { transform: none; }
  .svc-tab__chevron { display: none; }
}
@media (max-width: 560px) {
  .svc-panel__head { grid-template-columns: auto minmax(0, 1fr); }
  .svc-panel__view { grid-column: 1 / -1; justify-self: start; }
  .svc-panel__grid { grid-template-columns: 1fr; }
}

/* CTA final */
.servicios-cta {
  padding-block: clamp(40px, 6vw, 80px);
}
.servicios-cta__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(32px, 5vw, 56px);
  background: linear-gradient(135deg, #00221e 0%, #005f56 100%);
  border-radius: 24px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
@media (max-width: 720px) {
  .servicios-cta__banner { flex-direction: column; text-align: center; }
}
.servicios-cta__banner::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  top: -140px; right: -140px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.18), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}
.servicios-cta__banner > * { position: relative; z-index: 1; }
.servicios-cta__banner h2 {
  font-family: var(--font-display, var(--font-body));
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #fff;
}
.servicios-cta__banner p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 52ch;
}

/* ══════════════════════════════════════════════════════════════════
   HERO SPLIT · /servicios/ — texto izq + panel de stats der
   ══════════════════════════════════════════════════════════════════ */
.servicios-hero {
  position: relative;
  padding-block: clamp(60px, 8vw, 110px) clamp(56px, 7vw, 96px) !important;
  overflow: hidden;
  isolation: isolate;
}
/* Aseguramos el overlay sobre la foto de fondo (dark teal como base) */
.servicios-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(103deg, rgba(0, 18, 17, 0.94) 0%, rgba(0, 30, 28, 0.86) 30%, rgba(0, 46, 44, 0.60) 58%, rgba(0, 60, 58, 0.50) 100%),
    linear-gradient(180deg, rgba(0, 18, 17, 0.20) 0%, transparent 40%, rgba(0, 14, 13, 0.55) 100%);
  pointer-events: none;
}
/* La foto pasa a ser textura: bajamos brillo/saturación y anulamos el overlay
   inyectado para que nuestro ::before sea el único scrim (sin doble oscurecido). */
.servicios-hero .page-hero__bg-image,
.servicios-hero .page-hero__bg-video { filter: brightness(0.82) saturate(0.88); }
.servicios-hero .page-hero__bg-overlay { background: none; backdrop-filter: none; -webkit-backdrop-filter: none; }

/* Figuras flotantes: en /servicios/ las dejamos como textura muy sutil */
.servicios-hero .shape--icon { opacity: 0.14 !important; }
.servicios-hero .shape--spiral { opacity: 0.08 !important; }
.servicios-hero .shape--icon-1,
.servicios-hero .shape--icon-3,
.servicios-hero .shape--icon-7 { display: none; } /* las que caen sobre el título */
.servicios-hero__bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.servicios-hero__glow-a {
  position: absolute; width: 620px; height: 620px;
  top: -200px; right: -220px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.22), transparent 62%);
  filter: blur(18px);
}
.servicios-hero__glow-b {
  position: absolute; width: 500px; height: 500px;
  bottom: -160px; left: -140px;
  background: radial-gradient(circle, rgba(0, 185, 163, 0.20), transparent 62%);
  filter: blur(22px);
}
.servicios-hero__muisca {
  position: absolute;
  width: 340px; height: 340px;
  bottom: -80px; right: 8%;
  background: url("/assets/img/logo/isotipo.svg?v=20260617") center/contain no-repeat;
  filter: invert(1) opacity(0.05);
  transform: rotate(-10deg);
}

.servicios-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1240px !important;
}

.servicios-hero__crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: clamp(28px, 4vw, 40px);
}
.servicios-hero__crumbs a { color: rgba(255,255,255,0.72); text-decoration: none; transition: color .2s; }
.servicios-hero__crumbs a:hover { color: #ffcc00; }
.servicios-hero__crumbs [aria-current="page"] { color: #ffcc00; font-weight: 600; }
.servicios-hero__crumbs span[aria-hidden] { opacity: 0.5; }

.servicios-hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
@media (max-width: 900px) {
  .servicios-hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

.servicios-hero__text { max-width: 64ch; }
.servicios-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 204, 0, 0.18);
  border: 1px solid rgba(255, 204, 0, 0.38);
  color: #ffcc00;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.servicios-hero__eyebrow i { font-size: 11px; }

.servicios-hero__title {
  font-family: var(--font-display, var(--font-body)) !important;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 18px !important;
  color: #fff !important;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4) !important;
}
.servicios-hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem) !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.90) !important;
  margin: 0 0 32px !important;
  max-width: none !important;
}

.servicios-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.servicios-hero__ghost {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  backdrop-filter: blur(8px);
}
.servicios-hero__ghost:hover {
  background: rgba(255,255,255,0.16) !important;
  border-color: rgba(255,255,255,0.40) !important;
}

/* ── Panel de stats a la derecha ── */
.servicios-hero__panel {
  position: relative;
  padding: clamp(24px, 2.4vw, 30px);
  background:
    linear-gradient(155deg, rgba(0, 40, 38, 0.62) 0%, rgba(0, 26, 25, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 30px 60px -20px rgba(0, 0, 0, 0.55);
}
.servicios-hero__panel::after {
  content: "";
  position: absolute; z-index: -1;
  width: 220px; height: 220px; top: -70px; right: -60px;
  background: url("/assets/img/logo/isotipo.svg?v=20260617") center/contain no-repeat;
  filter: invert(1) opacity(0.05);
  transform: rotate(12deg);
  pointer-events: none;
}
.servicios-hero__panel > * { position: relative; z-index: 1; }
.servicios-hero__panel-head { margin-bottom: 22px; }
.servicios-hero__panel-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 204, 0, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.servicios-hero__panel-head p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.servicios-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255, 204, 0, 0.16);
  border-bottom: 1px solid rgba(255, 204, 0, 0.16);
  padding: 18px 0;
}
.servicios-hero__stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
}
.servicios-hero__stat + .servicios-hero__stat {
  border-top: 1px dashed rgba(255, 255, 255, 0.10);
}
.servicios-hero__stat-value {
  font-family: var(--font-display, var(--font-body));
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffcc00;
  line-height: 1;
  letter-spacing: -0.03em;
  min-width: 3ch;
  text-align: right;
  text-shadow: 0 2px 12px rgba(255, 204, 0, 0.25);
}
.servicios-hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.3;
}

.servicios-hero__panel-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 12px 14px;
  background: rgba(255, 204, 0, 0.10);
  border: 1px solid rgba(255, 204, 0, 0.24);
  border-radius: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.45;
}
.servicios-hero__panel-hint i {
  color: #ffcc00;
  font-size: 12px;
  flex-shrink: 0;
  animation: hero-arrow-bob 2.4s ease-in-out infinite;
}
@keyframes hero-arrow-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
@media (prefers-reduced-motion: reduce) { .servicios-hero__panel-hint i { animation: none; } }
