/* EISA - Estilos corporativos */
/* Paleta: Azul profundo, acentos teal, fondo neutro */

:root {
  --color-bg: #080f1e;
  --color-bg-elevated: #0f1729;
  --color-bg-card: #182536;
  --color-surface: #1f3048;
  --color-primary: #1cb0f5;
  --color-primary-hover: #47c4ff;
  --color-accent: #1ec4ae;
  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-border: rgba(148, 163, 184, 0.15);
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.2);
  --shadow-medium: 0 16px 36px rgba(0, 0, 0, 0.24);
  --shadow-premium: 0 18px 42px rgba(0, 0, 0, 0.24);
  --shadow-card: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --transition: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-space-desktop: 7.75rem;
  --section-space-tablet: 5.5rem;
  --section-space-mobile: 4rem;
  /* Fondo corporativo tech (cyber limpio) — tonos algo más saturados */
  --bg-base-top: #0c1734;
  --bg-base-mid: #091228;
  --bg-base-bottom: #060b1a;
  --tech-grid-line: rgba(125, 180, 240, 0.058);
  --aurora-cyan: rgba(14, 185, 245, 0.28);
  --aurora-teal: rgba(32, 196, 178, 0.19);
  --aurora-violet: rgba(139, 150, 255, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: var(--bg-base-bottom);
}

html.nav-open {
  overflow: hidden;
}

html.rubro-viewer-open {
  overflow: hidden;
}

html.nav-open body {
  overflow: hidden;
}

html.rubro-viewer-open body {
  overflow: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #020617;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.005em;
  position: relative;
  isolation: isolate;
  -webkit-tap-highlight-color: rgba(28, 176, 245, 0.15);
}

body::before,
body::after {
  content: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* Fondo global liviano: profundidad visual sin blur ni repintados por cursor */
.global-animated-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(83, 164, 255, 0.075) 46.15% 46.45%, transparent 46.75% 100%),
    linear-gradient(62deg, transparent 0 52%, rgba(176, 132, 255, 0.055) 52.15% 52.42%, transparent 52.72% 100%),
    radial-gradient(ellipse 76% 58% at 78% 18%, rgba(36, 113, 255, 0.16), transparent 62%),
    radial-gradient(ellipse 58% 48% at 17% 80%, rgba(132, 83, 255, 0.12), transparent 64%),
    radial-gradient(ellipse 100% 58% at 50% -12%, rgba(0, 155, 214, 0.11), transparent 60%),
    linear-gradient(180deg, #0c1734 0%, #091228 38%, #060b1a 100%);
  background-size: 320px 180px, 280px 220px, auto, auto, auto, auto;
}

.global-animated-background::before,
.global-animated-background::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.global-animated-background::before {
  opacity: 0.52;
  background-image:
    radial-gradient(circle, rgba(125, 211, 252, 0.24) 0 1.5px, transparent 2.4px),
    radial-gradient(circle, rgba(196, 181, 253, 0.16) 0 1.2px, transparent 2px);
  background-position: 12% 24%, 78% 68%;
  background-size: 140px 140px, 190px 190px;
  mask-image: radial-gradient(ellipse 82% 74% at 56% 44%, #000 22%, transparent 82%);
}

.global-animated-background::after {
  background: radial-gradient(
    ellipse 88% 74% at 50% 50%,
    transparent 36%,
    rgba(5, 10, 20, 0.54) 100%
  );
}

body > * {
  position: relative;
  z-index: 1;
}

body > .global-animated-background {
  z-index: -1;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background:
    linear-gradient(180deg, rgba(11, 20, 42, 0.98), rgba(8, 14, 28, 0.92));
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 32px rgba(2, 6, 23, 0.08);
  transition:
    background-color var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.header--scrolled {
  background:
    linear-gradient(180deg, rgba(11, 20, 42, 0.99), rgba(8, 14, 28, 0.96));
  border-bottom-color: rgba(148, 163, 184, 0.24);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.18);
}

.header__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 5rem;
  padding: 0.75rem max(1.5rem, env(safe-area-inset-right, 0px)) 0.75rem
    max(1.5rem, env(safe-area-inset-left, 0px));
  display: grid;
  grid-template-columns: minmax(9rem, 13rem) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(1rem, 2vw, 1.75rem);
}

.logo {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text);
  position: relative;
  flex-shrink: 0;
  min-width: 0;
}

.nav {
  grid-column: 2;
  justify-self: end;
  min-width: 0;
}

.header__actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.35rem;
  padding-left: clamp(0.85rem, 1.5vw, 1.2rem);
  border-left: 1px solid rgba(148, 163, 184, 0.18);
  min-width: 0;
}

.header__link--acceso {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(28, 176, 245, 0.45);
  border-radius: 999px;
  background: rgba(28, 176, 245, 0.08);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    color var(--transition-smooth),
    border-color var(--transition-smooth),
    background var(--transition-smooth),
    transform var(--transition-smooth);
}

.header__link--acceso:hover {
  color: var(--color-primary-hover);
  border-color: rgba(56, 189, 248, 0.7);
  background: rgba(28, 176, 245, 0.14);
  transform: translateY(-1px);
}

.logo__img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.logo--wordmark .logo__text,
.logo--wordmark .logo__tag {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo--wordmark {
  gap: 0;
}

.logo--wordmark .logo__img {
  height: clamp(36px, 4.5vw, 44px);
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  object-position: left center;
}

.logo__tag {
  color: var(--color-primary);
  font-weight: 500;
}

.nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}

.nav__list a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition:
    color var(--transition-smooth),
    background var(--transition-smooth);
  white-space: nowrap;
}

.nav__list a::after {
  content: '';
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity var(--transition-smooth),
    transform var(--transition-smooth);
}

.nav__list a:hover {
  color: #e2f4ff;
  background: rgba(148, 163, 184, 0.07);
}

.nav__list a.is-active {
  color: var(--color-text);
  background: transparent;
}

.nav__list a.is-active::after,
.nav__list a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav__link--acceso {
  color: var(--color-primary) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(28, 176, 245, 0.45);
  border-radius: 999px !important;
  background: linear-gradient(
    180deg,
    rgba(28, 176, 245, 0.18) 0%,
    rgba(28, 176, 245, 0.08) 100%
  );
  box-shadow: none;
}

.nav__link--acceso:hover {
  color: var(--color-primary-hover) !important;
  border-color: rgba(56, 189, 248, 0.7);
  background: linear-gradient(
    180deg,
    rgba(28, 176, 245, 0.28) 0%,
    rgba(28, 176, 245, 0.14) 100%
  ) !important;
  transform: translateY(-1px);
  box-shadow: none;
}

.nav__link--acceso svg {
  display: block;
  width: 1rem;
  height: 1rem;
  stroke-width: 2.2;
}

.nav__link--acceso span {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0ea5e9 100%);
  color: #03111f;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(125, 211, 252, 0.5);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.22) inset,
    0 10px 24px rgba(28, 176, 245, 0.24);
  transition:
    color var(--transition-smooth),
    background var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth),
    transform var(--transition-smooth);
}

.header__cta:hover {
  background: linear-gradient(135deg, #47c4ff 0%, var(--color-primary) 100%);
  border-color: rgba(186, 230, 253, 0.78);
  color: #020617;
  transform: translateY(-0.125rem);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.3) inset,
    0 18px 36px rgba(28, 176, 245, 0.32);
}

.nav__item--acceso-mobile {
  display: none;
}

.menu-toggle {
  display: none;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  padding: clamp(2.75rem, 7svh, 4.5rem) max(1.5rem, env(safe-area-inset-right, 0px)) clamp(4.75rem, 9svh, 6.5rem) max(1.5rem, env(safe-area-inset-left, 0px));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero__copy {
  text-align: left;
  min-width: 0;
}

.hero__eyebrow {
  display: none !important;
}

.hero__title {
  font-size: clamp(2.15rem, 5.2vw, 3.45rem);
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: clamp(1.35rem, 3.5vh, 1.85rem);
  letter-spacing: -0.025em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  margin-top: 0.45rem;
  font-size: clamp(1rem, 2.6vw, 1.55rem);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero__title em {
  color: var(--color-primary);
  font-style: normal;
}

.hero__subtitle {
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
  color: var(--color-text-muted);
  margin-bottom: clamp(1.75rem, 4vh, 2.5rem);
  max-width: 36rem;
  line-height: 1.72;
  text-align: left;
  text-align-last: left;
}

.hero__actions {
  display: flex;
  gap: 1rem 1.25rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-out;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  border: none;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-0.125rem);
  box-shadow: 0 18px 36px rgba(28, 176, 245, 0.28);
}

.btn--glow {
  box-shadow:
    0 0 0 1px rgba(28, 176, 245, 0.35),
    0 10px 28px rgba(28, 176, 245, 0.22);
}

.btn--glow:hover {
  box-shadow:
    0 0 0 1px rgba(71, 196, 255, 0.55),
    0 14px 36px rgba(28, 176, 245, 0.32);
}

.btn--secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(28, 176, 245, 0.08);
  transform: translateY(-0.125rem);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.18);
}

.btn:focus-visible,
.nav__list a:focus-visible,
.header__link--acceso:focus-visible,
.header__cta:focus-visible,
.menu-toggle:focus-visible,
.chatbot__toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn--full {
  width: 100%;
}

.hero__metrics {
  margin-top: clamp(1.75rem, 4vh, 2.5rem);
  padding-top: clamp(1.5rem, 3.5vh, 2rem);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.hero__metric {
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(24, 37, 54, 0.62), rgba(8, 14, 28, 0.42));
  min-width: 0;
  transition:
    border-color var(--transition-smooth),
    background var(--transition-smooth),
    transform var(--transition-smooth);
}

.hero__metric:hover {
  border-color: rgba(28, 176, 245, 0.34);
  background:
    linear-gradient(180deg, rgba(28, 176, 245, 0.12), rgba(8, 14, 28, 0.5));
  transform: translateY(-0.125rem);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.18);
}

.hero__metric strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-primary-hover);
  line-height: 1.2;
  font-weight: 700;
}

.hero__metric span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.hero__visual {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 43vw, 520px);
  display: grid;
  place-items: center;
  perspective: 1600px;
}

.hero__glow {
  position: absolute;
  inset: -2% -4% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 42%, rgba(56, 189, 248, 0.22), transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(32, 196, 178, 0.14), transparent 48%);
  pointer-events: none;
}

.hero__mockup {
  position: relative;
  width: min(100%, 680px);
  padding: clamp(0.55rem, 1.2vw, 0.85rem);
  border-radius: 34px;
  border: 1px solid rgba(191, 219, 254, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(148, 163, 184, 0.04) 34%, rgba(14, 23, 43, 0.78) 100%),
    linear-gradient(180deg, rgba(11, 20, 42, 0.98), rgba(2, 6, 23, 0.96));
  box-shadow:
    0 42px 120px rgba(2, 6, 23, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 120px rgba(30, 64, 175, 0.26),
    0 0 82px rgba(28, 176, 245, 0.12);
  transform: rotateY(-6deg) rotateX(2.5deg);
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.hero__mockup:hover {
  border-color: rgba(125, 211, 252, 0.44);
  box-shadow:
    0 46px 124px rgba(2, 6, 23, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 95px rgba(30, 64, 175, 0.3);
  transform: rotateY(-4deg) rotateX(2deg) translateY(-4px);
}

.hero__mockup::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(125, 211, 252, 0.38), transparent 32%, rgba(32, 196, 178, 0.26) 68%, transparent);
  filter: blur(14px);
  opacity: 0.58;
}

.hero__mockup::after {
  content: none;
  position: absolute;
  inset: 0.55rem;
  pointer-events: none;
  border-radius: 26px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0%, transparent 24%),
    radial-gradient(circle at 18% 12%, rgba(28, 176, 245, 0.16), transparent 30%),
    linear-gradient(180deg, transparent 58%, rgba(5, 10, 20, 0.24) 100%);
}

.hero__screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.16);
  background:
    radial-gradient(circle at 20% 12%, rgba(56, 189, 248, 0.18), transparent 32%),
    radial-gradient(circle at 86% 88%, rgba(32, 196, 178, 0.18), transparent 36%),
    linear-gradient(135deg, #07111f 0%, #0b1630 52%, #061b2a 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 -28px 60px rgba(2, 6, 23, 0.36);
}

.hero__screen::before {
  content: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 72% 72% at 54% 42%, #000 28%, transparent 78%);
}

.hero__stand {
  position: absolute;
  left: 50%;
  bottom: clamp(-4.25rem, -6.2vw, -2.85rem);
  width: min(11%, 72px);
  height: clamp(3.05rem, 5.4vw, 4.6rem);
  transform: translateX(-50%) rotateX(8deg);
  transform-origin: top center;
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.3), rgba(226, 232, 240, 0.22) 47%, rgba(125, 211, 252, 0.18) 53%, rgba(2, 6, 23, 0.46)),
    linear-gradient(180deg, rgba(71, 85, 105, 0.96) 0%, rgba(15, 23, 42, 0.98) 72%, rgba(2, 6, 23, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 14px 0 24px rgba(2, 6, 23, 0.28),
    inset -10px 0 20px rgba(125, 211, 252, 0.08);
  opacity: 0.96;
}

.hero__stand::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: clamp(-1.35rem, -2vw, -0.95rem);
  width: min(305%, 230px);
  height: clamp(1.05rem, 1.7vw, 1.45rem);
  transform: translateX(-50%) perspective(180px) rotateX(16deg);
  transform-origin: center top;
  border: 1px solid rgba(203, 213, 225, 0.16);
  border-radius: 999px 999px 18px 18px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.72), rgba(148, 163, 184, 0.58) 34%, rgba(226, 232, 240, 0.58) 50%, rgba(71, 85, 105, 0.64) 68%, rgba(2, 6, 23, 0.78)),
    linear-gradient(180deg, rgba(148, 163, 184, 0.72), rgba(15, 23, 42, 0.98));
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -4px 10px rgba(2, 6, 23, 0.34);
}

.hero__stand::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: clamp(-1.75rem, -2.7vw, -1.25rem);
  width: min(360%, 270px);
  height: clamp(0.85rem, 1.4vw, 1.15rem);
  transform: translateX(-50%) scaleY(0.7);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(2, 6, 23, 0.44), rgba(2, 6, 23, 0.18) 45%, transparent 72%);
  filter: blur(7px);
}

.hero-dashboard {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
  color: #dbeafe;
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.12), transparent 30%),
    radial-gradient(circle at 84% 82%, rgba(32, 196, 178, 0.13), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0a1328 50%, #061b2a 100%);
}

.hero-dashboard__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 0.85rem;
  width: clamp(3.25rem, 8vw, 4rem);
  padding: clamp(0.85rem, 1.6vw, 1.1rem) 0.65rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.6);
}

.hero-dashboard__brand {
  position: relative;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.35rem;
  border-radius: 10px;
  overflow: hidden;
  background: #129ad2;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}

.hero-dashboard__brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-dashboard__nav-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.45);
}

.hero-dashboard__nav-dot--active {
  background: rgba(34, 211, 238, 0.72);
}

.hero-dashboard__nav-dot--avatar {
  width: 1.65rem;
  height: 1.65rem;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.1);
}

.hero-dashboard__main {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  min-width: 0;
  padding: clamp(0.85rem, 1.8vw, 1.2rem);
}

.hero-dashboard__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-dashboard__toolbar-copy,
.hero-dashboard__toolbar-actions {
  display: flex;
  gap: 0.5rem;
}

.hero-dashboard__toolbar-copy {
  flex-direction: column;
  align-items: flex-start;
}

.hero-dashboard__toolbar-actions {
  align-items: center;
}

.hero-dashboard__eyebrow,
.hero-dashboard__product,
.hero-dashboard__card-label,
.hero-dashboard__module-chip,
.hero-dashboard__status-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  line-height: 1;
}

.hero-dashboard__eyebrow {
  color: #e0f2fe;
  font-size: clamp(0.72rem, 1.35vw, 0.92rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-dashboard__eyebrow::first-letter {
  color: #38bdf8;
}

.hero-dashboard__product {
  color: rgba(125, 211, 252, 0.72);
  font: 700 clamp(0.5rem, 0.95vw, 0.66rem) / 1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-dashboard__status-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #22d3ee;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.55);
}

.hero-dashboard__status-pill,
.hero-dashboard__module-chip {
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.16);
  color: #bae6fd;
  font: 700 clamp(0.48rem, 0.85vw, 0.6rem) / 1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-dashboard__status-pill {
  height: 1.55rem;
  padding: 0 0.65rem;
}

.hero-dashboard__module-chip {
  height: 1.75rem;
  padding: 0 0.7rem;
}

.hero-dashboard__grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.2vw, 0.85rem);
  min-height: 0;
}

.hero-dashboard__card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
  padding: clamp(0.7rem, 1.4vw, 1rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-dashboard__card--chart {
  grid-column: span 2;
  grid-row: span 2;
}

.hero-dashboard__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.hero-dashboard__card-head > div {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-dashboard__card-label {
  color: #67e8f9;
  font: 800 clamp(0.5rem, 0.95vw, 0.68rem) / 1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-dashboard__card-copy {
  display: block;
  color: rgba(203, 213, 225, 0.58);
  font-size: clamp(0.52rem, 0.95vw, 0.66rem);
  font-weight: 700;
}

.hero-dashboard__chart {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.35rem, 1vw, 0.65rem);
  flex: 1;
  min-height: clamp(6.5rem, 18vw, 9.5rem);
}

.hero-dashboard__bar {
  flex: 1;
  height: var(--bar-h, 50%);
  min-height: 18%;
  border-radius: 8px 8px 0 0;
}

.hero-dashboard__bar--cyan {
  background: #06b6d4;
}

.hero-dashboard__bar--blue {
  background: #3b82f6;
}

.hero-dashboard__mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  flex: 1;
}

.hero-dashboard__rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-dashboard__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-dashboard__skel {
  display: block;
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.85);
}

.hero-dashboard__skel--title {
  width: 7rem;
  height: 0.72rem;
}

.hero-dashboard__skel--subtitle {
  width: 11rem;
  height: 0.5rem;
  background: rgba(30, 41, 59, 0.9);
}

.hero-dashboard__skel--icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-dashboard__skel--pill {
  width: 5rem;
  height: 2rem;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(6, 182, 212, 0.2);
}

.hero-dashboard__skel--heading {
  width: 6rem;
  height: 0.95rem;
}

.hero-dashboard__skel--line {
  width: 9rem;
  height: 0.55rem;
  background: rgba(30, 41, 59, 0.95);
}

.hero-dashboard__skel--badge {
  width: 4rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
}

.hero-dashboard__skel--label {
  width: 33%;
  height: 0.7rem;
}

.hero-dashboard__skel--label.hero-dashboard__skel--sm {
  width: 40%;
}

.hero-dashboard__skel--metric {
  width: 66%;
  height: 1.65rem;
  background: rgba(71, 85, 105, 0.8);
}

.hero-dashboard__skel--full {
  width: 100%;
}

.hero-dashboard__skel--md {
  width: 75%;
}

.hero-dashboard__skel--lg {
  width: 66%;
}

.hero-dashboard__skel--accent {
  width: 83%;
  background: rgba(6, 182, 212, 0.4);
}

.hero-dashboard__skel--tile {
  min-height: 3.5rem;
  border-radius: 10px;
  background: rgba(30, 41, 59, 0.85);
}

.hero-dashboard__skel--tile-sm {
  min-height: 2.35rem;
}

.hero-dashboard__skel--tile-blue {
  background: rgba(59, 130, 246, 0.2);
}

.hero-dashboard__skel--tile-cyan {
  min-height: 2.35rem;
  background: rgba(6, 182, 212, 0.2);
}

.hero-dashboard__skel--avatar {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
}

.hero-dashboard__skel--avatar-cyan {
  background: rgba(6, 182, 212, 0.3);
}

.hero-dashboard__skel--avatar-blue {
  background: rgba(59, 130, 246, 0.3);
}

.hero-dashboard__pulse {
  animation: heroDashboardPulse 2s ease-in-out infinite;
}

.hero-dashboard__pulse--delay-1 {
  animation-delay: 0.12s;
}

.hero-dashboard__pulse--delay-2 {
  animation-delay: 0.24s;
}

.hero-dashboard__pulse--delay-3 {
  animation-delay: 0.36s;
}

.hero-dashboard__pulse--delay-4 {
  animation-delay: 0.48s;
}

.hero-dashboard__pulse--delay-5 {
  animation-delay: 0.6s;
}

@keyframes heroDashboardPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

.hero-dashboard__main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(2, 6, 23, 0.64) 0%, rgba(7, 17, 31, 0.18) 44%, rgba(5, 28, 42, 0.48) 100%),
    radial-gradient(circle at 22% 16%, rgba(56, 189, 248, 0.2), transparent 32%),
    radial-gradient(circle at 78% 78%, rgba(32, 196, 178, 0.18), transparent 38%);
  opacity: 0.96;
}

.hero-dashboard__main::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.34;
  mask-image: radial-gradient(ellipse 78% 72% at 52% 44%, #000 22%, transparent 82%);
}

.hero-dashboard__topbar,
.hero-dashboard__metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-dashboard__topbar span:first-child {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-dashboard__topbar span:last-child {
  padding: 0.28rem 0.62rem;
  border: 1px solid rgba(45, 212, 191, 0.34);
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  color: #99f6e4;
  font: 700 clamp(0.58rem, 1vw, 0.72rem) / 1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-dashboard__metrics div {
  min-width: 0;
  padding: clamp(0.62rem, 1.3vw, 0.85rem);
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 16px;
  background: rgba(8, 14, 28, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-dashboard__metrics span,
.hero-dashboard__module span {
  display: block;
  color: rgba(203, 213, 225, 0.72);
  font-size: clamp(0.58rem, 1vw, 0.72rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-dashboard__metrics strong {
  display: block;
  margin-top: 0.35rem;
  color: #f8fafc;
  font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  line-height: 1;
}

.hero-dashboard__canvas {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 30%, rgba(14, 165, 233, 0.12), transparent 30%),
    radial-gradient(circle at 74% 64%, rgba(32, 196, 178, 0.12), transparent 34%),
    rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-dashboard__app-shot {
  position: absolute;
  inset: 8% 7%;
  overflow: hidden;
  border-radius: 16px;
  opacity: 0.64;
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.16),
    0 18px 40px rgba(2, 6, 23, 0.32);
}

.hero-dashboard__app-shot::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.42)),
    linear-gradient(90deg, rgba(14, 165, 233, 0.18), transparent 48%, rgba(32, 196, 178, 0.16));
  mix-blend-mode: multiply;
}

.hero-dashboard__app-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(1.05) contrast(1.05) brightness(0.7);
}

.hero-dashboard__flows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke-linecap: round;
  stroke-width: 2.4;
  opacity: 0.86;
}

.hero-dashboard__flows path {
  stroke: rgba(56, 189, 248, 0.58);
  stroke-dasharray: 8 12;
  animation: dashboardFlow 7s linear infinite;
}

.hero-dashboard__flows path:nth-child(2) {
  stroke: rgba(32, 196, 178, 0.5);
  animation-duration: 8.5s;
  animation-direction: reverse;
}

.hero-dashboard__flows path:nth-child(3) {
  stroke: rgba(45, 212, 191, 0.5);
  animation-duration: 6.2s;
}

@keyframes dashboardFlow {
  to {
    stroke-dashoffset: -120;
  }
}

.hero-dashboard__module {
  position: absolute;
  width: clamp(6.4rem, 14vw, 8.8rem);
  padding: clamp(0.7rem, 1.4vw, 0.95rem);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(8, 14, 28, 0.82);
  box-shadow:
    0 16px 40px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-dashboard__module strong {
  display: block;
  margin-top: 0.42rem;
  color: #f8fafc;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  line-height: 1.1;
}

.hero-dashboard__module i {
  display: block;
  height: 0.34rem;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.92), rgba(45, 212, 191, 0.72), transparent);
}

.hero-dashboard__module--ventas {
  left: 5%;
  top: 13%;
}

.hero-dashboard__module--stock {
  right: 6%;
  top: 21%;
}

.hero-dashboard__module--finanzas {
  left: 12%;
  bottom: 13%;
}

.hero-dashboard__module--reportes {
  right: 13%;
  bottom: 15%;
}

.hero-dashboard__module--stock i {
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.92), rgba(56, 189, 248, 0.5), transparent);
}

.hero-dashboard__module--finanzas i,
.hero-dashboard__module--reportes i {
  background: linear-gradient(90deg, rgba(32, 196, 178, 0.85), rgba(56, 189, 248, 0.52), transparent);
}

/* Sections */
.section {
  padding: var(--section-space-desktop) max(1.5rem, env(safe-area-inset-right, 0px)) var(--section-space-desktop) max(1.5rem, env(safe-area-inset-left, 0px));
  position: relative;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

section[id] {
  scroll-margin-top: calc(4.75rem + env(safe-area-inset-top, 0px));
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 72%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(14, 185, 245, 0.3),
    rgba(32, 196, 178, 0.24),
    transparent
  );
  opacity: 0.85;
}

.section:nth-of-type(odd)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 55% at 50% 0%,
    rgba(14, 185, 245, 0.06),
    transparent 72%
  );
  pointer-events: none;
}

.section:nth-of-type(even)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 85% 50% at 50% 0%,
    rgba(32, 196, 178, 0.052),
    transparent 72%
  );
  pointer-events: none;
}

.section > * {
  position: relative;
  z-index: 1;
}

.container {
  max-width: min(1100px, 100%);
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section__intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 3.75rem;
  line-height: 1.75;
}

.section__intro--large {
  max-width: 700px;
  font-size: 1.125rem;
  margin-bottom: 3.5rem;
}

.hero__subtitle,
.historia__text p,
.beneficio-card p,
.proceso-card p {
  hyphens: auto;
  overflow-wrap: break-word;
  text-justify: inter-word;
  letter-spacing: 0;
  word-spacing: normal;
}

@media (min-width: 769px) {
  .hero__subtitle,
  .historia__text p,
  .beneficio-card p,
  .proceso-card p {
    text-align: justify;
    text-align-last: left;
  }
}

/* Aparición al hacer scroll (html.js: sin script el contenido no queda oculto) */
.scroll-reveal {
  --reveal-delay: 0s;
  --reveal-distance: 1.125rem;
  --reveal-duration: 0.72s;
  --reveal-ease: var(--motion-ease);
  --reveal-scale: 0.985;
  --reveal-blur: 0px;
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease),
    filter var(--reveal-duration) var(--reveal-ease);
  transition-delay: var(--reveal-delay);
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  backface-visibility: hidden;
  will-change: opacity, transform, filter;
}

html.js .scroll-reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0) scale(var(--reveal-scale));
  filter: blur(var(--reveal-blur));
}

html.js .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  will-change: auto;
}

.scroll-reveal--blur {
  --reveal-distance: 0px;
  --reveal-scale: 0.95;
  --reveal-blur: 10px;
  --reveal-duration: 0.72s;
}

@media (prefers-reduced-motion: reduce) {
  html.js .scroll-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: opacity 0.2s ease;
    will-change: auto;
  }

  .proceso-card::before {
    transition: none;
    opacity: 0;
  }

  html.js .proceso .proceso-card.scroll-reveal h3,
  html.js .proceso .proceso-card.scroll-reveal p,
  html.js .proceso .proceso-card.scroll-reveal .proceso-card__step {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
  }

  html.js .proceso .proceso-card.scroll-reveal.is-visible {
    box-shadow: none;
    border-color: var(--color-border);
  }
}

@media (max-width: 1024px) {
  .scroll-reveal {
    --reveal-distance: 0.85rem;
    --reveal-duration: 0.62s;
  }
}

/* Tarjetas / tiles en desktop: entrada un poco más marcada (solo ≥769px; mobile sigue en fade puro) */
@media (min-width: 769px) {
  .scroll-reveal.scroll-reveal--tile {
    --reveal-distance: 1.45rem;
    --reveal-duration: 0.8s;
  }

  html.js .scroll-reveal.scroll-reveal--tile:not(.is-visible) {
    transform: translate3d(0, var(--reveal-distance), 0) scale(var(--reveal-scale));
  }

  html.js .scroll-reveal.scroll-reveal--tile.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .scroll-reveal.scroll-reveal--tile {
    --reveal-distance: 1.02rem;
    --reveal-duration: 0.66s;
  }

  .proceso .scroll-reveal.scroll-reveal--tile,
  .productos .scroll-reveal.scroll-reveal--tile {
    --reveal-distance: 1.12rem;
    --reveal-duration: 0.74s;
  }
}

/* Proceso + Rubros: entrada más viva en desktop (features del sistema sin cambios) */
@media (min-width: 769px) {
  .proceso .scroll-reveal.scroll-reveal--tile,
  .productos .scroll-reveal.scroll-reveal--tile {
    --reveal-distance: 1.68rem;
    --reveal-duration: 0.9s;
  }

  html.js .proceso .scroll-reveal.scroll-reveal--tile:not(.is-visible),
  html.js .productos .scroll-reveal.scroll-reveal--tile:not(.is-visible) {
    transform: translate3d(0, var(--reveal-distance), 0) scale(0.978);
  }

  html.js .proceso .scroll-reveal.scroll-reveal--tile.is-visible,
  html.js .productos .scroll-reveal.scroll-reveal--tile.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  html.js .proceso .proceso-card.scroll-reveal .proceso-card__step {
    transition:
      transform 0.72s cubic-bezier(0.34, 1.45, 0.64, 1),
      opacity 0.55s ease,
      box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--reveal-delay) + 0.1s);
  }

  html.js .proceso .proceso-card.scroll-reveal:not(.is-visible) .proceso-card__step {
    transform: scale(0.82);
    opacity: 0.65;
    box-shadow: none;
  }

  html.js .proceso .proceso-card.scroll-reveal.is-visible .proceso-card__step {
    transform: scale(1);
    opacity: 1;
    box-shadow:
      0 0 0 1px rgba(28, 176, 245, 0.35),
      0 8px 24px rgba(28, 176, 245, 0.18);
  }

  html.js .proceso .proceso-card.scroll-reveal h3 {
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--reveal-delay) + 0.16s);
  }

  html.js .proceso .proceso-card.scroll-reveal p {
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--reveal-delay) + 0.26s);
  }

  html.js .proceso .proceso-card.scroll-reveal:not(.is-visible) h3,
  html.js .proceso .proceso-card.scroll-reveal:not(.is-visible) p {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  html.js .proceso .proceso-card.scroll-reveal.is-visible h3,
  html.js .proceso .proceso-card.scroll-reveal.is-visible p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  html.js .productos .producto-card.scroll-reveal .producto-card__media img {
    transition: transform 0.88s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--reveal-delay) + 0.06s);
    transform-origin: center center;
  }

  html.js .productos .producto-card.scroll-reveal:not(.is-visible) .producto-card__media img {
    transform: scale(0.93);
  }

  html.js .productos .producto-card.scroll-reveal.is-visible .producto-card__media img {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }

  /*
   * Mobile: animación solo por opacidad (sin translate/scale) para que se note
   * el reveal sin el “salto” que suele dar el transform con la barra del navegador.
   */
  .scroll-reveal {
    --reveal-distance: 0;
    --reveal-duration: 0.58s;
    --reveal-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition:
      opacity var(--reveal-duration) var(--reveal-ease);
    transition-delay: var(--reveal-delay);
  }

  html.js .scroll-reveal:not(.is-visible) {
    opacity: 0;
    transform: none;
    filter: none;
    will-change: opacity;
  }

  html.js .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    will-change: auto;
  }

  /* Solo proceso / rubros: fade un poco más notorio; sin transform en la tarjeta */
  .proceso .scroll-reveal.scroll-reveal--tile,
  .productos .scroll-reveal.scroll-reveal--tile {
    --reveal-duration: 0.72s;
    --reveal-ease: cubic-bezier(0.33, 1, 0.68, 1);
  }

  /* Proceso: acento, paso y texto entran escalonados (sin mover el contenedor) */
  html.js .proceso .proceso-card.scroll-reveal .proceso-card__step {
    transition:
      transform 0.62s cubic-bezier(0.34, 1.35, 0.64, 1),
      opacity 0.48s ease,
      box-shadow 0.52s ease;
    transition-delay: calc(var(--reveal-delay) + 0.08s);
  }

  html.js .proceso .proceso-card.scroll-reveal:not(.is-visible) .proceso-card__step {
    transform: scale(0.88);
    opacity: 0.55;
    box-shadow: none;
  }

  html.js .proceso .proceso-card.scroll-reveal.is-visible .proceso-card__step {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(28, 176, 245, 0.28);
  }

  html.js .proceso .proceso-card.scroll-reveal h3,
  html.js .proceso .proceso-card.scroll-reveal p {
    transition: opacity 0.52s cubic-bezier(0.33, 1, 0.68, 1);
  }

  html.js .proceso .proceso-card.scroll-reveal h3 {
    transition-delay: calc(var(--reveal-delay) + 0.14s);
  }

  html.js .proceso .proceso-card.scroll-reveal p {
    transition-delay: calc(var(--reveal-delay) + 0.24s);
  }

  html.js .proceso .proceso-card.scroll-reveal:not(.is-visible) h3,
  html.js .proceso .proceso-card.scroll-reveal:not(.is-visible) p {
    opacity: 0;
  }

  html.js .proceso .proceso-card.scroll-reveal.is-visible h3,
  html.js .proceso .proceso-card.scroll-reveal.is-visible p {
    opacity: 1;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  html.js .scroll-reveal:not(.is-visible),
  html.js .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: opacity 0.2s ease;
    will-change: auto;
  }
}

/* Proceso */
.proceso {
  background: transparent;
}

.proceso__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}

.proceso-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(24, 37, 54, 0.72), rgba(15, 23, 42, 0.64));
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  min-width: 0;
  transition:
    border-color 0.34s var(--motion-ease),
    transform 0.34s var(--motion-ease),
    box-shadow 0.34s var(--motion-ease);
  transform: translate3d(0, 0, 0);
}

/* Brillo interno suave al entrar en vista (sin barra lateral) */
.proceso-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 85% 75% at 10% 22%, rgba(71, 196, 255, 0.1), transparent 52%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.proceso-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(71, 196, 255, 0.38), transparent) top left / 100% 1px no-repeat,
    radial-gradient(circle at 18% 0%, rgba(30, 196, 174, 0.16), transparent 36%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-10%, 0, 0);
  transition:
    opacity 0.34s var(--motion-ease),
    transform 0.34s var(--motion-ease);
}

.proceso-card__step {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(28, 176, 245, 0.14);
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
  transition:
    background-color 0.28s var(--motion-ease),
    color 0.28s var(--motion-ease),
    transform 0.28s var(--motion-ease),
    box-shadow 0.28s var(--motion-ease);
}

.proceso-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.proceso-card p {
  position: relative;
  z-index: 1;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  text-align: left;
  text-align-last: left;
}

html.js .proceso .proceso-card.scroll-reveal:not(.is-visible)::before {
  opacity: 0;
}

html.js .proceso .proceso-card.scroll-reveal.is-visible::before {
  opacity: 0.65;
}

html.js .proceso .proceso-card.scroll-reveal.is-visible {
  border-color: rgba(71, 196, 255, 0.18);
  background: linear-gradient(180deg, rgba(24, 37, 54, 0.78), rgba(15, 23, 42, 0.68));
}

@media (hover: hover) and (pointer: fine) {
  .proceso-card:hover {
    border-color: rgba(71, 196, 255, 0.34);
    box-shadow:
      0 18px 38px -18px rgba(2, 6, 23, 0.72),
      0 0 0 1px rgba(71, 196, 255, 0.08);
    transform: translate3d(0, -4px, 0);
    transition-delay: 0s;
  }

  .proceso-card:hover::before {
    opacity: 0.86;
    transition-delay: 0s;
  }

  .proceso-card:hover::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .proceso-card:hover .proceso-card__step {
    color: #dff7ff;
    background-color: rgba(28, 176, 245, 0.22);
    box-shadow:
      0 0 0 1px rgba(71, 196, 255, 0.34),
      0 10px 22px rgba(28, 176, 245, 0.16);
    transform: translate3d(0, -2px, 0) scale(1.04);
    transition-delay: 0s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proceso-card,
  .proceso-card::before,
  .proceso-card::after,
  .proceso-card__step {
    transition: none;
  }

  .proceso-card:hover {
    transform: none;
  }

  .proceso-card:hover::after {
    transform: none;
  }

  .proceso-card:hover .proceso-card__step {
    transform: none;
  }
}

/* Sistema / Features */
.sistema {
  background: transparent;
}

.features {
  display: grid;
  gap: 1.5rem;
}

.sistema .features {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .sistema .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sistema .features .feature:nth-child(7) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 420px);
  }
}

@media (min-width: 1180px) {
  .sistema .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sistema .features .feature:nth-child(7) {
    grid-column: 2;
    justify-self: stretch;
    width: auto;
  }
}

.feature {
  padding: 1.75rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition:
    border-color 0.5s ease-out,
    background 0.5s ease-out,
    transform 0.5s ease-out,
    box-shadow 0.5s ease-out;
  height: 100%;
  min-width: 0;
}

.feature:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(28, 176, 245, 0.045);
  box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.46);
  transform: translateY(-3px);
}

.feature__icon {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

/* Sistema: colores diferenciados para cada icono */
.sistema .features .feature:nth-child(1) .feature__icon { color: #47c4ff; }
.sistema .features .feature:nth-child(2) .feature__icon { color: #2dd4bf; }
.sistema .features .feature:nth-child(3) .feature__icon { color: #22c55e; }
.sistema .features .feature:nth-child(4) .feature__icon { color: #f59e0b; }
.sistema .features .feature:nth-child(5) .feature__icon { color: #a78bfa; }
.sistema .features .feature:nth-child(6) .feature__icon { color: #38bdf8; }
.sistema .features .feature:nth-child(7) .feature__icon { color: #60a5fa; }

.feature__icon svg {
  display: block;
}

.feature h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Historia */
.historia {
  background: transparent;
}

.historia__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  min-width: 0;
}

.historia__content > * {
  min-width: 0;
}

.historia__image {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(28, 176, 245, 0.16), transparent 40%),
    var(--color-bg-card);
  aspect-ratio: 1024 / 768;
  min-height: 200px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow:
    0 20px 48px rgba(2, 6, 23, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.historia__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 28, 0.08) 0%, transparent 34%),
    linear-gradient(180deg, transparent 45%, rgba(5, 10, 20, 0.66) 100%),
    linear-gradient(90deg, rgba(28, 176, 245, 0.08), transparent 42%);
  pointer-events: none;
  z-index: 0;
}

.historia__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.08) contrast(1.05) brightness(0.96);
  transform: scale(1.01);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.historia__image:hover img {
  filter: saturate(1.12) contrast(1.07) brightness(1);
  transform: scale(1.035);
}

.historia__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.historia__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
  margin: 0;
  z-index: 1;
}

.historia__text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  text-align: left;
  text-align-last: left;
}

.historia__text p:last-child {
  margin-bottom: 0;
}

/* Clientes */
.clientes {
  background: transparent;
}

.clientes .container {
  max-width: min(1320px, 100%);
}

.clientes__rubros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.clientes__rubro-btn {
  appearance: none;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 999px;
  background: rgba(8, 14, 28, 0.62);
  color: var(--color-text-muted);
  font: inherit;
  font-weight: 600;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.clientes__rubro-btn:hover {
  border-color: rgba(28, 176, 245, 0.5);
  color: var(--color-text);
}

.clientes__rubro-btn[aria-selected='true'] {
  border-color: rgba(28, 176, 245, 0.85);
  color: #dff5ff;
  background: linear-gradient(
    180deg,
    rgba(28, 176, 245, 0.23) 0%,
    rgba(28, 176, 245, 0.08) 100%
  );
  transform: translateY(-1px);
}

.clientes__carousel-shell {
  max-width: 100%;
  margin: 0 auto;
  padding: 0.9rem;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(28, 176, 245, 0.14);
  background:
    linear-gradient(
      165deg,
      rgba(28, 176, 245, 0.07) 0%,
      transparent 42%
    ),
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.45) 0%,
      rgba(8, 14, 28, 0.65) 100%
    );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    var(--shadow-soft);
}

.clientes__carousel-shell--fullwidth {
  width: 100%;
}

.clientes__carousel {
  position: relative;
  outline: none;
}

.clientes__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.12);
  background:
    linear-gradient(180deg, rgba(8, 14, 28, 0.78), rgba(5, 10, 20, 0.54)),
    rgba(5, 10, 20, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(28, 176, 245, 0.06);
  contain: layout paint;
  cursor: default;
  min-height: clamp(94px, 9vw, 122px);
}

.clientes__viewport::before,
.clientes__viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(2.4rem, 8vw, 7rem);
  pointer-events: none;
}

.clientes__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 10, 20, 0.94), rgba(5, 10, 20, 0));
}

.clientes__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 10, 20, 0.94), rgba(5, 10, 20, 0));
}

.clientes__track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem;
}

.clientes__track--marquee {
  width: max-content;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  pointer-events: auto;
}

.clientes__track--marquee.is-marquee-running {
  animation: clientesMarquee var(--marquee-duration, 36s) linear infinite;
  will-change: transform;
}

.clientes__track--marquee.is-marquee-paused {
  animation-play-state: paused;
}

@keyframes clientesMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--marquee-translate, -50%), 0, 0);
  }
}

.clientes__track--marquee .cliente-slide {
  pointer-events: auto;
}

.cliente-slide {
  min-width: clamp(170px, 15vw, 220px);
  flex: 0 0 clamp(170px, 15vw, 220px);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: clamp(0.72rem, 1vw, 0.9rem);
  opacity: 1;
  filter: saturate(1);
  transform: none;
  box-shadow:
    0 12px 26px rgba(2, 6, 23, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease;
  touch-action: pan-y;
}

.cliente-card {
  text-align: center;
  padding: 0;
}

.cliente-card__logo {
  width: 100%;
  height: clamp(76px, 8vw, 104px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.cliente-slide:hover .cliente-card__logo {
  border-color: rgba(28, 176, 245, 0.35);
}

.cliente-card__logo--light {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(15, 23, 42, 0.07);
}

.cliente-slide--floating {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
}

.cliente-card__logo--floating {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.06);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cliente-card__logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  padding: 0.5rem 0.65rem;
  image-rendering: auto;
  filter: none;
  opacity: 1;
  transition:
    filter var(--transition-smooth),
    opacity var(--transition-smooth),
    transform var(--transition-smooth);
}

.cliente-card__logo--floating img {
  padding: 0.5rem 0.65rem;
  filter: none;
}

.clientes__viewport:hover .cliente-card__logo img,
.cliente-slide:hover .cliente-card__logo img,
.cliente-slide:focus-within .cliente-card__logo img {
  filter: grayscale(0) contrast(1) brightness(1);
  opacity: 1;
}

.clientes__viewport:hover .cliente-card__logo--floating img,
.cliente-slide:hover .cliente-card__logo--floating img,
.cliente-slide:focus-within .cliente-card__logo--floating img {
  filter: none;
}

.cliente-slide:hover {
  border-color: rgba(28, 176, 245, 0.35);
  background: #ffffff;
}

/* Carrusel continuo: feedback visual sin transformaciones para mantener el movimiento estable */
.clientes__carousel--marquee .cliente-slide,
.clientes__carousel--marquee .cliente-card__logo {
  transition: none;
}

.clientes__carousel--marquee .cliente-slide:hover,
.clientes__carousel--marquee .cliente-slide:hover .cliente-card__logo {
  border-color: rgba(28, 176, 245, 0.28);
  transform: none;
}

.clientes__carousel--marquee .cliente-slide--floating:hover,
.clientes__carousel--marquee .cliente-slide--floating:hover .cliente-card__logo--floating {
  border-color: rgba(28, 176, 245, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .clientes__track--marquee.is-marquee-running {
    animation: none !important;
    transform: none !important;
  }

  .cliente-card__logo img {
    filter: none;
    opacity: 1;
  }
}

@media (hover: none) and (pointer: coarse) {
  .cliente-slide:hover {
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: none;
    transform: none;
  }

  .cliente-slide:hover .cliente-card__logo {
    border-color: rgba(15, 23, 42, 0.08);
    transform: none;
  }
}

/* Productos */
.productos {
  background: transparent;
}

.productos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.producto-card {
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(24, 37, 54, 0.78), rgba(15, 23, 42, 0.66));
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius-lg);
  transition:
    border-color 0.5s ease-out,
    background 0.5s ease-out,
    box-shadow 0.5s ease-out,
    transform 0.5s ease-out;
  height: 100%;
}

.producto-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(24, 37, 54, 0.84), rgba(15, 23, 42, 0.7));
  box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.46);
  transform: translateY(-3px);
}

.producto-card--destacado {
  border-color: rgba(28, 176, 245, 0.4);
}

.producto-card__icon {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.producto-card__icon svg {
  display: block;
}

.producto-card__media {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(15, 23, 42, 0.35) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 0.35rem 0.5rem;
}

.producto-card__media img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.producto-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Rubros: celda grid + contain = imagen completa sin recortes; fondo unificado si hay mínimo letterbox */
.producto-card--campo .producto-card__media {
  width: 100%;
  aspect-ratio: 1020 / 720;
  min-height: 196px;
  max-height: none;
  padding: 0;
  overflow: hidden;
  display: grid;
  place-items: stretch;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 0%, rgba(28, 176, 245, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(226, 232, 240, 0.07) 0%, rgba(12, 20, 35, 0.98) 38%);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 16px 34px rgba(2, 6, 23, 0.18);
  transition:
    border-color var(--transition-smooth),
    background var(--transition-smooth);
}

.producto-card--campo .producto-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, transparent 58%, rgba(5, 10, 20, 0.16) 100%);
}

.producto-card.producto-card--campo:hover .producto-card__media {
  border-color: rgba(28, 176, 245, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(28, 176, 245, 0.08);
}

.producto-card--campo .producto-card__media img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  display: block;
  image-rendering: auto;
  filter: saturate(1.06) contrast(1.03);
}

.producto-card--campo .producto-card__media--app-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.producto-card--campo .producto-card__media--app-logo img {
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 94%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
}

/* Rubros: grilla simétrica (8 ítems → 4×2 en desktop, 2×4 en tablet) */
.productos__grid--campos {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .productos__grid--campos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }
}

@media (max-width: 1024px) {
  .productos__grid--campos {
    max-width: none;
  }
}

.producto-card.producto-card--campo {
  padding: 1.5rem 1.25rem 1.65rem;
}

@media (max-width: 640px) {
  .productos__grid--campos {
    grid-template-columns: 1fr;
  }

  .producto-card__media {
    min-height: 170px;
    padding: 0.25rem 0.35rem;
  }

  .producto-card--campo .producto-card__media {
    min-height: 200px;
  }

  .producto-card.producto-card--campo {
    padding: 1.35rem 1rem 1.5rem;
  }

  .producto-card__media img {
    max-height: 220px;
  }
}

.producto-card--campo {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.producto-card--campo .producto-card__icon {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.producto-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.producto-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.62;
}

.producto-card--campo p {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.producto-card__media--app-logo {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(15, 23, 42, 0.1);
}

/* Soporte */
.soporte {
  background: transparent;
}

.soporte__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.soporte-card {
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.soporte-card--highlight {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(28, 176, 245, 0.05) 100%);
}

.soporte-card__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.soporte-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.soporte-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.soporte__cta {
  text-align: center;
}

.soporte__cta .btn {
  margin-bottom: 0.75rem;
}

.soporte__schedule {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Contacto */
.contacto {
  background: transparent;
  padding-top: 5.5rem;
  padding-bottom: 5.75rem;
  border-top: 1px solid var(--color-border);
}

.contacto .section__title {
  margin-bottom: 0.65rem;
}

.contacto .section__intro {
  margin-bottom: 2.25rem;
  line-height: 1.55;
}

.contacto__trust {
  text-align: center;
  color: rgba(241, 245, 249, 0.85);
  margin: -1.15rem auto 1.25rem;
  font-size: 0.88rem;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-row--full {
  grid-column: 1 / -1;
}

.form-row label {
  font-weight: 500;
  font-size: 0.84rem;
}

.form-row input,
.form-row textarea {
  padding: 0.62rem 0.85rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow:
    0 0 0 3px rgba(28, 176, 245, 0.18),
    0 4px 16px rgba(28, 176, 245, 0.08);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.form-row textarea {
  resize: vertical;
  min-height: 96px;
}

.form-error {
  font-size: 0.76rem;
  color: #f87171;
}

.form-success {
  font-size: 0.9rem;
  color: var(--color-accent);
}

.form-row--submit {
  margin-top: 0.2rem;
}

.contact-form .btn {
  padding-block: 0.68rem;
}

/* Footer */
.footer {
  padding: 3rem max(1.5rem, env(safe-area-inset-right, 0px)) 1.6rem max(1.5rem, env(safe-area-inset-left, 0px));
  margin-top: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, rgba(28, 176, 245, 0.055), transparent 62%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.28) 0%, rgba(3, 8, 18, 0.86) 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: min(520px, 70vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(71, 196, 255, 0.34), transparent);
}

.footer__container {
  max-width: min(1120px, 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: start;
}

.footer__brand {
  min-width: 0;
}

.logo--footer {
  display: inline-flex;
  margin-bottom: 0.75rem;
}

.logo--footer .logo__img {
  height: 36px;
  width: 36px;
}

.logo--footer.logo--wordmark .logo__img {
  height: clamp(32px, 4vw, 38px);
  width: auto;
  max-width: 170px;
}

.footer__eyebrow {
  margin-bottom: 0.35rem;
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer__summary {
  max-width: 25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.58;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.22);
  color: rgba(148, 163, 184, 0.82);
  text-decoration: none;
  transition:
    color var(--transition-smooth),
    border-color var(--transition-smooth),
    background var(--transition-smooth);
}

.footer__socials a:hover {
  color: rgba(226, 232, 240, 0.95);
  border-color: rgba(148, 163, 184, 0.3);
  background: rgba(148, 163, 184, 0.08);
}

.footer__socials svg {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
}

.footer__column {
  min-width: 0;
}

.footer__column h2 {
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__column ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer__column a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.45;
  transition:
    color var(--transition-smooth),
    transform var(--transition-smooth);
}

.footer__column a:hover {
  color: var(--color-primary-hover);
}

.footer__contact svg {
  flex: 0 0 auto;
  color: rgba(71, 196, 255, 0.9);
}

.footer__address {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 18rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer__address svg {
  flex: 0 0 auto;
  color: rgba(71, 196, 255, 0.9);
}

.footer__socials a:focus-visible,
.footer__column a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.footer__bottom p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer {
    padding-inline: max(1rem, env(safe-area-inset-left, 0px));
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 2.5rem;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .header__container {
    padding: 0.85rem max(1rem, env(safe-area-inset-right, 0px)) 0.85rem max(1rem, env(safe-area-inset-left, 0px));
    grid-template-columns: minmax(9rem, 13rem) minmax(0, 1fr) auto;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo__img {
    width: 34px;
    height: 34px;
  }

  .section {
    padding: var(--section-space-tablet) max(1.25rem, env(safe-area-inset-right, 0px)) var(--section-space-tablet) max(1.25rem, env(safe-area-inset-left, 0px));
  }

  .hero {
    padding: clamp(3rem, 8svh, 5rem) max(1.25rem, env(safe-area-inset-right, 0px)) clamp(3rem, 8svh, 5rem) max(1.25rem, env(safe-area-inset-left, 0px));
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: clamp(1.75rem, 3.5vh, 2.25rem);
  }

  .hero__metrics {
    gap: 1.35rem 2rem;
  }

  .contacto {
    padding-top: 4.75rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 768px) {
  .header__container {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header__actions {
    display: none;
  }

  .proceso__grid {
    grid-template-columns: 1fr;
  }

  .historia__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: block;
    position: absolute;
    grid-column: 1 / -1;
    justify-self: stretch;
    top: 100%;
    left: 0;
    right: 0;
    width: calc(100vw - 2rem);
    max-width: none;
    background: rgba(8, 14, 28, 0.94);
    padding: 0.5rem max(1rem, env(safe-area-inset-right, 0px)) calc(1rem + env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-top: 0;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.28);
    max-height: min(70dvh, calc(100dvh - 4.5rem - env(safe-area-inset-top, 0px)));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav.open .nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav.open .nav__list li {
    border-bottom: 1px solid var(--color-border);
  }

  .nav.open .nav__list li:last-child {
    border-bottom: none;
  }

  .nav.open .nav__item--acceso-mobile {
    display: block;
  }

  .nav.open .nav__list a {
    display: flex;
    align-items: center;
    padding: 1rem 0.75rem;
    min-height: 48px;
  }

  .nav.open .nav__list a::after {
    left: 0.75rem;
    right: auto;
    bottom: 0.55rem;
    width: 2.25rem;
  }

  .nav.open .nav__link--acceso {
    margin: 0.35rem 0 0.25rem;
    justify-content: center;
    border-radius: 10px !important;
  }

  .nav.open .nav__link--acceso span {
    white-space: normal;
    text-align: center;
  }

  .header__cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .hero {
    /* 100svh evita reflow cuando la barra del navegador se oculta/muestra (dvh). */
    min-height: 100svh;
    padding: clamp(3rem, 8svh, 4.5rem) max(1rem, env(safe-area-inset-right, 0px)) clamp(2.75rem, 7svh, 4.5rem) max(1rem, env(safe-area-inset-left, 0px));
    justify-content: center;
  }

  .hero__brand {
    margin-bottom: clamp(0.95rem, 2.4vh, 1.35rem);
  }

  .hero__brand-img {
    max-height: clamp(3.15rem, 11vw, 4.5rem);
    filter: drop-shadow(0 0 22px rgba(28, 176, 245, 0.28))
      drop-shadow(0 0 40px rgba(32, 196, 178, 0.12));
  }

  .hero__title {
    font-size: clamp(1.85rem, 8.5vw, 2.65rem);
    margin-bottom: clamp(1.05rem, 2.8vh, 1.45rem);
  }

  .hero__title-line--accent {
    font-size: clamp(1.05rem, 4.2vw, 1.45rem);
    margin-top: 0.35rem;
  }

  .hero__subtitle {
    font-size: clamp(0.97rem, 3.9vw, 1.06rem);
    line-height: 1.62;
    margin-bottom: clamp(1.45rem, 3.8vh, 2rem);
    max-width: 36rem;
    text-wrap: balance;
  }

  .hero__actions {
    gap: 0.75rem 1rem;
  }

  .hero__metrics {
    display: none;
  }

  .section {
    padding: var(--section-space-mobile) max(1rem, env(safe-area-inset-right, 0px)) var(--section-space-mobile) max(1rem, env(safe-area-inset-left, 0px));
  }

  .feature:hover,
  .producto-card:hover {
    transform: none;
    box-shadow: none;
  }

  .section__intro {
    margin-bottom: 2.5rem;
  }

  .contacto {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .productos__grid--campos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .productos__grid--campos > .producto-card {
    min-width: 0;
  }

  .clientes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .clientes__carousel-shell {
    padding: 0.8rem max(0.75rem, env(safe-area-inset-left, 0px));
    overflow-x: clip;
  }

  .cliente-slide {
    min-width: clamp(150px, 40vw, 190px);
    flex-basis: clamp(150px, 40vw, 190px);
  }

  .footer {
    padding: 3rem 1rem 1.5rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 480px) {
  .header__container {
    padding: 0.75rem max(0.9rem, env(safe-area-inset-right, 0px)) 0.75rem max(0.9rem, env(safe-area-inset-left, 0px));
  }

  .nav.open {
    width: calc(100vw - 1.8rem);
  }

  .logo {
    font-size: 1.1rem;
    gap: 0.35rem;
  }

  .logo__img {
    width: 30px;
    height: 30px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__subtitle {
    margin-bottom: clamp(1.35rem, 3.4vh, 1.75rem);
  }

  .hero__metrics {
    display: none;
  }

  .section {
    padding: var(--section-space-mobile) max(0.9rem, env(safe-area-inset-right, 0px)) var(--section-space-mobile) max(0.9rem, env(safe-area-inset-left, 0px));
  }

  .section__title {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    letter-spacing: -0.01em;
  }

  .section__intro {
    font-size: 0.95rem;
  }

  .feature,
  .producto-card,
  .soporte-card {
    padding: 1.2rem;
  }

  .productos__grid--campos {
    grid-template-columns: 1fr;
  }

  .clientes__grid {
    grid-template-columns: 1fr;
  }

  .clientes__carousel-shell {
    padding: 0.7rem max(0.65rem, env(safe-area-inset-left, 0px));
    overflow-x: clip;
  }

  .cliente-slide {
    min-width: 145px;
    flex-basis: 145px;
    padding: 0.75rem;
  }

  .contact-form {
    gap: 0.75rem;
  }

  .form-row input,
  .form-row textarea {
    font-size: 16px;
  }

  .cta-mobile-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: max(0.9rem, env(safe-area-inset-left, 0px));
    right: max(0.9rem, env(safe-area-inset-right, 0px));
    bottom: max(0.8rem, env(safe-area-inset-bottom, 0px));
    z-index: 998;
    height: 46px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
  }
}

/* Movimiento reducido: solo fondos decorativos; no anular todas las transiciones (rompe reveal y UI) */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
}

/* Beneficios */
.beneficios {
  background: transparent;
}

.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}

.beneficio-card {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(
    165deg,
    rgba(24, 37, 54, 0.92) 0%,
    rgba(15, 23, 42, 0.72) 100%
  );
  transition:
    border-color 0.5s ease-out,
    background 0.5s ease-out,
    box-shadow 0.5s ease-out,
    transform 0.5s ease-out;
}

.beneficio-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    165deg,
    rgba(24, 37, 54, 0.96) 0%,
    rgba(15, 23, 42, 0.78) 100%
  );
  box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.46);
  transform: translateY(-3px);
}

.beneficio-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(28, 176, 245, 0.12);
  color: var(--color-primary-hover);
  font-weight: 700;
  font-size: 0.9rem;
}

.beneficio-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.beneficio-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  text-align: left;
  text-align-last: left;
}

/* Sistema: showcase modular */
.sistema .container {
  max-width: min(1360px, 100%);
}

.sistema-showcase {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 3rem;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: calc(var(--radius-xl) + 12px);
  background:
    linear-gradient(90deg, rgba(71, 196, 255, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(71, 196, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 16% 0%, rgba(71, 196, 255, 0.16), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(30, 196, 174, 0.11), transparent 30%),
    linear-gradient(150deg, rgba(15, 23, 42, 0.86), rgba(3, 7, 18, 0.9) 58%, rgba(8, 14, 28, 0.96));
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
  box-shadow:
    0 28px 80px rgba(2, 6, 23, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: visible;
}

.sistema-showcase::before,
.sistema-showcase::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.sistema-showcase::before {
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.22), transparent 26%, transparent 72%, rgba(45, 212, 191, 0.14));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.sistema-showcase::after {
  right: -12%;
  bottom: -26%;
  width: min(46rem, 74vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 176, 245, 0.13), transparent 62%);
}

.sistema-showcase__header {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: clamp(0.95rem, 2.2vw, 1.25rem);
}

.sistema-showcase__title {
  max-width: 720px;
  margin-bottom: 0.7rem;
  color: rgba(248, 250, 252, 0.98);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.sistema-showcase__lead {
  max-width: 680px;
  color: rgba(203, 213, 225, 0.78);
  font-size: clamp(0.96rem, 1.35vw, 1.05rem);
  line-height: 1.65;
}

.sistema-modulos {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.sistema-modulos__toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding: 0 0.15rem;
}

.sistema-modulos__toolbar span {
  color: rgba(248, 250, 252, 0.94);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.sistema-modulos__toolbar small {
  color: rgba(148, 163, 184, 0.82);
  font-size: 0.78rem;
}

.sistema-modulos__grid {
  display: grid;
  gap: 1rem;
}

.sistema-modulos__viewport {
  position: relative;
  overflow: visible;
  padding: 0.95rem 0.25rem 0.65rem;
}

.sistema-modulos__track {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: end;
  gap: clamp(0.28rem, 0.62vw, 0.5rem);
  min-height: 7.25rem;
}

.sistema-modulo-logo {
  appearance: none;
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.34rem;
  min-width: clamp(4.05rem, 5.9vw, 4.85rem);
  min-height: 6.55rem;
  padding: 0.2rem 0.38rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0;
  outline: none;
  transform-origin: bottom center;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.36s ease,
    border-color 0.26s ease,
    background 0.26s ease,
    box-shadow 0.26s ease,
    transform 0.16s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.16s ease;
  will-change: opacity, transform;
}

.sistema-modulo-logo.is-visible {
  animation: sistemaModuloIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) var(--logo-delay, 0s) both;
}

.sistema-modulo-logo.has-entered {
  animation: none;
  opacity: 1;
  transform: translate3d(0, var(--dock-lift, 0px), 0);
  will-change: transform;
}

.sistema-modulo-logo:hover,
.sistema-modulo-logo:focus-visible,
.sistema-modulo-logo.is-active {
  transform: translate3d(0, var(--dock-lift, 0px), 0);
  z-index: 4;
}

.sistema-modulo-logo .sistema-modulo-card__icon,
.sistema-modulo-logo .sistema-modulo-card__phone {
  transition:
    width 0.24s cubic-bezier(0.2, 0.8, 0.2, 1),
    height 0.24s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.sistema-modulo-logo:hover .sistema-modulo-card__icon,
.sistema-modulo-logo:focus-visible .sistema-modulo-card__icon,
.sistema-modulo-logo.is-active .sistema-modulo-card__icon,
.sistema-modulo-logo:hover .sistema-modulo-card__phone,
.sistema-modulo-logo:focus-visible .sistema-modulo-card__phone,
.sistema-modulo-logo.is-active .sistema-modulo-card__phone {
  border-color: rgba(139, 232, 255, 0.3);
  color: #dff8ff;
  box-shadow:
    0 10px 18px rgba(2, 6, 23, 0.24),
    0 0 8px rgba(71, 196, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sistema-modulo-logo.is-active .sistema-modulo-card__icon {
  width: 4.15rem;
  height: 4.15rem;
  border-radius: 24px;
}

.sistema-modulo-logo.is-active .sistema-modulo-card__icon svg {
  width: 2rem;
  height: 2rem;
}

.sistema-modulo-logo.is-active .sistema-modulo-card__phone {
  width: 4.45rem;
  height: 6.15rem;
  border-radius: 1.18rem;
}

.sistema-modulo-logo.is-active .sistema-modulo-card__phone-screen img {
  width: 1.85rem;
  height: 1.85rem;
}

.sistema-modulo-logo__name {
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
  opacity: 0.76;
  text-shadow: 0 8px 18px rgba(2, 6, 23, 0.62);
  transform: translateY(0.1rem) scale(0.94);
  transition:
    opacity 0.16s ease,
    transform 0.16s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sistema-modulo-logo:hover .sistema-modulo-logo__name,
.sistema-modulo-logo:focus-visible .sistema-modulo-logo__name,
.sistema-modulo-logo.is-active .sistema-modulo-logo__name {
  color: #dff8ff;
  opacity: 1;
  transform: translateY(-0.08rem) scale(1);
}

.sistema-modulo-detail-panel {
  min-height: 12rem;
  padding: clamp(1rem, 2.3vw, 1.4rem);
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(71, 196, 255, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(7, 20, 38, 0.96), rgba(3, 8, 21, 0.94));
  box-shadow:
    0 24px 54px rgba(2, 6, 23, 0.36),
    0 0 0 1px rgba(71, 196, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sistema-modulo-detail-panel .sistema-modulo-card__bullets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(0.85rem, 2vw, 1.25rem);
  row-gap: 0.52rem;
}

.sistema-modulo-card {
  position: relative;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 1rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), transparent 48%),
    rgba(2, 6, 23, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  cursor: pointer;
  overflow: visible;
  opacity: 0;
  outline: none;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.36s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    padding 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.sistema-modulo-card:nth-last-child(3):nth-child(4n + 1) {
  grid-column: 2 / span 3;
}

.sistema-modulo-card.is-visible {
  animation: sistemaModuloIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) var(--card-delay, 0s) both;
}

.sistema-modulo-card.has-entered {
  animation: none;
  opacity: 1;
  transform: none;
  will-change: auto;
}

.sistema-modulo-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(71, 196, 255, 0.8), rgba(45, 212, 191, 0.46), transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.sistema-modulo-card::after {
  content: '';
  position: absolute;
  right: -18%;
  bottom: -40%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 196, 255, 0.13), transparent 64%);
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity 0.34s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.sistema-modulo-card:hover,
.sistema-modulo-card:focus-visible,
.sistema-modulo-card.is-expanded {
  border-color: rgba(71, 196, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(71, 196, 255, 0.105), transparent 52%),
    rgba(2, 6, 23, 0.48);
  box-shadow:
    0 18px 38px rgba(2, 6, 23, 0.2),
    0 0 0 1px rgba(125, 211, 252, 0.06);
  transform: translate3d(0, -3px, 0);
}

.sistema-modulo-card.is-expanded {
  z-index: 40;
}

.sistema-modulo-card:hover::before,
.sistema-modulo-card:focus-visible::before,
.sistema-modulo-card.is-expanded::before {
  opacity: 0.9;
}

.sistema-modulo-card.is-expanded::after {
  opacity: 1;
  transform: scale(1);
}

.sistema-modulo-card:hover .sistema-modulo-card__icon,
.sistema-modulo-card:focus-visible .sistema-modulo-card__icon,
.sistema-modulo-card.is-expanded .sistema-modulo-card__icon {
  border-color: rgba(139, 232, 255, 0.28);
  color: #dff8ff;
  transform: translate3d(0, -2px, 0) scale(1.035);
}

.sistema-modulo-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.72rem;
}

.sistema-modulo-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(71, 196, 255, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 32% 12%, rgba(139, 232, 255, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(71, 196, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(15, 23, 42, 0.78);
  color: #8be8ff;
  box-shadow:
    0 9px 18px rgba(2, 6, 23, 0.22),
    0 0 6px rgba(28, 176, 245, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    border-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.sistema-modulo-card__icon--logo {
  width: 5.85rem;
  padding: 0.32rem 0.48rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.88)),
    rgba(255, 255, 255, 0.94);
}

.sistema-modulo-card__icon--logo img {
  display: block;
  width: 100%;
  max-height: 1.9rem;
  object-fit: contain;
}

.sistema-modulo-card__phone {
  display: grid;
  place-items: center;
  width: 3.18rem;
  height: 4.38rem;
  padding: 0.28rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 0.78rem;
  background:
    linear-gradient(145deg, rgba(226, 232, 240, 0.14), rgba(15, 23, 42, 0.96)),
    #020617;
  box-shadow:
    0 10px 20px rgba(2, 6, 23, 0.3),
    0 0 6px rgba(28, 176, 245, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sistema-modulo-card__phone-screen {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0.58rem;
  background:
    radial-gradient(circle at 30% 0%, rgba(71, 196, 255, 0.22), transparent 42%),
    linear-gradient(180deg, #071b32, #020817);
}

.sistema-modulo-card__phone-screen img {
  display: block;
  width: 1.28rem;
  height: 1.28rem;
}

.sistema-modulo-card__label {
  min-width: 0;
  padding: 0.22rem 0.58rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sistema-modulo-card__category {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.35rem;
  color: rgba(139, 232, 255, 0.78);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.sistema-modulo-card__title {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(248, 250, 252, 0.95);
  font-size: 0.98rem;
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
}

.sistema-modulo-card__text {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  color: rgba(203, 213, 225, 0.76);
  font-size: 0.78rem;
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sistema-modulo-card__detail {
  position: absolute;
  z-index: 45;
  top: calc(100% + 0.6rem);
  left: 0;
  width: min(34rem, calc(100vw - 2rem));
  max-height: none;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(0, 0.4rem, 0) scale(0.985);
  transform-origin: top left;
  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.sistema-modulo-card[data-flyout-align='right'] .sistema-modulo-card__detail {
  right: 0;
  left: auto;
  transform-origin: top right;
}

.sistema-modulo-card[data-flyout-y='top'] .sistema-modulo-card__detail {
  top: auto;
  bottom: calc(100% + 0.6rem);
  transform: translate3d(0, -0.4rem, 0) scale(0.985);
  transform-origin: bottom left;
}

.sistema-modulo-card[data-flyout-y='top'][data-flyout-align='right'] .sistema-modulo-card__detail {
  transform-origin: bottom right;
}

.sistema-modulo-card.is-expanded .sistema-modulo-card__detail {
  padding: 1.05rem;
  border: 1px solid rgba(125, 211, 252, 0.32);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(71, 196, 255, 0.14), transparent 36%),
    linear-gradient(145deg, #071426, #030815);
  box-shadow:
    0 28px 62px rgba(2, 6, 23, 0.72),
    0 0 0 1px rgba(71, 196, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.sistema-modulo-card__detail-label {
  display: block;
  margin-bottom: 0.58rem;
  color: rgba(139, 232, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sistema-modulo-card__detail-title {
  margin-bottom: 0.55rem;
  color: rgba(248, 250, 252, 0.96);
  font-size: 1.02rem;
  line-height: 1.22;
  text-wrap: balance;
}

.sistema-modulo-card__detail-text {
  margin-bottom: 0.72rem;
  color: rgba(226, 232, 240, 0.84);
  font-size: 0.86rem;
  line-height: 1.55;
}

.sistema-modulo-card__bullets {
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.sistema-modulo-card__bullets li {
  position: relative;
  padding-left: 1.08rem;
  color: rgba(203, 213, 225, 0.92);
  font-size: 0.84rem;
  line-height: 1.45;
}

.sistema-modulo-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(28, 176, 245, 0.45);
}

.sistema-mobile-demo {
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.58fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.sistema-mobile-demo__device {
  position: relative;
  width: min(100%, 10.5rem);
  margin: 0 auto;
  padding: 0.62rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 2rem;
  background:
    linear-gradient(145deg, rgba(226, 232, 240, 0.14), rgba(15, 23, 42, 0.98)),
    #020617;
  box-shadow:
    0 20px 40px rgba(2, 6, 23, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.sistema-mobile-demo__speaker {
  width: 2.6rem;
  height: 0.25rem;
  margin: 0 auto 0.48rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.42);
}

.sistema-mobile-demo__screen {
  display: grid;
  gap: 0.5rem;
  min-height: 17rem;
  padding: 0.75rem;
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 22% 0%, rgba(71, 196, 255, 0.24), transparent 36%),
    linear-gradient(180deg, #071b32, #020817);
  overflow: hidden;
}

.sistema-mobile-demo__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sistema-mobile-demo__status strong {
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  font-size: 0.58rem;
}

.sistema-mobile-demo__client {
  padding: 0.72rem;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.62);
}

.sistema-mobile-demo__client span,
.sistema-mobile-demo__sync {
  color: rgba(148, 163, 184, 0.86);
  font-size: 0.68rem;
}

.sistema-mobile-demo__client strong {
  display: block;
  margin-top: 0.18rem;
  color: rgba(248, 250, 252, 0.96);
  font-size: 0.88rem;
  line-height: 1.12;
}

.sistema-mobile-demo__actions {
  display: grid;
  gap: 0.38rem;
}

.sistema-mobile-demo__actions span {
  padding: 0.48rem 0.58rem;
  border: 1px solid rgba(71, 196, 255, 0.16);
  border-radius: 0.75rem;
  background: rgba(28, 176, 245, 0.08);
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
}

.sistema-mobile-demo__sync {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  align-self: end;
  padding-top: 0.35rem;
}

.sistema-mobile-demo__sync span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.56);
}

.sistema-mobile-demo__content {
  min-width: 0;
}

.sistema-modulo-detail-panel .sistema-mobile-demo {
  grid-template-columns: minmax(7rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.sistema-modulo-detail-panel .sistema-mobile-demo__device {
  width: min(100%, 8.8rem);
  padding: 0.52rem;
  border-radius: 1.55rem;
}

.sistema-modulo-detail-panel .sistema-mobile-demo__screen {
  min-height: 12.9rem;
  gap: 0.38rem;
  padding: 0.62rem;
  border-radius: 1.15rem;
}

.sistema-modulo-detail-panel .sistema-mobile-demo__client {
  padding: 0.58rem;
}

.sistema-modulo-detail-panel .sistema-mobile-demo__actions span {
  padding: 0.38rem 0.5rem;
}

@keyframes sistemaModuloIn {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1080px) {
  .sistema-showcase__header {
    max-width: 100%;
  }

  .sistema-modulos__grid {
    grid-template-columns: 1fr;
  }

  .sistema-modulo-card {
    grid-column: span 4;
  }

  .sistema-modulo-card:nth-last-child(3):nth-child(4n + 1) {
    grid-column: span 4;
  }

  .sistema-modulo-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 3 / span 4;
  }
}

@media (max-width: 780px) {
  .sistema-modulos__grid {
    grid-template-columns: 1fr;
  }

  .sistema-modulos__track {
    flex-wrap: wrap;
    min-height: 0;
    row-gap: 0.75rem;
  }

  .sistema-modulo-card,
  .sistema-modulo-card:nth-last-child(3):nth-child(4n + 1),
  .sistema-modulo-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: span 1;
  }

  .sistema-modulos__toolbar {
    display: block;
  }

  .sistema-modulos__toolbar small {
    display: block;
    margin-top: 0.25rem;
  }

  .sistema-modulo-detail-panel {
    border-radius: 18px;
  }

  .sistema-modulo-detail-panel .sistema-modulo-card__bullets {
    grid-template-columns: 1fr;
  }

  .sistema-modulo-card.is-expanded .sistema-modulo-card__detail {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 0.85rem;
  }

  .sistema-mobile-demo {
    grid-template-columns: 1fr;
  }

  .sistema-mobile-demo__device {
    max-width: 11rem;
  }

  .sistema-modulo-card:hover,
  .sistema-modulo-card:focus-visible,
  .sistema-modulo-card.is-expanded {
    transform: none;
  }

  .sistema-modulo-card:hover .sistema-modulo-card__icon,
  .sistema-modulo-card:focus-visible .sistema-modulo-card__icon,
  .sistema-modulo-card.is-expanded .sistema-modulo-card__icon {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sistema-modulo-card,
  .sistema-modulo-card::before,
  .sistema-modulo-card::after,
  .sistema-modulo-card__detail,
  .sistema-modulo-card__icon,
  .sistema-modulo-logo,
  .sistema-modulos__track {
    animation: none;
    transition: none;
  }

  .sistema-modulo-card,
  .sistema-modulo-logo {
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .sistema-modulos__track {
    width: auto;
    flex-wrap: wrap;
  }

  .sistema-modulo-logo[aria-hidden='true'] {
    display: none;
  }
}

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


.sistema {
  padding-bottom: clamp(2.5rem, 4vw, 3.25rem);
}

.industrias {
  padding-top: clamp(2.75rem, 4.5vw, 3.75rem);
  padding-bottom: clamp(3.25rem, 5vw, 4.5rem);
  overflow: hidden;
}

.industrias .container {
  max-width: min(1440px, 100%);
}

.industrias__title {
  margin-bottom: 0.55rem;
}

.industrias__intro {
  max-width: 660px;
  margin-bottom: 0.55rem;
}

.industrias__hint {
  width: fit-content;
  margin: 0 auto clamp(1.35rem, 2.6vw, 1.9rem);
  border: 1px solid rgba(71, 196, 255, 0.18);
  border-radius: 999px;
  padding: 0.34rem 0.78rem;
  background: rgba(28, 176, 245, 0.055);
  color: rgba(203, 213, 225, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.industrias__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(10.5rem, 1fr);
  gap: clamp(1rem, 1.7vw, 1.45rem);
  align-items: start;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0.45rem 0.35rem 0.8rem;
  margin-inline: -0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(71, 196, 255, 0.34) transparent;
  -webkit-overflow-scrolling: touch;
}

.industria-card {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: zoom-in;
  z-index: 1;
  transition: z-index 0s linear 0.18s;
}

.industria-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.55rem;
  border-radius: var(--radius-lg);
}

.industria-card:hover {
  z-index: 3;
  transition-delay: 0s;
}

.industria-card h3 {
  margin-top: 0.7rem;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
  transition: color 0.28s var(--motion-ease);
}

.monitor-mockup {
  --monitor-shadow: rgba(2, 6, 23, 0.34);
  position: relative;
  display: grid;
  justify-items: center;
  padding-right: 10%;
  perspective: 900px;
  transform-origin: center bottom;
  transition: transform 0.34s var(--motion-ease);
}

.industria-card:not([data-supports-mobile='true']) .monitor-mockup {
  padding-right: 0;
}

@media (hover: hover) and (pointer: fine) {
  .industria-card:hover h3 {
    color: var(--color-primary-hover);
  }

  .industria-card:hover .monitor-mockup {
    transform: translate3d(0, -4px, 0) scale(1.045);
  }
}

.monitor-mockup__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0.42rem;
  border-radius: 18px;
  border: 1px solid rgba(203, 213, 225, 0.18);
  background:
    linear-gradient(145deg, rgba(71, 85, 105, 0.9), rgba(15, 23, 42, 0.96) 38%, rgba(2, 6, 23, 0.98)),
    #0f172a;
  box-shadow:
    0 18px 32px var(--monitor-shadow),
    0 0 0 1px rgba(28, 176, 245, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition:
    border-color 0.28s var(--motion-ease),
    box-shadow 0.28s var(--motion-ease);
}

.monitor-mockup__screen::after {
  content: '';
  position: absolute;
  inset: 0.42rem;
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(180deg, transparent 70%, rgba(2, 6, 23, 0.28));
  pointer-events: none;
}

.monitor-mockup__screen img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  background: #020617;
}

@media (hover: hover) and (pointer: fine) {
  .industria-card:hover .monitor-mockup__screen {
    border-color: rgba(71, 196, 255, 0.3);
    box-shadow:
      0 20px 34px rgba(2, 6, 23, 0.36),
      0 0 0 1px rgba(71, 196, 255, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  }
}

.monitor-mockup__neck {
  width: 18%;
  height: 1.05rem;
  margin-top: -1px;
  background: linear-gradient(180deg, rgba(71, 85, 105, 0.95), rgba(15, 23, 42, 0.98));
  border-inline: 1px solid rgba(203, 213, 225, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.monitor-mockup__base {
  width: 42%;
  height: 0.72rem;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(100, 116, 139, 0.92), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(203, 213, 225, 0.12);
  box-shadow:
    0 10px 18px rgba(2, 6, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mobile-mockup {
  position: absolute;
  right: 0;
  bottom: 1.1rem;
  z-index: 2;
  width: clamp(2.15rem, 27%, 3.1rem);
  aspect-ratio: 9 / 18.5;
  border: 1px solid rgba(203, 213, 225, 0.2);
  border-radius: 0.72rem;
  padding: 0.18rem;
  background:
    linear-gradient(145deg, rgba(71, 85, 105, 0.95), rgba(2, 6, 23, 0.98)),
    #020617;
  box-shadow:
    0 12px 22px rgba(2, 6, 23, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.mobile-mockup::before {
  content: '';
  position: absolute;
  top: 0.22rem;
  left: 50%;
  width: 34%;
  height: 0.12rem;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.46);
  transform: translateX(-50%);
}

.mobile-mockup__screen {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.05rem;
  width: 100%;
  height: 100%;
  border-radius: 0.54rem;
  background:
    radial-gradient(circle at 68% 18%, rgba(71, 196, 255, 0.28), transparent 34%),
    linear-gradient(160deg, #0b1731, #071020 64%, #020617);
  color: rgba(241, 245, 249, 0.96);
  line-height: 1;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(71, 196, 255, 0.1);
}

.mobile-mockup__screen span {
  color: var(--color-primary-hover);
  font-size: clamp(0.38rem, 0.55vw, 0.48rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.mobile-mockup__screen .mobile-mockup__brand {
  margin-bottom: 0.1rem;
  color: rgba(241, 245, 249, 0.9);
  font-size: clamp(0.34rem, 0.48vw, 0.42rem);
  letter-spacing: 0.12em;
}

.mobile-mockup__screen strong {
  font-size: clamp(0.42rem, 0.65vw, 0.56rem);
  font-weight: 800;
}

.rubro-viewer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.rubro-viewer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rubro-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.86);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.rubro-viewer.is-open .rubro-viewer__backdrop {
  opacity: 1;
}

.rubro-viewer__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100vw - 2rem), calc((100vh - 7rem) * 16 / 9));
  overflow: visible;
  border: 0;
  background: transparent;
  padding: 0;
  opacity: 0;
  transform: scale(0.965);
  transition:
    opacity 0.18s ease,
    transform 0.22s var(--motion-ease);
}

.rubro-viewer.is-open .rubro-viewer__dialog {
  opacity: 1;
  transform: scale(1);
}

.rubro-viewer__dialog:focus {
  outline: none;
}

.rubro-viewer__close {
  appearance: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(226, 232, 240, 0.14);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: rgba(226, 232, 240, 0.9);
  cursor: pointer;
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease;
}

.rubro-viewer__close:hover,
.rubro-viewer__close:focus-visible {
  border-color: rgba(71, 196, 255, 0.34);
  background: rgba(28, 176, 245, 0.16);
  transform: translateY(-1px);
}

.rubro-viewer__eyebrow {
  display: none;
}

.rubro-viewer__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.rubro-viewer__monitor {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.rubro-viewer__screen {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  padding: clamp(0.48rem, 1vw, 0.7rem);
  border-radius: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(203, 213, 225, 0.22);
  background:
    linear-gradient(145deg, rgba(100, 116, 139, 0.9), rgba(15, 23, 42, 0.96) 34%, rgba(2, 6, 23, 0.98)),
    #0f172a;
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.rubro-viewer__screen::before,
.rubro-viewer__screen::after {
  content: none;
}

.rubro-viewer__screen img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: clamp(12px, 1.4vw, 18px);
  background: #020617;
  object-fit: contain;
  object-position: center;
}

.rubro-viewer__neck {
  width: min(9rem, 18%);
  height: clamp(1rem, 2vw, 1.65rem);
  margin-top: -1px;
  background: linear-gradient(180deg, rgba(71, 85, 105, 0.96), rgba(15, 23, 42, 0.99));
  border-inline: 1px solid rgba(203, 213, 225, 0.14);
}

.rubro-viewer__base {
  width: min(22rem, 38%);
  height: clamp(0.7rem, 1.5vw, 1rem);
  border-radius: 999px 999px 12px 12px;
  border: 1px solid rgba(203, 213, 225, 0.14);
  background: linear-gradient(180deg, rgba(100, 116, 139, 0.94), rgba(15, 23, 42, 0.99));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.mobile-mockup--viewer {
  right: clamp(-0.2rem, 1.5vw, 1.1rem);
  bottom: clamp(2rem, 5vw, 4.25rem);
  width: clamp(4.4rem, 11vw, 7.25rem);
  border-radius: clamp(1rem, 2vw, 1.55rem);
  padding: clamp(0.28rem, 0.65vw, 0.42rem);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.rubro-viewer__monitor:not(.rubro-viewer__monitor--mobile) .mobile-mockup--viewer {
  display: none;
}

.mobile-mockup--viewer::before {
  top: clamp(0.38rem, 0.8vw, 0.55rem);
  height: 0.2rem;
}

.mobile-mockup--viewer .mobile-mockup__screen {
  border-radius: clamp(0.72rem, 1.5vw, 1.12rem);
}

.mobile-mockup--viewer .mobile-mockup__screen span {
  font-size: clamp(0.62rem, 1.2vw, 0.9rem);
}

.mobile-mockup--viewer .mobile-mockup__screen .mobile-mockup__brand {
  margin-bottom: 0.18rem;
  font-size: clamp(0.52rem, 1vw, 0.76rem);
}

.mobile-mockup--viewer .mobile-mockup__screen strong {
  font-size: clamp(0.72rem, 1.35vw, 1.05rem);
}

@media (min-width: 768px) {
  .industrias__grid {
    grid-auto-columns: minmax(9.75rem, 1fr);
  }
}

@media (min-width: 1024px) {
  .industrias__grid {
    grid-auto-flow: initial;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: visible;
    padding-inline: 0;
    margin-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .monitor-mockup,
  .monitor-mockup__screen,
  .rubro-viewer,
  .rubro-viewer__backdrop,
  .rubro-viewer__dialog,
  .rubro-viewer__close {
    transition: none;
  }

  .rubro-viewer.is-open .rubro-viewer__dialog,
  .rubro-viewer.is-open .rubro-viewer__monitor {
    opacity: 1;
    transform: none;
  }

  .industria-card:hover .monitor-mockup {
    transform: none;
  }
}

/* CTA bands */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 3.5rem) max(1.5rem, env(safe-area-inset-right, 0px));
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background:
    radial-gradient(ellipse 80% 120% at 10% 50%, rgba(28, 176, 245, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 100% at 90% 50%, rgba(32, 196, 178, 0.08), transparent 55%),
    rgba(15, 23, 42, 0.55);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(28, 176, 245, 0.08), transparent),
    linear-gradient(115deg, transparent 0 47%, rgba(255, 255, 255, 0.05) 47.2% 47.45%, transparent 47.8% 100%);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  max-width: 1100px;
}

.cta-band__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.cta-band__text {
  color: var(--color-text-muted);
  max-width: 36rem;
  line-height: 1.65;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  flex-shrink: 0;
}

/* Clientes stats */
.clientes__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 2.25rem;
}

.clientes__stat {
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(28, 176, 245, 0.18);
  background:
    linear-gradient(180deg, rgba(28, 176, 245, 0.08), rgba(28, 176, 245, 0.04));
  transition:
    border-color 0.5s ease-out,
    background 0.5s ease-out,
    box-shadow 0.5s ease-out,
    transform 0.5s ease-out;
}

.clientes__stat:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(28, 176, 245, 0.13), rgba(28, 176, 245, 0.06));
  box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.36);
  transform: translateY(-0.125rem);
}

.clientes__stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--color-primary-hover);
  line-height: 1.1;
}

.clientes__stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Rubros badges */
.producto-card {
  position: relative;
}

.producto-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #dff5ff;
  border: 1px solid rgba(28, 176, 245, 0.4);
  background: rgba(8, 14, 28, 0.82);
}

@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
  .hero__glow {
    animation: heroGlowBreath 8s ease-in-out infinite;
  }

  @keyframes heroGlowBreath {
    0%, 100% {
      opacity: 0.74;
      transform: scale(0.98);
    }
    50% {
      opacity: 1;
      transform: scale(1.03);
    }
  }
}

.producto-card--campo:hover .producto-card__media img {
  transform: scale(1.03);
}

.producto-card--campo .producto-card__media img {
  transition: transform 0.45s ease;
}

@media (max-width: 1100px) {
  .beneficios__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__metric {
    text-align: center;
  }

  .hero__visual {
    width: min(100%, 580px);
    max-width: 580px;
    margin: 0 auto;
    min-height: clamp(300px, 64vw, 440px);
  }

  .hero__mockup {
    transform: none;
  }

  .hero-dashboard__sidebar {
    gap: 0.75rem;
    padding: 0.9rem 0.6rem;
  }

  .hero-dashboard__grid {
    gap: 0.5rem;
  }

  .hero-dashboard__metrics div {
    padding: 0.62rem;
  }

  .hero-dashboard__module {
    width: clamp(5.7rem, 22vw, 7.2rem);
    border-radius: 14px;
  }

  .sistema-showcase__panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .beneficios__grid {
    grid-template-columns: 1fr;
  }

  .clientes__stats {
    grid-template-columns: 1fr;
  }

  .hero__metrics {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band__actions {
    width: 100%;
  }

  .cta-band__actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 200px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__mockup {
    transform: none;
  }

  .hero-dashboard__pulse,
  .hero-dashboard__bar.hero-dashboard__pulse {
    animation: none;
  }
}

/* WhatsApp flotante (proveedor externo) */
.chatbot {
  position: fixed;
  bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  right: max(1.5rem, env(safe-area-inset-right, 0px));
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.chatbot__hint {
  order: -1;
  margin: 0;
  max-width: 240px;
  padding: 0.38rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(8, 14, 28, 0.94);
  color: var(--color-text);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  pointer-events: none;
  transition:
    opacity 0.2s ease 0s,
    transform 0.2s ease 0s;
}

.chatbot__toggle:hover + .chatbot__hint,
.chatbot__toggle:focus-visible + .chatbot__hint {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.12s;
}

.chatbot__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.chatbot__toggle:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

.chatbot__toggle svg {
  display: block;
}

.cta-mobile-whatsapp {
  display: none;
}

@media (max-width: 480px) {
  .chatbot__hint {
    display: none;
  }

  .cta-mobile-whatsapp {
    display: none !important;
  }

  .chatbot {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
  }
}

/* —— Pulido móvil: ritmo, márgenes y bloques alineados al escritorio —— */
@media (max-width: 768px) {
  :root {
    --section-space-mobile: 3.35rem;
  }

  body {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }

  .header__container {
    min-height: 3.75rem;
    padding: 0.7rem 1.25rem;
    column-gap: 0.75rem;
  }

  .nav.open {
    left: 0.85rem;
    right: 0.85rem;
    width: auto;
    padding: 0.35rem 0.85rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
    border-radius: 0 0 18px 18px;
  }

  .nav.open .nav__list a {
    padding: 0.85rem 0.65rem;
  }

  .hero {
    min-height: 0;
    padding: 1.85rem 1.25rem 2.85rem;
    justify-content: flex-start;
  }

  .hero__layout {
    gap: 1.65rem;
  }

  .hero__copy {
    text-align: left;
  }

  .hero__title {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
  }

  .hero__title-line--accent {
    font-size: clamp(1rem, 4.1vw, 1.2rem);
    margin-top: 0.28rem;
  }

  .hero__subtitle {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 1.35rem;
    margin-left: 0;
    margin-right: 0;
    max-width: 34rem;
    text-wrap: pretty;
  }

  .hero__actions {
    justify-content: flex-start;
    margin: 0;
    gap: 0.65rem;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    min-height: 2.85rem;
    padding: 0.7rem 1.05rem;
    flex: 1 1 calc(50% - 0.4rem);
    width: auto;
  }

  .hero__metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem;
    max-width: 100%;
    margin: 1.2rem 0 0;
    padding-top: 1.1rem;
  }

  .hero__metric {
    flex: 0 0 auto;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
  }

  .hero__metric strong {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .hero__metric span {
    display: none;
  }

  .hero__visual {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin: 0.25rem 0 1.25rem;
  }

  .hero__mockup {
    width: 100%;
    padding: 0.45rem;
    border-radius: 22px;
    transform: none;
  }

  .hero__screen {
    border-radius: 16px;
  }

  .hero__stand {
    display: none;
  }

  .hero-dashboard__sidebar {
    width: 2.65rem;
    gap: 0.45rem;
    padding: 0.65rem 0.4rem;
  }

  .hero-dashboard__nav-dot:not(.hero-dashboard__nav-dot--active):not(.hero-dashboard__nav-dot--avatar) {
    display: none;
  }

  .hero-dashboard__main {
    padding: 0.7rem;
    gap: 0.55rem;
  }

  .hero-dashboard__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .hero-dashboard__card:nth-child(n + 3) {
    display: none;
  }

  .section {
    padding: var(--section-space-mobile) 1.25rem;
  }

  .section__title {
    font-size: clamp(1.45rem, 6.4vw, 1.85rem);
    line-height: 1.18;
    letter-spacing: -0.025em;
    text-wrap: balance;
    margin-bottom: 0.7rem;
  }

  .section__intro {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
    text-wrap: pretty;
  }

  .historia__content {
    gap: 1.25rem;
  }

  .beneficio-card,
  .proceso-card,
  .soporte-card,
  .producto-card.producto-card--campo {
    padding: 1.25rem 1.15rem 1.35rem;
  }

  .beneficios__grid,
  .proceso__grid {
    gap: 0.9rem;
  }

  .sistema-showcase {
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 1.5rem;
    padding: 1rem 0.85rem 1.15rem;
    border-radius: 18px;
  }

  .sistema-showcase::after {
    display: none;
  }

  .sistema-showcase__title {
    font-size: 1.28rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .sistema-showcase__lead {
    font-size: 0.92rem;
  }

  .sistema-modulos__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    align-items: start;
    flex-wrap: unset;
    min-height: 0;
    gap: 0.45rem 0.25rem;
  }

  .sistema-modulo-logo {
    min-width: 0;
    width: 100%;
    min-height: 4.6rem;
    padding: 0.15rem 0.1rem;
    transform: none;
  }

  .sistema-modulo-logo.has-entered,
  .sistema-modulo-logo:hover,
  .sistema-modulo-logo:focus-visible,
  .sistema-modulo-logo.is-active {
    transform: none;
  }

  .industrias__hint {
    margin-bottom: 1.1rem;
    font-size: 0.72rem;
  }

  .industrias__grid {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: unset;
    overflow: visible;
    gap: 1.1rem 0.85rem;
    padding: 0.15rem 0 0.4rem;
    margin-inline: 0;
  }

  .monitor-mockup {
    padding-right: 0;
    perspective: none;
  }

  .industria-card h3 {
    font-size: 0.82rem;
    margin-top: 0.55rem;
  }

  .clientes__rubros {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.45rem;
    padding-bottom: 0.35rem;
    margin-bottom: 0.9rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .clientes__rubros::-webkit-scrollbar {
    display: none;
  }

  .clientes__rubro-btn {
    flex: 0 0 auto;
    padding: 0.42rem 0.8rem;
    font-size: 0.82rem;
  }

  .clientes__carousel-shell {
    padding: 0.7rem 0.55rem;
  }

  .cta-band__inner {
    gap: 1rem;
  }

  .cta-band__actions {
    display: flex;
    flex-direction: column;
  }

  .cta-band__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .contacto {
    padding-bottom: 4.25rem;
  }

  .footer {
    padding: 2.5rem 1.15rem 1.35rem;
    margin-top: 1.5rem;
  }

  .chatbot {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .chatbot__toggle {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.55rem 1.15rem 2.4rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    flex: 1 1 auto;
  }

  .hero__metric strong {
    font-size: 0.74rem;
  }

  .section {
    padding: 3rem 1.15rem;
  }

  .sistema-modulos__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .productos__grid--campos {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .form-row input,
  .form-row textarea {
    font-size: 16px;
  }
}
