/* TouchColombia · estilos consolidados */

/* ============================================================
   TOUCHCOLOMBIA · REDISEÑO WEB v2
   Paleta: Azul profundo TouchColombia + Rojo marca
   ============================================================ */
:root {
  /* AZULES TOUCHCOLOMBIA */
  --ink: #111C3A;         /* Azul noche profundo — fondos hero, secciones dark */
  --ink-2: #1A2850;       /* Azul medio — cards dark, navbar */
  --ink-3: #1B3161;       /* Azul corporativo — hover, gradientes */
  --brand-blue: #0066B3;  /* Azul Movistar/corporativo visible en productos */
  --brand-blue-light: #2FA5F5;
  --accent: #00D4FF;      /* Cyan eléctrico — highlights, acentos brillantes */
  --accent-soft: rgba(0, 212, 255, 0.18);

  /* ROJOS TOUCHCOLOMBIA */
  --red: #E11E2C;
  --red-hot: #FF3B47;
  --red-deep: #B91119;

  /* NEUTROS */
  --cream: #FAFBFF;
  --cream-2: #F3F6FC;
  --graphite: #0F172A;
  --graphite-2: #1E293B;
  --graphite-3: #64748B;
  --graphite-4: #94A3B8;
  --border: #DCE4F0;
  --border-dark: rgba(255,255,255,0.08);
  --border-blue: rgba(0, 212, 255, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--graphite);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  color: var(--graphite);
}
.display-xl { font-size: clamp(48px, 7vw, 104px); font-weight: 900; letter-spacing: -0.04em; line-height: 0.95; }
.display-l  { font-size: clamp(40px, 5vw, 72px);  font-weight: 900; letter-spacing: -0.035em; line-height: 1; }
.display-m  { font-size: clamp(28px, 2.9vw, 40px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.12; }
.display-s  { font-size: clamp(24px, 2.6vw, 36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--red);
}
.eyebrow.light { color: #FF6B75; }
.eyebrow.light::before { background: #FF6B75; }
.eyebrow.cyan { color: var(--accent); }
.eyebrow.cyan::before { background: var(--accent); }

.lead {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.55;
  color: var(--graphite-2);
  font-weight: 400;
}

em.accent { font-style: normal; color: var(--red); font-weight: inherit; }
em.cyan { font-style: normal; color: var(--accent); font-weight: inherit; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(225, 30, 44, 0.3);
}
.btn-primary:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(225, 30, 44, 0.45);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn-dark {
  background: var(--graphite);
  color: #fff;
}
.btn-dark:hover { background: var(--graphite-2); transform: translateY(-2px); }
.btn-arrow { transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ========== NAV ========== */
.top-bar {
  background: var(--ink);
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; color: rgba(255,255,255,0.65); }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-left span { display: inline-flex; gap: 6px; align-items: center; }
.top-bar-left span strong { color: #fff; font-weight: 600; }
.top-bar-right { display: flex; gap: 18px; align-items: center; }
.top-bar-right a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.top-bar-right a:hover { color: #fff; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.nav {
  background: rgba(17, 28, 58, 0.96);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 11px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(225, 30, 44, 0.35);
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-text span.touch-o { color: var(--red); }

.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: rgba(255,255,255,0.8);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}
.nav-links > li > a:hover { color: var(--accent); }
.nav-links .caret { font-size: 10px; opacity: 0.5; }

.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta .btn { padding: 12px 22px; font-size: 14px; }

/* ========== HERO — corporate light (v3) ========== */
.hero {
  background:
    linear-gradient(180deg, #FAFBFF 0%, #F0F3FA 100%);
  color: var(--graphite);
  padding: 70px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 85% 15%, rgba(0, 102, 179, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 15% 85%, rgba(225, 30, 44, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,30,44,0.3), transparent);
}

/* Subtle grid pattern for corporate feel */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.8) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.8) 0%, transparent 80%);
}

/* Fingerprint texture nod to logo */
.hero-fingerprint {
  position: absolute;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.hero-content .eyebrow { margin-bottom: 28px; }
.hero-title {
  color: var(--graphite);
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 76px);
  letter-spacing: -0.035em;
  line-height: 0.98;
}
@media (min-width: 1440px) {
  .hero-title { font-size: 72px; }
}
.hero-title em {
  font-style: normal;
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0; right: 0;
  height: 12px;
  background: rgba(225, 30, 44, 0.15);
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  color: var(--graphite-2);
  font-size: 19px;
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}
.hero-trust-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--graphite-3);
  white-space: nowrap;
  max-width: 120px;
  line-height: 1.4;
  font-weight: 600;
}
.hero-trust-logos {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

/* New ghost button variant for light hero */
.hero .btn-ghost {
  color: var(--graphite);
  border-color: rgba(15, 23, 42, 0.2);
}
.hero .btn-ghost:hover {
  background: rgba(15, 23, 42, 0.05);
  border-color: var(--graphite);
}

/* Hero visual - light corporate */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 40px 80px -20px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(15, 23, 42, 0.06);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Light badges for light hero */
.float-badge {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--graphite);
  box-shadow: 0 10px 25px -6px rgba(15, 23, 42, 0.2);
  z-index: 3;
  min-width: 120px;
}
.float-badge .lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
}
.float-badge .val { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: var(--graphite); }
.float-badge .val em { color: var(--red); font-style: normal; }
.float-badge .sub { font-size: 9px; color: var(--graphite-3); margin-top: 2px; }
.float-badge.b1 { bottom: 5%; left: 5%; }
.float-badge.b3 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.float-badge.b2 { bottom: 5%; right: 5%; }


/* Logo oficial (imagen) en el nav */
.logo-official { height: 32px; width: auto; display: block; }
@media (max-width: 768px) { .logo-official { height: 26px; } }

/* Trust logos in hero (small B&W style client logos) */
.trust-client-logo {
  height: 24px;
  opacity: 0.65;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.trust-client-logo:hover { opacity: 1; }
.trust-client-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}
.trust-client-text:hover { color: rgba(255,255,255,0.9); }

/* ========== METRICS STRIP ========== */
.metrics {
  background: var(--ink);
  color: #fff;
  margin-top: -1px;
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(0, 212, 255, 0.15);
}
.metrics-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.metric {
  padding: 40px 30px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.metric:last-child { border-right: none; }
.metric:hover { background: rgba(0, 212, 255, 0.03); }
.metric-val {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.metric-val em { font-style: normal; color: var(--red-hot); }
.metric-lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  line-height: 1.45;
}

/* ========== SECTION COMMON ========== */
.section { padding: 120px 0; position: relative; }
.section-sm { padding: 80px 0; }
.section-dark {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,0.72); }
.section-cream { background: var(--cream-2); }

.section-head { margin-bottom: 80px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 20px; }

h2.inner {
  font-size: 15pt;
  font-weight: 700;
  margin: 8mm 0 4mm 0;
  color: var(--graphite);
  border-left: 4px solid var(--red);
  padding-left: 4mm;
}

/* ========== MODELO 360 ========== */
.m360 {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 50%, var(--ink) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.m360::before {
  content: "360";
  position: absolute;
  right: -60px;
  top: 30%;
  transform: translateY(-50%);
  font-size: 600px;
  font-weight: 900;
  color: rgba(0, 212, 255, 0.025);
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
}
.m360-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.m360-intro h2 { margin-bottom: 24px; }
.m360-intro .lead { margin-bottom: 32px; }
.m360-promise {
  background: rgba(225,30,44,0.08);
  border: 1px solid rgba(225,30,44,0.3);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  border-radius: 6px;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 32px;
}
.m360-promise strong { color: var(--red-hot); }

.m360-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.m360-service {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.m360-service:hover {
  background: rgba(0, 212, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-4px);
}
.m360-service::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--red));
  transition: width 0.4s;
}
.m360-service:hover::before { width: 100%; }
.m360-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.m360-service h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.m360-service p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.55;
}
.m360-service ul { list-style: none; margin-top: 12px; }
.m360-service li {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.5;
}
.m360-service li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ========== LOGÍSTICA DEL DINERO — sección dedicada ========== */
.logistics {
  background: #fff;
  padding: 120px 0;
  position: relative;
}
.logistics-head { max-width: 900px; margin: 0 auto 60px; text-align: center; }
.logistics-head .eyebrow { justify-content: center; margin-bottom: 20px; }
.logistics-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto 60px;
}
.logistics-step {
  flex: 1 1 0;
  min-width: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px 20px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.logistics-step:hover {
  border-color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 102, 179, 0.1);
}
.logistics-step-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(0, 102, 179, 0.08);
  border-radius: 10px;
  margin-bottom: 14px;
  color: var(--brand-blue);
}
.logistics-step-icon svg { width: 24px; height: 24px; display: block; }
.logistics-step-num {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}
.logistics-step h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.logistics-step p {
  font-size: 12px;
  color: var(--graphite-3);
  line-height: 1.5;
  margin: 0;
}
.logistics-arrow {
  flex: 0 0 auto;
  align-self: center;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  opacity: 0.45;
  padding: 0 6px;
}
.logistics-arrow svg { width: 18px; height: 18px; display: block; }

@media (max-width: 1024px) {
  .logistics-flow { flex-wrap: wrap; justify-content: center; }
  .logistics-step { flex: 1 1 calc(50% - 20px); min-width: 220px; }
  .logistics-arrow { display: none; }
}
@media (max-width: 560px) {
  .logistics-step { flex: 1 1 100%; }
}

.logistics-final {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--ink-3) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.logistics-final::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.logistics-final h3 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 14px;
  position: relative;
}
.logistics-final h3 em { color: var(--accent); font-style: normal; }
.logistics-final p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 20px;
  position: relative;
}
.logistics-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.logistics-benefits li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.logistics-benefits li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

/* ========== SOLUCIONES POR SECTOR ========== */
.solutions { background: var(--cream); padding: 120px 0; }
.sol-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  justify-content: center;
}
.sol-tab {
  padding: 12px 22px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--graphite-2);
  cursor: pointer;
  transition: all 0.2s;
}
.sol-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sol-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -15px rgba(17, 28, 58, 0.2);
  border-color: transparent;
}
.sol-visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--ink-3) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.sol-visual::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.sol-icon {
  position: relative;
  z-index: 2;
  font-size: 80px;
  opacity: 0.9;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.sol-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.32;
  filter: saturate(0.85) contrast(1.05);
  transition: opacity 0.35s ease, transform 0.5s ease;
}
.sol-card:hover .sol-bg {
  opacity: 0.55;
  transform: scale(1.04);
}
.sol-visual.has-photo {
  background: linear-gradient(135deg, #0a1420 0%, #111C3A 100%);
}
.sol-visual.has-photo::before {
  background: radial-gradient(circle, rgba(0, 212, 255, 0.22) 0%, transparent 55%);
  opacity: 0.7;
}

.sol-visual-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  z-index: 2;
}
.sol-visual-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}
.sol-body {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sol-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.sol-card p {
  color: var(--graphite-3);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.sol-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sol-features li {
  font-size: 13px;
  color: var(--graphite-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.sol-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
}
.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 13.5px;
  font-weight: 700;
  transition: gap 0.25s;
}
.sol-link:hover { gap: 10px; }

/* ========== PAGOS ========== */
.pay-section {
  background: linear-gradient(180deg, #FAFBFF 0%, #EEF3FC 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 56px;
  align-items: center;
}
.pay-intro .eyebrow { margin-bottom: 18px; }
.pay-intro h2 { margin-bottom: 18px; }
.pay-intro .lead { margin-bottom: 24px; font-size: 15px; }
.pay-intro .big-claim {
  background: var(--ink);
  color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--red);
}
.pay-intro .big-claim strong { color: var(--accent); font-weight: 700; }

/* v5: 2x2 grid, compact */
.pay-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.pay-group {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 4px 14px rgba(17, 28, 58, 0.04);
  display: flex;
  flex-direction: column;
}
.pay-group-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
.pay-group-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--red);
  flex: 0 0 auto;
}
.pay-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.pay-logo {
  aspect-ratio: 2.3 / 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 6px 10px;
  transition: all 0.2s;
  min-height: 44px;
}
.pay-logo:hover {
  border-color: var(--brand-blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 102, 179, 0.1);
}
.pay-logo img {
  max-height: 26px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pay-logo.txt {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
}
.pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pay-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--graphite-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.pay-chip:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-1px);
}
.pay-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex: 0 0 auto;
}

@media (max-width: 960px) {
  .pay-grid { grid-template-columns: 1fr; gap: 40px; }
  .pay-groups { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pay-groups { grid-template-columns: 1fr; }
}

/* ========== ALIADOS (logos reales) ========== */
.allies {
  background: #fff;
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.allies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.ally {
  aspect-ratio: 2.4 / 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 24px 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ally::after {
  content: attr(data-role);
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite-3);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s;
}
.ally:hover {
  border-color: var(--brand-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(17, 28, 58, 0.08);
}
.ally:hover::after { opacity: 1; }
.ally img {
  max-height: 60px;
  max-width: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}
.ally:hover img { transform: scale(1.05); }

/* ========== CLIENTS (logos) ========== */
.clients {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-inner { text-align: center; }
.clients-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--graphite-3);
  font-weight: 600;
  margin-bottom: 32px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.client {
  aspect-ratio: 2 / 1;
  display: grid;
  place-items: center;
  padding: 16px;
  transition: all 0.25s;
  border-radius: 10px;
}
.client:hover { background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.04); }
/* Typographic client logos - each brand in its own style */
.client-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--graphite);
  line-height: 1;
  transition: opacity 0.2s;
  white-space: nowrap;
  text-align: center;
}
/* Brand-specific colors (best-effort approximation) */
.cl-avianca { color: #D9262E; font-size: 22px; font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: 0.02em; }
.cl-avianca::before { content: "a"; color: #D9262E; font-size: 32px; vertical-align: -2px; margin-right: 2px; font-weight: 900; }
.cl-movistar { color: #019DF4; font-size: 20px; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 0; }
.cl-telefonica { color: #019DF4; font-size: 18px; font-weight: 300; letter-spacing: 0.01em; }
.cl-terpel { color: #E30613; font-size: 21px; font-weight: 900; letter-spacing: -0.03em; }
.cl-colsubsidio { color: #FF6B00; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.cl-compensar { color: #E30613; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.cl-santafe { color: #00538C; font-size: 14px; font-weight: 700; line-height: 1.15; }
.cl-saludtotal { color: #005DAA; font-size: 17px; font-weight: 800; }
.cl-virrey { color: #005FAF; font-size: 16px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.1;}
.cl-emcali { color: #EC6608; font-size: 20px; font-weight: 900; letter-spacing: 0.02em; }
.cl-fontur { color: #003976; font-size: 20px; font-weight: 800; letter-spacing: 0.02em; }
.cl-acueducto { color: #00B7BD; font-size: 13px; font-weight: 700; line-height: 1.15; }
.cl-aguas { color: #004A98; font-size: 14px; font-weight: 800; line-height: 1.1; }
.cl-empopasto { color: #009B3A; font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.cl-triple { color: #0057A5; font-size: 19px; font-weight: 900; letter-spacing: 0.05em; }
.cl-pwd { color: #D70029; font-size: 22px; font-weight: 900; }
.cl-altoque { color: #1E5AA8; font-size: 18px; font-weight: 800; font-style: italic; }
.cl-compass { color: #3A3A3A; font-size: 18px; font-weight: 800; }
.cl-tuboleta { color: #ED1C24; font-size: 16px; font-weight: 900; letter-spacing: -0.02em; }
.cl-imevi { color: #0066B3; font-size: 18px; font-weight: 800; letter-spacing: 0.04em; }

/* ========== CASES ========== */
.cases {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  padding: 130px 0;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.35s;
  overflow: hidden;
}
.case-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-4px);
}
.case-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 50px;
  height: 3px;
  background: var(--red);
}

.case-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.22;
  filter: saturate(0.8);
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.case-card:hover .case-bg {
  opacity: 0.35;
  transform: scale(1.04);
}
.case-card > *:not(.case-bg) { position: relative; z-index: 1; }
.case-card.has-bg {
  background: linear-gradient(180deg, rgba(17,28,58,0.65) 0%, rgba(17,28,58,0.85) 100%);
}

.case-sector {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}
.case-metric-row {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.case-metric { flex: 1; }
.case-metric-val {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.case-metric-val em { color: var(--red-hot); font-style: normal; }
.case-metric-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
}
.case-quote {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
  font-weight: 400;
}
.case-quote::before { content: "\201C"; }
.case-quote::after { content: "\201D"; }
.case-client {
  display: flex;
  align-items: center;
  gap: 14px;
}
.case-client-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.case-client-info strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}
.case-client-info span {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

/* ========== PRODUCTS with REAL PHOTOS ========== */
.products { background: var(--cream); padding: 130px 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
.prod {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.prod:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -15px rgba(17, 28, 58, 0.15);
  border-color: transparent;
}
.prod-img {
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, var(--cream-2) 0%, #E5ECF7 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

/* === ROTACIÓN AUTOMÁTICA DE FICHAS DE PRODUCTO === */
.prod-rotator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.prod-rotator .prod-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}
.prod-rotator .prod-photo.active { opacity: 1; }

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
}
.prod:hover .prod-img img { transform: scale(1.04); }
.prod-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 4px;
  z-index: 2;
}
.prod-tag.red { background: var(--red); }
.prod-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-body h4 {
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.prod-body p {
  font-size: 13px;
  color: var(--graphite-3);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}
.prod-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.prod-specs span {
  font-size: 10px;
  background: var(--cream);
  color: var(--graphite-2);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  font-weight: 600;
  border: 1px solid var(--border);
}

/* ========== FACTORY · FABRICAMOS EN COLOMBIA ========== */
.factory {
  background: linear-gradient(180deg, #FAFBFF 0%, #EEF3FC 100%);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.factory::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(0, 102, 179, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(225, 30, 44, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.factory-inner { position: relative; z-index: 2; }
.factory-head {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}
.factory-head .eyebrow { justify-content: center; margin-bottom: 20px; }

.factory-showcase {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: repeat(2, 260px);
  gap: 14px;
  margin-bottom: 60px;
}
.factory-cell {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(17, 28, 58, 0.12);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.factory-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(17, 28, 58, 0.18);
}
.factory-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.factory-cell:hover img { transform: scale(1.05); }

.factory-cell.main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.factory-cell.main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 28, 58, 0.8) 0%, transparent 50%);
  pointer-events: none;
}
.factory-main-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  color: #fff;
}
.factory-main-caption .tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-hot);
  font-weight: 700;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: rgba(225, 30, 44, 0.15);
  border: 1px solid rgba(225, 30, 44, 0.3);
  border-radius: 4px;
}
.factory-main-caption h4 {
  color: #fff;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.factory-main-caption p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
  max-width: 420px;
}
.factory-cell-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(17, 28, 58, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 2;
}

.factory-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px -10px rgba(17, 28, 58, 0.08);
}
.factory-stat {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.factory-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.factory-stat-val {
  font-size: 36px;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.factory-stat-val em { font-style: normal; color: var(--red); }
.factory-stat-lbl {
  font-size: 13px;
  color: var(--graphite-3);
  font-weight: 500;
  line-height: 1.35;
}
.software {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  color: #fff;
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.software::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(225,30,44,0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.12) 0%, transparent 40%);
  pointer-events: none;
}
.software-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.software-intro h2 { margin-bottom: 16px; }
.software-intro .lead { margin-bottom: 24px; font-size: 14.5px; line-height: 1.55; max-width: 560px; }

/* v9: features en grid 2 columnas compacto */
.software-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.software-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.software-feat-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand-blue) 100%);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0, 212, 255, 0.2);
}
.software-feat-text strong {
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.software-feat-text span {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.45;
  display: block;
}

@media (max-width: 960px) {
  .software-grid { grid-template-columns: 1fr; gap: 40px; }
  .software-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .software-features { grid-template-columns: 1fr; }
}

.software-dashboard {
  background: linear-gradient(165deg, var(--ink-2) 0%, var(--ink) 100%);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.dash-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.dash-live {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  color: #22C55E;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dash-live .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E;
}
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dash-metric {
  background: rgba(255,255,255,0.03);
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}
.dash-metric-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.dash-metric-val {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.dash-metric-val em { color: #22C55E; font-style: normal; font-size: 11px; margin-left: 4px; }
.dash-metric-sub { font-size: 10px; color: rgba(255,255,255,0.4); }
.dash-chart {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.05);
  height: 150px;
  position: relative;
  overflow: hidden;
}
.dash-chart-label {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.dash-chart svg { width: 100%; height: calc(100% - 20px); }

/* ========== COVERAGE ========== */
.coverage { background: #fff; padding: 130px 0; }
.coverage-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage-intro h2 { margin-bottom: 20px; }
.coverage-intro .lead { margin-bottom: 32px; }
.coverage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.cov-stat {
  background: var(--cream);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
}
.cov-stat-val {
  font-size: 44px;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.cov-stat-val em { font-style: normal; color: var(--red); }
.cov-stat-lbl {
  font-size: 13px;
  color: var(--graphite-3);
  font-weight: 500;
  line-height: 1.4;
}
.coverage-map {
  position: relative;
  aspect-ratio: 1 / 1.1;
  background: var(--cream);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px -15px rgba(17, 28, 58, 0.08);
  overflow: hidden;
}
.map-label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--graphite-3);
  font-weight: 700;
  z-index: 2;
}
.map-live {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  color: #22C55E;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.map-live .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s infinite;
}
.coverage-map svg { width: 100%; height: 100%; }


/* Mapa Leaflet v7 */
.coverage-map { position: relative; padding: 0; }
.coverage-map-wrapper {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(17, 28, 58, 0.08);
}
.coverage-map-wrapper .map-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 400;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--graphite);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.coverage-map-wrapper .map-live {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 400;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #0F8A4A;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.coverage-map-wrapper .map-live .dot {
  width: 7px; height: 7px; background: #22C55E; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: tcPulse 2s infinite;
}
#map-colombia {
  width: 100%;
  height: 520px;
  z-index: 1;
  background: #F5F1EA;
}
.coverage-map-wrapper .map-legend {
  padding: 14px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--graphite-2);
}
.coverage-map-wrapper .legend-item {
  display: inline-flex; align-items: center; gap: 7px;
}
.coverage-map-wrapper .legend-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto;
}
.coverage-map-wrapper .legend-dot.sede { background: #E11E2C; box-shadow: 0 0 0 3px rgba(225,30,44,0.2); }
.coverage-map-wrapper .legend-dot.fondo { background: #0F2547; border: 2px solid #fff; box-shadow: 0 0 0 1px #CBD5E1; }
.coverage-map-wrapper .legend-dot.soporte { background: #fff; border: 2px solid #94A3B8; }

.tc-pulse {
  position: absolute;
  width: 30px; height: 30px;
  left: -2px; top: 2px;
  background: rgba(225,30,44,0.28);
  border-radius: 50%;
  animation: tcPulse 2.5s infinite;
}
@keyframes tcPulse {
  0%,100% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 0; }
}
.leaflet-container { font-family: 'Inter', sans-serif; border-radius: 0; }
.leaflet-tooltip { font-size: 11px; font-weight: 600; }

/* ========== SLA ========== */
.sla {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  color: #fff;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.sla-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.sla-intro h2 { margin-bottom: 24px; }
.sla-intro .lead { margin-bottom: 32px; }
.sla-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.sla-metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 26px 22px;
  border-top: 3px solid var(--red);
}
.sla-metric-val {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 6px;
}
.sla-metric-val em { color: var(--accent); font-style: normal; }
.sla-metric-lbl {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}
.sla-levels { display: flex; flex-direction: column; gap: 12px; }
.sla-level {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.25s;
}
.sla-level:hover {
  background: rgba(0, 212, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.3);
}
.sla-level-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
}
.sla-level-num span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}
.sla-level-body strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.sla-level-body span {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.45;
}
.sla-level-time {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: #22C55E;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ========== WHY (v10: compacto + iconos + interactivo) ========== */
.why {
  background: linear-gradient(180deg, var(--cream) 0%, #F5F7FB 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(225,30,44,0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(0,102,179,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.why .container { position: relative; z-index: 1; }
.why-head { margin-bottom: 40px; }
.why-head h2 { margin-bottom: 16px; font-size: clamp(32px, 3.8vw, 48px); }
.why-head .lead { font-size: 15px; max-width: 780px; margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 20px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--brand-blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.why-card:hover {
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -12px rgba(17, 28, 58, 0.14), 0 8px 16px -8px rgba(225,30,44,0.1);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--red) 0%, #FF3D4E 100%);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}
.why-card:hover .why-bg-num { color: rgba(225,30,44,0.08); transform: scale(1.05); }

.why-bg-num {
  position: absolute;
  top: -10px;
  right: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 88px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.04);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: all 0.4s;
  pointer-events: none;
  z-index: 0;
}
.why-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(225, 30, 44, 0.08);
  color: var(--red);
  margin-bottom: 14px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.why-icon svg { width: 22px; height: 22px; display: block; }

.why-card h4 {
  position: relative;
  z-index: 1;
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.why-card p {
  position: relative;
  z-index: 1;
  color: var(--graphite-3);
  font-size: 12.5px;
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}


.why-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--graphite);
  background: rgba(0, 102, 179, 0.08);
  border: 1px solid rgba(0, 102, 179, 0.15);
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.3s;
}
.why-card:hover .why-badge {
  background: rgba(225, 30, 44, 0.1);
  border-color: rgba(225, 30, 44, 0.2);
  color: var(--red);
}
.why-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-blue);
  transition: background 0.3s;
}
.why-card:hover .why-badge .dot { background: var(--red); }

@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}


/* ========== CTA FINAL ========== */
.final-cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 50%, var(--ink) 100%);
  color: #fff;
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(225,30,44,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.final-cta h2 { color: #fff; margin-bottom: 20px; }
.final-cta .lead { color: rgba(255,255,255,0.78); margin-bottom: 40px; }
.final-cta-actions { display: flex; justify-content: center; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.final-contact {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.final-contact strong { color: #fff; font-weight: 700; }

/* ========== FOOTER ========== */
.footer { background: var(--graphite); color: rgba(255,255,255,0.7); padding: 80px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 300px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--red); transform: translateY(-2px); }
.footer-col h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  margin-left: 20px;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: #fff; }

/* ========== WHATSAPP FLOATING ========== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.25s;
  cursor: pointer;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .metric { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .m360-grid, .pay-grid, .software-grid, .coverage-grid, .sla-grid, .logistics-final { grid-template-columns: 1fr; gap: 40px; }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .allies-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .pay-logos { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .m360-services { grid-template-columns: 1fr; }
  .factory-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 200px 200px;
  }
  .factory-cell.main { grid-column: 1 / 3; grid-row: 1 / 2; }
  .factory-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 30px; }
  .factory-stat:nth-child(2)::after { display: none; }
  .logistics-flow { grid-template-columns: 1fr 1fr; gap: 12px; }
  .logistics-arrow { display: none; }
  .logistics-benefits { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 80px; }
  .metrics-inner { grid-template-columns: 1fr 1fr; }
  .sol-grid, .products-grid { grid-template-columns: 1fr; }
  .allies-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .pay-logos { grid-template-columns: repeat(2, 1fr); }
  .coverage-stats, .sla-metrics { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .float-badge { display: none; }
  .nav-cta .btn:first-child { display: none; }
  .sla-level { grid-template-columns: 60px 1fr; }
  .sla-level-time { grid-column: 1 / -1; }
  .case-metric-row { flex-direction: column; gap: 16px; }
  .logistics-flow { grid-template-columns: 1fr; }
  .logistics-final { padding: 32px 24px; }
  .logistics-final h3 { font-size: 24px; }
  .factory-showcase { grid-template-columns: 1fr; grid-template-rows: auto; }
  .factory-cell { height: 220px; }
  .factory-cell.main { height: 320px; grid-column: 1; grid-row: 1; }
  .factory-stats { grid-template-columns: 1fr; }
  .factory-stat:not(:last-child)::after { display: none; }
  .factory-stat { padding: 20px 0; border-bottom: 1px solid var(--border); }
  .factory-stat:last-child { border-bottom: none; }
}

/* === v18 · P2 · Bloque evidencia SLA (Soporte 7×24) === */
.sla-evidence-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 28px;
  align-items: stretch;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
}
.sla-evidence-media {
  position: relative;
  min-height: 260px;
  background: #0a1020;
}
.sla-evidence-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sla-evidence-body {
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sla-evidence-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sla-ev-pill {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 198, 232, 0.1);
  color: #5ce4f7;
  border: 1px solid rgba(0, 198, 232, 0.25);
  font-weight: 700;
}
@media (max-width: 820px) {
  .sla-evidence-strip { grid-template-columns: 1fr; }
  .sla-evidence-media { min-height: 220px; }
  .sla-evidence-body { padding: 24px; }
}

/* === v18 · P5 · Rotador hero crossfade === */
.hero-rotator {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}
.hero-rotator .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  border-radius: inherit;
  display: block;
}
.hero-rotator .hero-slide.active {
  opacity: 1;
  z-index: 1;
}
/* Cuando el padre es .hero-visual que tenía la img directa, respetamos layout */
.hero-visual .hero-rotator {
  width: 100%;
  height: 100%;
}


/* ═══════════════════════════════════════════════════════════════════
   v19 · SECCIÓN SOPORTE · rediseño unificado
   Sustituye estilos antiguos: .sla-grid .sla-levels .sla-level.*
   (se dejan definidos por si otra sección los referencia, pero no se usan)
═══════════════════════════════════════════════════════════════════ */

.sla .sla-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}
.sla .sla-head .eyebrow { justify-content: center; }
.sla .sla-head h2 { margin-bottom: 18px; }
.sla .sla-head .lead { margin: 0 auto; }

/* ── Hero: foto call center + 4 métricas ── */
.sla-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) 1fr;
  gap: 32px;
  margin-bottom: 72px;
  align-items: stretch;
}
.sla-hero-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 460px;
  background: #0a1020;
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.sla-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sla-hero-photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(17, 28, 58, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(92, 228, 247, 0.25);
}
.sla-hero-photo-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
  animation: slaDotPulse 2.2s ease-in-out infinite;
}
@keyframes slaDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.sla-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sla-stat {
  padding: 26px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color .25s, background .25s;
}
.sla-stat:hover {
  border-color: rgba(92,228,247,0.35);
  background: rgba(92,228,247,0.04);
}
.sla-stat-val {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 10px;
}
.sla-stat-val em {
  font-style: normal;
  color: #5ce4f7;
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 2px;
}
.sla-stat-lbl {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.68);
}

/* ── Flow: infografía horizontal de 4 niveles ── */
.sla-flow {
  margin-bottom: 72px;
  padding: 44px 36px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}
.sla-flow-head {
  text-align: center;
  margin-bottom: 42px;
}
.sla-flow-kicker {
  display: block;
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 6px;
}
.sla-flow-sub {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}
.sla-flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
/* Línea horizontal conectora entre iconos */
.sla-flow-line {
  position: absolute;
  top: 56px; /* alineado con el centro del icono (48/2 + padding arriba = ~56) */
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(92,228,247,0.08) 0%,
    rgba(92,228,247,0.35) 15%,
    rgba(92,228,247,0.35) 85%,
    rgba(92,228,247,0.08) 100%);
  z-index: 0;
}
.sla-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.sla-step-num {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(92,228,247,0.85);
  font-weight: 700;
  margin-bottom: 14px;
}
.sla-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(92,228,247,0.08);
  border: 1.5px solid rgba(92,228,247,0.3);
  color: #5ce4f7;
  margin-bottom: 18px;
  transition: transform .3s ease, background .3s, border-color .3s;
}
.sla-step:hover .sla-step-icon {
  transform: translateY(-3px);
  background: rgba(92,228,247,0.14);
  border-color: rgba(92,228,247,0.55);
}
.sla-step-icon svg {
  width: 26px;
  height: 26px;
}
.sla-step-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.sla-step-time {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 13px;
  color: #5ce4f7;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.sla-step-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  max-width: 200px;
  margin: 0 auto;
}

/* ── Proof: bloque del técnico en sitio ── */
.sla-proof {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  align-items: stretch;
}
.sla-proof-media {
  position: relative;
  min-height: 280px;
  background: #0a1020;
}
.sla-proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sla-proof-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.sla-proof-body h4 {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: #fff;
}
.sla-proof-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
}
.sla-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sla-proof-pill {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(92, 228, 247, 0.1);
  color: #5ce4f7;
  border: 1px solid rgba(92, 228, 247, 0.25);
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .sla-hero { grid-template-columns: 1fr; gap: 24px; }
  .sla-hero-photo { min-height: 340px; }
  .sla-flow-track { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .sla-flow-line { display: none; }
  .sla-proof { grid-template-columns: 1fr; }
  .sla-proof-media { min-height: 260px; }
  .sla-proof-body { padding: 28px; }
}
@media (max-width: 540px) {
  .sla-hero-stats { grid-template-columns: 1fr; }
  .sla-flow { padding: 32px 22px; }
  .sla-flow-track { grid-template-columns: 1fr; gap: 28px; }
  .sla-stat-val { font-size: 36px; }
}


/* ═══════════════════════════════════════════════════════════════════
   v20 · SLA COMPACTO · una sola pantalla (~720-800px alto)
═══════════════════════════════════════════════════════════════════ */

/* Reducir padding vertical de la sección sla respecto al default */
section.sla { padding-top: 64px !important; padding-bottom: 64px !important; }

/* ── Header condensado ── */
.sla .sla-head {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}
.sla .sla-head .eyebrow { justify-content: center; margin-bottom: 10px; }
.sla .sla-head h2 {
  margin-bottom: 8px !important;
}
.sla-sub {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}

/* ── Main grid 2 columnas ── */
.sla-main {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* ── Foto call center (izq) ── */
.sla-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a1020;
  box-shadow: 0 18px 44px rgba(0,0,0,0.32);
  height: 100%;
  min-height: 360px;
}
.sla-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
}
.sla-photo-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(17, 28, 58, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(92, 228, 247, 0.22);
}
.sla-photo-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
  animation: slaDotPulseV20 2.2s ease-in-out infinite;
}
@keyframes slaDotPulseV20 {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(16,185,129,0); }
}

/* ── Aside (der) ── */
.sla-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 520px;
  justify-content: space-between;
}

/* Stats row (chips pequeños) */
.sla-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.sla-chip {
  padding: 14px 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 11px;
  text-align: center;
  transition: border-color .25s, background .25s;
}
.sla-chip:hover {
  border-color: rgba(92,228,247,0.35);
  background: rgba(92,228,247,0.04);
}
.sla-chip-val {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.sla-chip-val em {
  font-style: normal;
  color: #5ce4f7;
  font-size: 0.62em;
  font-weight: 700;
}
.sla-chip-lbl {
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Niveles: lista compacta con 4 columnas internas */
.sla-levels2 {
  padding: 16px 18px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 13px;
}
.sla-levels2-title {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(92,228,247,0.9);
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.sla-lvl {
  display: grid;
  grid-template-columns: 24px 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .2s;
}
.sla-lvl:last-child { border-bottom: none; }
.sla-lvl:hover { background: rgba(92,228,247,0.03); }
.sla-lvl-num {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 10.5px;
  color: rgba(92,228,247,0.75);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.sla-lvl-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(92,228,247,0.08);
  border: 1px solid rgba(92,228,247,0.25);
  border-radius: 9px;
  color: #5ce4f7;
  flex-shrink: 0;
}
.sla-lvl-icon svg { width: 17px; height: 17px; }
.sla-lvl-name {
  font-size: 13.5px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.sla-lvl-time {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 12px;
  color: #5ce4f7;
  font-weight: 700;
  white-space: nowrap;
}

/* Bloque técnico mini */
.sla-tech {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: stretch;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 13px;
  overflow: hidden;
}
.sla-tech-media {
  background: #0a1020;
  min-height: 92px;
}
.sla-tech-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sla-tech-body {
  padding: 12px 16px 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.sla-tech-body strong {
  font-size: 13.5px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.sla-tech-body span {
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  line-height: 1.45;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .sla-main { grid-template-columns: 1fr; }
  .sla-photo { min-height: 320px; }
}
@media (max-width: 540px) {
  section.sla { padding-top: 48px !important; padding-bottom: 48px !important; }
  .sla-chips { grid-template-columns: repeat(2, 1fr); }
  .sla-lvl { grid-template-columns: 20px 30px 1fr; gap: 8px; }
  .sla-lvl-name { font-size: 12.5px; }
  .sla-tech { grid-template-columns: 80px 1fr; }
}


/* ═══════════════ v22 · .sla-lvl-sub (subtítulo en 2da línea de cada nivel) ═════════════ */
.sla-lvl-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sla-lvl-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,0.52);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
}
/* La foto nueva tiene mejor encuadre · reset object-position */
.sla-photo img {
  object-position: center center !important;
}
/* Más espacio de respiro entre filas de nivel (antes necesario por el time a la derecha) */
.sla-lvl { padding: 9px 0 !important; }


/* ═══════════════════════════════════════════════════════════════
   v24 · Sección PRODUCTOS compactada para que quepan header + 5
   productos en la misma pantalla.
═══════════════════════════════════════════════════════════════ */
section.products {
  padding: 70px 0 !important;
}
section.products .section-head {
  margin-bottom: 36px !important;
  max-width: 820px;
}
section.products .section-head .eyebrow {
  margin-bottom: 12px;
}
section.products .section-head h2.products-title {
  margin-bottom: 12px !important;
}
section.products .section-head .products-lead {
  font-size: 15px;
  line-height: 1.55;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  section.products { padding: 48px 0 !important; }
  section.products .section-head { margin-bottom: 28px !important; }
  
  section.products .section-head .products-lead {
    font-size: 14px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   v25 · Sección FACTORY ("Nuestra planta") compactada para que
   quepan header + showcase + stats en la misma pantalla.
═══════════════════════════════════════════════════════════════ */
section.factory {
  padding: 64px 0 !important;
}
section.factory .factory-head {
  margin: 0 auto 32px !important;
  max-width: 860px;
}
section.factory .factory-head .eyebrow {
  margin-bottom: 10px;
}
section.factory .factory-head h2.factory-title {
  margin-bottom: 10px !important;
}
section.factory .factory-head .factory-lead {
  font-size: 15px;
  line-height: 1.55;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
section.factory .factory-showcase {
  grid-template-rows: repeat(2, 200px) !important;
  margin-bottom: 32px !important;
  gap: 12px !important;
}
section.factory .factory-stats {
  padding: 24px 28px !important;
  gap: 14px !important;
}
@media (max-width: 820px) {
  section.factory .factory-showcase {
    grid-template-rows: 240px 180px 180px !important;
  }
}
@media (max-width: 540px) {
  section.factory { padding: 48px 0 !important; }
  
  section.factory .factory-head .factory-lead { font-size: 14px; }
  section.factory .factory-stats { padding: 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   v26 · Compactación de cuatro secciones más
   (Soluciones, Modelo 360, Casos, Pagos) — mismo patrón que
   v20/v24/v25: reducir padding vertical, títulos 1 línea, leads cortos.
═══════════════════════════════════════════════════════════════ */

/* ── SECCIÓN SOLUCIONES ── */
section.solutions {
  padding: 64px 0 !important;
}
section.solutions .section-head {
  margin-bottom: 28px !important;
  max-width: 860px;
}
section.solutions .section-head .eyebrow { margin-bottom: 10px; }
section.solutions .section-head h2.solutions-title {
  margin-bottom: 10px !important;
}
section.solutions .section-head .solutions-lead {
  font-size: 15px;
  line-height: 1.55;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ── MODELO 360 ── */
section.m360 {
  padding: 72px 0 !important;
}
section.m360 .m360-grid {
  gap: 56px !important;
}
section.m360 .m360-intro .eyebrow { margin-bottom: 10px; }
section.m360 .m360-intro h2.m360-title {
  margin-bottom: 14px !important;
}
section.m360 .m360-intro .m360-lead {
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 18px;
}
section.m360 .m360-intro .m360-promise {
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  padding: 18px 22px !important;
  margin-bottom: 24px !important;
}

/* ── CASOS ── */
section.cases {
  padding: 64px 0 !important;
}
section.cases .section-head {
  margin-bottom: 28px !important;
  max-width: 820px;
}
section.cases .section-head .eyebrow { margin-bottom: 10px; }
section.cases .section-head h2.cases-title {
  margin-bottom: 10px !important;
}
section.cases .section-head .cases-lead {
  font-size: 15px;
  line-height: 1.55;
  max-width: 680px;
}

/* ── PAGOS ── */
section.pay-section {
  padding: 56px 0 !important;
}
section.pay-section .pay-grid {
  gap: 40px !important;
}
section.pay-section .pay-intro .eyebrow { margin-bottom: 10px; }
section.pay-section .pay-intro h2.pay-title {
  letter-spacing: -0.02em;
  margin-bottom: 10px !important;
}
section.pay-section .pay-intro .pay-lead {
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 16px;
}
section.pay-section .pay-intro .big-claim {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  padding: 14px 18px !important;
}

/* ── MEDIA QUERIES ── */
@media (max-width: 820px) {
  section.solutions,
  section.cases { padding: 48px 0 !important; }
  section.m360   { padding: 56px 0 !important; }
  section.pay-section { padding: 48px 0 !important; }
  section.m360 .m360-grid { gap: 32px !important; }
}
@media (max-width: 540px) {
  section.solutions .section-head h2.solutions-title,
  section.cases .section-head h2.cases-title,
  
  
}


/* ═══════════════════════════════════════════════════════════════
   v27 · Sección LOGISTICS compactada a una sola pantalla.
═══════════════════════════════════════════════════════════════ */
section.logistics {
  padding: 60px 0 !important;
}
section.logistics .logistics-head {
  margin: 0 auto 32px !important;
  max-width: 880px;
}
section.logistics .logistics-head .eyebrow { margin-bottom: 10px; }
section.logistics .logistics-head h2.logistics-title {
  margin-bottom: 10px !important;
}
section.logistics .logistics-head .logistics-lead {
  font-size: 15px;
  line-height: 1.55;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
section.logistics .logistics-flow {
  margin: 0 auto 32px !important;
}
section.logistics .logistics-step {
  padding: 16px 14px 14px !important;
}
section.logistics .logistics-step h5 {
  font-size: 14px !important;
  margin-bottom: 4px !important;
}
section.logistics .logistics-step p {
  font-size: 12.5px !important;
  line-height: 1.45 !important;
}
section.logistics .logistics-step-icon {
  width: 40px !important;
  height: 40px !important;
  margin-bottom: 10px !important;
}
section.logistics .logistics-step-icon svg {
  width: 22px !important;
  height: 22px !important;
}
section.logistics .logistics-step-num {
  width: 24px !important;
  height: 24px !important;
  font-size: 11.5px !important;
}

/* Cuadro azul compactado */
section.logistics .logistics-final {
  padding: 32px 36px !important;
  gap: 32px !important;
}
section.logistics .logistics-final-title {
  font-size: clamp(22px, 2.4vw, 32px) !important;
  line-height: 1.2 !important;
  margin-bottom: 10px !important;
}
section.logistics .logistics-final-lead {
  font-size: 14px !important;
  line-height: 1.55 !important;
}
section.logistics .logistics-benefits {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 8px 14px !important;
}
section.logistics .logistics-benefits li {
  font-size: 13px !important;
  padding: 10px 14px !important;
}

@media (max-width: 820px) {
  section.logistics { padding: 48px 0 !important; }
  section.logistics .logistics-final { padding: 24px 20px !important; }
  section.logistics .logistics-benefits { grid-template-columns: 1fr !important; }
}


/* ═══════════════════════════════════════════════════════════════
   v28 · UNIFICACIÓN TIPOGRÁFICA
   Escala única por nivel jerárquico. Ninguna sección vuelve a
   sobreescribir el font-size del h2; se usa .display-m consistente.
═══════════════════════════════════════════════════════════════ */

/* h3 · sub-headings unificados */
.sol-card h3,
.logistics-final h3,
section .logistics-final .logistics-final-title {
  font-size: clamp(22px, 2.2vw, 30px) !important;
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-weight: 800;
}

/* h4 · cards · título destacado */
.m360-service h4,
.sla-proof-body h4,
.factory-main-caption h4,
.prod-body h4,
.why-card h4 {
  font-size: 18px !important;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* h5 · labels, steps, sub-sub */
.logistics-step h5,
.logistics .logistics-step h5,
.footer-col h5 {
  font-size: 14px !important;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.005em;
}


/* ═══════════════════════════════════════════════════════════════
   v29 · SECCIÓN PAGOS · rediseño con bloque de redes aparte
   Layout apilado (header arriba + 4 grupos 2×2 + bloque redes)
═══════════════════════════════════════════════════════════════ */

/* Separar visualmente de .solutions con fondo más contrastante */
section.pay-section {
  background: linear-gradient(180deg, #F2F4FB 0%, #E8EEF8 100%) !important;
  padding: 60px 0 !important;
  border-top: 1px solid rgba(17,28,58,0.06);
  position: relative;
}

/* Header centrado arriba */
section.pay-section .pay-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 32px;
}
section.pay-section .pay-head .eyebrow {
  justify-content: center;
  margin-bottom: 10px;
}
section.pay-section .pay-head .pay-title {
  margin-bottom: 10px;
}
section.pay-section .pay-head .pay-lead {
  max-width: 680px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.55;
  color: #475569;
}

/* 4 grupos en grid 2×2 (antes eran apilados 4 filas) */
section.pay-section .pay-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

/* Cada grupo */
section.pay-section .pay-group {
  background: #fff;
  border: 1px solid rgba(17,28,58,0.06);
  border-radius: 14px;
  padding: 18px 20px 20px;
  box-shadow: 0 6px 18px -6px rgba(17,28,58,0.06);
}
section.pay-section .pay-group-label {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E11E2C;
  font-weight: 800;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(225,30,44,0.12);
}

/* Grid de logos: 3 columnas, más compactos */
section.pay-section .pay-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
section.pay-section .pay-logo {
  background: #fff;
  border: 1px solid rgba(17,28,58,0.08);
  border-radius: 10px;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  transition: border-color .2s, transform .2s;
}
section.pay-section .pay-logo:hover {
  border-color: #E11E2C;
  transform: translateY(-2px);
}
section.pay-section .pay-logo img {
  max-width: 100%;
  max-height: 28px;
  object-fit: contain;
}
section.pay-section .pay-logo.txt {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.15;
}

/* Chips (efectivo y confirmación) */
section.pay-section .pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
section.pay-section .pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F7F9FC;
  border: 1px solid rgba(17,28,58,0.08);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12.5px;
  color: #1a1f2e;
  font-weight: 500;
}
section.pay-section .pay-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E11E2C;
  flex-shrink: 0;
}

/* ═════════ Bloque aparte · REDES y pasarelas ═════════ */
section.pay-section .pay-networks {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #111C3A 0%, #0c1730 100%);
  color: #fff;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 20px 40px -15px rgba(17,28,58,0.35);
}
section.pay-section .pay-networks-copy .eyebrow {
  color: #5ce4f7;
  margin-bottom: 8px;
}
section.pay-section .pay-networks-title {
  font-size: 20px !important;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: #fff;
}
section.pay-section .pay-networks-copy p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
section.pay-section .pay-networks-copy strong {
  color: #5ce4f7;
  font-weight: 700;
}
section.pay-section .pay-networks-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
section.pay-section .pay-network-logo {
  background: #fff;
  border-radius: 12px;
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 14px 16px;
  transition: transform .2s;
}
section.pay-section .pay-network-logo:hover {
  transform: translateY(-2px);
}
section.pay-section .pay-network-logo img {
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
}

/* ═══════════ Responsive ═══════════ */
@media (max-width: 820px) {
  section.pay-section { padding: 48px 0 !important; }
  section.pay-section .pay-groups { grid-template-columns: 1fr; gap: 12px; }
  section.pay-section .pay-networks {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
}
@media (max-width: 540px) {
  section.pay-section .pay-logos { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════════════════════════
   v30 · Ajustes de la sección pay
   - Ampliar logos Redeban/CrediBanCo (antes se veían diminutos)
   - Estilo para el nuevo QR dentro del grupo "Pagos digitales"
═══════════════════════════════════════════════════════════════ */

/* Logos del bloque Redes · MÁS GRANDES */
section.pay-section .pay-network-logo {
  min-height: 110px !important;
  padding: 14px 20px !important;
}
section.pay-section .pay-network-logo img {
  max-width: 88% !important;
  max-height: 78px !important;
  object-fit: contain;
  display: block;
}

/* QR en grupo Pagos digitales y billeteras */
section.pay-section .pay-logo.qr-code {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px !important;
  background: #fff;
  position: relative;
}
section.pay-section .pay-logo.qr-code img {
  width: auto !important;
  max-width: 100%;
  max-height: 52px !important;
  height: 52px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
}
section.pay-section .pay-logo.qr-code .qr-label {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #111C3A;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 2px;
}
section.pay-section .pay-logo.qr-code:hover {
  border-color: #E11E2C;
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════
   v31 · Ampliar logos en pay-section
═══════════════════════════════════════════════════════════════ */

/* Logos de los 2 grupos principales (Pagos digitales y Tarjetas) */
section.pay-section .pay-logo {
  min-height: 76px !important;
  padding: 10px 12px !important;
}
section.pay-section .pay-logo img {
  max-height: 44px !important;
  max-width: 90% !important;
}
section.pay-section .pay-logo.txt {
  font-size: 14px !important;
  line-height: 1.15;
}

/* Bloque Redes · logos AÚN MÁS grandes */
section.pay-section .pay-network-logo {
  min-height: 130px !important;
  padding: 16px 24px !important;
}
section.pay-section .pay-network-logo img {
  max-height: 100px !important;
  max-width: 95% !important;
}

/* Nueva celda del QR · distribución vertical con label arriba */
section.pay-section .pay-logo.qr-code {
  padding: 10px 6px !important;
  gap: 6px !important;
  justify-content: center !important;
}
section.pay-section .pay-logo.qr-code .qr-topic {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E11E2C;
  line-height: 1.15;
  text-align: center;
}
section.pay-section .pay-logo.qr-code img {
  max-height: 44px !important;
  height: 44px;
  width: auto !important;
}
section.pay-section .pay-logo.qr-code .qr-label {
  font-size: 8.5px;
  font-weight: 700;
  color: #5f6368;
  letter-spacing: 0.02em;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   v34 · BACKGROUNDS CANÓNICOS (regla final, gana la cascada)
   Alternancia estricta blanco/gris entre secciones claras.
═══════════════════════════════════════════════════════════════ */

/* Secciones CLARO A · blanco puro */
section.logistics,
section.pay-section,
section.clients,
section.products,
section.coverage {
  background: #FFFFFF !important;
}

/* Secciones CLARO B · gris perceptible */
section.solutions,
section.allies,
section.factory,
section.why {
  background: #ECF0F7 !important;
}

/* Borde superior sutil entre secciones claras consecutivas */
section.solutions,
section.pay-section,
section.allies,
section.clients,
section.products,
section.factory,
section.coverage,
section.why {
  border-top: 1px solid rgba(17, 28, 58, 0.05);
}


/* ═══════════════════════════════════════════════════════════════
   v35 · MODELO 360 · rediseño como infografía horizontal
═══════════════════════════════════════════════════════════════ */

section.m360 {
  padding: 64px 0 !important;
}

/* Header centrado */
section.m360 .m360-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}
section.m360 .m360-head .eyebrow {
  justify-content: center;
  margin-bottom: 12px;
}
section.m360 .m360-head .m360-title {
  margin-bottom: 10px;
}
section.m360 .m360-sub {
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 640px;
}

/* Infografía horizontal de 4 pilares con flechas */
section.m360 .m360-pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 32px;
}

/* Cada pilar */
section.m360 .m360-pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 20px 20px;
  text-align: center;
  transition: border-color .25s, transform .25s, background .25s;
  position: relative;
}
section.m360 .m360-pillar:hover {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.04);
  transform: translateY(-2px);
}

/* Icono */
section.m360 .m360-pillar-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  background: rgba(0,212,255,0.1);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #5ce4f7;
  transition: background .25s, color .25s;
}
section.m360 .m360-pillar:hover .m360-pillar-icon {
  background: rgba(225,30,44,0.15);
  color: #ff5565;
}
section.m360 .m360-pillar-icon svg {
  width: 28px;
  height: 28px;
}

/* Número · textual */
section.m360 .m360-pillar-num {
  display: block;
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #5ce4f7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Título h4 del pilar */
section.m360 .m360-pillar h4 {
  font-size: 16px !important;
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

/* Descripción */
section.m360 .m360-pillar p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.68);
  margin: 0;
}

/* Flecha entre pilares */
section.m360 .m360-arrow {
  width: 26px;
  height: 26px;
  align-self: center;
  color: rgba(92,228,247,0.35);
}
section.m360 .m360-arrow svg {
  width: 100%;
  height: 100%;
}

/* Barra-promesa + CTA final */
section.m360 .m360-promise-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(225,30,44,0.08) 0%, rgba(0,212,255,0.05) 100%);
  border: 1px solid rgba(225,30,44,0.2);
  border-radius: 14px;
  padding: 18px 24px;
}
section.m360 .m360-promise-text {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
}
section.m360 .m360-promise-text .red { color: #ff5565; font-weight: 700; }
section.m360 .m360-promise-text .cyan { color: #5ce4f7; font-weight: 700; }
section.m360 .m360-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 960px) {
  section.m360 .m360-pillars {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  section.m360 .m360-arrow { display: none; }
}
@media (max-width: 620px) {
  section.m360 .m360-pillars {
    grid-template-columns: 1fr;
  }
  section.m360 .m360-promise-bar {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 20px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   v36 · Dashboard TouchPay · enriquecido (donut + barras + tabla)
═══════════════════════════════════════════════════════════════ */

/* KPI metrics · refinamientos */
section.software .dash-metrics {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
}
section.software .dash-metric {
  padding: 12px 14px !important;
  min-width: 0;
}
section.software .dash-metric-lbl {
  font-size: 9.5px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
section.software .dash-metric-val {
  font-size: 22px !important;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  white-space: nowrap;
}
section.software .dash-metric-val em {
  font-style: normal;
  font-size: 13px;
  color: #5ce4f7;
  margin-left: 1px;
}
section.software .dash-metric-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
}
section.software .dash-metric-sub.up {
  color: #10B981;
  font-weight: 600;
}

/* Grid 2 columnas para línea + donut */
section.software .dash-row-2col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

/* Tarjeta genérica del dashboard */
section.software .dash-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 12px;
}
section.software .dash-row-2col > .dash-card {
  margin-top: 0;
}
section.software .dash-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
section.software .dash-card-title {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
section.software .dash-card-badge.up {
  background: rgba(16,185,129,0.15);
  color: #10B981;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
section.software .dash-card-hint {
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Línea · axis inferior */
section.software .dash-line {
  width: 100%;
  height: 110px;
  display: block;
}
section.software .dash-line-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 9.5px;
  color: rgba(255,255,255,0.35);
  font-family: 'Space Grotesk', -apple-system, sans-serif;
}

/* Donut chart */
section.software .dash-donut-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}
section.software .dash-donut {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}
section.software .dash-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
section.software .dd-item {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 11.5px;
}
section.software .dd-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
section.software .dd-lbl {
  color: rgba(255,255,255,0.7);
}
section.software .dd-val {
  color: #fff;
  font-weight: 700;
  font-family: 'Space Grotesk', -apple-system, sans-serif;
}

/* Barras · por hora */
section.software .dash-bars {
  width: 100%;
  height: 80px;
  display: block;
}
section.software .dash-bars-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 9.5px;
  color: rgba(255,255,255,0.35);
  font-family: 'Space Grotesk', -apple-system, sans-serif;
}

/* Tabla de transacciones */
section.software .dash-tx-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
section.software .dash-tx-row {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  font-size: 11.5px;
  transition: background .2s;
}
section.software .dash-tx-row:hover {
  background: rgba(0,212,255,0.04);
}
section.software .dash-tx-time {
  color: rgba(255,255,255,0.4);
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 10px;
}
section.software .dash-tx-loc {
  color: rgba(255,255,255,0.85);
}
section.software .dash-tx-amt {
  color: #fff;
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
section.software .dash-tx-st {
  font-size: 9.5px;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
section.software .dash-tx-st.ok {
  background: rgba(16,185,129,0.15);
  color: #10B981;
}

/* Pulse dot (dot animada) */
section.software .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  position: relative;
  animation: pulse-dot-anim 1.8s infinite;
}
@keyframes pulse-dot-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* Responsive · en móviles las 4 KPIs quedan 2x2, y 2col pasa a 1col */
@media (max-width: 820px) {
  section.software .dash-metrics {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  section.software .dash-row-2col {
    grid-template-columns: 1fr;
  }
  section.software .dash-donut-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════════════════
   v37 · SECCIONES DE PÁGINA COMPLETA
   Cada sección principal ocupa al menos un viewport. Así, al hacer
   click en un ancla, la sección destino llena la pantalla y no se
   alcanza a ver el inicio de la siguiente.

   Excepciones:
     - hero (ya tiene su alto)
     - solutions (diseño ocupa más espacio por pestañas/tiles)
     - metrics, allies, clients (bandas transicionales pequeñas)
═══════════════════════════════════════════════════════════════ */
section.m360,
section.logistics,
section.pay-section,
section.cases,
section.products,
section.factory,
section.software,
section.coverage,
section.sla,
section.why,
section.final-cta {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Asegurar que el .container hijo no reciba el alto forzado
   (queremos el centrado pero manteniendo el layout interno) */
section.m360 > .container,
section.logistics > .container,
section.pay-section > .container,
section.cases > .container,
section.products > .container,
section.factory > .container,
section.software > .container,
section.coverage > .container,
section.sla > .container,
section.why > .container,
section.final-cta > .container {
  width: 100%;
}

/* scroll-margin-top opcional: si en el futuro se agrega un header
   fijo, se podría descomentar para que el scroll no tape la sección */
/*
section[id] { scroll-margin-top: 20px; }
*/


/* ═══════════════════════════════════════════════════════════════
   v38 · Dashboard software · compactado para 1 viewport
═══════════════════════════════════════════════════════════════ */

/* Padding de la sección · menor */
section.software {
  padding: 60px 0 !important;
}

/* KPI metrics · más compactos */
section.software .dash-metrics {
  gap: 8px !important;
}
section.software .dash-metric {
  padding: 10px 12px !important;
}
section.software .dash-metric-lbl {
  font-size: 9px !important;
  margin-bottom: 4px !important;
}
section.software .dash-metric-val {
  font-size: 19px !important;
}
section.software .dash-metric-val em {
  font-size: 11px !important;
}
section.software .dash-metric-sub {
  font-size: 9.5px !important;
}

/* Row 2col · gap menor */
section.software .dash-row-2col {
  gap: 8px !important;
  margin-top: 8px !important;
}

/* Cards · padding menor */
section.software .dash-card {
  padding: 10px 12px !important;
  margin-top: 8px !important;
  border-radius: 10px !important;
}
section.software .dash-row-2col > .dash-card {
  margin-top: 0 !important;
}
section.software .dash-card-head {
  margin-bottom: 8px !important;
}
section.software .dash-card-title {
  font-size: 9.5px !important;
}

/* Gráfica línea · más baja */
section.software .dash-line {
  height: 72px !important;
}
section.software .dash-line-axis {
  font-size: 8.5px !important;
  margin-top: 4px !important;
}

/* Donut · más chico */
section.software .dash-donut {
  width: 88px !important;
  height: 88px !important;
}
section.software .dash-donut-wrap {
  gap: 10px !important;
}
section.software .dd-item {
  font-size: 10.5px !important;
  grid-template-columns: 8px 1fr auto !important;
  gap: 6px !important;
}
section.software .dd-dot {
  width: 7px !important;
  height: 7px !important;
}

/* Barras · más bajas */
section.software .dash-bars {
  height: 55px !important;
}
section.software .dash-bars-axis {
  font-size: 8.5px !important;
  margin-top: 3px !important;
}

/* Tabla transacciones · más compacta */
section.software .dash-tx-table {
  gap: 2px !important;
}
section.software .dash-tx-row {
  padding: 6px 10px !important;
  font-size: 11px !important;
  grid-template-columns: 62px 1fr auto auto !important;
  gap: 8px !important;
}
section.software .dash-tx-time {
  font-size: 9.5px !important;
}
section.software .dash-tx-st {
  font-size: 9px !important;
  padding: 2px 6px !important;
}


/* ═══════════════════════════════════════════════════════════════
   v39 · final-cta · fondo GRIS CLARO (#ECF0F7)
   Todos los textos se adaptan de claro a oscuro.
═══════════════════════════════════════════════════════════════ */

section.final-cta {
  background: #ECF0F7 !important;
  color: var(--ink) !important;
  border-top: 1px solid rgba(17, 28, 58, 0.05);
}

/* Quitar el glow rojo radial que tenía sentido sobre fondo oscuro */
section.final-cta::before {
  display: none !important;
}

/* h2 tiene style="color:#fff" inline · lo sobreescribimos */
section.final-cta h2 {
  color: var(--ink) !important;
}

/* Párrafo introductorio */
section.final-cta .lead {
  color: rgba(17, 28, 58, 0.68) !important;
}

/* Eyebrow "light" · el rojo queda igual pero por si acaso aseguramos contraste */
section.final-cta .eyebrow.light {
  color: #E11E2C !important;
}

/* Info de contacto (PBX, Móvil, Dirección) */
section.final-cta .final-contact {
  color: rgba(17, 28, 58, 0.68) !important;
  border-top: 1px solid rgba(17, 28, 58, 0.1) !important;
}
section.final-cta .final-contact strong {
  color: var(--ink) !important;
}

/* Botón ghost "Hablar por WhatsApp" · blanco → oscuro */
section.final-cta .btn-ghost {
  color: var(--ink) !important;
  border: 1.5px solid rgba(17, 28, 58, 0.25) !important;
  background: transparent !important;
}
section.final-cta .btn-ghost:hover {
  background: rgba(17, 28, 58, 0.05) !important;
  border-color: rgba(17, 28, 58, 0.5) !important;
  color: var(--ink) !important;
}


/* ═══════════════════════════════════════════════════════════════
   v40 · OPCIÓN A · 3 secciones oscuras → claras
   m360, cases, sla cambian a fondo claro con textos oscuros.
   Solo metrics + software quedan oscuras (tent-poles).
═══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────
   m360 · Modelo 360 · BLANCO
   ────────────────────────────────────────────────────────────── */
section.m360 {
  background: #FFFFFF !important;
  border-top: 1px solid rgba(17, 28, 58, 0.05);
}
section.m360::before {
  display: none !important;
}

/* Header · textos */
section.m360 .m360-title {
  color: var(--ink) !important;
}
section.m360 .m360-title em.cyan {
  color: #0891B2 !important;
}
section.m360 .eyebrow.light {
  color: #E11E2C !important;
}
section.m360 .m360-sub {
  color: rgba(17, 28, 58, 0.62) !important;
}

/* Pilares · bg claro con borde sutil */
section.m360 .m360-pillar {
  background: #F8FAFC !important;
  border: 1px solid rgba(17, 28, 58, 0.08) !important;
}
section.m360 .m360-pillar:hover {
  border-color: rgba(225, 30, 44, 0.4) !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px -8px rgba(17, 28, 58, 0.12);
}

/* Icono del pilar · bg cyan tenue + color oscuro */
section.m360 .m360-pillar-icon {
  background: rgba(8, 145, 178, 0.1) !important;
  color: #0891B2 !important;
}
section.m360 .m360-pillar:hover .m360-pillar-icon {
  background: rgba(225, 30, 44, 0.12) !important;
  color: #E11E2C !important;
}

/* Número pilar · cyan oscuro */
section.m360 .m360-pillar-num {
  color: #0891B2 !important;
}

/* Título pilar · oscuro */
section.m360 .m360-pillar h4 {
  color: var(--ink) !important;
}

/* Descripción pilar · oscuro transparente */
section.m360 .m360-pillar p {
  color: rgba(17, 28, 58, 0.6) !important;
}

/* Flechas entre pilares */
section.m360 .m360-arrow {
  color: rgba(17, 28, 58, 0.25) !important;
}

/* Barra-promesa · adaptada a claro */
section.m360 .m360-promise-bar {
  background: linear-gradient(135deg, rgba(225, 30, 44, 0.06) 0%, rgba(8, 145, 178, 0.04) 100%) !important;
  border: 1px solid rgba(225, 30, 44, 0.25) !important;
}
section.m360 .m360-promise-text {
  color: var(--ink) !important;
}
section.m360 .m360-promise-text .cyan {
  color: #0891B2 !important;
}

/* ──────────────────────────────────────────────────────────────
   cases · Casos de éxito · GRIS
   Las .case-card tienen imagen de fondo con overlay interno oscuro,
   así que las cards mismas se mantienen como están. Solo adaptamos
   el header (eyebrow + h2 + lead) al fondo gris claro.
   ────────────────────────────────────────────────────────────── */
section.cases {
  background: #ECF0F7 !important;
  border-top: 1px solid rgba(17, 28, 58, 0.05);
}
section.cases::before {
  display: none !important;
}

/* Header · eyebrow + h2 + lead */
section.cases .cases-title {
  color: var(--ink) !important;
}
section.cases .cases-title em.cyan {
  color: #0891B2 !important;
}
section.cases .eyebrow.light {
  color: #E11E2C !important;
}
section.cases .cases-lead {
  color: rgba(17, 28, 58, 0.65) !important;
}

/* ──────────────────────────────────────────────────────────────
   sla · Mesa de ayuda · BLANCO
   ────────────────────────────────────────────────────────────── */
section.sla {
  background: #FFFFFF !important;
  border-top: 1px solid rgba(17, 28, 58, 0.05);
}
section.sla::before {
  display: none !important;
}

/* Header */
section.sla .sla-head h2 {
  color: var(--ink) !important;
}
section.sla .sla-head h2 em.cyan {
  color: #0891B2 !important;
}
section.sla .sla-head .eyebrow.cyan {
  color: #0891B2 !important;
}
section.sla .sla-sub {
  color: rgba(17, 28, 58, 0.62) !important;
}

/* Chips (99.8%, 100%, 7×24, 4) */
section.sla .sla-chip {
  background: #F8FAFC !important;
  border: 1px solid rgba(17, 28, 58, 0.08) !important;
}
section.sla .sla-chip:hover {
  background: #ffffff !important;
  border-color: rgba(8, 145, 178, 0.35) !important;
}
section.sla .sla-chip-val {
  color: var(--ink) !important;
}
section.sla .sla-chip-val em {
  color: #0891B2 !important;
}
section.sla .sla-chip-lbl {
  color: rgba(17, 28, 58, 0.55) !important;
}

/* Niveles · título y filas */
section.sla .sla-levels2-title {
  color: var(--ink) !important;
}
section.sla .sla-lvl {
  background: #F8FAFC !important;
  border: 1px solid rgba(17, 28, 58, 0.06) !important;
}
section.sla .sla-lvl:hover {
  background: #ffffff !important;
  border-color: rgba(8, 145, 178, 0.3) !important;
}
section.sla .sla-lvl-num {
  color: rgba(17, 28, 58, 0.4) !important;
}
section.sla .sla-lvl-icon {
  background: rgba(8, 145, 178, 0.1) !important;
  color: #0891B2 !important;
}
section.sla .sla-lvl-name {
  color: var(--ink) !important;
}
section.sla .sla-lvl-sub {
  color: rgba(17, 28, 58, 0.55) !important;
}

/* Flow (infografía horizontal) si existe */
section.sla .sla-flow {
  background: #F8FAFC !important;
  border: 1px solid rgba(17, 28, 58, 0.06) !important;
}
section.sla .sla-step-icon {
  background: rgba(8, 145, 178, 0.1) !important;
  color: #0891B2 !important;
}
section.sla .sla-step:hover .sla-step-icon {
  background: rgba(8, 145, 178, 0.18) !important;
}
section.sla .sla-flow-line {
  background: linear-gradient(90deg,
    rgba(8, 145, 178, 0.15) 0%,
    rgba(8, 145, 178, 0.25) 50%,
    rgba(8, 145, 178, 0.15) 100%) !important;
}

/* Stats y metrics residuales (por si hay sla-stat, sla-metric clases) */
section.sla .sla-stat,
section.sla .sla-metric {
  background: #F8FAFC !important;
  border: 1px solid rgba(17, 28, 58, 0.06) !important;
  color: var(--ink) !important;
}

/* Proof (técnico en sitio) · si existe */
section.sla .sla-proof {
  background: #F8FAFC !important;
  border: 1px solid rgba(17, 28, 58, 0.06) !important;
}
section.sla .sla-proof-body h4 {
  color: var(--ink) !important;
}
section.sla .sla-proof-pill {
  background: rgba(8, 145, 178, 0.12) !important;
  color: #0891B2 !important;
}

/* Tech mini · si existe */
section.sla .sla-tech {
  background: #F8FAFC !important;
  border: 1px solid rgba(17, 28, 58, 0.06) !important;
}

/* Evidence strip (si existe) */
section.sla .sla-evidence,
section.sla .sla-evidence-strip {
  background: #F8FAFC !important;
  border: 1px solid rgba(17, 28, 58, 0.06) !important;
}
section.sla .sla-ev-pill {
  background: rgba(8, 145, 178, 0.12) !important;
  color: #0891B2 !important;
}

/* Photo badge permanece oscuro (sobre imagen), sin cambio */


/* ═══════════════════════════════════════════════════════════════
   v41 · Strip de métricas fusionado dentro de m360
   (reemplaza la ex-sección .metrics oscura divisoria)
═══════════════════════════════════════════════════════════════ */

/* Compactar m360 para que quepa con las métricas extra en 1 viewport */
section.m360 {
  padding: 56px 0 !important;
}
section.m360 .m360-head {
  margin-bottom: 24px !important;
}
section.m360 .m360-pillars {
  margin-bottom: 22px !important;
}

/* Strip de métricas · fila horizontal con divisores */
section.m360 .m360-stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #ECF0F7 100%);
  border: 1px solid rgba(17, 28, 58, 0.08);
  border-radius: 14px;
  padding: 18px 8px;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px -12px rgba(17, 28, 58, 0.08);
}

/* Cada métrica individual */
section.m360 .m360-stat {
  text-align: center;
  padding: 4px 12px;
  position: relative;
  border-right: 1px solid rgba(17, 28, 58, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
section.m360 .m360-stat:last-child {
  border-right: none;
}

/* Valor numérico · grande */
section.m360 .m360-stat-val {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
section.m360 .m360-stat-val em {
  font-style: normal;
  color: #E11E2C;
}

/* Label · debajo del número */
section.m360 .m360-stat-lbl {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 28, 58, 0.55);
  line-height: 1.3;
}

/* Responsive · en mobile se parte en 2x3 (uno vacío) */
@media (max-width: 720px) {
  section.m360 .m360-stats-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px;
  }
  section.m360 .m360-stat {
    border-right: none !important;
    padding: 10px 8px;
  }
  section.m360 .m360-stat:nth-child(1),
  section.m360 .m360-stat:nth-child(2) {
    border-right: 1px solid rgba(17, 28, 58, 0.08) !important;
    border-bottom: 1px solid rgba(17, 28, 58, 0.08);
  }
}
@media (max-width: 460px) {
  section.m360 .m360-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  section.m360 .m360-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(17, 28, 58, 0.08);
  }
}


/* ═══════════════════════════════════════════════════════════════
   v42 · Revertir .cases al fondo oscuro original
   (v40 la había pasado a gris claro · Miguel la quiere oscura)
═══════════════════════════════════════════════════════════════ */

section.cases {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%) !important;
  border-top: none !important;
}

/* Restaurar efecto decorativo ::before si lo tenía */
section.cases::before {
  display: block !important;
}

/* Textos del header vuelven a blancos */
section.cases .cases-title {
  color: #fff !important;
}
section.cases .cases-title em.cyan {
  color: #5ce4f7 !important;
}
section.cases .eyebrow.light {
  color: #E11E2C !important;
}
section.cases .cases-lead {
  color: rgba(255, 255, 255, 0.7) !important;
}


/* ═══════════════════════════════════════════════════════════════
   v43 · Ajuste de fondos sla/why + fix legibilidad sla-tech
═══════════════════════════════════════════════════════════════ */

/* sla · BLANCO → GRIS */
section.sla {
  background: #ECF0F7 !important;
}

/* Los .sla-chip, .sla-lvl, .sla-tech, etc. estaban en #F8FAFC sobre blanco.
   Sobre gris se verían casi idénticos. Los pongo en blanco puro para
   que destaquen como cards sobre el fondo gris. */
section.sla .sla-chip,
section.sla .sla-lvl,
section.sla .sla-tech,
section.sla .sla-proof,
section.sla .sla-flow,
section.sla .sla-stat,
section.sla .sla-metric,
section.sla .sla-evidence,
section.sla .sla-evidence-strip {
  background: #FFFFFF !important;
  border: 1px solid rgba(17, 28, 58, 0.08) !important;
}
section.sla .sla-chip:hover,
section.sla .sla-lvl:hover {
  background: #FFFFFF !important;
  border-color: rgba(8, 145, 178, 0.35) !important;
  box-shadow: 0 4px 14px -4px rgba(17, 28, 58, 0.08);
}

/* sla-tech · arreglar textos del body (v40 los dejó heredados del diseño
   oscuro → quedaron ilegibles sobre fondo claro) */
section.sla .sla-tech-body {
  color: var(--ink) !important;
}
section.sla .sla-tech-body strong {
  color: var(--ink) !important;
  font-weight: 700;
}
section.sla .sla-tech-body span {
  color: rgba(17, 28, 58, 0.6) !important;
}

/* Levels2 wrapper también en blanco */
section.sla .sla-levels2 {
  background: #FFFFFF !important;
  border: 1px solid rgba(17, 28, 58, 0.08) !important;
  border-radius: 12px;
}
section.sla .sla-levels2 .sla-lvl {
  border: none !important;
  border-bottom: 1px solid rgba(17, 28, 58, 0.06) !important;
  border-radius: 0 !important;
  background: transparent !important;
}
section.sla .sla-levels2 .sla-lvl:last-child {
  border-bottom: none !important;
}

/* why · GRIS → BLANCO */
section.why {
  background: #FFFFFF !important;
}

/* Las why-card internas estaban en #fff; sobre fondo blanco pierden
   contraste. Ajusto su borde y sombra para que sigan destacando */
section.why .why-card {
  background: #F8FAFC !important;
  border: 1px solid rgba(17, 28, 58, 0.08) !important;
}
section.why .why-card:hover {
  background: #FFFFFF !important;
  border-color: rgba(225, 30, 44, 0.25) !important;
  box-shadow: 0 12px 30px -10px rgba(17, 28, 58, 0.12);
}


/* ═══════════════════════════════════════════════════════════════
   v45 · Revertir .m360 a fondo OSCURO
   (v40 la había pasado a blanco · Miguel la quiere oscura de nuevo)
═══════════════════════════════════════════════════════════════ */

section.m360 {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 50%, var(--ink) 100%) !important;
  border-top: none !important;
}
section.m360::before {
  display: block !important;
}

/* ── Header ── */
section.m360 .m360-title {
  color: #ffffff !important;
}
section.m360 .m360-title em.cyan {
  color: #5ce4f7 !important;
}
section.m360 .eyebrow.light {
  color: #E11E2C !important;
}
section.m360 .m360-sub {
  color: rgba(255, 255, 255, 0.62) !important;
}

/* ── Strip de métricas adaptado a fondo oscuro ── */
section.m360 .m360-stats-strip {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.3) !important;
}
section.m360 .m360-stat {
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
}
section.m360 .m360-stat:last-child {
  border-right: none !important;
}
section.m360 .m360-stat-val {
  color: #ffffff !important;
}
section.m360 .m360-stat-val em {
  color: #E11E2C !important;
}
section.m360 .m360-stat-lbl {
  color: rgba(255, 255, 255, 0.55) !important;
}

/* ── Pilares ── */
section.m360 .m360-pillar {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
section.m360 .m360-pillar:hover {
  background: rgba(0, 212, 255, 0.04) !important;
  border-color: rgba(0, 212, 255, 0.3) !important;
  box-shadow: none;
}

/* Iconos de pilares · cyan brillante */
section.m360 .m360-pillar-icon {
  background: rgba(0, 212, 255, 0.1) !important;
  color: #5ce4f7 !important;
}
section.m360 .m360-pillar:hover .m360-pillar-icon {
  background: rgba(225, 30, 44, 0.15) !important;
  color: #ff5565 !important;
}

/* Número pilar · cyan */
section.m360 .m360-pillar-num {
  color: #5ce4f7 !important;
}

/* Título del pilar · blanco */
section.m360 .m360-pillar h4 {
  color: #ffffff !important;
}

/* Descripción pilar · blanco transparente */
section.m360 .m360-pillar p {
  color: rgba(255, 255, 255, 0.68) !important;
}

/* ── Flechas entre pilares ── */
section.m360 .m360-arrow {
  color: rgba(92, 228, 247, 0.35) !important;
}

/* ── Barra-promesa ── */
section.m360 .m360-promise-bar {
  background: linear-gradient(135deg, rgba(225, 30, 44, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%) !important;
  border: 1px solid rgba(225, 30, 44, 0.2) !important;
}
section.m360 .m360-promise-text {
  color: rgba(255, 255, 255, 0.88) !important;
}
section.m360 .m360-promise-text .red {
  color: #ff5565 !important;
}
section.m360 .m360-promise-text .cyan {
  color: #5ce4f7 !important;
}


/* ═══════════════════════════════════════════════════════════════
   v46 · Menú principal ampliado con dropdown "Compañía"
═══════════════════════════════════════════════════════════════ */

/* Contenedor de submenú · relativo para posicionar dropdown */
.nav-links li.has-submenu {
  position: relative;
}

/* Dropdown · oculto por default */
.nav-links .nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid rgba(17, 28, 58, 0.08);
  border-radius: 12px;
  box-shadow: 0 16px 40px -12px rgba(17, 28, 58, 0.2);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 100;
}

/* Mostrar en hover del parent */
.nav-links li.has-submenu:hover .nav-submenu,
.nav-links li.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Caret · rotación al abrir */
.nav-links li.has-submenu .caret {
  display: inline-block;
  transition: transform .2s ease;
  font-size: 9px;
  margin-left: 2px;
  vertical-align: middle;
}
.nav-links li.has-submenu:hover .caret {
  transform: rotate(-180deg);
}

/* Items del submenú */
.nav-links .nav-submenu li {
  display: block;
  margin: 0;
  padding: 0;
}
.nav-links .nav-submenu li a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
  font-weight: 500;
}
.nav-links .nav-submenu li a:hover {
  background: rgba(225, 30, 44, 0.08);
  color: #E11E2C;
}

/* Divisor dentro del submenú */
.nav-links .nav-submenu li.submenu-divider {
  height: 1px;
  background: rgba(17, 28, 58, 0.08);
  margin: 6px 10px;
}
.nav-links .nav-submenu li.submenu-divider:hover {
  background: rgba(17, 28, 58, 0.08);
}

/* Puente invisible para que el hover no se "caiga" al bajar el mouse */
.nav-links li.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 14px;
  background: transparent;
}

/* Responsive · esconder el dropdown avanzado en móvil, dejar submenú
   para versión mobile si existe menú hamburguesa (fuera del alcance
   de este cambio) */
@media (max-width: 900px) {
  .nav-links .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 16px;
    min-width: 0;
  }
  .nav-links li.has-submenu .caret {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   v47 · Modal solicitud de demostración
═══════════════════════════════════════════════════════════════ */

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
}
.demo-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.demo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 28, 58, 0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.demo-modal-dialog {
  position: relative;
  margin: 40px auto;
  max-width: 580px;
  width: calc(100% - 32px);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 32px 28px;
  box-shadow: 0 24px 60px -12px rgba(17, 28, 58, 0.5);
  transform: translateY(20px);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.demo-modal.is-open .demo-modal-dialog {
  transform: translateY(0);
}

/* Botón cerrar */
.demo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: rgba(17, 28, 58, 0.6);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s, color .15s;
}
.demo-modal-close:hover {
  background: rgba(17, 28, 58, 0.08);
  color: var(--ink);
}

/* Header del modal */
.demo-modal-head {
  margin-bottom: 20px;
  padding-right: 32px;
}
.demo-modal-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E11E2C;
  margin-bottom: 10px;
}
.demo-modal-eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: #E11E2C;
  vertical-align: middle;
  margin-right: 8px;
}
.demo-modal-head h3 {
  font-size: 20px !important;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.demo-modal-desc {
  font-size: 13.5px;
  color: rgba(17, 28, 58, 0.65);
  line-height: 1.5;
  margin: 0;
}

/* Preview del correo */
.demo-modal-preview {
  background: #F8FAFC;
  border: 1px solid rgba(17, 28, 58, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.demo-preview-row {
  display: flex;
  gap: 10px;
  padding: 4px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(17, 28, 58, 0.06);
}
.demo-preview-row:last-of-type {
  border-bottom: none;
  margin-bottom: 8px;
}
.demo-preview-lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: rgba(17, 28, 58, 0.5);
  min-width: 60px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 4px;
}
.demo-preview-val {
  flex: 1;
  color: var(--ink);
  font-weight: 500;
}
.demo-preview-val strong {
  color: var(--ink);
  font-weight: 700;
}
.demo-preview-body {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 28, 58, 0.06);
}
.demo-preview-body pre {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(17, 28, 58, 0.82);
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
}

/* Providers · botones de servicio de correo */
.demo-providers-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 28, 58, 0.55);
  margin-bottom: 12px;
}
.demo-providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.demo-provider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  background: #ffffff;
  border: 1px solid rgba(17, 28, 58, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  font-family: inherit;
}
.demo-provider:hover {
  border-color: rgba(225, 30, 44, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -6px rgba(17, 28, 58, 0.12);
}
.demo-provider-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.demo-provider-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  line-height: 1.25;
}

/* Botón copiar */
.demo-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 14px;
  background: transparent;
  border: 1px dashed rgba(17, 28, 58, 0.18);
  border-radius: 10px;
  font-family: inherit;
  font-size: 12.5px;
  color: rgba(17, 28, 58, 0.7);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.demo-copy-btn:hover {
  background: rgba(17, 28, 58, 0.03);
  color: var(--ink);
  border-color: rgba(17, 28, 58, 0.35);
  border-style: solid;
}

/* Responsive · en mobile 2x2 en vez de 4 en fila */
@media (max-width: 540px) {
  .demo-modal-dialog {
    padding: 24px 20px 20px;
    margin: 20px auto;
  }
  .demo-providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .demo-modal-head h3 {
    font-size: 17px !important;
  }
  .demo-preview-body pre {
    font-size: 11.5px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   v49 · Modal multi-vista (Intro + Calendario + Providers)
═══════════════════════════════════════════════════════════════ */

/* Dialog más ancho para caber el calendario 5 columnas */
.demo-modal-dialog {
  max-width: 760px !important;
}

.demo-modal-view {
  animation: fadeInUp .25s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════ Vista 1 · INTRO ══════ */
.demo-intro-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.demo-intro-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(17, 28, 58, 0.8);
  line-height: 1.5;
  padding: 10px 14px;
  background: #F8FAFC;
  border-radius: 10px;
  border: 1px solid rgba(17, 28, 58, 0.05);
}
.demo-bullet-dot {
  width: 6px;
  height: 6px;
  background: #E11E2C;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.demo-intro-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.demo-intro-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 180px;
  padding: 12px 20px;
}

/* ══════ Vista 2 · CALENDARIO ══════ */
.demo-calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.demo-cal-day {
  background: #F8FAFC;
  border: 1px solid rgba(17, 28, 58, 0.06);
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demo-cal-day-header {
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(17, 28, 58, 0.08);
}
.demo-cal-day-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 28, 58, 0.5);
}
.demo-cal-day-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin: 2px 0;
}
.demo-cal-day-month {
  font-size: 10px;
  color: rgba(17, 28, 58, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Slots */
.demo-cal-slots {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.demo-cal-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: all .15s ease;
  text-align: center;
}
.demo-cal-slot.available {
  background: #ffffff;
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--ink);
}
.demo-cal-slot.available:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: #10B981;
  transform: translateY(-1px);
}
.demo-cal-slot.available.selected {
  background: #10B981;
  color: #fff;
  border-color: #10B981;
  box-shadow: 0 4px 12px -4px rgba(16, 185, 129, 0.5);
}
.demo-cal-slot.booked {
  background: rgba(225, 30, 44, 0.04);
  border-color: rgba(225, 30, 44, 0.18);
  color: rgba(225, 30, 44, 0.55);
  cursor: not-allowed;
  opacity: 0.6;
}
.demo-cal-slot.booked .demo-cal-slot-time {
  text-decoration: line-through;
}
.demo-cal-slot-time {
  font-weight: 700;
  font-size: 12.5px;
  font-family: 'Space Grotesk', sans-serif;
}
.demo-cal-slot-status {
  font-size: 9.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Selección actual */
.demo-calendar-selection {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(8, 145, 178, 0.06) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 13.5px;
}
.demo-calendar-selection-lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 28, 58, 0.55);
  margin-right: 10px;
}
.demo-calendar-selection-val {
  color: var(--ink);
}
.demo-calendar-selection-val strong {
  color: var(--ink);
}

/* Footer con botones volver/confirmar */
.demo-modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.demo-modal-footer .btn {
  padding: 11px 18px;
}
.demo-modal-footer .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ══════ Botón volver en Providers ══════ */
.demo-prov-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: rgba(17, 28, 58, 0.55);
  font-family: inherit;
  font-size: 12.5px;
  cursor: pointer;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.demo-prov-back:hover {
  color: var(--ink);
  background: rgba(17, 28, 58, 0.04);
}

/* Responsive */
@media (max-width: 720px) {
  .demo-calendar {
    grid-template-columns: repeat(2, 1fr);
    max-height: 400px;
    overflow-y: auto;
  }
  .demo-intro-actions {
    flex-direction: column;
  }
  .demo-intro-actions .btn {
    width: 100%;
  }
  .demo-modal-footer {
    flex-direction: column-reverse;
  }
  .demo-modal-footer .btn {
    width: 100%;
  }
}


/* ═══════════════════════════════════════════════════════════════
   v54 · Fade-out del icono blanco al interactuar con sol-card
═══════════════════════════════════════════════════════════════ */

/* Transición base del icono (por si no estaba) */
section.solutions .sol-card .sol-icon {
  transition: opacity .35s ease, transform .35s ease;
}

/* Hover, click mantenido o focus: ícono se desvanece */
section.solutions .sol-card:hover .sol-icon,
section.solutions .sol-card:active .sol-icon,
section.solutions .sol-card:focus-within .sol-icon {
  opacity: 0 !important;
  transform: translate(-50%, -50%) scale(0.92) !important;
}

/* Bonus suave: la foto de fondo se expande un pelín para dar
   sensación de "zoom" hacia el contenido */
section.solutions .sol-card .sol-bg {
  transition: transform .5s ease, filter .35s ease;
}
section.solutions .sol-card:hover .sol-bg {
  transform: scale(1.04);
  filter: brightness(0.88);
}


/* ═══════════════════════════════════════════════════════════════
   v58 · FAQ visible · estilos
═══════════════════════════════════════════════════════════════ */

section.faq {
  background: #FFFFFF !important;
  min-height: auto !important;
  padding: 88px 0 !important;
}

.faq-grid {
  max-width: 820px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #F8FAFC;
  border: 1px solid rgba(17, 28, 58, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: rgba(225, 30, 44, 0.25);
  box-shadow: 0 4px 18px -8px rgba(17, 28, 58, 0.1);
}
.faq-item:hover {
  border-color: rgba(17, 28, 58, 0.18);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-q {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
  line-height: 1.4;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(17, 28, 58, 0.06);
  color: var(--ink);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: #E11E2C;
  color: #ffffff;
}
.faq-a {
  padding: 0 22px 20px;
  animation: faqIn .25s ease;
}
.faq-a p {
  color: rgba(17, 28, 58, 0.75);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.faq-a strong {
  color: var(--ink);
  font-weight: 700;
}

@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  section.faq { padding: 60px 0 !important; }
  .faq-item summary { padding: 14px 16px; gap: 12px; }
  .faq-q { font-size: 14.5px; }
  .faq-a { padding: 0 16px 16px; }
  .faq-a p { font-size: 13.5px; }
}


/* ═══════════════════════════════════════════════════════════════
   v65 · FAQ rediseñada · split 2 columnas con iconos
═══════════════════════════════════════════════════════════════ */

section.faq {
  background: #FFFFFF !important;
  min-height: auto !important;
  padding: 72px 0 !important;
}

/* Quitar estilos v58 del accordion si aún colean */
section.faq .faq-grid,
section.faq .faq-item,
section.faq .faq-item summary,
section.faq .faq-item[open],
section.faq .faq-a,
section.faq .faq-q,
section.faq .faq-icon {
  all: unset;
  display: revert;
}

/* Layout split 2 columnas */
.faq2-mobile-answer { display: none; }

.faq2-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  max-width: 1100px;
  margin: 16px auto 0;
  align-items: stretch;
}

/* Reducir el margin-bottom global de .section-head SOLO dentro de FAQ */
section.faq .section-head {
  margin-bottom: 24px !important;
}

/* Reducir margen interno del lead (último hijo) */
section.faq .section-head .lead {
  margin-bottom: 0;
}

/* ══════ IZQUIERDA · lista de preguntas ══════ */
.faq2-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq2-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 28, 58, 0.06);
  background: #F8FAFC;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  width: 100%;
}
.faq2-item:hover {
  background: #F1F5FA;
  border-color: rgba(17, 28, 58, 0.12);
}
.faq2-item.active {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-color: var(--ink);
  transform: translateX(3px);
  box-shadow: 0 4px 14px -4px rgba(17, 28, 58, 0.3);
}

.faq2-item-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--ink);
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(17, 28, 58, 0.08);
  padding: 4px;
  transition: color .2s, background .2s, border-color .2s;
}
.faq2-item-icon svg { width: 100%; height: 100%; }

.faq2-item.active .faq2-item-icon {
  background: rgba(225, 30, 44, 0.15);
  color: #ffffff;
  border-color: rgba(225, 30, 44, 0.4);
}

.faq2-item-text {
  flex: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  transition: color .2s;
}
.faq2-item.active .faq2-item-text {
  color: #ffffff;
  font-weight: 700;
}

.faq2-item-arrow {
  font-size: 14px;
  color: rgba(17, 28, 58, 0.3);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s, transform .2s;
}
.faq2-item.active .faq2-item-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #5ce4f7;
}

/* ══════ DERECHA · stage con respuesta ══════ */
.faq2-stage {
  position: relative;
  background: linear-gradient(135deg, #F8FAFC 0%, #ECF0F7 100%);
  border: 1px solid rgba(17, 28, 58, 0.06);
  border-radius: 18px;
  padding: 34px 34px 28px;
  overflow: hidden;
  min-height: 360px;
}

.faq2-panel {
  position: absolute;
  inset: 34px 34px 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  display: flex;
  flex-direction: column;
}
.faq2-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Icono decorativo grande detrás */
.faq2-panel-icon-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  color: rgba(225, 30, 44, 0.08);
  pointer-events: none;
  transform: rotate(-8deg);
}
.faq2-panel-icon-bg svg { width: 100%; height: 100%; }

/* Marker decorativo */
.faq2-panel::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 34px;
  width: 36px;
  height: 3px;
  background: #E11E2C;
  border-radius: 2px;
}

.faq2-panel-q {
  font-size: 20px !important;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 12px 0 16px;
  padding-right: 80px;
  position: relative;
  z-index: 1;
}

.faq2-panel-a {
  position: relative;
  z-index: 1;
  flex: 1;
}
.faq2-panel-a p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(17, 28, 58, 0.78);
  margin: 0;
}
.faq2-panel-a strong {
  color: var(--ink);
  font-weight: 700;
}

/* Responsive · en móvil se vuelve una columna con acordeón */
@media (max-width: 900px) {
  .faq2-split {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .faq2-stage {
    min-height: 280px;
    padding: 28px 24px 22px;
  }
  .faq2-panel {
    inset: 28px 24px 22px;
  }
  .faq2-panel-icon-bg {
    width: 130px;
    height: 130px;
  }
  .faq2-panel-q {
    font-size: 17px !important;
    padding-right: 60px;
  }
  .faq2-panel-a p { font-size: 13.5px; }
  .faq2-item-text { font-size: 12.5px; }
  section.faq { padding: 56px 0 !important; }
}

@media (max-width: 600px) {
  .faq2-item { padding: 11px 12px; gap: 10px; }
  .faq2-item-icon { width: 28px; height: 28px; }
}


/* ═══════════════════════════════════════════════════════════════
   v69 · Redeban (logo cuadrado) agrandado para equilibrio visual
   con logos horizontales (Brinks, Bancolombia, Prosegur, etc.)
═══════════════════════════════════════════════════════════════ */

.ally img[alt="Redeban"] {
  max-height: 100px !important;
  max-width: 65% !important;
}


/* ═══════════════════════════════════════════════════════════════
   v71 · Selector de idioma ES/EN
═══════════════════════════════════════════════════════════════ */
.lang-btn {
  opacity: 0.4;
  transition: opacity .2s;
  cursor: pointer;
}
.lang-btn.active { opacity: 1; font-weight: 600; }
.lang-btn:hover { opacity: 0.9; }


/* ═══════════════════════════════════════════════════════════════
   v72 · RESPONSIVE CONSOLIDADO · Camino A

   Breakpoints estándar:
     ≤ 600px  → Móvil
     ≤ 900px  → Tablet (portrait y landscape pequeño)
     ≤ 1100px → Laptop pequeño / tablet landscape grande

   Las reglas viejas con breakpoints no estándar (460, 540, 560,
   620, 640, 720, 768, 820, 960, 980, 1024, 1200) se mantienen
   intactas y se sobrescriben cuando conviene con !important.
═══════════════════════════════════════════════════════════════ */

/* ═══ Safety net · no permitir overflow horizontal ═══
   IMPORTANTE: usamos `clip` en lugar de `hidden` porque `hidden`
   crea un contenedor de scroll y rompe `position: sticky` del nav.
   `clip` bloquea el overflow sin crear contexto de scroll. */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
  max-width: 100vw;
}

/* Garantizar que el nav principal siempre se quede fijo arriba al hacer scroll */
.nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
}

/* ═══ Hero · contener SVG decorativo ═══ */
.hero {
  overflow: hidden;
}
.hero svg, .hero img {
  max-width: 100%;
}

/* ═══ Pay-groups · evitar que se desborden ═══ */
.pay-group { min-width: 0; }
.pay-logos { min-width: 0; flex-wrap: wrap; }

/* ═══ Top bar · reducir contenido en móvil ═══ */
@media (max-width: 600px) {
  .top-bar {
    font-size: 11px !important;
  }
  .top-bar-left {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  /* Ocultar la segunda métrica del top-bar para que quepa */
  .top-bar-left > span:nth-child(n+2) { display: none; }
  .top-bar-right {
    gap: 6px !important;
  }
  .top-bar-right a[href^="tel"] {
    font-size: 11px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   A · MENÚ HAMBURGUESA
═══════════════════════════════════════════════════════════════ */

/* Hamburguesa oculta en desktop */
.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(17, 28, 58, 0.15);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: background .2s, border-color .2s;
}
.nav-burger:hover {
  background: rgba(17, 28, 58, 0.04);
  border-color: rgba(17, 28, 58, 0.25);
}
.nav-burger span {
  display: block;
  position: absolute;
  left: 10px;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 20px; }
.nav-burger span:nth-child(3) { top: 26px; }
.nav-burger.active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* Drawer fuera de pantalla por defecto */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 88%);
  height: 100vh;
  background: #FFFFFF;
  z-index: 1000;
  box-shadow: -10px 0 40px rgba(17, 28, 58, 0.15);
  transition: right .35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 28, 58, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.drawer-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.drawer-head {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(17, 28, 58, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.drawer-close {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  transition: background .2s;
}
.drawer-close:hover { background: rgba(17, 28, 58, 0.06); }

.drawer-nav {
  flex: 1;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-links, .drawer-sublinks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.drawer-links li a {
  display: block;
  padding: 12px 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.drawer-links li a:hover,
.drawer-links li a:active {
  background: rgba(225, 30, 44, 0.06);
  color: var(--red);
}

.drawer-group {
  border-top: 1px solid rgba(17, 28, 58, 0.08);
  padding-top: 14px;
}
.drawer-group-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  padding: 0 12px 8px;
}
.drawer-sublinks li a {
  display: block;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: rgba(17, 28, 58, 0.8);
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.drawer-sublinks li a:hover {
  background: rgba(17, 28, 58, 0.04);
  color: var(--ink);
}

.drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 28, 58, 0.08);
}
.drawer-btn {
  width: 100%;
  justify-content: center;
  font-size: 15px !important;
  padding: 13px 16px !important;
}

.drawer-foot {
  padding: 16px 20px;
  border-top: 1px solid rgba(17, 28, 58, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(17, 28, 58, 0.7);
  flex-shrink: 0;
}
.drawer-foot a[href^="tel"] {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.drawer-lang { display: flex; gap: 6px; align-items: center; }

/* Mostrar hamburguesa y ocultar nav-cta en <= 900px */
@media (max-width: 900px) {
  .nav-burger { display: grid; place-items: center; }
  .nav-cta .btn { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   D · MODAL DEMO · polish en móvil
═══════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  .email-modal,
  .modal-overlay .modal,
  .email-modal-content,
  .demo-modal {
    width: 94% !important;
    max-width: 94% !important;
    max-height: 90vh !important;
    border-radius: 14px !important;
    padding: 20px 18px !important;
  }

  /* Título del modal */
  .email-modal h2,
  .email-modal h3,
  .demo-modal h2,
  .demo-modal h3,
  .modal h2 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  /* Preview del email */
  .email-preview,
  .modal-preview {
    padding: 12px !important;
    font-size: 13px !important;
  }
  .email-preview strong,
  .modal-preview strong { font-size: 12px !important; }

  /* Botones de providers apilan vertical */
  .email-providers,
  .providers-grid,
  .modal-providers {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .email-providers a,
  .email-providers button,
  .modal-providers a,
  .modal-providers button {
    width: 100% !important;
    justify-content: center !important;
    font-size: 14px !important;
    padding: 12px 14px !important;
  }

  /* Calendario: 3 slots por día en lugar de 4 (o scroll vertical) */
  .cal-grid,
  .calendar-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 4px !important;
    font-size: 12px !important;
  }
  .cal-slot,
  .calendar-slot {
    padding: 8px 4px !important;
    font-size: 11px !important;
    min-height: 36px !important;
  }
  .cal-day,
  .calendar-day {
    font-size: 11px !important;
  }

  /* Botones secundarios del modal */
  .modal-footer,
  .email-modal-footer {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .modal-footer button,
  .email-modal-footer button {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Ajustes adicionales en tablet
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Hero más compacto */
  section.hero { padding: 32px 0 24px !important; }

  /* Reducir paddings de secciones densas */
  section.m360 { padding: 56px 0 !important; }
  section.solutions { padding: 56px 0 !important; }
  section.cases { padding: 56px 0 !important; }
}


/* ═══════════════════════════════════════════════════════════════
   v74 · FIXES hamburguesa
   1. Líneas blancas (el nav tiene fondo navy oscuro)
   2. Posición al extremo derecho (ocultar .nav-cta completo en móvil)
═══════════════════════════════════════════════════════════════ */

/* Hamburguesa con estilo sobre fondo oscuro del nav */
.nav-burger {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.nav-burger:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}
.nav-burger span {
  background: #FFFFFF !important;
}

/* En móvil/tablet: ocultar .nav-cta completamente (no solo sus hijos).
   Así el .nav-inner queda con solo 2 flex items (logo + burger) y
   space-between los manda a los extremos opuestos. */
@media (max-width: 900px) {
  .nav-inner > .nav-cta { display: none !important; }
}


/* ═══════════════════════════════════════════════════════════════
   v75 · Z-INDEX · modal siempre encima del drawer
═══════════════════════════════════════════════════════════════ */
.demo-modal,
.email-modal,
.modal-overlay {
  z-index: 1100 !important;
}

/* ═══════════════════════════════════════════════════════════════
   v75 · FAQ móvil · acordeón vertical
   El split 2-col con auto-rotate es bueno en desktop (hover), pero
   en móvil no funciona porque no hay hover. Convertimos cada item
   en un acordeón que expande/colapsa su respuesta debajo.
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Neutralizar la clase .active (desktop) en móvil — solo m-open decide */
  .faq2-item.active:not(.m-open) {
    background: #F8FAFC !important;
    border-color: rgba(17, 28, 58, 0.06) !important;
    transform: none !important;
    box-shadow: none !important;
  }
  .faq2-item.active:not(.m-open) .faq2-item-icon {
    background: #ffffff !important;
    color: var(--ink) !important;
    border-color: rgba(17, 28, 58, 0.08) !important;
  }
  .faq2-item.active:not(.m-open) .faq2-item-text {
    color: var(--ink) !important;
    font-weight: 600 !important;
  }

  /* Ocultar el stage · mostraremos las respuestas debajo de cada item */
  .faq2-stage {
    display: none !important;
  }

  /* El split se vuelve una columna única */
  .faq2-split {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    max-width: 100%;
  }

  /* Cada item con su respuesta adjunta debajo */
  .faq2-item {
    display: flex;
    align-items: flex-start;
    padding: 14px 16px !important;
    position: relative;
    cursor: pointer;
  }

  /* Signo + / − a la derecha */
  .faq2-item::after {
    content: "+";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
    color: var(--ink);
    transition: transform .25s, color .25s;
    line-height: 1;
  }
  .faq2-item.m-open::after {
    content: "−";
    color: #E11E2C;
  }
  .faq2-item.m-open {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%) !important;
    border-color: var(--ink) !important;
    transform: none !important;
  }
  .faq2-item.m-open .faq2-item-icon {
    background: rgba(225, 30, 44, 0.15);
    color: #ffffff;
    border-color: rgba(225, 30, 44, 0.4);
  }
  .faq2-item.m-open .faq2-item-text {
    color: #ffffff;
  }
  .faq2-item.m-open::after {
    color: #5ce4f7;
  }

  /* Ocultar la flecha → del item, usamos + / − */
  .faq2-item-arrow { display: none !important; }

  /* Reservar espacio a la derecha del + */
  .faq2-item-text {
    padding-right: 28px;
  }

  /* Panel de respuesta debajo de cada item cuando abierto */
  .faq2-mobile-answer {
    display: none;
    padding: 14px 18px 18px;
    background: #F8FAFC;
    border: 1px solid rgba(17, 28, 58, 0.06);
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-top: -8px;
    margin-bottom: 6px;
  }
  .faq2-mobile-answer.m-open {
    display: block;
  }
  .faq2-mobile-answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(17, 28, 58, 0.8);
  }
  .faq2-mobile-answer strong {
    color: var(--ink);
    font-weight: 700;
  }
}


/* ═══════════════════════════════════════════════════════════════
   v78 · Portal de soporte para clientes
═══════════════════════════════════════════════════════════════ */
section.cx-support {
  padding: 96px 0;
  background: #ffffff;
  border-top: 1px solid rgba(17, 28, 58, 0.06);
}
section.cx-support .section-head { margin-bottom: 48px; }

/* Tarjeta principal · CTA al portal Zendesk */
.cxs-primary-card {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 44px 48px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px -18px rgba(17, 28, 58, 0.45);
}
.cxs-primary-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(92, 228, 247, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cxs-primary-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5ce4f7;
  margin-bottom: 14px;
}
.cxs-primary-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.cxs-primary-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
.cxs-primary-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.cxs-primary-right .btn-primary {
  width: 100%;
  text-align: center;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  background: #E11E2C;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  letter-spacing: 0.01em;
}
.cxs-primary-right .btn-primary:hover {
  background: #c51a26;
  transform: translateY(-1px);
}
.cxs-secondary-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color .2s, border-color .2s;
}
.cxs-secondary-link:hover {
  color: #5ce4f7;
  border-color: rgba(92, 228, 247, 0.5);
}

/* Tarjetas canales alternativos */
.cxs-channels {
  max-width: 1100px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cxs-channel-card {
  background: #F8FAFC;
  border: 1px solid rgba(17, 28, 58, 0.08);
  border-radius: 16px;
  padding: 32px 30px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.cxs-channel-card:hover {
  border-color: rgba(0, 102, 179, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px rgba(17, 28, 58, 0.15);
}
.cxs-channel-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(225, 30, 44, 0.08);
  border-radius: 12px;
  color: #E11E2C;
  margin-bottom: 18px;
}
.cxs-channel-icon svg { width: 24px; height: 24px; }
.cxs-channel-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 8px;
}
.cxs-channel-card > p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(17, 28, 58, 0.7);
  margin: 0 0 18px;
}
.cxs-channel-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.cxs-channel-contact a {
  color: var(--brand-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.cxs-channel-contact a:hover { border-color: var(--brand-blue); }
.cxs-channel-sep { color: rgba(17, 28, 58, 0.3); }

/* Nota prospects */
.cxs-prospect-note {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  background: #F8FAFC;
  border: 1px dashed rgba(17, 28, 58, 0.18);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  font-size: 14px;
}
.cxs-prospect-note span { color: rgba(17, 28, 58, 0.7); }
.cxs-prospect-note a {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.cxs-prospect-note a:hover { border-color: var(--brand-blue); }

/* Link destacado en footer */
.footer-col .footer-support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 14px;
  background: rgba(225, 30, 44, 0.15);
  border: 1px solid rgba(225, 30, 44, 0.3);
  color: #ffffff !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.footer-col .footer-support-link:hover {
  background: rgba(225, 30, 44, 0.25);
  border-color: rgba(225, 30, 44, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
  section.cx-support { padding: 64px 0; }
  .cxs-primary-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 26px;
    margin-bottom: 20px;
  }
  .cxs-primary-card h3 { font-size: 24px; }
  .cxs-primary-card p { font-size: 14px; }
  .cxs-channels {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
  .cxs-channel-card { padding: 26px 22px; }
  .cxs-channel-card h4 { font-size: 17px; }
  .cxs-prospect-note {
    flex-direction: column;
    padding: 16px 20px;
    text-align: center;
  }
}


/* v79 · Botón Chat en vivo (Zendesk) dentro de tarjeta soporte */
.cxs-chat-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background .2s, border-color .2s, transform .15s;
}
.cxs-chat-btn:hover {
  background: rgba(92, 228, 247, 0.1);
  border-color: #5ce4f7;
  color: #5ce4f7;
  transform: translateY(-1px);
}
.cxs-chat-btn:disabled,
.cxs-chat-btn[data-loading="1"] {
  opacity: 0.6;
  pointer-events: none;
}
.cxs-chat-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Reducir gap en la columna derecha de la tarjeta principal
   ahora que hay un botón secundario entre ticket y links */
.cxs-primary-right .cxs-chat-btn + .cxs-secondary-link {
  margin-top: 6px;
}

/* v81 · Toggle launcher Zendesk ↔ WhatsApp float
   · Widget cerrado → WhatsApp visible, launcher oculto
   · Widget abierto → launcher visible (para cerrar con un clic),
     WhatsApp oculto para no competir
   · Un solo elemento flotante a la vez */
iframe#launcher,
iframe[title*="Botón para iniciar" i] {
  display: none !important;
}
body.ze-open iframe#launcher,
body.ze-open iframe[title*="Botón para iniciar" i] {
  display: block !important;
}
body.ze-open .wa-float {
  display: none !important;
}


/* ═══════════════════════════════════════════════════════════════
   v37 · Dashboard TouchPay · re-paletizado a GRIS CORPORATIVO
   El panel destaca sobre el fondo azul oscuro de la sección.
═══════════════════════════════════════════════════════════════ */

/* Contenedor principal del dashboard */
section.software .software-dashboard {
  background: linear-gradient(165deg, #F7F9FD 0%, #FFFFFF 100%) !important;
  border: 1px solid #DCE4F0 !important;
  box-shadow:
    0 24px 60px -16px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255,255,255,0.05) !important;
  color: #0F172A;
}

/* Header del dashboard */
section.software .dash-header { color: #0F172A; }
section.software .dash-title {
  color: #0F172A !important;
  font-weight: 700;
}
section.software .dash-live {
  color: #10B981 !important;
  font-weight: 600;
}
section.software .dash-live .dot { background: #10B981 !important; box-shadow: 0 0 0 4px rgba(16,185,129,.15) !important; }

/* KPI cards (Disponibilidad, Transacciones hoy, Efectivo, Dispositivos) */
section.software .dash-metric {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
section.software .dash-metric-lbl {
  color: #64748B !important;
  font-weight: 700 !important;
}
section.software .dash-metric-val {
  color: #0F172A !important;
}
section.software .dash-metric-val em {
  color: #E11E2C !important;
}
section.software .dash-metric-sub {
  color: #64748B !important;
}
section.software .dash-metric-sub.up {
  color: #10B981 !important;
}

/* Cards interiores (gráfico líneas, donut, barras, tabla) */
section.software .dash-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 12px !important;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
section.software .dash-card-head { color: #0F172A; }
section.software .dash-card-title {
  color: #475569 !important;
  font-weight: 700 !important;
}
section.software .dash-card-badge {
  background: rgba(16,185,129,.12) !important;
}
section.software .dash-card-badge.up {
  background: rgba(16,185,129,.15) !important;
  color: #059669 !important;
}
section.software .dash-card-hint {
  color: #94A3B8 !important;
}

/* Línea (gráfico de últimas 12 horas) — ajuste de ejes/fondo */
section.software .dash-line-axis,
section.software .dash-line text,
section.software .dash-chart text { fill: #94A3B8 !important; color: #94A3B8 !important; }
section.software .dash-line svg text,
section.software .dash-bars text { fill: #94A3B8 !important; }

/* Donut */
section.software .dash-donut-wrap { color: #0F172A; }
section.software .dash-donut-legend { color: #475569; }
section.software .dash-donut-legend strong { color: #0F172A !important; }
section.software .dd-item { color: #475569 !important; }
section.software .dd-item span { color: #475569 !important; }
section.software .dd-item strong,
section.software .dd-item .pct { color: #0F172A !important; font-weight: 700; }
section.software .dash-donut text {
  fill: #0F172A !important;
}
section.software .dash-donut-center,
section.software .dash-donut-num {
  fill: #0F172A !important;
  color: #0F172A !important;
}
section.software .dash-donut-lbl { fill: #64748B !important; color: #64748B !important; }

/* Barras por hora */
section.software .dash-bars-axis { color: #94A3B8 !important; }

/* Tabla últimas transacciones */
section.software .dash-tx-row {
  border-bottom: 1px solid #F1F5F9 !important;
}
section.software .dash-tx-row:last-child { border-bottom: 0 !important; }
section.software .dash-tx-row:hover {
  background: #F7F9FD !important;
}
section.software .dash-tx-time {
  color: #94A3B8 !important;
  font-weight: 500;
}
section.software .dash-tx-loc {
  color: #0F172A !important;
  font-weight: 500;
}
section.software .dash-tx-amt {
  color: #0F172A !important;
  font-weight: 700;
}
section.software .dash-tx-status,
section.software .dash-tx-row .status,
section.software .dash-tx-row [class*="aprob"] {
  background: rgba(16,185,129,.12) !important;
  color: #059669 !important;
  border: 1px solid rgba(16,185,129,.25);
}

/* Chart genérico */
section.software .dash-chart { color: #475569; }
section.software .dash-chart-label { color: #94A3B8 !important; }

/* Texto y números genéricos que hayan quedado claros */
section.software .software-dashboard * {
  text-shadow: none !important;
}

/* Sutil patrón de puntos del fondo del panel original (eliminarlo si era claro sobre claro) */
section.software .software-dashboard::before,
section.software .software-dashboard::after { opacity: .08; }

/* ═══════════════════════════════════════════════════════════════
   Badge SAKURA en card "06 · RESTAURANTES" del home
═══════════════════════════════════════════════════════════════ */
.sol-visual-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.85);
  color: #C9A766;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 3;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 167, 102, 0.3);
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════════
   Logo oficial TouchColombia en sección de Productos
═══════════════════════════════════════════════════════════════ */
section.products{position:relative}
.products-brand-mark{
  position:absolute;
  top:32px;left:32px;
  z-index:5;
  display:inline-flex;align-items:center;
  text-decoration:none;
  opacity:.95;transition:opacity .2s ease;
}
.products-brand-mark:hover{opacity:1}
.products-brand-mark img{
  height:38px;width:auto;display:block;
  filter:drop-shadow(0 2px 8px rgba(15,23,42,.08));
}
@media(max-width:820px){
  .products-brand-mark{top:20px;left:20px}
  .products-brand-mark img{height:30px}
}

/* ========== ECOSISTEMA TOUCHCOLOMBIA ========== */
.eco{padding:46px 24px 54px;background:linear-gradient(180deg,#F5F7FB 0%,#fff 100%);border-top:1px solid #eef1f7}
.eco .section-head{margin-bottom:0}
.eco .display-m{font-size:clamp(24px,2.8vw,36px)}
.eco .lead{font-size:15.5px;max-width:720px;margin-bottom:0}
.eco-grid{display:grid;grid-template-columns:.58fr 1.72fr;gap:32px;align-items:center;margin-top:26px}
.eco-core{position:relative;text-align:center;padding-bottom:26px}
.eco-core img{max-height:400px;width:auto;max-width:100%;filter:drop-shadow(0 26px 40px rgba(17,28,58,.3))}
.eco-core-badge{position:absolute;bottom:0;left:50%;transform:translateX(-50%);background:#111C3A;color:#fff;border-radius:11px;padding:8px 16px;font-weight:800;font-size:12.5px;box-shadow:0 12px 28px rgba(17,28,58,.35);white-space:nowrap;line-height:1.3}
.eco-core-badge small{display:block;font-weight:600;font-size:11px;color:#9CC5FF;letter-spacing:.03em}
.eco-channels{display:grid;grid-template-columns:1fr 1fr 1fr;gap:13px}
.eco-card{background:#fff;border:1px solid #e3e8f2;border-radius:13px;padding:15px 16px;box-shadow:0 4px 14px rgba(15,23,42,.05);transition:transform .25s,border-color .25s}
.eco-card:hover{transform:translateY(-3px);border-color:#28A6FF}
.eco-card .ico{width:36px;height:36px;border-radius:9px;background:#F0F7FF;border:1px solid #dbeafe;display:flex;align-items:center;justify-content:center;margin-bottom:9px}
.eco-card .ico svg{width:19px;height:19px}
.eco-card h4{margin:0 0 4px;font-size:13.5px;color:#111C3A;font-family:'Space Grotesk',sans-serif}
.eco-card p{margin:0;font-size:11.5px;line-height:1.45;color:#5a6478}
.eco-flow{margin:20px auto 0;max-width:980px;background:#111C3A;border-radius:14px;padding:14px 22px;display:flex;align-items:center;gap:12px;flex-wrap:wrap;justify-content:center}
.eco-flow-title{flex-basis:100%;text-align:center;color:#9CC5FF;font-size:10.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;margin-bottom:2px}
.eco-flow-step{display:flex;align-items:center;gap:8px;color:#fff;font-size:12.5px;font-weight:600}
.eco-flow-step .n{width:22px;height:22px;border-radius:50%;background:#E11E2C;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:800;flex:none}
.eco-flow-sep{color:rgba(255,255,255,.35);font-size:16px}
@media(max-width:900px){.eco-grid{grid-template-columns:1fr}.eco-channels{grid-template-columns:1fr}.eco-flow-sep{display:none}.eco-flow{flex-direction:column;align-items:flex-start}.eco-flow-title{text-align:left}}

/* ── Tarjetas de industria 100% clicables (stretched link) ── */
.sol-card{position:relative;cursor:pointer}
.sol-card .sol-link::after{content:"";position:absolute;inset:0;z-index:2}
.sol-card:hover .sol-link{text-decoration:underline}

/* ========== HERO v2 · Cine total (Opción A) ========== */
.hero2{position:relative;min-height:calc(100vh - 108px);max-height:960px;display:flex;align-items:center;overflow:hidden;background:#0A1026}
.hero2-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 30%}
.hero2-ol{position:absolute;inset:0;background:linear-gradient(100deg,rgba(10,16,38,.95) 0%,rgba(10,16,38,.82) 38%,rgba(10,16,38,.25) 68%,rgba(10,16,38,.45) 100%)}
.hero2-wrap{position:relative;z-index:2;width:100%;padding-top:40px;padding-bottom:40px}
.hero2-content{max-width:640px}
.hero2-title{font-family:'Space Grotesk',sans-serif;font-size:clamp(36px,4.4vw,60px);line-height:1.05;color:#fff;letter-spacing:-.025em;margin:0 0 18px}
.hero2-title em{font-style:normal;color:#FF3B47}
.hero2-sub{font-size:17px;line-height:1.55;color:rgba(255,255,255,.84);max-width:530px;margin:0 0 24px}
.hero2-ctas{display:flex;gap:14px;margin-bottom:22px;flex-wrap:wrap}
.hero2-ghost{border-color:rgba(255,255,255,.4) !important;color:#fff !important}
.hero2-checks{list-style:none;padding:0;margin:0;display:flex;gap:10px 20px;flex-wrap:wrap;max-width:560px}
.hero2-checks li{color:rgba(255,255,255,.85);font-size:13.5px;font-weight:600}
.hero2-checks li::before{content:"✓ ";color:#FF3B47;font-weight:800}
.hero2-cards{position:absolute;right:44px;bottom:40px;z-index:3;display:flex;flex-direction:column;gap:13px}
.hero2-card{background:#fff;border-radius:14px;padding:13px 20px;min-width:225px;box-shadow:0 20px 50px rgba(0,0,0,.45)}
.hero2-card .l{font-size:10px;letter-spacing:.12em;color:#E11E2C;font-weight:800;text-transform:uppercase}
.hero2-card .v{font-family:'Space Grotesk',sans-serif;font-size:29px;font-weight:700;color:#111C3A;line-height:1.1}
.hero2-card .v em{font-style:normal;color:#E11E2C}
.hero2-card .s{font-size:11.5px;color:#778099}
@media(max-width:1060px){
  .hero2{min-height:0;padding:56px 0}
  .hero2-cards{position:static;flex-direction:row;flex-wrap:wrap;margin:26px 24px 0;gap:12px}
  .hero2-card{flex:1 1 180px;min-width:0}
}

/* ========== INDUSTRIAS · tarjetas compactas en un frame ========== */
.solutions{padding:64px 24px}
.solutions .section-head{margin-bottom:0}
.solutions .display-m{font-size:clamp(24px,2.8vw,36px)}
.solutions .lead{margin-bottom:0;font-size:15.5px}
.solm-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:30px}
.sol-card.solm{position:relative;height:246px;border-radius:16px;overflow:hidden;box-shadow:0 10px 28px rgba(15,23,42,.16);padding:0;background:#111C3A}
.solm-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.sol-card.solm:hover .solm-bg{transform:scale(1.06)}
.solm-ol{position:absolute;inset:0;background:linear-gradient(180deg,rgba(17,28,58,.25) 0%,rgba(17,28,58,.55) 45%,rgba(17,28,58,.92) 100%)}
.solm-tag{position:absolute;top:12px;right:12px;z-index:3;background:#E11E2C;color:#fff;font-size:10px;font-weight:800;letter-spacing:.1em;padding:4px 10px;border-radius:6px;text-transform:uppercase}
.solm-bd{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:16px 20px;color:#fff}
.solm-num{font-family:'Space Grotesk',sans-serif;font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:#9CC5FF;font-weight:700}
.solm-bd h3{font-family:'Space Grotesk',sans-serif;font-size:19px;margin:5px 0 5px;color:#fff;letter-spacing:-.01em}
.solm-bd p{font-size:12.5px;color:rgba(255,255,255,.82);margin:0 0 8px;line-height:1.4}
.solm-bd .sol-link{color:#FF6B76;font-weight:700;font-size:13px;text-decoration:none}
@media(max-width:960px){.solm-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.solm-grid{grid-template-columns:1fr}.sol-card.solm{height:220px}}
