/* ==========================================================================
   FAST CODE SYSTEM — Sistema de diseño
   Paleta: rojo · negro · blanco · gris
   Estética: tecnológica, industrial, corporativa
   ========================================================================== */

:root {
  /* Marca */
  --red: #e51b23;
  --red-bright: #ff2f38;
  --red-deep: #a90e15;
  --red-glow: rgba(229, 27, 35, 0.45);

  /* Oscuros */
  --black: #05060a;
  --ink-900: #090b10;
  --ink-800: #0e1117;
  --ink-700: #151922;
  --ink-600: #1d222c;
  --line-dark: rgba(255, 255, 255, 0.09);
  --line-dark-strong: rgba(255, 255, 255, 0.16);

  /* Claros */
  --white: #ffffff;
  --paper: #f4f5f7;
  --paper-2: #eceef1;
  --line: #e2e5e9;
  --ink: #0d1015;
  --muted: #676c76;
  --muted-dark: #8b9099;

  /* Medidas */
  --header-h: 100px;
  --header-h-solid: 78px;
  --pad-x: clamp(20px, 6vw, 108px);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-lift: 0 26px 60px -18px rgba(6, 8, 12, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-sans: var(--font-geist-sans), "Segoe UI", Arial, Helvetica, sans-serif;
  --font-mono: var(--font-geist-mono), ui-monospace, "SF Mono", Menlo, monospace;
}

/* Ajustes de integración con WordPress */
.admin-bar .site-header { top: 32px; }
.admin-bar .mobile-panel { top: calc(var(--header-h-solid) + 32px); }
.site-main { min-height: 60vh; }
.wp-content { font-size: 1rem; line-height: 1.8; color: var(--muted); }
.wp-content h2, .wp-content h3 { color: var(--ink); }
.wp-content a { color: var(--red); text-decoration: underline; }
.fcs-icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fcs-icon.small { width: 17px; height: 17px; }
.brand img.custom-logo { height: 60px; width: auto; }
.current-menu-item > a, .main-nav a[aria-current="page"] { color: #fff; }
.current-menu-item > a::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.fcs-notice { padding: 16px 18px; margin-bottom: 22px; border-radius: 10px; background: #eaf7ed; color: #1f6b31; border: 1px solid #b9dfc2; }
.fcs-error { background: #fff0f0; color: #8f1b20; border-color: #f1b8ba; }
.catalog-toolbar { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; margin-bottom: 34px; }
.catalog-search-wp { width: 100%; padding: 16px 18px; border: 1px solid var(--line); border-radius: 999px; background: #fff; outline: 0; }
.catalog-search-wp:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(229,27,35,.1); }
.taxonomy-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 38px; }
.taxonomy-nav a { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 700; background: #fff; }
.taxonomy-nav a:hover, .taxonomy-nav a.active { background: var(--red); border-color: var(--red); color: #fff; }
.product-grid-wp { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.product-card-wp { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: transform .35s var(--ease),box-shadow .35s var(--ease); }
.product-card-wp:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.product-image-wp { aspect-ratio: 4/3; background: var(--paper); display: grid; place-items: center; overflow: hidden; }
.product-image-wp img { width: 100%; height: 100%; object-fit: contain; padding: 24px; transition: transform .35s var(--ease); }
.product-card-wp:hover .product-image-wp img { transform: scale(1.04); }
.product-body-wp { padding: 24px; }
.product-body-wp h3 { margin: 8px 0 12px; font-size: 1.2rem; }
.product-body-wp p { color: var(--muted); line-height: 1.65; }
.product-tax { font-family: var(--font-mono); color: var(--red); text-transform: uppercase; letter-spacing: .13em; font-size: .62rem; }
.product-actions-wp { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.category-block { padding-block: 46px; border-top: 1px solid var(--line); }
.category-block:first-child { border-top: 0; }
.category-title { display: grid; grid-template-columns: 1fr .9fr; gap: 40px; align-items: end; margin-bottom: 28px; }
.category-title h2 { margin: 0; font-size: clamp(2rem,3.5vw,3.3rem); }
.category-title p { margin: 0; color: var(--muted); line-height: 1.7; }
.empty-state-wp { padding: 36px; border: 1px dashed #cfd3d8; border-radius: var(--radius); background: var(--paper); }
.empty-state-wp h3 { margin: 0 0 10px; }
.empty-state-wp p { color: var(--muted); line-height: 1.7; max-width: 70ch; }
.single-product-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(36px,6vw,90px); align-items: start; }
.single-product-media { background: var(--paper); border-radius: var(--radius); min-height: 420px; display: grid; place-items: center; }
.single-product-media img { max-height: 520px; object-fit: contain; padding: 34px; }
.spec-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.spec-list li { display: flex; gap: 10px; color: var(--muted); }
.spec-list li::before { content: "✓"; color: var(--red); font-weight: 800; }
.contact-form-wp { display: grid; gap: 18px; }
.contact-form-wp .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-wp label { display: grid; gap: 8px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-form-wp input,.contact-form-wp select,.contact-form-wp textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 8px; background: #fff; text-transform: none; letter-spacing: 0; outline: 0; }
.contact-form-wp input:focus,.contact-form-wp select:focus,.contact-form-wp textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(229,27,35,.1); }
.contact-form-wp .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.service-grid-wp { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.legal-copy { max-width: 850px; }
@media (max-width: 900px) { .product-grid-wp { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } .admin-bar .mobile-panel { top: calc(var(--header-h-solid) + 46px); } }
@media (max-width: 680px) {
  .catalog-toolbar,.category-title,.single-product-grid,.contact-form-wp .form-row { grid-template-columns: 1fr; }
  .product-grid-wp,.service-grid-wp { grid-template-columns: 1fr; }
  .catalog-toolbar .btn { width: 100%; }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h-solid) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-synthesis-weight: none;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.035em; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 14px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout base ---------------------------------------------- */

.shell { width: 100%; max-width: 1360px; margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(72px, 9vw, 132px); position: relative; }
.section.tight { padding-block: clamp(56px, 6vw, 88px); }
.section-dark { background: var(--ink-900); color: #fff; }
.section-black { background: var(--black); color: #fff; }
.section-paper { background: var(--paper); }

/* ---------- Tipografía utilitaria ------------------------------------ */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin: 0 0 22px;
}
.kicker::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--red);
  flex: none;
}
.kicker.plain::before { display: none; }

.display {
  font-size: clamp(2.1rem, 4.6vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.display.xl { font-size: clamp(2.5rem, 5.6vw, 5.2rem); line-height: 0.98; }
.display em { font-style: normal; color: var(--red); }
.display .line { display: block; }

.lede {
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
  text-wrap: pretty;
}
.section-dark .lede,
.section-black .lede,
.on-dark .lede { color: #a4a9b3; }

.head-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(38px, 4.5vw, 64px);
}
.head-row > p { margin: 0; }

/* ---------- Botones --------------------------------------------------- */

.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
  font-size: 1.05em;
  line-height: 1;
}
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary { box-shadow: 0 14px 34px -12px var(--red-glow); }
.btn-primary::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--red-bright), var(--red-deep));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px var(--red-glow); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.55); transform: translateY(-3px); }

.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-3px); }

.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.5); }

.btn-sm { padding: 12px 20px; font-size: 0.78rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
}
.link-arrow .arrow { transition: transform 0.3s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(5px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Motivos de marca ----------------------------------------- */

/* Retícula técnica */
.mesh {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
}
.mesh.light {
  background-image:
    linear-gradient(rgba(13, 16, 21, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 16, 21, 0.045) 1px, transparent 1px);
}
.mesh.fade { mask-image: radial-gradient(120% 100% at 50% 0%, #000 15%, transparent 78%); }

/* Código de barras decorativo */
.barcode {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 34px;
  opacity: 0.9;
}
.barcode i {
  display: block;
  width: 2px;
  height: 100%;
  background: currentColor;
  border-radius: 1px;
}
.barcode i:nth-child(3n) { width: 5px; height: 72%; }
.barcode i:nth-child(4n) { width: 3px; height: 88%; opacity: 0.5; }
.barcode i:nth-child(5n) { width: 6px; }
.barcode i:nth-child(7n) { height: 55%; }

/* Esquinas tipo visor de escáner */
.bracket { position: relative; }
.bracket::before,
.bracket::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--red);
  transition: width 0.4s var(--ease), height 0.4s var(--ease);
  pointer-events: none;
}
.bracket::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.bracket::after { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.bracket:hover::before, .bracket:hover::after { width: 34px; height: 34px; }

/* Línea de escaneo */
.scanline {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.75;
  animation: scan 4.5s var(--ease) infinite;
}
@keyframes scan {
  0%, 100% { transform: translateY(0); opacity: 0; }
  10%, 90% { opacity: 0.8; }
  50% { transform: translateY(var(--scan-distance, 260px)); }
}

/* Halo rojo */
.glow {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  filter: blur(150px);
  opacity: 0.2;
  pointer-events: none;
}

/* ---------- Encabezado ------------------------------------------------ */

.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--red-deep), var(--red-bright));
  z-index: 120;
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease), height 0.4s var(--ease);
  background: rgba(5, 6, 10, 0.35);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(2px);
}
.site-header.solid {
  height: var(--header-h-solid);
  background: rgba(6, 8, 12, 0.9);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 14px 40px -20px rgba(0, 0, 0, 0.9);
}
.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* Logotipo transparente: sin placa ni rectángulo blanco */
.brand {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
  transition: transform 0.35s var(--ease);
  flex: none;
}
.brand::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 0;
  background: var(--red);
  transition: width 0.45s var(--ease);
}
.brand:hover { transform: translateY(-2px); }
.brand:hover::after { width: 100%; }
.brand img { display: block; height: 60px; width: auto; filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42)); transition: height 0.4s var(--ease); object-fit: contain; }
.site-header.solid .brand img { height: 46px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.6vw, 26px);
}
.main-nav a {
  position: relative;
  padding: 10px 2px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s var(--ease);
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.32s var(--ease);
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: #fff; }
.main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease);
}
.header-phone:hover { color: #fff; }
.header-phone svg { color: var(--red); flex: none; }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-dark-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  margin: 4px auto;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: var(--header-h-solid) 0 auto 0;
  z-index: 99;
  background: rgba(6, 8, 12, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-dark);
  padding: 14px var(--pad-x) 30px;
  display: grid;
  gap: 2px;
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.mobile-panel.open { opacity: 1; transform: none; visibility: visible; }
.mobile-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 4px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-panel a span { color: var(--red); font-family: var(--font-mono); font-size: 0.72rem; }
.mobile-panel .panel-cta { margin-top: 20px; border: 0; }
.mobile-panel .btn { width: 100%; }

/* ---------- Hero ------------------------------------------------------ */

.hero {
  position: relative;
  min-height: clamp(620px, 96vh, 980px);
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + 48px) 90px;
  background: var(--black);
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: -8% 0 -8% 0; z-index: 0; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(96deg, rgba(4, 5, 8, 0.97) 0%, rgba(4, 5, 8, 0.9) 38%, rgba(4, 5, 8, 0.35) 68%, rgba(4, 5, 8, 0.15) 100%),
    linear-gradient(0deg, rgba(4, 5, 8, 0.92) 0%, transparent 45%);
}
.hero .mesh { z-index: 2; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.hero .shell { position: relative; z-index: 4; }
.hero-content { max-width: 830px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line-dark-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d6d9de;
  margin: 0 0 28px;
}
.hero-eyebrow i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.35; transform: scale(0.7); } }

.hero h1 { font-size: clamp(2rem, 4.3vw, 3.85rem); line-height: 1.03; letter-spacing: -0.042em; margin: 0; }
.hero h1 .h1-main { display: block; }
.hero h1 .h1-accent {
  display: block;
  color: var(--red);
  font-size: 0.66em;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-top: 0.34em;
  max-width: 20ch;
}
.hero-lead {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.72;
  color: #b6bac1;
  max-width: 66ch;
  margin: 26px 0 36px;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: #9ca1aa;
}
.hero-meta svg { color: var(--red); flex: none; }

.hero-badge {
  position: absolute;
  right: max(4vw, 26px);
  bottom: 12%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: rgba(9, 11, 16, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-dark-strong);
  border-left: 3px solid var(--red);
  border-radius: 0 12px 12px 0;
}
.hero-badge b { display: block; font-size: 1.6rem; letter-spacing: -0.04em; color: #fff; line-height: 1; }
.hero-badge span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8d929b;
  margin-top: 7px;
}
.hero-badge .barcode { color: var(--red); height: 40px; opacity: 0.4; gap: 4px; }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 26px;
  z-index: 5;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7b8089;
}
.scroll-hint i {
  display: block;
  width: 1px; height: 42px;
  background: linear-gradient(180deg, transparent, var(--red));
  animation: dropline 2.4s ease-in-out infinite;
}
@keyframes dropline { 0%, 100% { transform: scaleY(0.3); opacity: 0.3; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } }

/* Hero interno de páginas */
.page-hero {
  position: relative;
  background: var(--black);
  color: #fff;
  padding-block: calc(var(--header-h) + clamp(56px, 7vw, 104px)) clamp(56px, 7vw, 104px);
  overflow: hidden;
}
.page-hero .glow { width: 520px; height: 520px; left: -8%; top: -40%; opacity: 0.17; }
.page-hero .shell { position: relative; z-index: 3; }
.page-hero .lede { color: #a4a9b3; margin: 24px 0 0; }
.page-hero .barcode { color: rgba(255, 255, 255, 0.22); margin-bottom: 30px; }

.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7d828b;
  margin-bottom: 22px;
}
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--red); }

/* ---------- Reveal / animaciones de scroll ---------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"] { transform: scale(0.94); }
[data-reveal="clip"] { opacity: 1; transform: none; clip-path: inset(0 100% 0 0); transition: clip-path 0.9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }

/* ---------- Franja de marcas ------------------------------------------ */

.brands {
  background: var(--ink-900);
  color: #fff;
  border-block: 1px solid var(--line-dark);
  padding-block: 42px;
  overflow: hidden;
}
.brands-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 30px;
}
.brands-head h2 { font-size: clamp(1.15rem, 2vw, 1.6rem); margin: 0; letter-spacing: -0.03em; }
.brands-head p { margin: 0; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: #7c818a; }

.marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }

.brand-chip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 34px;
  margin-right: 14px;
  min-width: 268px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.brand-chip:hover { border-color: rgba(229, 27, 35, 0.55); transform: translateY(-3px); }
.brand-chip img { width: 118px; height: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.brand-word { font-size: 1.16rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; white-space: nowrap; }
.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.brand-tag.partner { background: rgba(229, 27, 35, 0.15); color: #ff6a70; border: 1px solid rgba(229, 27, 35, 0.42); }
.brand-tag.works { background: rgba(255, 255, 255, 0.06); color: #969ba4; border: 1px solid var(--line-dark); }
.brands-note { margin: 26px 0 0; font-size: 0.76rem; color: #7c818a; }

/* ---------- Tarjetas -------------------------------------------------- */

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-deep));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: #d3d7dd; }
.card:hover::before { transform: scaleX(1); }
.card h3 { font-size: 1.12rem; margin: 20px 0 10px; letter-spacing: -0.03em; }
.card p { margin: 0; font-size: 0.9rem; line-height: 1.68; color: var(--muted); }
.card .card-index {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: #a9adb4;
}
.card .link-arrow { margin-top: auto; padding-top: 22px; }

.card-dark {
  background: linear-gradient(155deg, var(--ink-800), var(--ink-900));
  border-color: var(--line-dark);
  color: #fff;
}
.card-dark p { color: #9ba0a9; }
.card-dark:hover { border-color: rgba(229, 27, 35, 0.45); box-shadow: 0 26px 60px -22px rgba(0, 0, 0, 0.9); }
.card-dark .card-index { color: #71767f; }

.icon-badge {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(229, 27, 35, 0.1);
  color: var(--red);
  border: 1px solid rgba(229, 27, 35, 0.22);
  transition: background 0.35s var(--ease), transform 0.4s var(--ease);
  flex: none;
}
.card:hover .icon-badge { background: var(--red); color: #fff; transform: translateY(-2px) rotate(-4deg); }
.card-dark .icon-badge { background: rgba(229, 27, 35, 0.14); }

.card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }

/* ---------- Beneficios / listas --------------------------------------- */

.check-list { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  line-height: 1.5;
}
.check-list li:first-child { border-top: 1px solid var(--line); }
.on-dark .check-list li,
.section-dark .check-list li,
.section-black .check-list li { border-color: var(--line-dark); color: #d3d6db; }
.check-list svg { color: var(--red); flex: none; margin-top: 2px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.75rem;
  color: #4d525b;
  font-weight: 500;
}
.on-dark .tag, .section-dark .tag, .section-black .tag {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  color: #b1b6bd;
}

/* ---------- Split (texto + imagen) ------------------------------------ */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
}
.split.wide-left { grid-template-columns: 1.08fr 0.92fr; }

.figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-900);
  isolation: isolate;
}
.figure img { display: block; width: 100%; height: 100%; object-fit: cover; }
.figure.parallax img { scale: 1.16; will-change: transform; }
.figure .figure-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.1), rgba(4, 5, 8, 0.62));
}
.figure .figure-tint-soft {
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.02), rgba(4, 5, 8, 0.34));
}
.figure-caption {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(6, 8, 12, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-dark-strong);
  color: #fff;
  font-size: 0.78rem;
}
.figure-caption b { color: var(--red); font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; }

/* ---------- Contadores ------------------------------------------------ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}
.stats > div { padding: 34px 24px 34px 0; border-right: 1px solid var(--line-dark); }
.stats > div:last-child { border-right: 0; }
.stats b {
  display: block;
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  letter-spacing: -0.05em;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}
.stats b span { display: inline; }
.stats b .plus { color: var(--red); }
.stats b.stats-word { font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -0.04em; }
.stats > div > span {
  display: block;
  margin-top: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #8f949d;
  max-width: 22ch;
}
.stats.on-light { border-color: var(--line); }
.stats.on-light > div { border-color: var(--line); }
.stats.on-light b { color: var(--ink); }
.stats.on-light > div > span { color: var(--muted); }

/* ---------- Proceso --------------------------------------------------- */

.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; position: relative; }
.process-step { position: relative; padding: 34px 28px 34px 0; }
.process-step + .process-step { padding-left: 28px; border-left: 1px solid var(--line-dark); }
.process-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.process-num::after { content: ""; flex: 1; height: 1px; background: var(--line-dark); }
.process-step h3 { font-size: 1.05rem; margin: 0 0 10px; }
.process-step p { margin: 0; font-size: 0.86rem; line-height: 1.65; color: #969ba4; }
.process-step .icon-badge { margin-bottom: 22px; }
.process.on-light .process-step + .process-step { border-color: var(--line); }
.process.on-light .process-num::after { background: var(--line); }
.process.on-light p { color: var(--muted); }

/* ---------- Bandas CTA ------------------------------------------------ */

.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--red-deep) 0%, var(--red) 55%, #c4151c 100%);
  color: #fff;
  overflow: hidden;
}
.cta-band .mesh { opacity: 0.5; }
.cta-band .shell {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding-block: clamp(46px, 6vw, 76px);
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); margin: 0; letter-spacing: -0.035em; }
.cta-band p { margin: 14px 0 0; color: rgba(255, 255, 255, 0.85); font-size: 0.96rem; line-height: 1.6; max-width: 56ch; }

.final-cta {
  position: relative;
  background: var(--black);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.final-cta .glow { width: 620px; height: 620px; left: 50%; top: 20%; transform: translateX(-50%); opacity: 0.22; }
.final-cta .shell { position: relative; z-index: 3; display: grid; justify-items: center; gap: 26px; }
.final-cta .display { max-width: 18ch; }
.final-cta .lede { text-align: center; margin: 0 auto; }

/* ---------- Sección de reparación ------------------------------------- */

.repair-hero {
  position: relative;
  background: var(--black);
  color: #fff;
  overflow: hidden;
}
.repair-hero .glow { width: 560px; height: 560px; right: -10%; top: -20%; opacity: 0.24; }
.repair-hero .shell { position: relative; z-index: 3; }

/* ---------- Catálogo de productos ------------------------------------- */

.catalog-bar {
  position: sticky;
  top: calc(var(--header-h-solid) - 1px);
  z-index: 60;
  background: rgba(255, 255, 255, 0.975);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.catalog-bar-inner { display: grid; gap: 12px; padding-block: 14px; }
.catalog-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding-block: clamp(26px, 3vw, 40px) 4px;
}
.catalog-search { position: relative; display: flex; align-items: center; }
.catalog-search svg { position: absolute; left: 18px; color: var(--muted); pointer-events: none; }
.catalog-search input {
  width: 100%;
  padding: 15px 18px 15px 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.catalog-search input:focus { border-color: var(--red); background: #fff; }
.catalog-search .clear {
  position: absolute; right: 12px;
  border: 0; background: none; cursor: pointer;
  color: var(--muted); padding: 8px; line-height: 0; border-radius: 50%;
}
.catalog-search .clear:hover { color: var(--ink); }

.filter-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.filter-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 0.79rem;
  font-weight: 600;
  color: #474c55;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.28s var(--ease);
}
.chip:hover { border-color: #b9bec6; transform: translateY(-1px); }
.chip[aria-pressed="true"], .chip.active {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
}
.chip.red[aria-pressed="true"], .chip.red.active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 24px -12px var(--red-glow);
}
.chip .count { font-family: var(--font-mono); font-size: 0.68rem; opacity: 0.6; margin-left: 7px; }

.cat-nav { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.cat-nav::-webkit-scrollbar { height: 4px; }
.cat-nav::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.category-block { padding-block: clamp(48px, 6vw, 84px); border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h-solid) + 158px); }
.category-block:last-of-type { border-bottom: 0; }
.category-head {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: 34px;
}
.category-art {
  width: 132px; height: 132px;
  border-radius: 18px;
  background: linear-gradient(155deg, var(--ink-800), var(--black));
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1px solid var(--ink-600);
  position: relative;
  overflow: hidden;
  flex: none;
}
.category-art .mesh { opacity: 0.6; }
.category-art svg { position: relative; z-index: 2; }
.category-head h2 { font-size: clamp(1.45rem, 2.6vw, 2.15rem); margin: 0 0 12px; letter-spacing: -0.038em; }
.category-head p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.68; max-width: 62ch; }
.category-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.category-count {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  white-space: nowrap;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: #d3d7dd; }
.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--paper), var(--paper-2));
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: contain; padding: 22px; transition: transform 0.5s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-brand {
  position: absolute; left: 14px; top: 14px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ink-900);
  color: #fff;
  padding: 6px 11px;
  border-radius: 999px;
}
.product-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product-body h3 { margin: 0; font-size: 1.02rem; letter-spacing: -0.028em; }
.product-model { font-family: var(--font-mono); font-size: 0.72rem; color: var(--red); letter-spacing: 0.08em; }
.product-body > p { margin: 0; font-size: 0.86rem; line-height: 1.62; color: var(--muted); }
.product-specs { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.product-specs li { display: flex; gap: 10px; font-size: 0.81rem; color: #4d525b; line-height: 1.45; }
.product-specs svg { color: var(--red); flex: none; margin-top: 3px; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; padding-top: 6px; }

.empty-state {
  border: 1px dashed #cdd2d9;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(229, 27, 35, 0.022) 0 12px, transparent 12px 24px),
    var(--paper);
  padding: clamp(30px, 4vw, 48px);
  display: grid;
  gap: 20px;
  justify-items: start;
}
.empty-state .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229, 27, 35, 0.09);
  border: 1px solid rgba(229, 27, 35, 0.25);
  border-radius: 999px;
  padding: 7px 13px;
}
.empty-state h3 { margin: 0; font-size: 1.16rem; letter-spacing: -0.03em; }
.empty-state p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.7; max-width: 64ch; }

.no-results { padding: 60px 0; text-align: center; color: var(--muted); }
.no-results h3 { color: var(--ink); margin: 0 0 10px; }

/* ---------- Formulario ------------------------------------------------ */

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field > span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #5c616a;
  font-weight: 600;
}
.field > span .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(229, 27, 35, 0.09);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { margin: 0; font-size: 0.76rem; color: var(--muted); line-height: 1.6; }
.form-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 17px;
  border-radius: 10px;
  background: #edf7ef;
  border: 1px solid #c6e6cd;
  color: #216236;
  font-size: 0.85rem;
  line-height: 1.55;
}
.form-status svg { flex: none; margin-top: 2px; }

.contact-methods { display: grid; gap: 12px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-areas:
    "intro empty"
    "methods form";
  column-gap: clamp(32px, 5vw, 84px);
  row-gap: 34px;
  align-items: start;
}
.contact-intro { grid-area: intro; }
.contact-intro .lede { margin-top: 24px; }
.contact-layout .contact-methods { grid-area: methods; }
.contact-form-card { grid-area: form; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.contact-method:hover { border-color: rgba(229, 27, 35, 0.5); background: rgba(255, 255, 255, 0.06); transform: translateX(4px); }
.contact-method .icon-badge { width: 46px; height: 46px; border-radius: 12px; }
.contact-method b { display: block; font-size: 0.95rem; color: #fff; letter-spacing: -0.02em; }
.contact-method span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #868b94;
  margin-bottom: 5px;
}

/* ---------- WhatsApp flotante ----------------------------------------- */

.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 32px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.35s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }

/* ---------- Pie de página --------------------------------------------- */

.site-footer { background: var(--black); color: #82868f; padding-block: clamp(54px, 6vw, 82px) 26px; position: relative; overflow: hidden; }
.site-footer .mesh { opacity: 0.5; }
.site-footer .shell { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 46px;
}
.footer-brand .brand { margin-bottom: 22px; }
.footer-brand p { margin: 0 0 20px; font-size: 0.88rem; line-height: 1.7; max-width: 34ch; }
.footer-contact-list {
  display: grid;
  gap: 13px;
  max-width: 400px;
}
.footer-contact-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #969aa3;
  font-size: .8rem;
  line-height: 1.55;
}
.footer-contact-item > span:last-child { min-width: 0; overflow-wrap: anywhere; }
.footer-contact-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--red);
}
.footer-contact-icon svg { width: 16px; height: 16px; }
.footer-address address { min-width: 0; font-style: normal; }
.footer-address address span { display: block; margin-bottom: 2px; }
.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 600;
}
.footer-col a, .footer-col p { display: block; font-size: 0.87rem; margin: 0 0 13px; transition: color 0.25s var(--ease); line-height: 1.55; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.76rem;
}
.footer-bottom .barcode { color: rgba(255, 255, 255, 0.14); height: 22px; }
.footer-bottom-end { justify-content: flex-end; }

/* ---------- 404 -------------------------------------------------------- */

.nf { min-height: 78vh; display: grid; place-items: center; text-align: center; background: var(--black); color: #fff; padding-block: 170px 110px; }
.nf .shell { display: grid; justify-items: center; }
.nf .display { margin-bottom: 20px; }
.nf .barcode { color: rgba(255, 255, 255, 0.18); }
.nf .lede { text-align: center; }

/* ---------- Detalles finales ------------------------------------------ */

::placeholder { color: #9aa0a9; opacity: 1; }
.field input::placeholder, .field textarea::placeholder { color: #969ca5; }

.footer-brand a { transition: color 0.25s var(--ease); }
.footer-brand a:hover { color: var(--red); }
.footer-brand .brand:hover { color: inherit; }

a.tag { transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease); }
a.tag:hover { border-color: var(--red); color: #fff; transform: translateY(-2px); }

.no-results p { max-width: 46ch; margin: 0 auto; line-height: 1.7; }

.kicker.centered { justify-content: center; }

.contact-method > div { min-width: 0; }
.contact-method b { word-break: break-word; }
.contact-address { align-items: flex-start; }
.contact-address .icon-badge { flex: none; }
.contact-address address { margin-top: 7px; font-style: normal; }
.contact-address address span {
  margin: 0 0 4px;
  color: #9a9ea7;
  font-family: var(--font-sans);
  font-size: .78rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}
.contact-page-section .contact-method {
  border-color: #d9dde3;
  background: #fff;
  box-shadow: 0 12px 30px -28px rgba(8, 10, 15, .55);
}
.contact-page-section .contact-method:hover {
  border-color: rgba(229, 27, 35, .45);
  background: #fff;
  box-shadow: 0 18px 38px -28px rgba(229, 27, 35, .42);
}
.contact-page-section .contact-method b {
  color: #11141a;
  font-weight: 750;
}
.contact-page-section .contact-method span { color: #5e6570; }
.contact-page-section .contact-address address span { color: #5e6570; }
.contact-page-section,
.contact-page-section * { -webkit-user-drag: none; }
.contact-page-section a.contact-method,
.contact-page-section a.contact-method * {
  cursor: pointer !important;
}
.contact-page-section .contact-method:not(a),
.contact-page-section .contact-method:not(a) * {
  cursor: default !important;
}
.contact-page-section .contact-form-wp input,
.contact-page-section .contact-form-wp textarea {
  cursor: text !important;
}
.contact-page-section .contact-form-wp select,
.contact-page-section .contact-form-wp button,
.contact-page-section .contact-form-wp button * {
  cursor: pointer !important;
}
.contact-page-section .contact-form-wp input:disabled,
.contact-page-section .contact-form-wp textarea:disabled,
.contact-page-section .contact-form-wp select:disabled,
.contact-page-section .contact-form-wp button:disabled {
  cursor: default !important;
}
.contact-page-section button,
.contact-page-section img,
.contact-page-section svg { user-select: none; }

.cotizar-btn { white-space: nowrap; }
.clear-filters { margin-left: auto; }

.category-block .grid-4 .tag { width: 100%; }

/* ---------- Responsive ------------------------------------------------- */

@media (max-width: 1180px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-step { padding-right: 22px; }
  .process-step:nth-child(odd) { padding-left: 0; border-left: 0; }
  .process-step:nth-child(even) { padding-left: 26px; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats > div:nth-child(2n) { border-right: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .header-phone { display: none; }
  .main-nav { gap: 12px; }
  .main-nav a { font-size: 0.8rem; }
}

@media (max-width: 900px) {
  :root { --header-h: 76px; --header-h-solid: 68px; }
  .brand img { height: 46px; }
  .site-header.solid .brand img { height: 40px; }
  .main-nav, .header-actions .btn { display: none; }
  .menu-toggle { display: grid; }
  .head-row { grid-template-columns: 1fr; align-items: start; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .contact-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "methods"
      "form";
  }
  .split.reverse > *:first-child { order: 2; }
  .cta-band .shell { grid-template-columns: 1fr; }
  .category-head { grid-template-columns: 84px minmax(0, 1fr); }
  .category-art { width: 84px; height: 84px; }
  .category-art svg { width: 42px; height: 42px; }
  .category-meta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: flex-start; }
  .hero-badge { display: none; }
}

@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .grid-auto { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-step { padding: 26px 0 !important; border-left: 0 !important; border-top: 1px solid var(--line-dark); }
  .process.on-light .process-step { border-top-color: var(--line); }
  .stats { grid-template-columns: 1fr; }
  .stats > div { border-right: 0; border-bottom: 1px solid var(--line-dark); padding-block: 26px; }
  .stats.on-light > div { border-bottom-color: var(--line); }
  .field-row { grid-template-columns: 1fr; }
  .product-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .final-cta .btn-row .btn { width: 100%; }
  .brand { padding: 0; border-radius: 0; }
  .brand img { height: 42px; }
  .site-header.solid .brand img { height: 38px; }
  .scroll-hint { display: none; }
  .brand-chip { min-width: 224px; padding: 16px 22px; }
  .catalog-bar { top: calc(var(--header-h-solid) - 1px); }
  .catalog-bar-inner { gap: 10px; padding-block: 12px; }
  .catalog-search input { padding: 12px 16px 12px 44px; font-size: 0.86rem; }
  .catalog-search svg { left: 15px; }
  .chip { padding: 8px 14px; font-size: 0.74rem; }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 3px; }
  .filter-row .chip { flex: none; }
  .catalog-search-row { grid-template-columns: 1fr; gap: 10px; padding-top: 22px; }
  .catalog-search-row .cotizar-btn { width: 100%; }
  .category-head { gap: 16px; }
}

/* ---------- Respeto por "reducir movimiento" --------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .marquee-track { animation: none; }
  .hero-media, .figure.parallax img { transform: none !important; }
  .figure.parallax img { scale: 1; }
}

/* ---------- Catálogo visual WordPress v2 ------------------------------ */

.product-page-hero .lede { max-width: 760px; }
.product-page-hero .btn-row { margin-top: 30px; }

.product-families { overflow: hidden; }
.product-family-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}
.product-family-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px -36px rgba(8, 10, 15, 0.45);
  transition: transform .42s var(--ease), box-shadow .42s var(--ease), border-color .42s var(--ease);
}
.product-family-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 27, 35, .42);
  box-shadow: 0 30px 65px -34px rgba(8, 10, 15, .48);
}
.product-family-media {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, #f0f1f4);
  border-bottom: 1px solid var(--line);
}
.product-family-media img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
  transition: transform .55s var(--ease);
}
.product-family-card:hover .product-family-media img { transform: scale(1.06); }
.product-family-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 28px 28px;
}
.family-index {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #a3a8b0;
  font: 600 .66rem/1 var(--font-mono);
  letter-spacing: .15em;
}
.product-family-body h3 {
  max-width: calc(100% - 42px);
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.product-family-body p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.66;
}
.family-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--red);
  font-size: .8rem;
  font-weight: 800;
}

.catalog-directory { padding-top: 60px; }
.catalog-toolbar {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}
.catalog-search-shell { position: relative; }
.catalog-search-shell > svg {
  position: absolute;
  top: 50%;
  left: 19px;
  z-index: 2;
  color: var(--muted);
  transform: translateY(-50%);
  pointer-events: none;
}
.catalog-search-shell .catalog-search-wp { padding-left: 50px; }
.taxonomy-nav {
  position: sticky;
  top: calc(var(--header-h-solid) + 10px);
  z-index: 45;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 0 0 30px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 44px -35px rgba(0, 0, 0, .55);
  backdrop-filter: blur(16px) saturate(140%);
  scrollbar-width: none;
}
.taxonomy-nav::-webkit-scrollbar { display: none; }
.taxonomy-nav a { flex: none; }

.catalog-directory .category-block {
  padding-block: clamp(64px, 7vw, 104px);
  border-top: 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h-solid) + 96px);
}
.catalog-directory .category-block:last-child { border-bottom: 0; }
.catalog-directory .category-title { margin-bottom: 34px; }
.catalog-directory .category-title .kicker { margin-bottom: 12px; }
.catalog-directory .category-title h2 {
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.curated-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.brand-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.printer-type-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin: 18px 0 2px;
  padding: 22px 4px 15px;
  border-bottom: 1px solid var(--line);
}
.printer-type-heading:first-child { margin-top: 0; padding-top: 0; }
.printer-type-heading h3 {
  margin: 4px 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.printer-type-heading > span,
.printer-type-kicker {
  color: var(--red);
  font: 700 .58rem/1 var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.family-catalogue .brand-nav { margin-bottom: 34px; }
.brand-catalog-section {
  margin-bottom: 34px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  scroll-margin-top: calc(var(--header-h-solid) + 96px);
}
.brand-catalog-section:last-child { margin-bottom: 0; }
.brand-catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.brand-catalog-heading .kicker { margin-bottom: 10px; }
.brand-catalog-heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: .94;
  letter-spacing: -.055em;
}
.brand-option-count {
  flex: none;
  padding: 9px 13px;
  border: 1px solid rgba(229, 27, 35, .22);
  border-radius: 999px;
  color: var(--red);
  background: rgba(229, 27, 35, .06);
  font: 700 .65rem/1 var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.catalog-product-card { display: flex; min-width: 0; flex-direction: column; }
.catalog-product-card .product-image-wp {
  position: relative;
  aspect-ratio: 1 / .82;
  background: linear-gradient(145deg, #fff, #f1f2f4);
}
.catalog-product-card .product-image-wp.is-photo img { padding: 0; object-fit: cover; }
.consumables-catalog-section .product-image-wp img { padding: 12px; }
.consumables-catalog-section .catalog-product-card { transform: none; }
.product-visual-note {
  position: absolute;
  right: 11px;
  bottom: 11px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 10, 15, .76);
  font: 650 .45rem/1 var(--font-mono);
  letter-spacing: .075em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.product-brand-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 10, 15, .9);
  color: #fff;
  font: 700 .58rem/1 var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.catalog-product-card .product-body-wp {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}
.catalog-product-card .product-body-wp h3 {
  margin: 9px 0 11px;
  font-size: 1.12rem;
  line-height: 1.16;
  letter-spacing: -.032em;
}
.catalog-product-card .product-body-wp > p {
  margin: 0 0 18px;
  font-size: .82rem;
  line-height: 1.58;
}
.product-specs.compact { gap: 8px; margin: 0 0 22px; }
.product-specs.compact li { align-items: flex-start; font-size: .76rem; }
.product-specs.compact svg { width: 14px; height: 14px; margin-top: 1px; }
.catalog-product-card .product-actions-wp {
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.catalog-product-card .product-actions-wp .btn { min-width: 164px; justify-content: center; }
.published-products { margin-top: 44px; padding-top: 36px; border-top: 1px dashed #cbd0d7; }
.published-products > h3 { margin: 0 0 24px; font-size: 1.3rem; }

@media (max-width: 1180px) {
  .curated-grid, .brand-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .product-family-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .taxonomy-nav { top: calc(var(--header-h-solid) + 8px); border-radius: 18px; }
}

@media (max-width: 680px) {
  .product-family-grid, .curated-grid, .brand-product-grid { grid-template-columns: 1fr; }
  .product-family-grid { gap: 16px; margin-top: 30px; }
  .product-family-body { padding: 22px; }
  .catalog-directory { padding-top: 36px; }
  .taxonomy-nav { margin-inline: -8px; padding: 8px; }
  .taxonomy-nav a { padding: 9px 13px; font-size: .72rem; }
  .catalog-directory .category-block { padding-block: 58px; }
  .brand-catalog-section { margin-inline: -8px; padding: 24px 16px; border-radius: 20px; }
  .brand-catalog-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
}


/* ======================================================================
   AJUSTES RESPONSIVOS v1.14
   Optimización específica para teléfonos y tabletas pequeñas.
   ====================================================================== */

html.menu-open,
body.menu-open { overflow: hidden; }

body,
.site-main,
section,
.shell,
.grid,
.split,
.card,
.figure,
.contact-layout,
.footer-grid { min-width: 0; }

h1, h2, h3, h4, p, a, span, li, address {
  overflow-wrap: break-word;
}

@media (hover: none) {
  .card:hover,
  .product-card:hover,
  .product-card-wp:hover,
  .product-family-card:hover,
  .contact-method:hover,
  .btn:hover,
  .brand:hover {
    transform: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
    --header-h-solid: 64px;
    --pad-x: 18px;
    --radius: 12px;
  }

  html { scroll-padding-top: 82px; }
  body { overflow-x: hidden; }

  .shell {
    width: 100%;
    max-width: none;
    padding-inline: var(--pad-x);
  }

  .section,
  .section.tight {
    padding-block: 62px;
  }

  .display,
  .display.xl {
    font-size: clamp(2rem, 10.2vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: pretty;
  }

  .lede {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .kicker {
    gap: 9px;
    margin-bottom: 16px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    line-height: 1.45;
  }
  .kicker::before { width: 22px; }

  .head-row {
    gap: 18px;
    margin-bottom: 30px;
  }

  .site-header {
    height: var(--header-h);
    background: rgba(5, 6, 10, 0.88);
    border-bottom-color: var(--line-dark);
    backdrop-filter: blur(16px) saturate(130%);
  }
  .site-header.solid { height: var(--header-h-solid); }
  .site-header .shell { gap: 12px; }

  .brand img,
  .brand img.custom-logo {
    width: auto;
    max-width: 158px;
    height: 44px;
  }
  .site-header.solid .brand img,
  .site-header.solid .brand img.custom-logo { height: 39px; }

  .header-actions { gap: 8px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 9px;
  }

  .mobile-panel {
    inset: var(--header-h) 0 0 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px 18px calc(24px + env(safe-area-inset-bottom));
  }
  .site-header.solid + .mobile-panel {
    inset-block-start: var(--header-h-solid);
    max-height: calc(100dvh - var(--header-h-solid));
  }
  .mobile-panel a {
    min-height: 54px;
    padding: 14px 4px;
    font-size: 0.96rem;
  }
  .mobile-panel .panel-cta { margin-top: 14px; }
  .mobile-panel .btn { min-height: 48px; }

  .admin-bar .mobile-panel {
    inset-block-start: calc(var(--header-h) + 46px);
    max-height: calc(100dvh - var(--header-h) - 46px);
  }

  .hero {
    min-height: 0;
    align-items: flex-start;
    padding-block: calc(var(--header-h) + 54px) 56px;
  }
  .hero-media {
    inset: 0;
    transform: none !important;
  }
  .hero-media img {
    object-position: center top;
    transform: none !important;
  }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(4, 5, 8, 0.62) 0%, rgba(4, 5, 8, 0.9) 31%, rgba(4, 5, 8, 0.98) 70%, #040508 100%),
      linear-gradient(90deg, rgba(4, 5, 8, 0.62), rgba(4, 5, 8, 0.45));
  }
  .hero .mesh { opacity: 0.45; }
  .hero-content { max-width: none; }
  .hero-eyebrow {
    max-width: 100%;
    margin-bottom: 22px;
    padding: 8px 12px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    line-height: 1.35;
    white-space: normal;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10.6vw, 3rem);
    line-height: 1.01;
    letter-spacing: -0.05em;
  }
  .hero h1 .h1-main,
  .hero h1 .h1-accent { max-width: none; }
  .hero h1 .h1-accent {
    margin-top: 0.42em;
    font-size: 0.62em;
    line-height: 1.18;
  }
  .hero-lead {
    margin: 22px 0 28px;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #c2c6cd;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 14px 18px;
  }
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
    padding-top: 22px;
  }
  .hero-meta span {
    align-items: flex-start;
    font-size: 0.79rem;
    line-height: 1.45;
  }

  .page-hero {
    padding-block: calc(var(--header-h) + 48px) 54px;
  }
  .page-hero .barcode { margin-bottom: 20px; }
  .page-hero .lede { margin-top: 18px; }
  .crumbs {
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 0.6rem;
    line-height: 1.4;
  }

  .btn-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }
  .btn-row .btn,
  .cta-band .btn,
  .final-cta .btn {
    width: 100%;
    min-height: 49px;
    padding: 14px 18px;
  }

  .split,
  .split.wide-left {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .split.reverse > *:first-child { order: 2; }

  .figure {
    width: 100%;
    min-height: 260px;
  }
  .figure.parallax img {
    scale: 1.04;
    transform: none !important;
  }
  .figure-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 9px;
    padding: 11px 12px;
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .grid { gap: 14px; }
  .card {
    padding: 23px 20px;
    border-radius: 12px;
  }
  .card h3 {
    margin-top: 16px;
    font-size: 1.05rem;
  }
  .card p { font-size: 0.88rem; }
  .card .link-arrow { padding-top: 18px; }

  .brands { padding-block: 30px; }
  .brands-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .brand-chip {
    min-width: 190px;
    padding: 14px 18px;
  }

  .process-step {
    padding-block: 22px !important;
  }
  .process-step:first-child { border-top: 0 !important; }

  .stats { margin-top: 40px !important; }
  .stats > div {
    padding: 22px 0;
  }
  .stats b { font-size: 2.25rem; }
  .stats b.stats-word { font-size: 2rem; }

  .final-cta .shell {
    justify-items: stretch;
    gap: 20px;
    text-align: left;
  }
  .final-cta .display { max-width: none; }
  .final-cta .lede { text-align: left; }

  .cta-band .shell { gap: 22px; }

  .product-family-grid,
  .curated-grid,
  .brand-product-grid { gap: 14px; }
  .product-family-card { border-radius: 16px; }
  .product-family-media { aspect-ratio: 16 / 10; }
  .product-family-media img { padding: 16px; }
  .product-family-body { padding: 20px; }
  .family-index { top: 20px; right: 20px; }
  .product-family-body h3 {
    max-width: calc(100% - 38px);
    font-size: 1.22rem;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .catalog-search-wp { min-height: 48px; }
  .taxonomy-nav {
    top: calc(var(--header-h-solid) + 6px);
    margin-inline: -10px;
    border-radius: 14px;
  }
  .catalog-directory .category-title,
  .category-title {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }
  .catalog-directory .category-title h2,
  .category-title h2 {
    font-size: clamp(1.9rem, 9.5vw, 2.55rem);
    line-height: 1;
  }
  .brand-catalog-section {
    margin-inline: 0;
    padding: 20px 14px;
    border-radius: 16px;
  }
  .brand-catalog-heading h2 { font-size: 2.15rem; }
  .printer-type-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .catalog-product-card .product-body-wp,
  .product-body-wp { padding: 18px; }
  .catalog-product-card .product-actions-wp {
    display: grid;
    grid-template-columns: 1fr;
  }
  .catalog-product-card .product-actions-wp .btn {
    width: 100%;
    min-width: 0;
  }

  .single-product-media { min-height: 280px; }
  .single-product-media img { padding: 18px; }

  .contact-layout { row-gap: 24px; }
  .contact-method {
    gap: 12px;
    padding: 15px;
  }
  .contact-method .icon-badge {
    width: 42px;
    height: 42px;
  }
  .contact-method b { font-size: 0.9rem; }
  .form-card,
  .contact-form-card { padding: 20px 16px; }
  .contact-form-wp,
  .field-row { gap: 14px; }
  .contact-form-wp input,
  .contact-form-wp select,
  .contact-form-wp textarea,
  .field input,
  .field select,
  .field textarea {
    min-height: 46px;
    font-size: 16px;
  }
  .contact-form-wp textarea,
  .field textarea { min-height: 118px; }

  .footer-grid {
    gap: 30px;
    padding-bottom: 34px;
  }
  .footer-brand p { max-width: none; }
  .footer-contact-list { max-width: none; }

  .wa-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 390px) {
  :root { --pad-x: 15px; }
  .display,
  .display.xl { font-size: 1.95rem; }
  .hero h1 { font-size: 2.02rem; }
  .hero h1 .h1-accent { font-size: 0.6em; }
  .hero-eyebrow { font-size: 0.54rem; }
  .brand img,
  .brand img.custom-logo { max-width: 142px; height: 40px; }
  .menu-toggle { width: 42px; height: 42px; }
  .card { padding: 21px 17px; }
}


/* Botón flotante de WhatsApp */
.fcs-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.fcs-whatsapp-float svg { width: 31px; height: 31px; display: block; }
.fcs-whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}
.fcs-whatsapp-float:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
@media (max-width: 760px) {
  .fcs-whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .fcs-whatsapp-float svg { width: 29px; height: 29px; }
}
