/* ═══════════════════════════════════════════════════════════════════════════
   DESIGN TOKENS — Importaciones Tapia S.A.C.
   Paleta de marca: AZUL + NARANJA + BLANCO (confirmada 01-ago-2026)
   Inspiración: Stripe (blue-tinted) + Vercel (layered) — sobre fondo claro
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ▸▸▸ Brand Colors */
  --brand-blue: #2058a0;
  --brand-blue-dark: #163f78;
  --brand-blue-light: #e8f1fe;
  --brand-blue-glow: rgba(32, 88, 160, 0.10);
  --brand-orange: #f97316;
  --brand-orange-dark: #ea580c;
  --brand-orange-text: #c2410c; /* contraste AA 4.5:1 sobre blanco para TEXTO */
  --brand-orange-deep: #9a3412; /* CTA hover: contraste AA con texto blanco */
  --brand-orange-light: #fff3e6;
  --brand-orange-glow: rgba(249, 115, 22, 0.12);

  /* ▸▸▸ Gradientes de marca */
  --gradient-primary: linear-gradient(135deg, #2058a0 0%, #3a7bc8 100%);
  --gradient-cta: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --brand-blue-mid: #4a8eff;
  --gradient-cta-band: linear-gradient(135deg, #163f78 0%, #2058a0 55%, var(--brand-blue-mid) 100%);
  --gradient-hero: linear-gradient(160deg, #eef4ff 0%, #ffffff 45%, #fff6ee 100%);
  --hero-grid: linear-gradient(rgba(32, 88, 160, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 88, 160, 0.045) 1px, transparent 1px);

  /* ▸▸▸ Marca accents (por marca) */
  --brand-juki: #1a1a2e;
  --brand-siruba: #0d9488;
  --brand-kingtex: #65a30d;
  --brand-detex: #2563eb;
  --brand-gemsy: #7c3aed;
  --brand-brother: #dc2626;
  --brand-singer: #e11d48;

  /* ▸▸▸ Neutral Scale */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  --surface-primary: #ffffff;
  --surface-secondary: #f8fafc;
  --surface-tertiary: #f1f5f9;
  --surface-inverse: #0f172a;
  --border-primary: #e2e8f0;
  --border-secondary: #cbd5e1;
  --border-focus: #2058a0;

  /* ▸▸▸ Glassmorphism (sobre fondo claro)
     - NAV/DROPDOWN: blur REAL (áreas pequeñas, coste aceptable en ARM)
     - resto (.glass, hero-badge): translucidez + borde + sombra SIN blur
       (el blur grande en elementos fijos = jank de scroll en CPUs sin GPU) */
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-bg-strong: rgba(255, 255, 255, 0.97);
  --glass-bg-nav: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-blur: blur(12px) saturate(160%);
  --glass-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);

  /* ▸▸▸ Shadows — blue-tinted + orange-tinted */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 10px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(32, 88, 160, 0.12), 0 6px 12px -6px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 24px 48px -8px rgba(32, 88, 160, 0.16), 0 10px 20px -8px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 1px 3px rgba(32, 88, 160, 0.05), 0 6px 20px rgba(32, 88, 160, 0.06);
  --shadow-card-hover: 0 4px 10px rgba(32, 88, 160, 0.08), 0 14px 34px rgba(32, 88, 160, 0.14);
  --shadow-whatsapp: 0 6px 18px rgba(37, 211, 102, 0.35);
  --shadow-btn-primary: 0 4px 14px rgba(32, 88, 160, 0.30);
  --shadow-btn-primary-hover: 0 8px 22px rgba(32, 88, 160, 0.38);
  --shadow-btn-orange: 0 4px 14px rgba(249, 115, 22, 0.32);
  --shadow-btn-orange-hover: 0 8px 22px rgba(249, 115, 22, 0.42);

  /* ▸▸▸ Bordes hover (consolidados) */
  --border-hover-blue: rgba(32, 88, 160, 0.35);
  --border-hover-orange: rgba(249, 115, 22, 0.35);

  /* ▸▸▸ Typography */
  --font-display: 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* ▸▸▸ Spacing — 4px base scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ▸▸▸ Radius — industrial sobrio (sep-2026: -2px, menos look "IA") */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 999px;

  /* ▸▸▸ Motion */
  --duration-fast: 150ms;
  --duration-base: 240ms;
  --duration-slow: 400ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* ▸▸▸ Layout */
  --container-max: 1140px;
  --nav-height: 68px;
  --topbar-height: 36px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE — Importaciones Tapia S.A.C.
   Reset moderno + tipografía + utilidades base
   ═══════════════════════════════════════════════════════════════════════════ */

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

html, body { overflow-x: clip; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }

input, button, textarea, select { font: inherit; color: inherit; }

button { background: none; border: none; cursor: pointer; }

a { color: var(--brand-blue); text-decoration: none; transition: color var(--duration-base) var(--ease-out); }
a:hover { color: var(--brand-blue-dark); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

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

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

/* ── Scrollbar sutil ── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--surface-secondary); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 999px; border: 2px solid var(--surface-secondary); }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ── Secciones ── */
.section { padding: var(--space-20) 0; position: relative; }
.section-alt { background: var(--surface-secondary); }
.section + .section:not(.section-alt):not(.section-faq):not(.cta-band) { border-top: 1px solid var(--border-primary); }

.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-12);
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-4);
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Solo visible para lectores de pantalla / SEO */
.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;
}

/* ── Skip-link accesible (solo visible al enfocar con teclado) ── */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--brand-blue, #2058a0);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.section-head .section-title span,
.gradient-text {
  color: var(--brand-blue);
}

/* ── Tipografía utilidades ── */
.text-gradient-blue { background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.text-muted { color: var(--text-muted); }
.text-small { font-size: 14px; }
.mono { font-family: var(--font-mono); font-size: 0.9em; }

/* ── Botones ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-btn-primary);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-primary-hover);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-orange {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: var(--shadow-btn-orange);
}
.btn-orange:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-orange-hover);
}
.btn-orange:active { transform: translateY(0) scale(0.98); }

.btn-whatsapp {
  background: #075e54;
  color: #fff;
}
.btn-whatsapp:hover {
  color: #fff;
  background: #064f47;
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--surface-primary);
  color: var(--text-primary);
  border-color: var(--border-primary);
  box-shadow: var(--shadow-xs);
}
.btn-ghost:hover {
  border-color: var(--border-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-detail {
  background: var(--surface-primary);
  color: var(--brand-blue);
  border-color: var(--border-hover-blue);
  box-shadow: none;
}
.btn-detail:hover {
  background: var(--brand-blue-light);
  border-color: var(--brand-blue);
  color: var(--brand-blue-dark);
  transform: translateY(-2px);
  box-shadow: none;
}
.btn-light { background: #fff; color: var(--brand-blue); border: 1px solid #fff; box-shadow: var(--shadow-md); }
.btn-light:hover { background: var(--surface-secondary); color: var(--brand-blue-dark); transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: var(--radius-lg); }
.hero-price, .product-price, .product-page-price { font-variant-numeric: tabular-nums; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Cards base ── */
.card {
  background: var(--surface-primary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-hover-blue);
}

/* ── Glass ── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ── Scroll reveal (solo con JS activo: el contenido nunca queda oculto) ── */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ── Responsive helpers ── */
@media (max-width: 768px) {
  .section { padding: var(--space-10) 0; }
  .container { padding: 0 var(--space-5); }
  .section-head { margin-bottom: var(--space-6); }
  .section-title { font-size: clamp(1.5rem, 4.8vw, 1.9rem); }
  .section-sub { font-size: 0.95rem; line-height: 1.6; }
  .section-eyebrow { font-size: 12px; padding: 5px 12px; }
}
@media (max-width: 480px) {
  .section { padding: var(--space-8) 0; }
  .container { padding: 0 var(--space-5); }
  .section-title { font-size: 1.4rem; }
  .page-head { padding: calc(var(--nav-height) + var(--topbar-height) + 20px) 0 var(--space-6); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPONENTS — Importaciones Tapia S.A.C.
   Nav, footer, cards, chips, modal, whatsapp float
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--glass-bg-nav);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: box-shadow var(--duration-slow) var(--ease-out);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07); }

/* ── TOPBAR (franja de utilidad sobre el nav) ── */
.topbar { background: var(--brand-blue-dark); color: #fff; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: var(--topbar-height); }
.topbar-group { display: flex; align-items: center; gap: 12px; min-width: 0; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: #dbe7f7; white-space: nowrap; text-decoration: none; }
a.topbar-item:hover { color: #fff; text-decoration: underline; }
a.topbar-item:focus-visible, .topbar-link:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,.25); flex-shrink: 0; }
.topbar-link { font-size: 12.5px; font-weight: 800; color: #fff; white-space: nowrap; text-decoration: underline; text-underline-offset: 3px; }
.topbar-link:hover { color: var(--brand-orange-light); }
.topbar-short { display: none; }
@media (max-width: 900px) { .topbar-hide-md { display: none; } }
@media (max-width: 640px) {
  .topbar-item, .topbar-link { font-size: 12px; }
  .topbar-group { gap: 8px; }
  .topbar-inner { gap: 8px; }
  .topbar-hide-sm { display: none; }
}
@media (max-width: 380px) {
  .topbar-full { display: none; }
  .topbar-short { display: inline; }
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity var(--duration-base) var(--ease-out);
}

.footer-brand img.footer-logo-img {
  height: 38px;
  width: auto;
}

/* Logo más compacto en pantallas pequeñas (después de las definiciones base) */
@media (max-width: 560px) {
  :root { --nav-height: 60px; }
  .nav-logo-img, .footer-brand img.footer-logo-img { height: 30px; }
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  color: #fff;
  box-shadow: var(--shadow-btn-primary-hover);
  transition: transform var(--duration-base) var(--ease-out);
}
.nav-logo:hover .nav-logo-icon { transform: scale(1.06) rotate(-3deg); }

.nav-logo-text {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  color: var(--text-primary); letter-spacing: -0.3px; line-height: 1.1;
}
.nav-logo-text small { display: block; font-size: 11px; font-weight: 600; color: var(--brand-orange-dark); letter-spacing: 0.05em; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links > li { position: relative; }
.nav-links a.nav-link {
  color: var(--text-secondary); padding: 9px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; transition: color var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out);
}
.nav-links a.nav-link:hover { color: var(--text-primary); background: var(--surface-tertiary); }
.nav-links a.nav-link.active { color: var(--brand-blue); background: var(--brand-blue-light); font-weight: 600; }

.nav-cta {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  padding: 10px 18px !important;
  font-weight: 600 !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-btn-primary) !important;
  margin-left: 8px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-btn-primary-hover) !important; }

/* Dropdown marcas */
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  min-width: 240px;
  opacity: 0; transform: translateY(8px) scale(0.97);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
  z-index: 300;
}
.nav-dropdown.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  color: var(--text-primary) !important;
  transition: background var(--duration-base) var(--ease-out);
}
.nav-dropdown-item:hover { background: var(--surface-tertiary); }
.nav-dropdown-flag {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 7px; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.10);
  display: flex; align-items: center; justify-content: center;
}
.nav-dropdown-flag svg { width: 100%; height: 100%; display: block; }
.nav-dropdown-item strong { display: block; font-size: 14px; font-weight: 600; }
.nav-dropdown-item span { display: block; font-size: 11px; color: var(--text-muted); }

/* Hamburger — 44×44 tap target (Apple/Google mínimo) */
.nav-hamburger {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer; width: 44px; height: 44px; padding: 0; border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-base) var(--ease-out); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── CHIPS (filtros) ── */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  min-height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-primary);
  background: var(--surface-primary);
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  cursor: pointer;
  transition: transform var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
  white-space: nowrap;
}
.chip:hover { border-color: var(--brand-blue); color: var(--brand-blue); transform: translateY(-1px); }
.chip.active {
  background: var(--gradient-primary); color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-btn-primary);
}
.chip .chip-count { font-size: 11px; font-weight: 700; opacity: 0.75; background: rgba(255,255,255,0.2); padding: 1px 7px; border-radius: 999px; }
.chip:not(.active) .chip-count { background: var(--surface-tertiary); color: var(--text-muted); }

/* ── CARD PRODUCTO ── */
.product-card {
  background: var(--surface-primary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
  display: flex; flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-hover-blue);
}

.product-card-media-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface-secondary);
  overflow: hidden;
}
.product-card-media img {
  width: 100%; height: 100%; object-fit: cover;
}

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gradient-cta);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.35);
  z-index: 2;
}

.product-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-orange-text);
}

.product-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }

.product-name {
  font-family: var(--font-display); font-size: 15.5px; font-weight: 700;
  line-height: 1.3; color: var(--text-primary);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 40px;
}

.product-specs {
  font-size: 12.5px; color: var(--text-muted);
  font-family: var(--font-mono);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.product-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: auto; padding-top: 10px; flex-wrap: wrap;
}
.product-price { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--brand-blue); }
.product-price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }

.product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.product-card-actions .btn {
  width: 100%;
  font-size: 13px;
  padding: 11px 16px;
  white-space: nowrap;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--surface-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%; max-width: 860px;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  transform: translateY(16px) scale(0.98);
  transition: transform var(--duration-base) var(--ease-out);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-media { background: var(--surface-secondary); min-height: 320px; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }

.modal-body { padding: var(--space-8); position: relative; }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: var(--radius-full);
  background: var(--surface-secondary);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1;
  transition: transform var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out);
}
.modal-close:hover { background: var(--surface-tertiary); color: var(--text-primary); transform: rotate(90deg); }

.modal-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-orange-text); margin-bottom: 6px; }
.modal-title { font-size: 22px; margin-bottom: 12px; }
.modal-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.modal-price { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--brand-blue); }
.modal-price-old { font-size: 15px; color: var(--text-muted); text-decoration: line-through; }

.specs-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.specs-table tr { border-bottom: 1px solid var(--border-primary); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 7px 4px; font-size: 13.5px; vertical-align: top; }
.specs-table td:first-child { color: var(--text-muted); font-weight: 600; width: 38%; font-family: var(--font-mono); font-size: 12.5px; }
.specs-table td:last-child { color: var(--text-primary); }

.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-actions .btn { flex: 1; min-width: 160px; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 150;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #075e54;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-whatsapp);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
  animation: wa-pulse 2.6s var(--ease-out) infinite;
  animation-play-state: paused; /* se activa con .wa-pulse-on (scroll/hover) — el repaint continuo castiga CPU ARM + LCP simulado */
}
.wa-pulse-on .wa-float, .wa-float:hover, .wa-float:focus-visible { animation-play-state: running; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(7, 94, 84, 0.5); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(7, 94, 84, 0.35), 0 0 0 0 rgba(7, 94, 84, 0.35); }
  50% { box-shadow: 0 6px 18px rgba(7, 94, 84, 0.35), 0 0 0 14px rgba(7, 94, 84, 0); }
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #0f1d3a 0%, #0b162e 100%);
  color: #cbd5e1;
  padding: var(--space-16) 0 0;
  margin-top: var(--space-16);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,142,255,0.35), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
}
.footer-brand-desc {
  font-size: 14px; line-height: 1.7; color: #94a3b8; margin-top: var(--space-3);
  max-width: 320px;
}
.footer h3 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--space-4); opacity: 0.95; }
.footer a { color: #94a3b8; transition: color var(--duration-base) var(--ease-out); }
.footer a:hover { color: #fff; }
.footer p { font-size: 14px; line-height: 1.7; }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-2); }
.footer-brand .nav-logo-icon { width: 38px; height: 38px; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; }

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: var(--space-6) 0;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap;
  font-size: 13px; color: #94a3b8;
}
@media (max-width: 560px) {
  /* aire para que el FAB de WhatsApp no tape el RUC */
  .footer-bottom { padding-bottom: calc(var(--space-6) + 56px); }
}

.footer-social { display: inline-flex; align-items: center; gap: 10px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(148,163,184,.28); color: #cbd5e1; transition: border-color .18s ease, color .18s ease, transform .18s ease; }
.footer-social a:hover { color: #fff; border-color: var(--brand-orange, #f97316); transform: translateY(-1px); }
.footer-social svg { width: 16px; height: 16px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .product-price-row { flex-wrap: wrap; row-gap: 2px; }
  .nav-links {
    position: fixed; top: calc(var(--nav-height) + var(--topbar-height)); left: 0; right: 0;
    background: #ffffff;
    flex-direction: column; align-items: stretch;
    padding: var(--space-4);
    gap: 4px;
    border-bottom: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(calc(-100% - var(--nav-height) - var(--topbar-height)));
    visibility: hidden;
    transition: transform var(--duration-slow) var(--ease-out), visibility 0s linear var(--duration-slow);
    max-height: calc(100vh - var(--nav-height) - var(--topbar-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform var(--duration-slow) var(--ease-out), visibility 0s;
  }
  .nav-links > li { width: 100%; }
  .nav-links a.nav-link, .nav-cta { display: block; text-align: center; width: 100%; margin: 0; }
  .nav-dropdown { position: static; opacity: 1; transform: none; pointer-events: auto; box-shadow: none; border: none; background: transparent; padding: 0 0 0 16px; min-width: 0; }
  .nav-dropdown:not(.visible) { display: none; }
  .nav-hamburger { display: flex; }

  .modal { grid-template-columns: 1fr; max-width: 520px; }
  .modal-media { min-height: 220px; }
  .modal-body { padding: var(--space-6); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

@media (max-width: 640px) {
  .product-card-body { padding: 13px 14px 14px; gap: 5px; }
  .product-name { font-size: 13.5px; min-height: auto; line-height: 1.25; }
  .product-cat { font-size: 10.5px; }
  .product-specs { font-size: 11.5px; }
  .product-price { font-size: 16px; }
  .product-price-old { font-size: 11.5px; }
  .chip { padding: 8px 13px; font-size: 12px; }
  .nav-dropdown-item { padding: 9px 10px; }
}

@media (max-width: 560px) {
  .footer { padding: var(--space-10) 0 var(--space-6); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-col h4, .footer-col h3 { margin-bottom: var(--space-3); }
  .wa-float { bottom: 14px; right: 12px; width: 48px; height: 48px; }
  .wa-float svg { width: 25px; height: 25px; }
  /* Evita que el FAB de WhatsApp tape contenido scrolleable en el fondo */
  body { padding-bottom: 0; }
}

/* Hallmark · macrostructure: Split Studio · tone: industrial premium · anchor hue: azul Tapia · contrast: pass (40-41) · mobile: pass (34,49,50-57) */
/* ═══════════════════════════════════════════════════════════════════════════
   PAGES — Importaciones Tapia S.A.C.
   Hero, marcas, categorías, why, CTA, catálogo, contacto
   ═══════════════════════════════════════════════════════════════════════════ */

.text-center { text-align: center; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--topbar-height) + 36px) 0 var(--space-10);
  overflow: hidden;
  background: var(--hero-grid), var(--gradient-hero);
  background-size: 44px 44px, 44px 44px, auto;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
/* radial-gradients — orbs decorativos con cuerpo (puros, sin blur: seguro en ARM) */
.hero-glow-blue {
  width: 680px; height: 680px;
  background: radial-gradient(circle at center, rgba(32, 88, 160, 0.16) 0%, rgba(32, 88, 160, 0.05) 45%, transparent 70%);
  top: -220px; left: -180px; opacity: 0.9;
}
.hero-glow-orange {
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.14) 0%, rgba(249, 115, 22, 0.04) 45%, transparent 70%);
  bottom: -180px; right: -140px; opacity: 0.9;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 7px 14px; border-radius: var(--radius-full);
  font-size: 12.5px; font-weight: 600; color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-4);
}

.hero-title {
  font-size: clamp(2.05rem, 5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}
.hero-title span {
  color: var(--brand-blue);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: var(--space-6);
}
.hero-sub strong { color: var(--text-primary); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: var(--space-6); }
.hero-actions .btn-ghost svg { color: #25D366; }


/* ── Barra prueba social (post-hero, pre-marcas) ── */
.proof-bar {
  background: var(--surface-primary);
  border-top: 1px solid var(--border-primary);
  border-bottom: 1px solid var(--border-primary);
  padding: 18px 0;
}
.proof-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px 24px; flex-wrap: wrap;
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
  text-align: center;
}
.proof-bar-inner strong { color: var(--text-primary); font-weight: 800; }
.proof-bar-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-orange); flex-shrink: 0; opacity: 0.9; }
.proof-bar a { color: var(--brand-blue); font-weight: 700; }
.proof-bar a:hover { color: var(--brand-blue-dark); text-decoration: underline; }
@media (max-width: 560px) {
  .proof-bar { padding: 16px 0; }
  .proof-bar-inner { flex-direction: column; gap: 8px; font-size: 13px; }
  .proof-bar-dot { display: none; }
}

/* Visual: card glass del producto destacado */
.hero-visual { position: relative; max-width: 440px; margin-inline: auto; }


/* ═══════════════════ MARCAS ═══════════════════ */
.brands-strip {
  display: flex; gap: 12px;
  overflow-x: auto; overflow-y: hidden;
  padding-bottom: 8px; margin: 0 calc(-1 * var(--space-6));
  padding-left: var(--space-6); padding-right: var(--space-6);
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.brands-strip::-webkit-scrollbar { display: none; }
.brands-strip .brand-card {
  min-width: 260px; max-width: 300px; flex: 0 0 280px;
  scroll-snap-align: start;
}
@media (min-width: 1100px) {
  .brands-strip { overflow: visible; flex-wrap: wrap; justify-content: center; }
  .brands-strip .brand-card { flex: 1 1 280px; min-width: 260px; max-width: 340px; }
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.brand-card {
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
  border-top: 3px solid transparent;
}
.brand-card[data-brand="juki"] { border-top-color: var(--brand-juki); }
.brand-card[data-brand="siruba"] { border-top-color: var(--brand-siruba); }
.brand-card[data-brand="detex"] { border-top-color: var(--brand-detex); }
.brand-card[data-brand="kingtex"] { border-top-color: var(--brand-kingtex); }
.brand-card[data-brand="gemsy"] { border-top-color: var(--brand-gemsy); }
.brand-card[data-brand="brother"] { border-top-color: var(--brand-brother); }
.brand-card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}
.brand-card:hover::after { opacity: 1; }
.brand-flag {
  width: 44px; height: 44px;
  border-radius: 12px; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.10);
  display: flex; align-items: center; justify-content: center;
}
.brand-flag svg { width: 100%; height: 100%; display: block; }
.brand-logo {
  height: 30px; width: auto; max-width: 150px;
  object-fit: contain; object-position: left center;
  display: block; margin-bottom: 2px;
}
.marca-logo {
  height: 34px; width: auto; max-width: 170px;
  object-fit: contain; object-position: left center;
  display: block; margin-bottom: 14px;
}
.brand-card h3 { font-size: 21px; }
.brand-card p { font-size: 14px; color: var(--text-secondary); flex: 1; }
.brand-link { font-size: 14px; font-weight: 600; color: var(--brand-blue); }

/* ═════════ TIRA DE LOGOS home #marcas (sin cajas ni texto) ═════════ */
@media (max-width: 640px) {
}

/* ═══════════════════ CATEGORÍAS ═══════════════════ */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.cat-card {
  display: flex; align-items: center; gap: 16px;
  padding: var(--space-5);
  text-decoration: none !important;
  color: var(--text-primary) !important;
}
.cat-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--brand-blue-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  transition: transform var(--duration-base) var(--ease-out);
}
.cat-card:hover .cat-icon { transform: scale(1.12) rotate(-6deg); }
.cat-info { flex: 1; min-width: 0; }
.cat-info h3 { font-size: 15.5px; margin-bottom: 3px; }
.cat-info p {
  font-size: 12.5px; color: var(--text-muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cat-count {
  flex-shrink: 0;
  font-size: 11.5px; font-weight: 700;
  background: var(--surface-tertiary);
  color: var(--text-secondary);
  padding: 5px 11px; border-radius: var(--radius-full);
  white-space: nowrap;
}

/* ═══════════════════ HERO MARCAS (tira de logos oficiales) ═══════════════════ */
.hero-brands { margin-top: var(--space-10); padding-top: var(--space-6); border-top: 1px solid var(--border-primary); display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap; position: relative; }
.hero-brands-label { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
.hero-brands-row { display: flex; align-items: center; gap: var(--space-8); flex-wrap: wrap; }
.hero-brands-row img { height: 26px; width: auto; }
@media (max-width: 640px) {
  .hero-brands { gap: var(--space-4); }
  .hero-brands-row { gap: var(--space-5) var(--space-6); justify-content: center; }
  .hero-brands-row img { height: 21px; }
}

/* ═══════════════════ CARRUSEL CATEGORÍAS (home) ═══════════════════ */
.cat-carousel { position: relative; }
.cat-track { display: grid; grid-auto-flow: column; grid-auto-columns: 250px; gap: var(--space-5); overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 12px; scrollbar-width: none; }
.cat-track::-webkit-scrollbar { display: none; }
.cat-card { scroll-snap-align: start; display: block; padding: 0; background: var(--surface-primary); border: 1px solid var(--border-primary); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); text-decoration: none !important; color: var(--text-primary) !important; overflow: hidden; transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out); }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--border-hover-blue); }
.cat-card:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 2px; }
.cat-photo { display: block; aspect-ratio: 4 / 3; background: var(--surface-secondary); overflow: hidden; }
.cat-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-name { display: block; font-family: var(--font-display); font-weight: 800; font-size: 16.5px; padding: 14px 16px 0; }
.cat-count { display: block; font-size: 12.5px; font-weight: 400; color: var(--text-muted); background: none; border: 0; border-radius: 0; white-space: normal; padding: 2px 16px 16px; }
.cat-arrow { position: absolute; top: 34%; width: 44px; height: 44px; border-radius: 50%; background: var(--surface-primary); border: 1px solid var(--border-primary); box-shadow: var(--shadow-md); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; padding: 0; }
.cat-arrow svg { width: 20px; height: 20px; }
.cat-arrow:hover { border-color: var(--border-hover-blue); }
.cat-arrow:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 2px; }
.cat-arrow[aria-disabled="true"] { opacity: .35; cursor: default; }
.cat-prev { left: 8px; }
.cat-next { right: 8px; }
@media (max-width: 1100px) { .cat-track { grid-auto-columns: 240px; } }
@media (max-width: 768px) {
  .cat-track { grid-auto-columns: 240px; gap: var(--space-4); }
  .cat-name { font-size: 15px; padding: 12px 14px 0; }
  .cat-count { padding: 2px 14px 14px; }
}
@media (max-width: 480px) {
  .cat-track { grid-auto-columns: 62%; }
  .cat-arrow { display: none; }
}

/* ═══════════════════ HERO BADGES FLOTANTES ═══════════════════ */
.hero-float-badge { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px; background: var(--glass-bg-strong); border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); border-radius: var(--radius-full); padding: 9px 15px; font-size: 12.5px; font-weight: 700; color: var(--text-primary); white-space: nowrap; }
.hero-float-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-float-garantia { top: 4%; left: -10px; }
.hero-float-garantia svg { color: var(--brand-orange-dark); }
@media (max-width: 560px) {
  .hero-float-garantia { top: 8px; left: 8px; }
  .hero-float-badge { font-size: 11.5px; padding: 8px 12px; }
}

/* ═══════════════════ WHY ═══════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.why-card {
  background: var(--surface-primary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  text-align: center;
  min-height: 220px;
  display: flex; flex-direction: column; align-items: center;
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-hover-orange);
}
.why-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--brand-blue-light);
  border-radius: 50%;
  color: var(--brand-blue);
  font-size: 22px;
  margin-bottom: var(--space-4);
}
.why-icon svg { width: 22px; height: 22px; }
.why-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--brand-blue); color: #fff;
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  margin-bottom: 10px;
}
.why-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-secondary); }

/* ═══════════════════ SECCIÓN AZUL (contraste de ritmo: fondo profundo de marca) ═══════════════════ */
.section-blue { background: linear-gradient(135deg, #163f78 0%, #1d4e8f 60%, #2058a0 100%); }
.section-blue .section-title { color: #fff; }
.section-blue .section-title span { color: #ffb23d; }
.section-blue .section-sub { color: #cbd5e1; }
.section-blue .why-card { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.16); box-shadow: none; }
.section-blue .why-card:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--brand-orange); box-shadow: var(--shadow-lg); }

/* ═══════════════════ POR QUÉ (home #porque): split dossier industrial ═══════════════════ */
#porque .porque-grid { display: grid; grid-template-columns: minmax(0,5fr) minmax(0,7fr); gap: clamp(32px,4.5vw,64px); align-items: start; }
#porque .section-head { max-width: none; margin: 0; text-align: left; }
#porque .porque-link { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--space-5); font-size: 15px; font-weight: 700; color: #fff; text-decoration: underline; text-underline-offset: 4px; }
#porque .porque-link:hover { color: var(--brand-orange-light); }
#porque .porque-link:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
#porque .why-grid { grid-template-columns: minmax(0,1fr); gap: 0; counter-reset: paso; }
#porque .why-card { background: transparent; border: 0; border-radius: 0; box-shadow: none; text-align: left; min-width: 0; min-height: 0; padding: var(--space-5) 0; display: grid; grid-template-columns: 48px minmax(0,1fr); gap: var(--space-4); align-items: start; }
#porque .why-card::before { counter-increment: paso; content: "0" counter(paso); grid-column: 1; grid-row: 1 / span 2; font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: .08em; color: #ffb23d; padding-top: 4px; }
#porque .why-card + .why-card { border-top: 1px solid rgba(255,255,255,.16); }
#porque .why-card:hover { transform: none; background: transparent; box-shadow: none; border-top-color: rgba(255,255,255,.16); }
#porque .why-icon { display: none; }
#porque .why-card h3 { grid-column: 2; grid-row: 1; font-size: 17px; margin-bottom: 6px; }
#porque .why-card p { grid-column: 2; grid-row: 2; font-size: 14.5px; max-width: 56ch; }
@media (max-width: 900px) {
  #porque .porque-grid { grid-template-columns: minmax(0,1fr); gap: var(--space-6); }
}
.section-blue .why-card h3 { color: #fff; }
.section-blue .why-card p { color: #cbd5e1; }
.section-blue .why-icon { background: #fff; color: var(--brand-blue); }

/* ═══════════════════ TIPS TIKTOK (home) ═══════════════════ */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 980px;
  margin-inline: auto;
}
.tiktok-card {
  overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--surface-primary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}
.tiktok-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-hover-blue);
}
.tiktok-media {
  aspect-ratio: 9 / 16;
  background: #0f172a;
  overflow: hidden;
}
.tiktok-media iframe { width: 100%; height: 100%; border: 0; display: block; }
.tiktok-card-body {
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.tiktok-tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-orange-text); background: var(--brand-orange-light);
  padding: 4px 10px; border-radius: 999px;
}
.tiktok-card-body h3 { font-size: 16px; line-height: 1.3; }
.tiktok-card-body p { font-size: 13.5px; color: var(--text-secondary); flex: 1; }

/* ═══════════════════ CTA BAND ═══════════════════ */
.cta-band {
  background: var(--gradient-cta-band);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.18), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(249,115,22,0.35), transparent 45%);
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-8);
  padding: var(--space-16) var(--space-6);
  position: relative;
}
@media (max-width: 640px) {
  .cta-inner { flex-direction: column; text-align: center; gap: 20px; padding: var(--space-10) var(--space-6); }
}
.cta-inner h2 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 15.5px; max-width: 520px; }

/* ═══════════════════ CTA TARJETA (home: rompe la monotonía azul-azul) ═══════════════════ */
.cta-card-wrap { background: var(--surface-secondary); border-top: 1px solid var(--border-primary); padding: var(--space-16) 0; }
.cta-card-wrap::before { display: none; }
.cta-card { background: var(--surface-primary); border: 1px solid var(--border-primary); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: var(--space-8); display: flex; align-items: center; gap: var(--space-6); }
.cta-card-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; flex-shrink: 0; background: var(--brand-orange-light); color: var(--brand-orange-dark); border-radius: 50%; }
.cta-card-icon svg { width: 26px; height: 26px; }
.cta-card-text { flex: 1; min-width: 0; }
.cta-card-eyebrow { display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-orange-dark); background: var(--brand-orange-light); border-radius: var(--radius-full); padding: 5px 12px; margin-bottom: 10px; }
.cta-card-text h2 { color: var(--text-primary); font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 6px; }
.cta-card-text p { color: var(--text-secondary); font-size: 15px; max-width: 560px; }
.cta-card .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .cta-card { flex-direction: column; text-align: center; padding: var(--space-6) var(--space-5); }
  .cta-card .btn { width: 100%; }
}

/* ═══════════════════ PAGE HEAD (catálogo/contacto) ═══════════════════ */
.page-head {
  padding: calc(var(--nav-height) + var(--topbar-height) + 56px) 0 var(--space-10);
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border-primary);
}
.page-title {
  font-size: clamp(1.9rem, 4.4vw, 2.7rem);
  margin-bottom: 10px;
}
.page-sub { color: var(--text-secondary); max-width: 620px; font-size: 1.02rem; }
.page-head + .section { padding-top: var(--space-10); }

/* ═══════════════════ CATÁLOGO TOOLS ═══════════════════ */
.catalog-tools {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  margin-top: var(--space-6); flex-wrap: wrap;
}
.search-box {
  position: relative;
  flex: 1; min-width: 260px; max-width: 460px;
}
.search-box svg {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--text-muted);
  pointer-events: none;
}
.search-box input {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  background: var(--surface-primary);
  font-size: 14.5px;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.search-box input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px var(--brand-blue-glow);
}
.results-info { font-size: 13.5px; color: var(--text-muted); }

.chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: var(--space-5);
}

/* ═══════════════════ GRID CATÁLOGO ═══════════════════ */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* ═══════════════════ CONTACTO ═══════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.contact-grid--with-gap {
  margin-top: var(--space-10);
  margin-bottom: var(--space-6);
}
.contact-card { padding: var(--space-6); display: flex; flex-direction: column; gap: 8px; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--brand-blue-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.contact-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--brand-orange-text);
  margin-top: 4px;
}
.contact-card h3 { font-size: 18px; }
.contact-card p { font-size: 14px; color: var(--text-secondary); }
.contact-list { display: flex; flex-direction: column; gap: 6px; font-size: 14px; margin: 8px 0 16px; flex: 1; }

.contact-form-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-8);
  padding: var(--space-8);
}
.form-info h3 { font-size: 20px; margin-bottom: 10px; }
.form-info p { font-size: 14.5px; color: var(--text-secondary); }
.contact-form { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 600; }
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  background: var(--surface-secondary);
  font-size: 14.5px;
  resize: vertical;
  transition: border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: var(--surface-primary);
  box-shadow: 0 0 0 4px var(--brand-blue-glow);
}
.contact-form .btn { margin-top: 4px; }

/* ═══════════════════ MAPA ═══════════════════ */

.locales-map {
  width: 100%;
  height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-primary);
  box-shadow: var(--shadow-lg);
  z-index: 1;
  position: relative;
  background: var(--surface-secondary);
}
.locales-map .leaflet-container { font-family: var(--font-body); }

.leaflet-popup-content-wrapper {
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  padding: 2px;
}
.leaflet-popup-content { margin: 14px 16px; line-height: 1.4; }

.map-popup strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14.5px;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.map-popup span {
  display: block;
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  max-width: 220px;
}
.map-popup-tel {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 8px;
}
.map-popup-tel:hover { color: var(--brand-blue-dark); }
.map-popup-btn {
  display: block;
  text-align: center;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity var(--duration-base) var(--ease-out);
}
.map-popup-btn:hover { color: #fff; opacity: 0.9; }

@media (max-width: 768px) {
  .locales-map { height: 340px; }
}

.expo-google-map {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  border-radius: 24px;
  background: #e8f1fe;
  box-shadow: 0 16px 36px -24px rgba(22,63,120,.42);
}
@media (max-width: 768px) {
  .expo-google-map { height: 340px; border-radius: 18px; }
}

/* ═══════════════════ ICONOS SVG (reemplazo de emojis) ═══════════════════ */
.hero-badge svg{width:15px;height:15px;flex-shrink:0}
.hero-badge svg { color: var(--brand-blue); }
.why-icon svg { width: 22px; height: 22px; color: var(--brand-orange-dark); }
.contact-icon svg { width: 24px; height: 24px; color: var(--brand-blue); }
.contact-list li { display: flex; align-items: flex-start; gap: 8px; }
.contact-list svg { width: 15px; height: 15px; color: var(--brand-orange-dark); flex-shrink: 0; margin-top: 3px; }
.section-eyebrow svg { width: 14px; height: 14px; color: var(--brand-blue); }
.footer-col li { display: flex; align-items: flex-start; gap: 8px; }
.footer-col li svg { width: 15px; height: 15px; color: var(--brand-orange-dark); flex-shrink: 0; margin-top: 3px; }

/* ═══════════════════ ESTADO VACÍO (catálogo sin resultados) ═══════════════════ */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-16) var(--space-8);
  border: 1.5px dashed var(--border-secondary);
  border-radius: var(--radius-xl);
  background: var(--surface-secondary);
}
.empty-state svg { width: 34px; height: 34px; color: var(--brand-blue); margin: 0 auto var(--space-4); display: block; }
.empty-state h3 { font-size: 19px; margin-bottom: 8px; }
.empty-state p { color: var(--text-secondary); font-size: 14.5px; max-width: 420px; margin: 0 auto var(--space-6); }
.empty-state .btn { display: inline-flex; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .hero { padding: calc(var(--nav-height) + var(--topbar-height) + 28px) 0 var(--space-8); }
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  @keyframes hero-float-mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .brands-grid, .cats-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .tiktok-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: calc(var(--nav-height) + var(--topbar-height) + 20px) 0 var(--space-8); }
  .hero-badge { font-size: 12px; padding: 6px 12px; margin-bottom: var(--space-3); }
  .hero-title { font-size: clamp(2rem, 5.5vw, 2.9rem); line-height: 1.08; letter-spacing: -0.025em; margin-bottom: var(--space-3); }
  .hero-sub { font-size: 0.95rem; margin-bottom: var(--space-4); }
  .hero-actions { gap: 8px; margin-bottom: var(--space-4); }
  .hero-actions .btn { width: 100%; padding: 12px 20px; font-size: 14.5px; }
  .brands-grid, .cats-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cta-inner { flex-direction: column; align-items: stretch; gap: var(--space-4); padding: var(--space-8) var(--space-5); }
  .cta-inner .btn { width: 100%; text-align: center; justify-content: center; }
  .cta-inner h2 { font-size: 1.35rem; }
  .cta-inner p { font-size: 13.5px; }
  .contact-form-card { grid-template-columns: 1fr; gap: var(--space-5); padding: var(--space-5); }
  .contact-card { padding: var(--space-5); }
  .section { padding: var(--space-10) 0; }
  .section-head { margin-bottom: var(--space-6); }
  /* Product page más compacto en tablet */
  .breadcrumbs { padding-top: calc(var(--nav-height) + var(--topbar-height) + 16px); }
  .product-page { gap: var(--space-6); padding: var(--space-6) 0 var(--space-8); }
  .product-page-actions .btn { flex: 1; min-width: 0; }
  .section-related .catalog-grid { gap: 12px; }
}

@media (max-width: 640px) {
  .hero { padding-top: calc(var(--nav-height) + var(--topbar-height) + 16px); padding-bottom: var(--space-6); }
  /* TikTok: 1 columna, ratio menos alto para no dominar el scroll en móvil */
  .tiktok-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .tiktok-media { aspect-ratio: 4 / 5; }
  /* Precios: tabla → cards apiladas (mucho más escaneable en móvil) */
  .precios-wrap { overflow: visible !important; }
  .precios-wrap .specs-table { border-collapse: separate; border-spacing: 0; }
  .precios-wrap .specs-table thead { display: none; }
  .precios-wrap .specs-table tbody { display: grid; gap: 12px; }
  .precios-wrap .specs-table tr { display: flex; flex-direction: column; gap: 6px; background: var(--surface-primary); border: 1px solid var(--border-primary); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-card); }
  .precios-wrap .specs-table td { padding: 0; border: none; font-size: 14px; }
  .precios-wrap .specs-table td:first-child { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text-primary); order: 1; line-height: 1.3; }
  .precios-wrap .specs-table td:first-child a { color: var(--text-primary); }
  .precios-wrap .specs-table td:nth-child(2) { order: 2; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-orange-text); background: var(--brand-orange-light); padding: 4px 10px; border-radius: var(--radius-full); align-self: flex-start; }
  .precios-wrap .specs-table td:last-child { order: 3; display: flex; align-items: baseline; gap: 8px; margin-top: 2px; flex-wrap: wrap; }
  .precios-wrap .specs-table td:last-child strong { font-size: 18px; color: var(--brand-blue); }
  /* Evita que el FAB tape la última card de precios */
  .precios-wrap { padding-bottom: 72px; }
  .hero-glow-blue, .hero-glow-orange { width: 360px; height: 360px; opacity: 0.6; }
  /* FAQ más compacto */
  .faq-item summary { font-size: 14.5px; padding: 14px 16px; }
  .faq-item > p { font-size: 13.5px; padding: 0 16px 14px; }
  /* Product page: specs y beneficios más respirables */
  .product-page-title { font-size: 1.55rem; }
  .product-page-price { font-size: 28px; }
  .product-page-desc { font-size: 14px; }
  .product-page-actions { gap: 10px; }
  .product-page-actions .btn { width: 100%; }
}

@media (max-width: 380px) {
  .catalog-grid { grid-template-columns: 1fr; gap: 12px; }
  /* Chips: carrusel horizontal sin barra visible */
  .chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; margin-right: calc(-1 * var(--space-5)); padding-right: var(--space-5); -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 6px; }
  .chips::-webkit-scrollbar { display: none; }
  .hero { padding-top: calc(var(--nav-height) + var(--topbar-height) + 12px); }
  .hero-title { font-size: 1.95rem; line-height: 1.08; }
  .hero-badge { font-size: 11.5px; }
  .product-card-body { padding: 13px 14px 14px; }
  .page-title { font-size: 1.5rem; }
  .page-sub { font-size: 0.92rem; }
}

/* ═══════════════════ PREGUNTAS FRECUENTES (FAQ) ═══════════════════ */
.section-faq { background: var(--surface-secondary); }
/* anclas no quedan tapadas por el header fijo (nav-height 68px desktop / 60px mobile) */
.section[id] { scroll-margin-top: calc(var(--nav-height) + var(--topbar-height) + 16px); }

/* ═══════════════════ MINI-MAPAS GOOGLE (1 por local) ═══════════════════ */
.minimap-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: var(--space-6); margin-top: var(--space-6); }
.minimap-card { margin: 0; background: var(--surface-primary); border: 1px solid var(--border-primary); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; }
.minimap-card iframe { display: block; width: 100%; height: 300px; border: 0; }
.minimap-card figcaption { padding: var(--space-4) var(--space-5); display: flex; flex-direction: column; gap: 4px; }
.minimap-card strong { font-family: var(--font-display); font-size: 16.5px; }
.minimap-card span { font-size: 13px; color: var(--text-secondary); }
.minimap-card a { font-size: 13.5px; font-weight: 700; }
@media (max-width: 768px) {
  .minimap-grid { grid-template-columns: minmax(0,1fr); }
  .minimap-card iframe { height: 260px; }
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-3);
}
.faq-item {
  background: var(--surface-primary);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: var(--brand-blue); }
.faq-item[open] { border-color: var(--brand-blue); box-shadow: 0 6px 20px var(--brand-blue-glow); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text-primary);
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  width: 18px;
  height: 18px;
  color: var(--brand-orange-dark);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item > p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ═══════════════ PÁGINA DE PRODUCTO (v2.1.0) ═══════════════ */
.breadcrumbs {
  padding: calc(var(--nav-height) + var(--topbar-height) + 28px) 0 0;
  font-size: 13px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}
.breadcrumbs li + li::before {
  content: "/";
  color: var(--border-secondary);
}
.breadcrumbs a {
  color: var(--brand-blue);
  font-weight: 500;
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li[aria-current="page"] {
  color: var(--text-secondary);
  font-weight: 600;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--space-10);
  align-items: start;
  padding: var(--space-10) 0 var(--space-12);
}
.product-page-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-secondary);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-primary);
  aspect-ratio: 4/3;
}
.product-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-page-info { display: flex; flex-direction: column; gap: var(--space-4); }
.product-page-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}
.product-page-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.product-page-price {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--brand-blue);
}
.product-page-price-old {
  font-size: 17px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-page-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.product-page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: var(--space-2);
}
.product-benefits {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.product-benefits svg {
  width: 20px;
  height: 20px;
  color: var(--brand-orange-dark);
  flex-shrink: 0;
  margin-top: 1px;
}
.product-benefits strong { color: var(--text-primary); }
.product-page-specs {
  border-top: 1px solid var(--border-primary);
  padding-top: var(--space-8);
}
.product-page-specs .specs-table { max-width: 640px; }

.section-related {
  background: var(--surface-secondary);
  border-top: 1px solid var(--border-primary);
}
.section-related .catalog-grid { margin-top: var(--space-8); }

@media (max-width: 900px) {
  .product-page { grid-template-columns: 1fr; gap: var(--space-6); }
  .product-page-media { aspect-ratio: 4/3; }
}
/* ═══════════════════ EXPO TAPIA — v2 CLEAN flyer-inspired ═══════════════════ */
.expo-hero {
  position: relative;
  padding: calc(var(--nav-height) + 36px) 0 var(--space-12);
  overflow: hidden;
  background: var(--hero-grid), var(--gradient-hero);
  background-size: 44px 44px, 44px 44px, auto;
}
.expo-hero-glow-blue {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: 720px; height: 720px;
  background: radial-gradient(circle at center, rgba(32,88,160,0.08) 0%, rgba(32,88,160,0.02) 45%, transparent 70%);
  top: -220px; left: -180px; opacity: 0.9;
}
.expo-hero-glow-orange {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: 620px; height: 620px;
  background: radial-gradient(circle at center, rgba(249,115,22,0.07) 0%, rgba(249,115,22,0.015) 45%, transparent 70%);
  bottom: -180px; right: -140px; opacity: 0.7;
}
.expo-hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--space-10);
  align-items: start;
  position: relative;
}
.expo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border-primary);
  padding: 7px 14px; border-radius: var(--radius-full);
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-blue); box-shadow: var(--shadow-sm);
}
.expo-badge svg { width: 13px; height: 13px; color: var(--brand-orange-dark); }
.expo-title-ref { } /* keep */
.expo-hero-copy { max-width: 560px; }
.expo-hero-logo { margin: 0 0 16px; }
.expo-hero-logo img {
  width: min(300px, 70vw);
  height: auto;
  display: block;
}
.expo-title {
  font-size: clamp(2.2rem, 4.8vw, 3.25rem);
  line-height: 1.02; letter-spacing: -0.035em;
  margin: 10px 0 14px;
  text-align: left;
}
@media (max-width: 900px) {
  .expo-hero-copy { max-width: 640px; }
}

.expo-title span { color: var(--brand-blue); }
.expo-title em { font-style: normal; background: var(--gradient-cta); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.expo-sub { font-size: 1.06rem; color: var(--text-secondary); line-height: 1.6; max-width: 540px; padding-left: 14px; border-left: 3px solid var(--brand-orange); }
.expo-sub strong { color: var(--text-primary); }
.expo-meta {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.expo-meta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg-strong); border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 9px 14px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 700; color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}
.expo-meta-pill svg { width: 16px; height: 16px; color: var(--brand-blue); flex-shrink: 0; }
.expo-meta-pill--accent { border-color: rgba(249,115,22,0.35); background: #fff7ed; }
.expo-meta-pill--accent svg { color: var(--brand-orange-dark); }
.expo-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.expo-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 18px; font-size: 13px; color: var(--text-secondary); }
.expo-trust li { display: flex; align-items: center; gap: 8px; }
.expo-trust svg { color: #16a34a; }
/* Franja de marcas */
.expo-brands { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--border-primary); }
.expo-brands-label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.expo-brands-row { display: flex; flex-wrap: wrap; gap: 8px; }
.expo-brands-row span {
  font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: 0.04em;
  color: var(--brand-blue-dark); background: var(--brand-blue-light);
  padding: 5px 11px; border-radius: 8px;
}
/* Card con profundidad */
.expo-card {
  background: linear-gradient(165deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid rgba(32,88,160,0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(32,88,160,0.04), 0 30px 60px -20px rgba(32,88,160,0.28);
  overflow: hidden;
  position: relative;
}
.expo-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 80% at 100% 0%, rgba(249,115,22,0.10) 0%, transparent 55%);
}
.expo-card-head {
  background: var(--gradient-primary);
  color: #fff;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  position: relative;
}
.expo-card-head strong { font-family: var(--font-display); font-size: 15px; letter-spacing: -0.01em; }
.expo-card-head span { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(255,255,255,0.18); padding: 5px 10px; border-radius: 999px; }
.expo-card-body { padding: 22px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.expo-countdown {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  background: linear-gradient(160deg, #163f78 0%, #2058a0 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 16px 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 10px 24px -10px rgba(32,88,160,0.5);
}
.expo-countdown-item { text-align: center; }
.expo-countdown-item b { display: block; font-family: var(--font-display); font-size: 34px; font-weight: 800; color: #fff; line-height: 1; text-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.expo-countdown-item span { display: block; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 6px; }
.expo-kv { display: flex; gap: 12px; align-items: flex-start; }
.expo-kv-icon { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--brand-blue-light); color: var(--brand-blue); }
.expo-kv-icon svg { width: 18px; height: 18px; }
.expo-kv-icon--orange { background: var(--brand-orange-light); color: var(--brand-orange-dark); }
.expo-kv b { display: block; font-size: 13.5px; line-height: 1.25; }
.expo-kv span { display: block; font-size: 12.8px; color: var(--text-secondary); line-height: 1.5; }
.expo-card-foot { display: flex; flex-direction: column; gap: 10px; }
.expo-note { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; background: var(--surface-secondary); border: 1px dashed var(--border-primary); border-radius: 10px; padding: 10px 12px; }
/* Beneficios: grid de 6 tarjetas con iconos */
.expo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--space-8);
}
.expo-benefit {
  position: relative;
  background: var(--glass-bg-strong);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.expo-benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(32,88,160,0.25);
}
.expo-benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--gradient-primary); color: #fff;
  box-shadow: var(--shadow-btn-primary);
  margin-bottom: 16px;
}
.expo-benefit-icon svg { width: 24px; height: 24px; }
.expo-benefit h3 {
  font-family: var(--font-display);
  font-size: 1.06rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 8px; line-height: 1.25;
}
.expo-benefit p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin: 0;
}
.expo-benefit--accent {
  background: var(--gradient-cta-band);
  border-color: transparent;
}
.expo-benefit--accent .expo-benefit-icon {
  background: rgba(255,255,255,0.16); color: #fff; box-shadow: none;
}
.expo-benefit--accent h3, .expo-benefit--accent p { color: #fff; }
@media (max-width: 1024px) {
  .expo-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .expo-benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .expo-benefit { padding: 22px 20px; }
}
/* fix-expo-map-desktop-width-2026-08-28: priorizar la lectura del mapa en escritorio */
.expo-sede-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-8); align-items: start; }
.expo-sede-list { display: flex; flex-direction: column; gap: 12px; }
.expo-sede-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px; background: var(--surface-primary); border: 1px solid var(--border-primary); border-radius: var(--radius-md); }
.expo-sede-item svg { width: 18px; height: 18px; color: var(--brand-blue); flex-shrink: 0; margin-top: 2px; }
.expo-sede-item b { display: block; font-size: 14px; }
.expo-sede-item span { display: block; font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
@media (max-width: 1024px) {
  .expo-hero-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  /* fix-expo-map-exact-responsive-2026-08-28: impedir que el CTA ensanche el mapa en 320px */
  .expo-sede-grid { grid-template-columns: minmax(0, 1fr); }
  .expo-sede-grid > * { min-width: 0; }
  .expo-sede-list .btn-whatsapp { width: 100%; min-width: 0; white-space: normal; }
}
@media (max-width: 640px) {
  .expo-hero { padding-top: calc(var(--nav-height) + 18px); }
  .expo-countdown { gap: 8px; padding: 12px; }
  .expo-countdown-item b { font-size: 22px; }
  .expo-card-head { flex-direction: column; align-items: flex-start; }
}

.expo-logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 18px;
  max-width: 560px;
}
.expo-logo-wrap img {
  width: min(520px, 92vw);
  height: auto;
  display: block;
}
.expo-logo-year {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 5vw, 42px);
  letter-spacing: -0.03em;
  color: #2058a0;
  line-height: 1;
  margin-top: 8px;
}
/* cover the old 2023 inside the SVG */

@media (max-width: 640px) {
  .expo-logo-year { font-size: 22px; padding: 3px 8px; }
}

/* ═══════════════════ EXPOTAPIA 2026 — event-pass redesign ═══════════════════ */
.expo-hero { padding: calc(var(--nav-height) + 42px) 0 58px; background: #f8fafc url("/assets/images/expo-hero-taller.webp") 62% center / cover no-repeat; }
.expo-hero::before, .expo-hero-glow-blue, .expo-hero-glow-orange { display: none; }
.expo-hero-inner { grid-template-columns: minmax(0,1.12fr) minmax(360px,.88fr); gap: clamp(32px,5vw,70px); }
.expo-hero-copy { max-width: 610px; }
.expo-kicker { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 13px; color: var(--brand-blue-dark); font-size: 11px; font-weight: 800; letter-spacing: .115em; text-transform: uppercase; }
.expo-kicker span { width: 28px; height: 2px; background: var(--brand-orange); box-shadow: 8px 0 0 rgba(249,115,22,.32); }
.expo-hero-logo { margin: 0 0 18px; }
.expo-hero-logo img { width: min(330px, 78vw); filter: none; }
.expo-title { max-width: 570px; margin: 0 0 16px; color: var(--brand-blue-dark); font-size: clamp(2.36rem,4.15vw,3.65rem); line-height: .99; letter-spacing: -.052em; }
.expo-title .expo-title-accent { color: var(--brand-orange-text); }
.expo-sub { max-width: 530px; padding-left: 16px; border-left-width: 4px; font-size: 1.05rem; line-height: 1.62; }
.expo-stitch { display: flex; align-items: center; gap: 7px; width: 100%; max-width: 470px; height: 24px; margin: 12px 0 2px; }
.expo-stitch::before { content: ""; width: 12px; height: 12px; border: 2px solid var(--brand-orange); border-radius: 50%; background: #fff; }
.expo-stitch span { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--brand-orange) 0 7px, transparent 7px 13px); opacity: .82; }
.expo-date-rail { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); max-width: 480px; margin: 4px 0 17px; overflow: hidden; border: 1px solid rgba(32,88,160,.16); border-radius: 15px; background: rgba(255,255,255,.78); box-shadow: 0 12px 22px -20px rgba(32,88,160,.55); }
.expo-date-cell { display: grid; place-items: center; gap: 1px; min-height: 70px; padding: 8px 6px; border-left: 1px solid rgba(32,88,160,.1); color: var(--brand-blue-dark); }
.expo-date-cell:first-child { border-left: 0; }
.expo-date-cell small, .expo-date-cell em { font-size: 9px; line-height: 1; font-style: normal; font-weight: 800; letter-spacing: .12em; }
.expo-date-cell small { color: var(--text-muted); }
.expo-date-cell b { font-family: var(--font-display); font-size: 25px; line-height: 1; letter-spacing: -.04em; }
.expo-date-cell em { color: var(--brand-orange-text); }
.expo-date-cell--opening { background: var(--gradient-primary); color: #fff; }
.expo-date-cell--opening small, .expo-date-cell--opening em { color: rgba(255,255,255,.78); }
.expo-date-cell:hover:not(.expo-date-cell--opening) { background: var(--brand-blue-light); }
.expo-meta { gap: 8px; margin-top: 0; }
.expo-meta-pill { padding: 8px 12px; background: rgba(255,255,255,.82); border-color: rgba(32,88,160,.14); box-shadow: none; backdrop-filter: none; font-size: 12.5px; }
.expo-meta-pill--accent { background: #fff6ee; border-color: rgba(249,115,22,.25); }
.expo-actions { margin-top: 22px; }
.expo-trust { margin-top: 17px; gap: 8px 16px; }
.expo-trust svg { width: 16px; height: 16px; flex: 0 0 16px; }
.expo-brands { max-width: 525px; margin-top: 20px; padding-top: 15px; }
.expo-brands-row { gap: 7px; }
.expo-brands-row span { padding: 5px 10px; border: 1px solid rgba(32,88,160,.08); background: rgba(232,241,254,.78); }
.expo-card { isolation: isolate; border-radius: 26px; border-color: rgba(32,88,160,.16); box-shadow: 0 25px 55px -30px rgba(22,63,120,.48), 0 12px 22px -18px rgba(15,23,42,.24); }
.expo-card::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .45; background-image: linear-gradient(rgba(32,88,160,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(32,88,160,.07) 1px, transparent 1px); background-size: 18px 18px; mask-image: linear-gradient(145deg,#000,transparent 62%); }
.expo-card::after { background: radial-gradient(100% 76% at 100% 0%, rgba(249,115,22,.17), transparent 64%); }
.expo-card-head { padding: 23px 23px 16px; color: var(--text-primary); background: transparent; align-items: flex-start; }
.expo-card-head > div { display: grid; gap: 5px; }
.expo-card-head .expo-card-eyebrow { padding: 0; border-radius: 0; background: transparent; color: var(--brand-orange-text); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.expo-card-head strong { color: var(--brand-blue-dark); font-size: 22px; letter-spacing: -.035em; }
.expo-card-head .expo-card-status { display: inline-flex; align-items: center; color: var(--brand-orange-text); background: #fff4e8; border: 1px solid #fed7aa; padding: 6px 9px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.expo-card-body { padding: 15px 23px 23px; gap: 15px; }
.expo-countdown { padding: 16px 11px; border-radius: 17px; background: linear-gradient(145deg,#133b72 0%,#2058a0 66%,#2f72bc 100%); }
.expo-kv { padding: 3px 0; }
.expo-kv + .expo-kv { padding-top: 15px; border-top: 1px dashed rgba(32,88,160,.22); }
.expo-kv-icon { width: 40px; height: 40px; border-radius: 12px; }
.expo-note { background: rgba(248,250,252,.85); border-color: rgba(32,88,160,.18); }
.expo-benefits-grid { gap: 16px; }
.expo-benefit { min-height: 212px; padding: 24px 23px; overflow: hidden; border-radius: 18px; transition: transform .25s ease; }
.expo-benefit::before { content: ""; position: absolute; left: 23px; top: 0; width: 42px; height: 3px; background: var(--brand-orange); border-radius: 0 0 99px 99px; }
.expo-benefit:hover { transform: translateY(-4px); }
.expo-benefit--accent { background: linear-gradient(145deg,#163f78 0%,#2058a0 66%,#2d70b7 100%); }
.expo-benefit--accent::before { background: var(--brand-orange); }
.expo-benefit--accent .expo-benefit-icon { background: rgba(255,255,255,.16); }
@media (prefers-reduced-motion: reduce) { .expo-benefit { transition: none; } .expo-benefit:hover { transform: none; } }
@media (max-width: 1024px) { .expo-hero-inner { grid-template-columns: minmax(0,1fr); gap: 30px; } .expo-hero-copy { max-width: 660px; } .expo-card { width: 100%; min-width: 0; max-width: 660px; } }
@media (max-width: 640px) { .expo-hero { padding: calc(var(--nav-height) + 26px) 0 29px; background-position: 59% center; } .expo-kicker { margin-bottom: 11px; font-size: 10px; letter-spacing: .09em; } .expo-hero-logo { margin-bottom: 13px; } .expo-hero-logo img { width: min(270px,74vw); } .expo-title { font-size: clamp(2.05rem,9.5vw,2.5rem); } .expo-sub { font-size: .94rem; line-height: 1.55; } .expo-stitch { display: none; } .expo-date-rail { margin-top: 10px; } .expo-date-cell { min-height: 62px; } .expo-date-cell b { font-size: 21px; } .expo-meta { flex-wrap: nowrap; } .expo-meta-pill { width: auto; padding: 7px 8px; gap: 5px; font-size: 11px; } .expo-meta-pill svg { width: 14px; height: 14px; } .expo-actions { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 16px; } .expo-actions .btn { justify-content: center; padding-block: 11px; } .expo-trust { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px 10px; margin-top: 14px; font-size: 12px; } .expo-brands { display: none; } .expo-brands-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; } .expo-brands-row::-webkit-scrollbar { display: none; } .expo-brands-row span { flex: 0 0 auto; } .expo-card-head { flex-direction: row; align-items: center; padding: 15px 16px; } .expo-card-head strong { font-size: 18px; } .expo-card-head span { padding: 4px 7px; font-size: 10px; } .expo-card-body { padding: 12px 16px; gap: 12px; } .expo-note { display: none; } .expo-benefit { min-height: 0; } }

/* EXPOTAPIA 2026 — sistema editorial inspirado en la pieza principal */
.expo-hero { padding: calc(var(--nav-height) + 20px) 0 0; background: #fff; }
.expo-hero::before, .expo-hero-glow-blue, .expo-hero-glow-orange { display: none; }
.expo-masthead { padding: 20px 0 34px; }
.expo-masthead-inner { display: flex; align-items: center; gap: 22px; min-height: 54px; padding-bottom: 16px; border-bottom: 1px solid #dbe8f6; }
.expo-masthead-inner img { display: block; width: min(290px, 38vw); height: auto; }
.expo-masthead-divider { width: 1px; align-self: stretch; background: #2058a0; opacity: .55; }
.expo-masthead-event { color: #2058a0; font-family: var(--font-display); font-size: clamp(1.2rem,2.2vw,1.8rem); font-weight: 800; letter-spacing: -.04em; }
.expo-masthead-event small { color: var(--brand-orange-text); font-size: .72em; letter-spacing: .02em; }
.expo-hero-inner { grid-template-columns: minmax(0,1.05fr) minmax(390px,.95fr); align-items: stretch; gap: clamp(38px,6vw,88px); padding-bottom: 54px; }
.expo-hero-copy { max-width: 600px; padding: 12px 0 4px; }
.expo-kicker { margin-bottom: 18px; color: #2058a0; font-size: 11px; letter-spacing: .14em; }
.expo-kicker span { width: 32px; height: 3px; background: #ff9d1c; box-shadow: none; }
.expo-hero-logo { margin-bottom: 12px; }
.expo-hero-logo img { width: min(365px, 82vw); filter: none; }
.expo-title { max-width: 650px; margin-bottom: 18px; color: #174d91; font-size: clamp(2.75rem,5vw,4.85rem); line-height: .94; letter-spacing: -.06em; text-transform: uppercase; }
.expo-title .expo-title-accent { color: #ff8f00; }
.expo-sub { max-width: 540px; padding-left: 0; border-left: 0; color: #174d91; font-size: 1.1rem; line-height: 1.55; }
.expo-stitch, .expo-date-rail, .expo-meta { display: none; }
.expo-actions { gap: 10px; margin-top: 23px; }
.expo-actions .btn { border-radius: 4px; }
.expo-trust { display: grid; gap: 12px; margin-top: 24px; padding: 2px 0 2px 23px; border-left: 2px dashed #1772cf; color: #174d91; font-size: 13px; }
.expo-trust li { position: relative; gap: 0; font-weight: 700; }
.expo-trust li::before { content: ""; position: absolute; left: -30px; top: 50%; width: 12px; height: 12px; border-radius: 50%; transform: translateY(-50%); background: #ff9d1c; border: 3px solid #fff; box-shadow: 0 0 0 1px #ff9d1c; }
.expo-trust svg { display: none; }
.expo-brands { display: block; max-width: none; margin-top: 25px; padding-top: 16px; border-top: 1px solid #dbe8f6; }
.expo-brands-label { margin-bottom: 13px; color: #174d91; font-size: 10px; letter-spacing: .14em; }
.expo-brands-row { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); align-items: center; gap: 18px; }
.expo-brands-row img { display: block; width: 100%; max-height: 34px; object-fit: contain; }
.expo-card { display: grid; grid-template-rows: minmax(310px,1fr) auto auto; align-self: stretch; min-height: 0; overflow: hidden; border: 0; border-radius: 0; background: #0d57a8; box-shadow: none; }
.expo-card::before, .expo-card::after { display: none; }
.expo-editorial-photo { position: relative; min-height: 310px; margin: 0; overflow: hidden; background: #0d57a8; clip-path: polygon(17% 0,100% 0,100% 100%,0 100%); }
.expo-editorial-photo::before { content: ""; position: absolute; z-index: 1; inset: 0 auto 0 0; width: 17%; background: #0d57a8; }
.expo-editorial-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 63% center; }
.expo-card-head { padding: 17px 22px 9px; color: #fff; background: #0d57a8; }
.expo-card-head > div { gap: 3px; }
.expo-card-head .expo-card-eyebrow { color: #ffb23d; }
.expo-card-head strong { color: #fff; font-size: 21px; }
.expo-card-head .expo-card-status { color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.58); border-radius: 2px; }
.expo-card-body { display: grid; gap: 15px; padding: 10px 22px 24px; background: #0d57a8; color: #fff; }
.expo-countdown { padding: 12px 9px; border: 1px solid rgba(255,255,255,.45); border-radius: 0; background: transparent; box-shadow: none; }
.expo-countdown-item b { color: #fff; font-size: 30px; text-shadow: none; }
.expo-countdown-item span { color: rgba(255,255,255,.75); }
.expo-kv, .expo-note { display: none; }
.expo-card-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.expo-card .btn { min-height: 44px; border-radius: 3px; font-size: 12px; }
.expo-card .btn-primary { color: #173b6c; background: #ffac28; box-shadow: none; }
.expo-card .btn-ghost { color: #fff; border-color: rgba(255,255,255,.72); background: transparent; }
.expo-event-band { background: #104f9d; color: #fff; }
.expo-event-band-inner { display: grid; grid-template-columns: 1.15fr 1fr .72fr; align-items: stretch; }
.expo-event-band-inner > div { min-height: 156px; padding: 28px clamp(18px,3vw,42px); }
.expo-event-band-inner > div + div { border-left: 1px solid rgba(255,255,255,.4); }
.expo-band-location { display: grid; align-content: center; gap: 5px; }
.expo-band-location span { color: rgba(255,255,255,.76); font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.expo-band-location strong { font-family: var(--font-display); font-size: clamp(1.45rem,2.6vw,2.3rem); letter-spacing: -.045em; line-height: 1; }
.expo-band-location p { margin: 0; color: rgba(255,255,255,.92); font-size: 14px; }
.expo-band-dates { display: grid; align-content: center; gap: 12px; }
.expo-band-days { display: grid; grid-template-columns: repeat(4,1fr); }
.expo-band-days b { padding: 0 7px; border-left: 1px solid rgba(255,255,255,.55); font-family: var(--font-display); font-size: clamp(1.75rem,3vw,2.75rem); line-height: 1; text-align: center; }
.expo-band-days b:first-child { border-left: 0; }
.expo-band-dates > strong { color: #ffac28; font-family: var(--font-display); font-size: clamp(1.25rem,2vw,1.75rem); letter-spacing: .01em; text-align: center; }
.expo-band-dates em { font-style: normal; }
.expo-band-time { display: grid; align-content: center; justify-items: start; gap: 7px; }
.expo-band-time svg { width: 31px; height: 31px; }
.expo-band-time strong { font-family: var(--font-display); font-size: clamp(1.65rem,2.7vw,2.35rem); letter-spacing: -.05em; line-height: 1; white-space: nowrap; }
.expo-band-time a { color: #ffb23d; font-size: 13px; font-weight: 800; }
#beneficios { background: #fff; }
#beneficios .section-head { max-width: 670px; margin-inline: 0; text-align: left !important; }
#beneficios .section-sub { margin-inline: 0; }
.expo-benefits-grid { gap: 0; margin-top: 38px; border-top: 1px solid #dbe8f6; border-left: 1px solid #dbe8f6; }
.expo-benefit { min-height: 0; padding: 28px 26px 30px; border: 0; border-right: 1px solid #dbe8f6; border-bottom: 1px solid #dbe8f6; border-radius: 0; background: #fff; box-shadow: none; }
.expo-benefit::before { left: 0; width: 4px; height: 48px; border-radius: 0; background: #ff9d1c; }
.expo-benefit:hover { transform: none; box-shadow: inset 0 0 0 1px #2058a0; }
.expo-benefit-icon { width: 44px; height: 44px; margin-bottom: 18px; border-radius: 0; box-shadow: none; background: #2058a0; }
.expo-benefit--accent { background: #104f9d; }
.expo-benefit--accent::before { background: #ffac28; }
@media (max-width: 1024px) { .expo-hero-inner { grid-template-columns: minmax(0,1fr); gap: 30px; } .expo-hero-copy { max-width: 690px; } .expo-card { width: min(100%,690px); grid-template-columns: minmax(300px,.95fr) minmax(0,1.05fr); grid-template-rows: auto auto; } .expo-editorial-photo { grid-row: 1 / span 2; min-height: 330px; } .expo-card-head { align-self: end; } .expo-event-band-inner { grid-template-columns: 1fr 1fr; } .expo-band-time { border-top: 1px solid rgba(255,255,255,.4); grid-column: 1 / -1; grid-template-columns: auto auto; justify-content: start; column-gap: 16px; } .expo-band-time svg { grid-row: 1 / span 2; } }
@media (max-width: 640px) { .expo-hero { padding: calc(var(--nav-height) + 16px) 0 0; } .expo-masthead { padding: 12px 0 24px; } .expo-masthead-inner { gap: 12px; min-height: 44px; padding-bottom: 12px; } .expo-masthead-inner img { width: min(205px,54vw); } .expo-masthead-event { font-size: 1rem; } .expo-hero-inner { display: flex; flex-direction: column; gap: 20px; padding-bottom: 30px; } .expo-hero-copy { padding-top: 0; } .expo-kicker { display: none; } .expo-hero-logo img { width: min(270px,74vw); } .expo-title { margin-bottom: 13px; font-size: clamp(2.45rem,11.5vw,3.05rem); } .expo-sub { font-size: .98rem; } .expo-actions { grid-template-columns: 1fr; margin-top: 18px; } .expo-trust { gap: 10px; margin-top: 19px; padding-left: 20px; font-size: 12px; } .expo-trust li::before { left: -27px; width: 10px; height: 10px; } .expo-brands { display: block; margin-top: 20px; padding-top: 13px; } .expo-brands-row { display: flex; gap: 17px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; } .expo-brands-row::-webkit-scrollbar { display: none; } .expo-brands-row img { flex: 0 0 78px; width: 78px; max-height: 24px; } .expo-card { width: 100%; display: flex; flex-direction: column; grid-template-columns: none; grid-template-rows: none; } .expo-editorial-photo { display: none; } .expo-card-head { padding: 16px 17px 8px; } .expo-card-head strong { font-size: 19px; } .expo-card-body { padding: 10px 17px 18px; } .expo-card-foot { grid-template-columns: 1fr; } .expo-countdown-item b { font-size: 26px; } .expo-event-band-inner { grid-template-columns: 1fr; } .expo-event-band-inner > div { min-height: 0; padding: 22px 20px; } .expo-event-band-inner > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.4); } .expo-band-location strong { font-size: 1.8rem; } .expo-band-dates { gap: 10px; } .expo-band-days b { font-size: 2rem; } .expo-band-time { grid-column: auto; grid-template-columns: auto 1fr; } .expo-band-time a { grid-column: 2; } #beneficios .section-head { text-align: left !important; } .expo-benefits-grid { grid-template-columns: 1fr; margin-top: 26px; } .expo-benefit { padding: 24px 21px 25px; } }

/* Corrección v7: la foto entregada es el fondo del hero, no un recuadro */
.expo-hero { background: #f8fafc url("/assets/images/expo-hero-taller.webp") 62% center / cover no-repeat; }
.expo-masthead { display: none; }
.expo-hero-inner { position: relative; z-index: 1; }
.expo-hero-copy { align-self: start; padding: 30px 34px 32px; background: transparent; }
.expo-hero-logo { display: block; margin: 0 0 14px; }
.expo-card { display: flex; flex-direction: column; justify-content: center; align-self: stretch; min-height: 0; background: transparent; }
.expo-editorial-photo { display: none; }
.expo-card-head, .expo-card-body { background: #104f9d; }
.expo-card-head { padding: 20px 23px 10px; }
.expo-card-body { padding: 10px 23px 23px; }
@media (max-width: 1024px) { .expo-card { width: min(100%,690px); min-height: 0; } }
@media (max-width: 640px) { .expo-hero { background-position: 68% center; } .expo-masthead-inner { width: 100%; padding: 12px 14px; } .expo-hero-copy { width: 100%; padding: 24px 20px 25px; } .expo-card { width: 100%; display: flex; } .expo-card-head { padding: 17px 17px 8px; } .expo-card-body { padding: 10px 17px 18px; } }

/* EXPOTAPIA v8 — bordes suaves: industrial, pero no rígido */
.expo-masthead-inner {
  border-radius: 22px 38px 22px 38px;
}
.expo-hero-copy {
  border-radius: 30px 48px 30px 48px;
}
.expo-actions .btn,
.expo-card .btn {
  border-radius: 999px;
}
.expo-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 30px 50px 30px 50px;
  background: #104f9d;
}
.expo-countdown { box-sizing: border-box; width: 100%; border-radius: 18px 30px 18px 30px; }
.expo-card-foot { box-sizing: border-box; width: 100%; }
.expo-event-band {
  overflow: hidden;
  border-radius: 0 0 48px 48px;
}
.expo-benefits-grid {
  gap: 16px;
  border: 0;
}
.expo-benefit {
  border: 1px solid #dbe8f6;
  border-radius: 24px 34px 24px 34px;
}
.expo-benefit:nth-child(even) {
  border-radius: 34px 24px 34px 24px;
}
.expo-benefit::before {
  left: 24px;
  top: 0;
  width: 48px;
  height: 4px;
  border-radius: 0 0 999px 999px;
}
.expo-benefit-icon {
  border-radius: 14px 22px 14px 22px;
}
.expo-benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -22px rgba(22,63,120,.42);
}
.expo-sede-item,
#preguntas .faq-item {
  border-radius: 20px 28px 20px 28px;
}
.expo-event-band ~ .cta-band {
  overflow: visible;
  padding: 0 0 64px;
  background: transparent;
}
.expo-event-band ~ .cta-band::before { display: none; }
.expo-event-band ~ .cta-band .cta-inner {
  border-radius: 32px 52px 32px 52px;
  background: #104f9d;
}
@media (max-width: 640px) {
  .expo-masthead-inner { border-radius: 18px 28px 18px 28px; }
  .expo-hero-copy { border-radius: 24px 34px 24px 34px; }
  .expo-card { border-radius: 24px 34px 24px 34px; }
  .expo-countdown { border-radius: 14px 22px 14px 22px; }
  .expo-event-band { border-radius: 0 0 30px 30px; }
  .expo-benefits-grid { gap: 14px; }
  .expo-benefit,
  .expo-benefit:nth-child(even),
  .expo-sede-item,
  #preguntas .faq-item { border-radius: 18px 24px 18px 24px; }
  .expo-event-band ~ .cta-band { padding-bottom: 42px; }
  .expo-event-band ~ .cta-band .cta-inner { border-radius: 24px 32px 24px 32px; }
}

/* EXPOTAPIA v9 — corrección de proporción y jerarquía visual */
.expo-hero { padding: calc(var(--nav-height) + 10px) 0 0; }
.expo-masthead { padding: 10px 0 22px; }
.expo-masthead-inner {
  width: fit-content;
  min-height: 0;
  margin-inline: auto;
  padding: 8px 21px;
}
.expo-masthead-inner img {
  width: min(205px, 58vw);
  height: auto;
}
.expo-masthead-divider,
.expo-masthead-event,
.expo-kicker { display: none; }
.expo-hero-inner {
  grid-template-columns: minmax(0,1.12fr) minmax(300px,.78fr);
  align-items: start;
  gap: clamp(26px,4.5vw,58px);
  padding-bottom: 46px;
}
.expo-hero-copy {
  max-width: 610px;
  padding: 28px 30px 27px;
}
.expo-title {
  max-width: 485px;
  margin-bottom: 14px;
  font-size: clamp(1.55rem,2.4vw,2.05rem);
  line-height: 1.08;
  font-weight: 700;
}
.expo-sub {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.5;
}
.expo-actions {
  display: grid;
  grid-template-columns: minmax(0,1.22fr) minmax(0,.9fr);
  gap: 10px;
  margin-top: 19px;
}
.expo-actions .btn {
  min-width: 0;
  min-height: 47px;
  padding-inline: 15px;
  font-size: 12.5px;
  white-space: nowrap;
}
.expo-trust {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 8px;
  margin-top: 17px;
  padding: 0;
  border-left: 0;
  font-size: 11.5px;
}
.expo-trust li { padding-left: 17px; white-space: nowrap; }
.expo-trust li::before { left: 1px; width: 9px; height: 9px; border-width: 2px; }
.expo-brands { margin-top: 16px; padding-top: 12px; }
.expo-brands-label { margin-bottom: 9px; }
.expo-card {
  align-self: start;
  justify-content: flex-start;
  min-height: 0;
  margin-top: 62px;
}
.expo-card-head { box-sizing: border-box; width: 100%; padding: 19px 21px 9px; }
.expo-card-body { box-sizing: border-box; width: 100%; grid-template-columns: minmax(0,1fr); padding: 10px 21px 21px; }
.expo-countdown { box-sizing: border-box; width: 100%; min-width: 0; grid-template-columns: repeat(4,minmax(0,1fr)); border-radius: 18px 30px 18px 30px; }
.expo-card-foot { box-sizing: border-box; width: 100%; min-width: 0; grid-template-columns: repeat(2,minmax(0,1fr)); }
.expo-card-foot .btn { min-width: 0; padding-inline: 8px; white-space: nowrap; }
@media (max-width: 640px) {
  .expo-hero { padding-top: calc(var(--nav-height) + 8px); }
  .expo-masthead { padding: 8px 0 18px; }
  .expo-masthead-inner { width: fit-content; padding: 7px 16px; }
  .expo-masthead-inner img { width: min(185px,54vw); }
  .expo-hero-inner { gap: 18px; padding-bottom: 30px; }
  .expo-hero-copy { padding: 23px 20px 22px; }
  .expo-title { margin-bottom: 12px; font-size: clamp(1.5rem,7.2vw,1.9rem); font-weight: 700; }
  .expo-sub { font-size: .95rem; }
  .expo-actions { grid-template-columns: 1fr; gap: 8px; margin-top: 17px; }
  .expo-actions .btn { min-height: 46px; font-size: 13px; }
  .expo-trust { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px 10px; margin-top: 15px; font-size: 11.5px; }
  .expo-trust li { padding-left: 16px; }
  .expo-brands { margin-top: 16px; padding-top: 11px; }
  .expo-card { margin-top: 0; }
  .expo-card-head { padding: 17px 17px 8px; }
  .expo-card-body { padding: 10px 17px 18px; }
}

/* ═══════════════════ EXPOTAPIA v10 — pulido visual aprobado 2026-08-27 ═══════════════════ */
/* Alta 1: aire y contraste del hero — overlay sutil sobre foto taller */
.expo-hero { position: relative; background: #f8fafc url("/assets/images/expo-hero-taller.webp") 62% center / cover no-repeat; }
.expo-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 38%, rgba(248,250,252,0.22) 62%, transparent 78%); pointer-events: none; }
.expo-hero-inner { position: relative; z-index: 1; gap: clamp(32px,5vw,64px); }

/* Alta 2: titular premium — letter-spacing y peso afinados, sin repetir año */
.expo-title { letter-spacing: -0.03em; font-weight: 800; text-wrap: balance; }
.expo-sub { letter-spacing: -0.01em; }

/* Alta 3: date-rail — destacar apertura JUE 17 (si se reactiva futuro) sin romper minimalismo */
.expo-date-rail { border-color: rgba(32,88,160,0.14); }
.expo-date-cell--opening { border-color: var(--brand-orange); box-shadow: inset 0 0 0 1px rgba(249,115,22,0.28); }

/* Alta 4: card foot — 1 columna para priorizar CTA WhatsApp, gap 10px */
.expo-card-foot { grid-template-columns: 1fr !important; gap: 10px; }
.expo-card-foot .btn-primary { order: 1; }
.expo-card-foot .btn-ghost { order: 2; }

/* Media 5: brands fila scroll sutil en móvil ya existe — pulir snap y ocultar scrollbar */
.expo-brands-row { scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x proximity; }
.expo-brands-row::-webkit-scrollbar { display: none; }
.expo-brands-row img { scroll-snap-align: start; }

/* Media 6: banda azul — alinear tipografía verticalmente y equilibrar padding */
.expo-event-band-inner > div { display: grid; align-content: center; }

/* Media 7: beneficios — equalizar padding y altura visual sin marea */
.expo-benefit { padding: 26px 24px 28px; }
.expo-benefit p { min-height: 44px; }

/* Ajuste fino hero-copy respiración extra en desktop */
@media (min-width: 641px) {
  .expo-hero-copy { padding: 30px 32px 30px; }
}
@media (max-width: 640px) {
  .expo-hero::before { background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.70) 45%, rgba(248,250,252,0.08) 72%, transparent 100%); }
  .expo-hero-inner { gap: 18px; }
}

/* Hallmark · macrostructure: Split Studio · EXPOTAPIA v11
 * tone: editorial-industrial · anchor hue: azul · studied-DNA: referencia de César
 * theme: studied-DNA (source: imagen de referencia de César)
 * hero: copy izquierda + bordadora DETEX derecha + sello de sorteo · CTA: inscripción oficial
 * pre-emit critique: P5 H5 E5 S5 R5 V5
 */
.expo-hero {
  position: relative;
  overflow-x: clip;
  padding: calc(var(--nav-height) + 10px) 0 0;
  background: var(--surface-secondary) url("/assets/images/expo-hero-taller.webp") 58% center / cover no-repeat;
}
.expo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.94) 40%, rgba(248,250,252,.74) 63%, rgba(248,250,252,.34) 100%);
  pointer-events: none;
}
.expo-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(430px,1.08fr);
  align-items: end;
  gap: clamp(20px,3vw,44px);
  min-height: 575px;
  padding-bottom: 0;
}
.expo-hero-copy {
  align-self: center;
  width: 100%;
  max-width: 570px;
  min-width: 0;
  padding: 34px 0 42px;
  border-radius: 0;
  background: transparent;
}
img.expo-hero-logo {
  display: block;
  width: min(285px,76vw);
  height: auto !important;
  margin: 0 0 16px;
  filter: none;
  object-fit: contain;
}
.expo-kicker,
.expo-stitch,
.expo-date-rail,
.expo-meta { display: none; }
.expo-title {
  max-width: 560px;
  min-width: 0;
  margin: 0 0 14px;
  color: var(--brand-blue-dark);
  font-size: clamp(2.45rem,4.15vw,4rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.expo-title .expo-title-accent { color: var(--brand-orange); }
.expo-sub {
  max-width: 520px;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--text-secondary);
  font-size: 1.04rem;
  line-height: 1.55;
  letter-spacing: -.01em;
}
.expo-actions {
  display: grid;
  grid-template-columns: minmax(155px,.82fr) minmax(190px,1.18fr);
  gap: 10px;
  max-width: 485px;
  margin-top: 22px;
}
.expo-actions .btn {
  min-width: 0;
  min-height: 48px;
  justify-content: center;
  padding-inline: 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition-property: transform, background-color, border-color, color, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(.2,0,0,1);
}
.expo-actions .btn:active { transform: scale(.96); }
.expo-register-btn {
  border-color: var(--brand-orange) !important;
  background: var(--brand-orange) !important;
  color: var(--text-inverse);
  box-shadow: none !important;
}
.expo-register-btn:hover {
  border-color: var(--brand-orange-dark) !important;
  background: var(--brand-orange-dark) !important;
  color: var(--text-inverse);
  box-shadow: none !important;
  transform: none;
}
.expo-wa-btn {
  border-color: rgba(32,88,160,.3);
  background: rgba(255,255,255,.88);
  color: var(--brand-blue-dark);
}
.expo-wa-btn:hover {
  border-color: var(--brand-blue);
  background: var(--surface-primary);
  color: var(--brand-blue-dark);
  transform: translateY(-2px);
}
.expo-actions .btn:focus-visible,
.expo-registration-cta .btn:focus-visible {
  outline: 3px solid var(--brand-blue-dark);
  outline-offset: 3px;
}
.expo-trust {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 8px 12px;
  max-width: 520px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  color: var(--brand-blue-dark);
  font-size: 11.5px;
}
.expo-trust li { position: relative; padding-inline-start: 17px; white-space: nowrap; }
.expo-trust li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid var(--surface-primary);
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 1px var(--brand-orange);
  transform: translateY(-50%);
}
.expo-trust svg { display: none; }
.expo-brands {
  display: block;
  max-width: 520px;
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid rgba(32,88,160,.16);
}
.expo-brands-row {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  align-items: center;
  gap: 16px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.expo-brands-row::-webkit-scrollbar { display: none; }
.expo-brands-row img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 25px;
  object-fit: contain;
  scroll-snap-align: start;
}
.expo-hero-visual {
  position: relative;
  align-self: end;
  width: 100%;
  min-width: 0;
  height: 565px;
  overflow: hidden;
  isolation: isolate;
}
.expo-hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -15%;
  width: 86%;
  height: 94%;
  border: 1px solid rgba(32,88,160,.16);
  border-radius: 52% 48% 18% 22% / 43% 42% 18% 20%;
  background: rgba(232,241,254,.64);
}
.expo-machine {
  position: absolute;
  z-index: 1;
  left: 52%;
  bottom: 0;
  display: block;
  width: auto;
  height: 548px;
  max-width: 72%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 18px rgba(22,63,120,.16));
}
.expo-raffle-badge {
  position: absolute;
  z-index: 3;
  top: 46px;
  right: 2px;
  display: block;
  width: clamp(150px,15vw,184px);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(22,63,120,.2);
}
.expo-compact-countdown {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 24px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 0;
  width: min(330px,66%);
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid rgba(32,88,160,.22);
  border-radius: 18px 28px 18px 28px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 34px -24px rgba(22,63,120,.42);
  backdrop-filter: blur(8px);
}
.expo-compact-countdown .expo-countdown-item {
  min-width: 0;
  padding-inline: 8px;
  border-inline-start: 1px solid rgba(32,88,160,.13);
  text-align: center;
}
.expo-compact-countdown .expo-countdown-item:first-child { border-inline-start: 0; }
.expo-compact-countdown .expo-countdown-item b {
  display: block;
  color: var(--brand-blue-dark);
  font-size: clamp(1.3rem,2.2vw,1.8rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-shadow: none;
}
.expo-compact-countdown .expo-countdown-item span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.expo-event-band {
  overflow-x: clip;
  border-radius: 0 0 38px 38px;
  background: var(--brand-blue-dark);
  color: var(--text-inverse);
}
.expo-event-band-inner > div { min-height: 132px; padding-block: 22px; }
.expo-band-dates > strong,
.expo-band-time a { color: #ffb13b; }

#beneficios { overflow-x: clip; }
#beneficios .section-head { max-width: 690px; margin-inline: 0; text-align: left !important; }
#beneficios .section-sub { margin-inline: 0; }
.expo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(12,minmax(0,1fr));
  gap: 16px;
  margin-top: 36px;
  border: 0;
}
.expo-benefit,
.expo-benefit:nth-child(even) {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  align-content: start;
  column-gap: 14px;
  row-gap: 6px;
  min-width: 0;
  min-height: 184px;
  padding: 22px 20px;
  border: 1px solid var(--border-primary);
  border-radius: 22px 30px 22px 30px;
  background: var(--surface-primary);
  box-shadow: none;
  transition-property: transform, border-color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(.2,0,0,1);
}
.expo-benefit:nth-child(even) { border-radius: 30px 22px 30px 22px; }
.expo-benefit:nth-child(1),
.expo-benefit:nth-child(2) {
  grid-column: span 6;
  min-height: 178px;
  padding: 26px 24px;
}
.expo-benefit:nth-child(2) {
  border-color: rgba(249,115,22,.25);
  background: var(--brand-orange-light);
}
.expo-benefit::before { display: none; }
.expo-benefit-icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 13px 18px 13px 18px;
  background: var(--brand-blue);
  color: var(--text-inverse);
  box-shadow: none;
}
.expo-benefit h3 {
  align-self: end;
  min-width: 0;
  margin: 0;
  color: var(--brand-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.expo-benefit p {
  min-width: 0;
  min-height: 0;
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.48;
}
.expo-benefit--accent {
  border-color: transparent;
  background: var(--brand-blue-dark);
}
.expo-benefit--accent h3,
.expo-benefit--accent p { color: var(--text-inverse); }
.expo-benefit--accent .expo-benefit-icon { background: rgba(255,255,255,.15); }
@media (hover:hover) and (pointer:fine) {
  .expo-benefit:hover {
    border-color: rgba(32,88,160,.3);
    box-shadow: 0 14px 30px -24px rgba(22,63,120,.32);
    transform: translateY(-3px);
  }
}
.expo-registration-cta {
  overflow: visible;
  padding: 0 0 60px;
  background: transparent;
}
.expo-registration-cta::before { display: none; }
.expo-registration-cta .cta-inner {
  border-radius: 30px 46px 30px 46px;
  background: var(--brand-blue-dark);
}
.expo-registration-cta .expo-register-btn { min-width: 170px; }

@media (max-width: 1024px) {
  .expo-hero-inner {
    grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr);
    gap: 10px;
    min-height: 535px;
  }
  .expo-hero-copy { padding-block: 28px 36px; }
  .expo-title { font-size: clamp(2.25rem,4.7vw,3.15rem); }
  .expo-hero-visual { height: 525px; }
  .expo-machine { height: 505px; }
  .expo-raffle-badge { top: 50px; right: 0; width: 148px; }
  .expo-compact-countdown { width: min(300px,72%); }
  .expo-benefit,
  .expo-benefit:nth-child(even) { grid-column: span 6; }
}

@media (max-width: 740px) {
  .expo-hero {
    padding-top: calc(var(--nav-height) + 2px);
    background-position: 66% center;
  }
  .expo-hero::before {
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 48%, rgba(248,250,252,.62) 75%, rgba(248,250,252,.25) 100%);
  }
  .expo-hero-inner {
    grid-template-columns: minmax(0,1fr);
    gap: 0;
    min-height: 0;
  }
  .expo-hero-copy {
    align-self: start;
    max-width: none;
    padding: 20px 0 12px;
  }
  img.expo-hero-logo {
    width: min(230px,70vw);
    height: auto !important;
    margin-bottom: 11px;
  }
  .expo-title {
    max-width: 430px;
    margin-bottom: 10px;
    font-size: clamp(1.85rem,8.3vw,2.55rem);
    line-height: 1.02;
    letter-spacing: -.035em;
  }
  .expo-sub { max-width: 470px; font-size: .93rem; line-height: 1.45; }
  .expo-actions {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 8px;
    max-width: none;
    margin-top: 15px;
  }
  .expo-actions .btn {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 12px;
  }
  .expo-trust {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 7px 10px;
    max-width: none;
    margin-top: 13px;
    font-size: 11px;
  }
  .expo-brands { max-width: none; margin-top: 13px; padding-top: 10px; }
  .expo-brands-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .expo-brands-row img { flex: 0 0 72px; width: 72px; max-height: 22px; }
  .expo-hero-visual {
    height: clamp(330px,93vw,380px);
    margin-top: 2px;
  }
  .expo-hero-visual::before {
    right: -4%;
    bottom: -18%;
    width: 93%;
    height: 99%;
  }
  .expo-machine {
    left: 53%;
    bottom: 0;
    height: clamp(320px,91vw,372px);
    max-width: 70%;
  }
  .expo-raffle-badge {
    top: 13px;
    right: 3px;
    width: clamp(108px,30vw,126px);
  }
  .expo-compact-countdown {
    left: 5px;
    bottom: 8px;
    width: min(300px,79%);
    padding: 10px 7px;
    border-radius: 14px 22px 14px 22px;
  }
  .expo-compact-countdown .expo-countdown-item { padding-inline: 5px; }
  .expo-compact-countdown .expo-countdown-item b { font-size: 1.28rem; }
  .expo-event-band { border-radius: 0 0 28px 28px; }
  .expo-event-band-inner { grid-template-columns: minmax(0,1fr); }
  .expo-event-band-inner > div {
    min-height: 0;
    padding: 16px 20px;
  }
  .expo-band-location strong { font-size: 1.55rem; }
  .expo-band-days b { font-size: 1.65rem; }
  .expo-band-time strong { font-size: 1.6rem; }
  .expo-benefits-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 28px; }
  .expo-benefit,
  .expo-benefit:nth-child(even) {
    grid-column: span 1;
    display: block;
    min-height: 190px;
    padding: 18px 15px;
  }
  .expo-benefit:nth-child(1),
  .expo-benefit:nth-child(2) {
    grid-column: 1 / -1;
    display: grid;
    min-height: 154px;
    padding: 21px 19px;
  }
  .expo-benefit-icon { width: 38px; height: 38px; margin-bottom: 12px; }
  .expo-benefit:nth-child(1) .expo-benefit-icon,
  .expo-benefit:nth-child(2) .expo-benefit-icon { margin-bottom: 0; }
  .expo-benefit h3 { font-size: .92rem; }
  .expo-benefit p { margin-top: 7px; font-size: 12.5px; line-height: 1.43; }
  .expo-benefit:nth-child(1) p,
  .expo-benefit:nth-child(2) p { margin-top: 0; }
  .expo-registration-cta { padding-bottom: 40px; }
  .expo-registration-cta .cta-inner { border-radius: 24px 32px 24px 32px; }
}

@media (max-width: 350px) {
  .expo-benefits-grid { grid-template-columns: minmax(0,1fr); }
  .expo-benefit,
  .expo-benefit:nth-child(even),
  .expo-benefit:nth-child(1),
  .expo-benefit:nth-child(2) {
    grid-column: 1;
    display: grid;
    min-height: 0;
  }
  .expo-hero-visual { height: 324px; }
  .expo-machine { height: 316px; }
  .expo-raffle-badge { width: 104px; }
}

@media (prefers-reduced-motion: reduce) {
  .expo-actions .btn,
  .expo-benefit { transition-duration: 0ms; }
  .expo-actions .btn:hover,
  .expo-benefit:hover { transform: none; }
}

/* EXPOTAPIA v12 · ajuste solicitado por César: franja informativa con iconos */
.expo-logo-heading {
  width: min(310px, 80vw);
  margin: 0 0 14px;
  padding: 0;
  font-size: inherit;
  line-height: 0;
}
.expo-logo-heading .expo-hero-logo {
  display: block;
  width: 100%;
  height: auto !important;
  margin: 0;
  object-fit: contain;
}
.expo-strapline {
  display: block;
  max-width: 36rem;
  margin: 0 0 12px;
  color: var(--brand-blue-dark);
  font-size: clamp(1rem,1.45vw,1.25rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: .01em;
  text-transform: none;
}
.expo-event-band {
  margin: 0;
  border: 0;
  border-radius: 0 !important;
  background: linear-gradient(105deg,var(--brand-blue-dark) 0%,var(--brand-blue) 100%);
  box-shadow: none;
  color: var(--text-inverse);
}
.expo-event-band-inner {
  display: grid !important;
  grid-template-columns: minmax(0,1.25fr) minmax(0,1fr) minmax(0,.65fr);
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  padding: 0;
}
.expo-band-item {
  display: flex;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
  min-width: 0;
  min-height: 132px;
  padding: 24px 28px;
  color: var(--text-inverse);
}
.expo-band-item + .expo-band-item {
  border-inline-start: 1px solid rgba(255,255,255,.58);
}
.expo-event-band-inner > .expo-band-item {
  display: flex;
  box-sizing: border-box;
  height: 132px;
  max-height: 132px;
  min-height: 132px;
  padding: 24px 28px;
}
.expo-band-icon {
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  width: 44px;
  height: 52px;
  color: var(--text-inverse);
}
.expo-band-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.expo-band-icon--pin { color: var(--brand-orange); }
.expo-band-item > div { min-width: 0; }
.expo-band-item strong {
  display: block;
  color: var(--text-inverse);
  font-size: clamp(1.15rem,1.9vw,1.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: .015em;
  text-transform: uppercase;
  white-space: nowrap;
}
.expo-band-item p {
  margin: 3px 0 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(.86rem,1.25vw,1.05rem);
  line-height: 1.25;
}
.expo-band-time strong { font-size: clamp(1.45rem,2.2vw,1.85rem); }
.expo-band-time a {
  display: inline-block;
  margin-top: 8px;
  color: var(--text-inverse);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.expo-band-time a:hover { color: var(--brand-orange-light); }

@media (max-width: 740px) {
  .expo-logo-heading {
    width: min(250px,78vw);
    margin-bottom: 10px;
  }
  .expo-strapline {
    margin-bottom: 9px;
    font-size: .98rem;
    line-height: 1.25;
  }
  .expo-event-band-inner {
    grid-template-columns: minmax(0,1fr);
    padding: 0;
  }
  .expo-band-item {
    min-height: 84px;
    padding: 15px 20px;
  }
  .expo-event-band-inner > .expo-band-item {
    display: flex;
    height: auto;
    max-height: none;
    min-height: 84px;
    padding: 15px 20px;
  }
  .expo-band-item + .expo-band-item {
    border-inline-start: 0;
    border-block-start: 1px solid rgba(255,255,255,.58);
  }
  .expo-band-icon {
    flex-basis: 38px;
    width: 38px;
    height: 44px;
  }
  .expo-band-item strong { font-size: 1.22rem; }
  .expo-band-item p { font-size: .87rem; }
  .expo-band-time strong { font-size: 1.45rem; }
}

/* EXPOTAPIA v13 — aliados visibles, CTA con más presencia y primera impresión compacta */
.expo-partner-row {
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(0,.9fr) minmax(0,1fr);
  align-items: center;
  gap: clamp(10px,1.8vw,22px);
  width: min(520px,100%);
  min-height: 44px;
  margin: 0 0 14px;
  padding: 0 0 11px;
  border-bottom: 1px solid rgba(32,88,160,.16);
}
.expo-partner-logo {
  display: block;
  width: 100%;
  height: 34px;
  max-height: 34px;
  object-fit: contain;
  object-position: center;
}
.expo-actions .btn,
.expo-registration-cta .expo-register-btn {
  border-radius: 6px !important;
}
.expo-register-btn {
  border-color: var(--brand-orange) !important;
  background: var(--brand-orange) !important;
  color: #173b6c;
  box-shadow: none !important;
}
.expo-register-btn:hover {
  border-color: var(--brand-orange-dark) !important;
  background: var(--brand-orange-dark) !important;
  color: #fff;
  box-shadow: none !important;
}
@media (max-width: 740px) {
  .expo-hero-copy { padding: 10px 0 6px; }
  .expo-partner-row {
    gap: 6px;
    min-height: 31px;
    margin-bottom: 8px;
    padding-bottom: 7px;
  }
  .expo-partner-logo { height: 25px; max-height: 25px; }
  img.expo-hero-logo { width: min(215px,72vw); }
  .expo-logo-heading { margin-bottom: 7px; }
  .expo-strapline { margin-bottom: 6px; font-size: .88rem; line-height: 1.2; }
  .expo-sub { font-size: .88rem; line-height: 1.38; }
  .expo-actions { margin-top: 11px; }
  .expo-actions .btn { min-height: 43px; padding-inline: 8px; font-size: 11.5px; }
  .expo-trust { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 5px; margin-top: 9px; font-size: 9.7px; }
  .expo-trust li { min-width: 0; padding-inline-start: 12px; overflow: hidden; text-overflow: clip; }
  .expo-hero-visual { height: clamp(210px,64vw,250px); margin-top: 0; }
  .expo-machine { height: clamp(210px,64vw,250px); }
  .expo-raffle-badge { top: 8px; right: 2px; width: clamp(78px,24vw,94px); }
  .expo-compact-countdown { left: 4px; bottom: 4px; width: min(245px,74%); padding: 7px 5px; border-radius: 8px; }
  .expo-compact-countdown .expo-countdown-item { padding-inline: 3px; }
  .expo-compact-countdown .expo-countdown-item b { font-size: 1.05rem; }
  .expo-event-band { border-radius: 0 !important; }
  .expo-event-band-inner { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .expo-event-band-inner > .expo-band-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 104px;
    max-height: 104px;
    min-height: 104px;
    padding: 8px 4px;
    text-align: center;
  }
  .expo-band-item + .expo-band-item { border-inline-start: 1px solid rgba(255,255,255,.58); border-block-start: 0; }
  .expo-band-icon { flex: 0 0 24px; width: 24px; height: 28px; }
  .expo-band-item > div { width: 100%; min-width: 0; }
  .expo-band-item strong { font-size: clamp(.58rem,2.35vw,.72rem); line-height: 1.05; letter-spacing: 0; text-align: center; white-space: normal; }
  .expo-band-item p { margin-top: 2px; font-size: clamp(.52rem,1.9vw,.65rem); line-height: 1.1; text-align: center; }
  .expo-band-time strong { font-size: clamp(.76rem,3.5vw,.95rem); }
  .expo-band-time a { margin-top: 3px; font-size: .55rem; }
}
@media (max-width: 350px) {
  .expo-hero-copy { padding-block: 6px 4px; }
  .expo-partner-row { gap: 5px; min-height: 25px; margin-bottom: 6px; padding-bottom: 6px; }
  .expo-partner-logo { height: 21px; max-height: 21px; }
  img.expo-hero-logo { width: min(190px,68vw); }
  .expo-logo-heading { margin-bottom: 5px; }
  .expo-strapline { margin-bottom: 5px; font-size: .83rem; }
  .expo-sub { font-size: .84rem; line-height: 1.32; }
  .expo-actions { margin-top: 9px; gap: 5px; }
  .expo-actions .btn { min-height: 44px; padding-inline: 5px; font-size: 10.5px; }
  .expo-trust { gap: 4px 6px; margin-top: 8px; font-size: 9.3px; }
  .expo-trust li { padding-inline-start: 11px; }
  .expo-hero-visual { height: 183px; }
  .expo-machine { height: 183px; }
  .expo-raffle-badge { top: 5px; width: 70px; }
  .expo-compact-countdown { width: min(210px,75%); padding: 6px 4px; }
  .expo-compact-countdown .expo-countdown-item { padding-inline: 2px; }
  .expo-compact-countdown .expo-countdown-item b { font-size: .95rem; }
  .expo-event-band-inner > .expo-band-item { height: 100px; max-height: 100px; min-height: 100px; }
}

/* EXPOTAPIA v14 — cabecera limpia, aparece únicamente al hacer scroll */
.expo-page .expo-scroll-nav {
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .28s cubic-bezier(.2,0,0,1), opacity .2s ease, box-shadow .2s ease;
}
.expo-page .expo-scroll-nav.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.expo-page .expo-scroll-nav .nav-inner { height: var(--nav-height); }
.expo-page .expo-scroll-nav .nav-links {
  position: static;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  visibility: visible;
  transform: none;
  max-height: none;
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.expo-page .expo-scroll-nav .nav-links > li:not(:last-child) { display: none; }
.expo-page .expo-scroll-nav .nav-cta {
  margin-left: 0;
  border: 1px solid #f59e0b;
  border-radius: 6px !important;
  background: #f59e0b !important;
  color: #173b6c !important;
  padding: 9px 17px !important;
  font-size: 12px;
  font-weight: 800 !important;
  letter-spacing: .03em;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(245,158,11,.22) !important;
}
.expo-page .expo-scroll-nav .nav-cta:hover {
  background: #b45309 !important;
  border-color: #b45309;
  color: #fff !important;
  transform: translateY(-1px);
}
.expo-page .expo-hero { padding-top: 10px; }
@media (max-width: 560px) {
  .expo-page .expo-scroll-nav .nav-logo-img { height: 30px; }
  .expo-page .expo-scroll-nav .nav-cta { padding: 8px 12px !important; font-size: 11px; }
}
@media (max-width: 740px) {
  .expo-page .expo-hero { padding-top: 2px; }
}
@media (prefers-reduced-motion: reduce) {
  .expo-page .expo-scroll-nav { transition: none; }
}

/* EXPOTAPIA v16 — hero afinado: misma información, mejor proporción visual */
.expo-partner-row .expo-partner-logo:nth-child(2),
.expo-partner-row .expo-partner-logo:nth-child(3) {
  height: 28px;
  max-height: 28px;
}
.expo-logo-heading {
  width: min(290px,76vw);
  margin-bottom: 12px;
}
.expo-hero-inner {
  min-height: 535px;
}
.expo-hero-copy {
  padding: 30px 0 26px;
}
.expo-actions {
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
}
.expo-hero-visual {
  height: 535px;
}
.expo-machine {
  height: 500px;
}
.expo-raffle-badge {
  top: 42px;
  width: 154px;
}
.expo-compact-countdown {
  bottom: 20px;
  width: min(294px,62%);
  padding: 10px 8px;
}
.expo-band-item {
  gap: 12px;
  min-height: 118px;
  padding: 20px 24px;
}
.expo-event-band-inner > .expo-band-item {
  height: 118px;
  max-height: 118px;
  min-height: 118px;
  padding: 20px 24px;
}
.expo-band-icon {
  flex-basis: 36px;
  width: 36px;
  height: 42px;
}
.expo-band-item strong {
  font-size: clamp(1.05rem,1.6vw,1.4rem);
}
.expo-band-item p {
  font-size: clamp(.8rem,1.05vw,.96rem);
}
.expo-band-time strong {
  font-size: clamp(1.3rem,1.9vw,1.6rem);
}
.expo-band-time a {
  margin-top: 6px;
  font-size: .72rem;
}
@media (max-width: 740px) {
  .expo-hero-inner { min-height: 0; }
  .expo-hero-copy { padding: 18px 0 8px; }
  .expo-logo-heading {
    width: min(225px,68vw);
    margin-bottom: 7px;
  }
  .expo-partner-row .expo-partner-logo:nth-child(2),
  .expo-partner-row .expo-partner-logo:nth-child(3) {
    height: 21px;
    max-height: 21px;
  }
  .expo-actions {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  }
  .expo-hero-visual {
    height: clamp(238px,68vw,270px);
  }
  .expo-machine {
    height: clamp(215px,62vw,245px);
  }
  .expo-raffle-badge {
    top: 8px;
    width: clamp(82px,22vw,100px);
  }
  .expo-compact-countdown {
    left: 4px;
    bottom: 6px;
    width: min(235px,72%);
    padding: 8px 6px;
    border-radius: 12px 18px 12px 18px;
  }
  .expo-band-item,
  .expo-event-band-inner > .expo-band-item {
    height: 98px;
    max-height: 98px;
    min-height: 98px;
    gap: 3px;
    padding: 7px 4px;
  }
  .expo-band-icon {
    flex-basis: 22px;
    width: 22px;
    height: 25px;
  }
  .expo-band-item strong {
    font-size: clamp(.56rem,2.2vw,.68rem);
    line-height: 1.05;
  }
  .expo-band-item p {
    margin-top: 2px;
    font-size: clamp(.5rem,1.8vw,.6rem);
    line-height: 1.08;
  }
  .expo-band-time strong { font-size: clamp(.72rem,3.3vw,.88rem); }
  .expo-band-time a { margin-top: 2px; font-size: .52rem; }
}
@media (max-width: 350px) {
  .expo-partner-row .expo-partner-logo:first-child {
    height: 25px;
    max-height: 25px;
  }
  .expo-hero-visual { height: 248px; }
  .expo-machine { height: 220px; }
  .expo-raffle-badge { width: 82px; }
  .expo-event-band-inner > .expo-band-item {
    height: 94px;
    max-height: 94px;
    min-height: 94px;
  }
}

/* EXPOTAPIA v17 — desktop ligeramente más amplio, móvil intacto */
@media (min-width: 1025px) {
  .expo-partner-row {
    min-height: 46px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  .expo-partner-row .expo-partner-logo:first-child {
    height: 36px;
    max-height: 36px;
  }
  .expo-partner-row .expo-partner-logo:nth-child(2),
  .expo-partner-row .expo-partner-logo:nth-child(3) {
    height: 30px;
    max-height: 30px;
  }
  .expo-logo-heading {
    width: min(310px,78vw);
    margin-bottom: 14px;
  }
  .expo-hero-inner {
    min-height: 575px;
  }
  .expo-hero-copy {
    padding: 32px 0 30px;
  }
  .expo-strapline {
    font-size: clamp(1.05rem,1.55vw,1.32rem);
  }
  .expo-sub {
    font-size: 1.08rem;
  }
  .expo-actions {
    max-width: 510px;
  }
  .expo-actions .btn {
    min-height: 50px;
    padding-inline: 20px;
    font-size: 13px;
  }
  .expo-hero-visual {
    height: 565px;
  }
  .expo-machine {
    height: 525px;
  }
  .expo-raffle-badge {
    top: 44px;
    width: 164px;
  }
  .expo-compact-countdown {
    bottom: 20px;
    width: min(310px,63%);
    padding: 11px 9px;
  }
  .expo-compact-countdown .expo-countdown-item b {
    font-size: clamp(1.35rem,2.3vw,1.9rem);
  }
  .expo-band-item {
    gap: 14px;
    min-height: 124px;
    padding: 22px 26px;
  }
  .expo-event-band-inner > .expo-band-item {
    height: 124px;
    max-height: 124px;
    min-height: 124px;
    padding: 22px 26px;
  }
  .expo-band-icon {
    flex-basis: 38px;
    width: 38px;
    height: 44px;
  }
  .expo-band-item strong {
    font-size: clamp(1.05rem,1.68vw,1.48rem);
  }
  .expo-band-item p {
    font-size: clamp(.8rem,1.1vw,1rem);
  }
  .expo-band-time strong {
    font-size: clamp(1.3rem,2vw,1.68rem);
  }
  .expo-band-time a {
    font-size: .74rem;
  }
}

/* EXPOTAPIA v18 — adaptación mobile: lectura, aire y composición */
@media (max-width: 740px) {
  .expo-hero-inner {
    grid-template-columns: minmax(0,1fr);
    grid-template-rows: max-content max-content;
    align-items: start;
  }
  .expo-hero-copy {
    align-self: start;
    min-height: 0;
    padding: 12px 0 5px;
  }
  .expo-partner-row {
    min-height: 30px;
    margin-bottom: 7px;
    padding-bottom: 6px;
  }
  .expo-logo-heading {
    width: min(215px,66vw);
    margin-bottom: 8px;
  }
  .expo-strapline {
    margin-bottom: 6px;
    font-size: .9rem;
    line-height: 1.2;
  }
  .expo-sub {
    font-size: .9rem;
    line-height: 1.4;
  }
  .expo-actions {
    grid-template-columns: minmax(0,1fr);
    gap: 7px;
    margin-top: 12px;
  }
  .expo-actions .btn {
    min-height: 44px;
    padding-inline: 8px;
    font-size: 11.5px;
  }
  .expo-brands {
    margin-top: 9px;
    padding-top: 7px;
  }
  .expo-brands-row {
    gap: 12px;
    padding-bottom: 2px;
  }
  .expo-brands-row img {
    flex: 0 0 62px;
    width: 62px;
    max-height: 19px;
  }
  .expo-hero-visual {
    height: clamp(230px,65vw,255px);
    margin-top: 0;
  }
  .expo-machine {
    left: 52%;
    height: clamp(205px,59vw,230px);
    max-width: 65%;
  }
  .expo-raffle-badge {
    top: 8px;
    right: 8px;
    width: clamp(78px,21vw,92px);
  }
  .expo-compact-countdown {
    left: 0;
    bottom: 6px;
    width: min(218px,68%);
    padding: 8px 5px;
  }
  .expo-event-band-inner {
    grid-template-columns: minmax(0,1fr);
  }
  .expo-band-item,
  .expo-event-band-inner > .expo-band-item {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    height: 62px;
    max-height: 62px;
    min-height: 62px;
    padding: 8px 20px;
    text-align: left;
  }
  .expo-band-item + .expo-band-item {
    border-inline-start: 0;
    border-block-start: 1px solid rgba(255,255,255,.58);
  }
  .expo-band-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 28px;
  }
  .expo-band-item > div {
    width: auto;
  }
  .expo-band-item strong {
    font-size: clamp(.78rem,3.1vw,.9rem);
    line-height: 1.08;
    text-align: left;
    white-space: normal;
  }
  .expo-band-item p {
    margin-top: 2px;
    font-size: clamp(.66rem,2.5vw,.74rem);
    line-height: 1.08;
    text-align: left;
  }
  .expo-band-time strong {
    font-size: clamp(.9rem,3.8vw,1.05rem);
  }
  .expo-band-time a {
    margin-top: 2px;
    font-size: .6rem;
  }
}
@media (max-width: 350px) {
  .expo-hero-copy { padding-block: 10px 4px; }
  .expo-logo-heading { width: min(205px,64vw); }
  .expo-actions .btn { min-height: 44px; font-size: 10.8px; }
  .expo-hero-visual { height: 238px; }
  .expo-machine { height: 210px; }
  .expo-raffle-badge { width: 78px; }
  .expo-compact-countdown { width: min(198px,68%); }
  .expo-band-item,
  .expo-event-band-inner > .expo-band-item {
    height: 60px;
    max-height: 60px;
    min-height: 60px;
    padding-inline: 16px;
  }
}

/* EXPOTAPIA v19 — funnel propio: lead → guía → registro oficial */
.expo-registration-panel {
  position: relative;
  max-width: 570px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(32,88,160,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 40px rgba(22,63,120,.12);
}
.expo-registration-panel:focus-within {
  border-color: rgba(32,88,160,.38);
  box-shadow: 0 18px 46px rgba(22,63,120,.16);
}
.expo-registration-eyebrow,
.expo-thanks-copy > span {
  display: block;
  color: var(--brand-orange-text);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
}
.expo-registration-head h2,
.expo-thanks-copy h2 {
  margin: 4px 0 5px;
  color: var(--brand-blue-dark);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.expo-registration-head p,
.expo-thanks-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: .78rem;
  line-height: 1.42;
}
.expo-lead-form {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  margin-top: 12px;
}
.expo-field {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.expo-field > span:first-child {
  color: var(--brand-blue-dark);
  font-size: .7rem;
  font-weight: 800;
}
.expo-field input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  padding: 10px 12px;
  color: var(--text-primary);
  font: inherit;
  font-size: .86rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.expo-field input::placeholder { color: #94a3b8; }
.expo-field input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(32,88,160,.12);
}
.expo-phone-input {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 44px;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.expo-phone-input:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(32,88,160,.12);
}
.expo-phone-input b {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 10px 0 12px;
  border-right: 1px solid #e2e8f0;
  background: #f8fafc;
  color: var(--brand-blue-dark);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1;
}
.expo-phone-input input {
  flex: 1;
  min-width: 0;
  height: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
  padding: 0 12px;
  background: transparent;
}
.expo-register-btn[type="submit"] {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: var(--brand-orange) !important;
  box-shadow: none !important;
  color: #fff;
  cursor: pointer;
}
.expo-register-btn[type="submit"] svg { width: 17px; height: 17px; }
.expo-register-btn[type="submit"]:hover { background: var(--brand-orange-dark) !important; box-shadow: none !important; transform: none; }
.expo-register-btn[type="submit"]:disabled { cursor: wait; opacity: .76; transform: none; }
.expo-consent,
.expo-form-status {
  grid-column: 1 / -1;
  margin: 0;
}
.expo-consent {
  color: #64748b;
  font-size: .64rem;
  line-height: 1.35;
}
.expo-form-status {
  min-height: 1em;
  color: var(--brand-blue-dark);
  font-size: .72rem;
  font-weight: 700;
}
.expo-form-status.is-error { color: #b91c1c; }
.expo-form-status.is-loading { color: var(--brand-blue); }
.expo-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.expo-thanks[hidden] { display: none !important; }
.expo-thanks {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 12px 13px;
  outline: 0;
}
.expo-thanks-check {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eaf8ef;
  color: #15803d;
}
.expo-thanks-check svg { width: 21px; height: 21px; }
.expo-thanks-copy strong { color: inherit; }
.expo-registration-steps {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  margin: 4px 0 1px;
  padding: 0;
  list-style: none;
}
.expo-registration-steps li {
  display: grid;
  grid-template-columns: 23px minmax(0,1fr);
  align-items: center;
  gap: 8px;
  min-height: 30px;
  color: #334155;
  font-size: .75rem;
  line-height: 1.3;
}
.expo-registration-steps li > b {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 7px;
  background: var(--brand-blue-light);
  color: var(--brand-blue-dark);
  font-size: .7rem;
}
.expo-thanks-actions {
  grid-column: 1 / -1;
  display: grid;
  gap: 7px;
}
.expo-official-btn,
.expo-help-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  text-align: center;
  font-size: .72rem;
  font-weight: 900;
}
.expo-official-btn {
  border: 0;
  background: linear-gradient(135deg,#f97316,#ea580c);
  color: #fff;
  box-shadow: 0 9px 20px rgba(234,88,12,.2);
}
.expo-help-btn {
  border: 1px solid rgba(32,88,160,.24);
  background: #fff;
  color: var(--brand-blue-dark);
}
.expo-official-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #64748b;
  font-size: .63rem;
  line-height: 1.35;
  text-align: center;
}
.expo-registration-cta .expo-register-btn { text-decoration: none; }
@media (max-width: 740px) {
  .expo-registration-panel {
    margin-top: 12px;
    padding: 15px;
    border-radius: 18px;
  }
  .expo-registration-head h2,
  .expo-thanks-copy h2 { font-size: 1rem; }
  .expo-registration-head p,
  .expo-thanks-copy p { font-size: .75rem; }
  .expo-lead-form { grid-template-columns: minmax(0,1fr); gap: 10px; }
  .expo-register-btn[type="submit"],
  .expo-consent,
  .expo-form-status { grid-column: 1; }
  .expo-field input { min-height: 45px; }
  .expo-hero-copy:has(.expo-registration-panel) { padding-bottom: 10px; }
  .expo-hero-inner:has(.expo-registration-panel) { grid-template-rows: max-content max-content; }
}
@media (max-width: 350px) {
  .expo-registration-panel { padding: 13px; }
  .expo-registration-steps li { font-size: .71rem; }
}
@media (prefers-reduced-motion: reduce) {
  .expo-register-btn[type="submit"] { transition: none; }
}

/* Hallmark · pre-emit critique: P5 H5 E4 S5 R4 V5 */
/* EXPOTAPIA v20 — credencial compacta + primera vista equilibrada */
.expo-registration-panel {
  --expo-card-pad: 16px;
}
.expo-registration-panel {
  overflow: hidden;
  position: relative;
  max-width: 560px;
  padding: var(--expo-card-pad);
  border: 1px solid rgba(32,88,160,.12);
  border-radius: 18px 30px 18px 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 14px 36px rgba(22,63,120,.10), 0 2px 10px rgba(22,63,120,.06);
}
.expo-registration-panel::after {
  display: none;
}
.expo-registration-panel > * {
  position: relative;
  z-index: 1;
}
.expo-registration-head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.expo-registration-head h2 {
  margin: 0;
  color: var(--brand-blue-dark);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.expo-registration-head p {
  margin: 0;
  color: var(--text-secondary);
  font-size: .82rem;
  line-height: 1.45;
}
.expo-registration-eyebrow { display: none; }
.expo-field > span:first-child { font-size: .68rem; letter-spacing: .01em; }
.expo-field input { font-size: .88rem; letter-spacing: .01em; }
.expo-phone-input b { letter-spacing: .02em; }
.expo-phone-input input { font-size: .88rem; }
.expo-registration-panel:focus-within {
  border-color: rgba(32,88,160,.18);
  box-shadow: 0 12px 32px rgba(22,63,120,.11);
}
.expo-register-btn[type="submit"],
.expo-official-btn {
  background: var(--brand-orange) !important;
  box-shadow: none !important;
  color: var(--text-inverse);
}
.expo-register-btn[type="submit"] {
  box-sizing: border-box;
  height: 44px;
  min-height: 44px;
  padding-block: 0;
  line-height: 1;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .02em;
  border-radius: 10px;
  box-shadow: none !important;
}
.expo-register-btn[type="submit"]:hover,
.expo-official-btn:hover {
  background: var(--brand-orange-dark) !important;
  box-shadow: none !important;
  transform: none;
}
.expo-register-btn[type="submit"]:focus-visible,
.expo-official-btn:focus-visible {
  outline: 3px solid var(--brand-blue-dark);
  outline-offset: 2px;
}
.expo-register-btn[type="submit"]:active,
.expo-official-btn:active { transform: translateY(1px); }
.expo-register-btn[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: .55;
  filter: saturate(.45);
}
.expo-field input {
  min-height: 44px;
  border-width: 1px;
  outline: 2px solid transparent;
  outline-offset: 1px;
}
.expo-field input:hover { border-color: var(--brand-blue); }
.expo-field input:focus { box-shadow: none; }
.expo-field input:focus-visible {
  border-color: var(--brand-blue);
  outline-color: var(--brand-blue);
}
.expo-phone-input {
  min-height: 44px;
  border-width: 1px;
  outline: 2px solid transparent;
  outline-offset: 1px;
}
.expo-phone-input:hover { border-color: var(--brand-blue); }
.expo-phone-input:focus-within {
  border-color: var(--brand-blue);
  outline-color: var(--brand-blue);
  box-shadow: none;
}
.expo-form-status { min-height: 1em; }
.expo-page #beneficios.section {
  padding-block: clamp(64px,7vw,92px);
  background: var(--surface-primary);
}
.expo-page #beneficios .section-head {
  max-width: 680px;
  margin-inline: auto;
}
.expo-page .expo-benefits-grid { gap: 18px; }
.expo-page .expo-benefit {
  min-height: 224px;
  border: 1px solid rgba(32,88,160,.14);
  border-radius: 18px 30px 18px 30px;
  background: var(--surface-primary);
  box-shadow: 0 12px 30px rgba(22,63,120,.07);
}
.expo-page .expo-benefit:nth-child(even) { border-radius: 30px 18px 30px 18px; }
.expo-page .expo-benefit:hover {
  border-color: rgba(32,88,160,.28);
  box-shadow: 0 16px 34px rgba(22,63,120,.1);
  transform: translateY(-3px);
}
@media (min-width: 1025px) {
  .expo-page .expo-benefit:nth-child(1),
  .expo-page .expo-benefit:nth-child(2) { grid-column: span 6; }
  .expo-page .expo-benefit:nth-child(n+3) {
    grid-column: span 3;
    min-height: 196px;
  }
}

@media (min-width: 1025px) {
  .expo-page .expo-hero { padding-top: 8px; }
  .expo-page .expo-hero::before {
    background: linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.94) 44%,rgba(248,250,252,.68) 66%,rgba(248,250,252,.2) 100%);
  }
  .expo-page .expo-hero-inner {
    grid-template-columns: minmax(0,1.12fr) minmax(360px,.88fr);
    align-items: end;
    gap: clamp(26px,3.2vw,42px);
    min-height: 0;
  }
  .expo-page .expo-hero-copy {
    max-width: 650px;
    padding: 16px 0 18px;
  }
  .expo-page .expo-partner-row {
    min-height: 36px;
    margin-bottom: 9px;
    padding-bottom: 8px;
  }
  .expo-page .expo-partner-row .expo-partner-logo:first-child {
    height: 30px;
    max-height: 30px;
  }
  .expo-page .expo-partner-row .expo-partner-logo:nth-child(2),
  .expo-page .expo-partner-row .expo-partner-logo:nth-child(3) {
    height: 25px;
    max-height: 25px;
  }
  .expo-page .expo-logo-heading {
    width: min(290px,72vw);
    margin-bottom: 8px;
  }
  .expo-page .expo-strapline {
    margin-bottom: 4px;
    font-size: 1.08rem;
    line-height: 1.2;
  }
  .expo-page .expo-sub {
    margin-bottom: 5px;
    font-size: .94rem;
    line-height: 1.34;
  }
  .expo-page .expo-stitch { margin-block: 7px 5px; }
  .expo-page .expo-date-rail {
    max-width: none;
    margin-top: 6px;
  }
  .expo-page .expo-date-cell {
    min-height: 48px;
    padding-block: 4px;
  }
  .expo-page .expo-date-cell b { font-size: 1.36rem; }
  .expo-page .expo-meta {
    gap: 6px;
    margin-top: 7px;
  }
  .expo-page .expo-meta-pill {
    min-height: 30px;
    padding: 6px 10px;
    font-size: .72rem;
  }
  .expo-page .expo-registration-panel {
    max-width: 560px;
    margin-top: 0;
    padding: 18px;
  }
  .expo-page .expo-registration-head {
    gap: 6px;
    margin-bottom: 14px;
  }
  .expo-page .expo-registration-eyebrow { display: none; }
  .expo-page .expo-registration-head h2 {
    margin: 0;
    font-size: 1.22rem;
  }
  .expo-page .expo-registration-head p {
    font-size: .84rem;
    line-height: 1.45;
  }
  .expo-page .expo-lead-form {
    grid-template-columns: minmax(0,.92fr) minmax(0,.92fr) minmax(176px,1.16fr);
    align-items: end;
    gap: 10px;
    margin-top: 0;
  }
  .expo-page .expo-field { gap: 3px; }
  .expo-page .expo-field > span:first-child { font-size: .68rem; }
  .expo-page .expo-field input { min-height: 44px; padding: 9px 12px; font-size: .88rem; }
  .expo-page .expo-phone-input { min-height: 44px; }
  .expo-page .expo-register-btn[type="submit"] {
    grid-column: auto;
    min-height: 44px;
    padding-inline: 14px;
    font-size: .84rem;
    white-space: nowrap;
  }
  .expo-page .expo-consent,
  .expo-page .expo-form-status { grid-column: 1 / -1; }
  .expo-page .expo-consent {
    margin-top: -1px;
    font-size: .57rem;
    line-height: 1.22;
  }
  .expo-page .expo-form-status { min-height: 1em; }
  .expo-page .expo-brands {
    margin-top: 16px;
    padding-top: 0;
    border-top: 0;
  }
  .expo-page .expo-brands-row { gap: 18px; }
  .expo-page .expo-brands-row img {
    width: 76px;
    max-height: 18px;
  }
  .expo-page .expo-hero-visual { height: 532px; }
  .expo-page .expo-machine { height: 505px; }
  .expo-page .expo-raffle-badge {
    top: 24px;
    right: 2px;
    width: 154px;
  }
  .expo-page .expo-compact-countdown {
    bottom: 15px;
    width: min(286px,64%);
  }
  .expo-page .expo-event-band-inner > .expo-band-item,
  .expo-page .expo-band-item {
    height: 108px;
    max-height: 108px;
    min-height: 108px;
    padding: 17px 22px;
  }
}

@media (min-width: 1025px) {
  .expo-page .expo-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 0 20px;
  }
  .expo-page .expo-logo-heading { margin-bottom: 0; }
  .expo-page .expo-strapline { margin-bottom: 0; }
  .expo-page .expo-sub { margin-bottom: 0; }
  .expo-page .expo-stitch { margin-block: 0; }
  .expo-page .expo-date-rail { margin-top: 0; }
  .expo-page .expo-meta { margin-top: 0; }
  .expo-page .expo-registration-panel { margin-top: 0; }
  .expo-page .expo-brands { margin-top: 2px; }
}

@media (min-width: 741px) and (max-width: 1024px) {
  .expo-page .expo-hero-copy { padding-block: 16px; }
  .expo-page .expo-logo-heading { width: min(255px,72vw); margin-bottom: 8px; }
  .expo-page .expo-registration-panel { margin-top: 10px; padding: 13px; }
  .expo-page .expo-registration-head p { font-size: .7rem; }
  .expo-page .expo-lead-form { gap: 12px; margin-top: 4px; }
  .expo-page .expo-register-btn[type="submit"] { min-height: 44px; }
  .expo-page .expo-consent { font-size: .58rem; }
  .expo-page .expo-form-status { min-height: 1em; }
}

@media (max-width: 740px) {
  .expo-page .expo-hero {
    padding-top: 0;
    background-position: 70% center;
  }
  .expo-page .expo-hero::before {
    background: linear-gradient(180deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.97) 56%,rgba(248,250,252,.72) 78%,rgba(248,250,252,.24) 100%);
  }
  .expo-page .expo-hero-copy { padding: 10px 0 4px; }
  .expo-page .expo-partner-row {
    min-height: 27px;
    margin-bottom: 6px;
    padding-bottom: 5px;
  }
  .expo-page .expo-partner-row .expo-partner-logo:first-child {
    height: 23px;
    max-height: 23px;
  }
  .expo-page .expo-partner-row .expo-partner-logo:nth-child(2),
  .expo-page .expo-partner-row .expo-partner-logo:nth-child(3) {
    height: 19px;
    max-height: 19px;
  }
  .expo-page .expo-logo-heading {
    width: min(218px,66vw);
    margin-bottom: 5px;
  }
  .expo-page .expo-strapline {
    margin-bottom: 3px;
    font-size: .88rem;
  }
  .expo-page .expo-sub {
    margin-bottom: 4px;
    font-size: .82rem;
    line-height: 1.28;
  }
  .expo-page .expo-stitch { margin-block: 5px 4px; }
  .expo-page .expo-date-rail { margin-top: 4px; }
  .expo-page .expo-date-cell {
    min-height: 43px;
    padding-block: 3px;
  }
  .expo-page .expo-date-cell small,
  .expo-page .expo-date-cell em { font-size: .53rem; }
  .expo-page .expo-date-cell b { font-size: 1.12rem; }
  .expo-page .expo-meta {
    gap: 5px;
    margin-top: 5px;
  }
  .expo-page .expo-meta-pill {
    min-height: 28px;
    padding: 5px 8px;
    font-size: .62rem;
    line-height: 1.15;
  }
  .expo-page .expo-registration-panel {
    margin-top: 7px;
    padding: 11px 16px 10px 11px;
    border-radius: 14px 22px 14px 22px;
  }
  .expo-page .expo-registration-head h2 {
    margin-block: 2px 3px;
    font-size: .94rem;
  }
  .expo-page .expo-registration-head p {
    font-size: .67rem;
    line-height: 1.3;
  }
  .expo-page .expo-registration-eyebrow { font-size: .58rem; }
  .expo-page .expo-lead-form {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 7px;
    margin-top: 7px;
  }
  .expo-page .expo-field { gap: 3px; }
  .expo-page .expo-field > span:first-child { font-size: .62rem; }
  .expo-page .expo-field input {
    min-height: 44px;
    padding: 7px 9px;
    font-size: .77rem;
  }
  .expo-page .expo-phone-input b {
    padding: 0;
    font-size: .74rem;
  }
  .expo-page .expo-phone-input input { padding: 0 12px 0 0; }
  .expo-page .expo-registration-panel {
    padding: 14px;
    border-radius: 14px 22px 14px 22px;
  }
  .expo-page .expo-registration-head {
    gap: 5px;
    margin-bottom: 10px;
  }
  .expo-page .expo-registration-head h2 { font-size: 1.08rem; }
  .expo-page .expo-registration-head p { font-size: .78rem; }
  .expo-page .expo-field > span:first-child { font-size: .66rem; }
  .expo-page .expo-field input { padding: 8px 10px; font-size: .84rem; }
  .expo-page .expo-phone-input b { font-size: .76rem; }
  .expo-page .expo-phone-input input { font-size: .84rem; }
  .expo-page .expo-register-btn[type="submit"] {
    grid-column: 1 / -1;
    min-height: 44px;
    font-size: .72rem;
  }
  .expo-page .expo-consent,
  .expo-page .expo-form-status { grid-column: 1 / -1; }
  .expo-page .expo-consent {
    font-size: .56rem;
    line-height: 1.22;
  }
  .expo-page .expo-form-status { min-height: 1em; }
  .expo-page .expo-brands {
    margin-top: 14px;
    padding-top: 0;
    border-top: 0;
  }
  .expo-page .expo-brands-row { gap: 10px; }
  .expo-page .expo-brands-row img {
    flex-basis: 60px;
    width: 60px;
    max-height: 17px;
  }
  .expo-page .expo-hero-visual { height: clamp(195px,53vw,215px); }
  .expo-page .expo-machine { height: clamp(185px,50vw,205px); }
  .expo-page .expo-raffle-badge {
    top: 5px;
    width: clamp(76px,20vw,86px);
  }
  .expo-page .expo-compact-countdown {
    bottom: 4px;
    width: min(208px,67%);
    padding: 7px 5px;
  }
  .expo-page .expo-band-item,
  .expo-page .expo-event-band-inner > .expo-band-item {
    height: 56px;
    max-height: 56px;
    min-height: 56px;
    padding-block: 6px;
  }
  .expo-page .expo-benefit { min-height: 0; }
}

@media (max-width: 350px) {
  .expo-page .expo-logo-heading { width: min(202px,64vw); }
  .expo-page .expo-registration-panel { padding: 10px 14px 9px 10px; }
  .expo-page .expo-registration-head p { font-size: .63rem; }
  .expo-page .expo-field input { font-size: .72rem; }
  .expo-page .expo-hero-visual { height: 186px; }
  .expo-page .expo-machine { height: 178px; }
  .expo-page .expo-raffle-badge { width: 72px; }
  .expo-page .expo-compact-countdown { width: min(188px,67%); }
}

@media (prefers-reduced-motion: reduce) {
  .expo-page .expo-benefit,
  .expo-page .expo-register-btn[type="submit"] { transition: none; }
}

/* FIX 2026-08-27 — WhatsApp +51 + número en UNA sola caja (sin borde doble) */
.expo-phone-input{display:flex !important;align-items:stretch !important;gap:0 !important;border-radius:10px !important;overflow:hidden !important}
.expo-phone-input b{display:flex !important;align-items:center !important;flex-shrink:0 !important;padding:0 10px 0 12px !important;border-right:1px solid #e2e8f0 !important;background:#f8fafc !important;color:var(--brand-blue-dark) !important;font-weight:700 !important}
.expo-phone-input input{flex:1 !important;min-width:0 !important;border:0 !important;border-radius:0 !important;box-shadow:none !important;appearance:none;-webkit-appearance:none;background:transparent !important;outline:none !important;min-height:42px !important;height:42px !important;padding:0 12px !important}
.expo-phone-input input:focus,.expo-phone-input input:focus-visible{border:0 !important;box-shadow:none !important;outline:none !important}
.expo-phone-input:focus-within{border-color:var(--brand-blue) !important;box-shadow:0 0 0 3px rgba(32,88,160,.12) !important}

/* AJUSTES 2026-08-27 — gap strapline→sub, panel equalizado, marcas más grandes (flex 24px) */
.expo-page .expo-hero-copy{gap:5px !important}
.expo-page .expo-strapline{margin:0 0 1px !important}
.expo-page .expo-sub{margin:0 0 3px !important}
.expo-page .expo-registration-panel{padding:14px 16px 13px !important}
.expo-page .expo-registration-head{gap:3px !important;margin-bottom:6px !important}
.expo-page .expo-brands-row{display:flex !important;flex-wrap:nowrap !important;align-items:center !important;justify-content:space-between !important;gap:22px !important;overflow:hidden !important;width:100% !important}
.expo-page .expo-brands-row img{flex:1 1 0 !important;width:100% !important;height:auto !important;max-height:22px !important;opacity:1 !important;object-fit:contain !important}


.expo-form-status:empty{display:none !important;min-height:0 !important}
.expo-form-status{min-height:0 !important}
.expo-form-status:not(:empty){margin-top:6px !important;min-height:11px !important}
.expo-page .expo-registration-panel{padding-bottom:13px !important}

.expo-page .expo-logo-heading{width:min(320px,82vw) !important;margin-bottom:8px !important}
.expo-page .expo-hero-copy{gap:7px !important}

.expo-partner-row{gap:14px !important;border-bottom-color:rgba(32,88,160,.09) !important}
.expo-partner-row{display:flex !important;align-items:center !important;justify-content:flex-start !important;gap:10px !important;width:fit-content !important;grid-template-columns:none !important;border-bottom-color:rgba(32,88,160,.09) !important}
.expo-partner-row .expo-partner-logo{width:auto !important;flex:0 0 auto !important}
/* Inscríbete claro premium */
    /* Inscríbete claro premium 2026-08-27 — aireado, sin degradado oscuro — reversible */
    .expo-registration-panel{
      border:1px solid rgba(32,88,160,.12) !important;
      border-radius:16px !important;
      background:#fff !important;
      box-shadow:0 10px 28px rgba(16,63,120,.08),0 2px 8px rgba(16,63,120,.05) !important;
      overflow:hidden !important;
    }
    .expo-registration-head{
      margin:0 !important;padding:14px 16px 12px !important;
      background:linear-gradient(180deg,#f8fbff 0%,#eef4ff 100%) !important;
      border-bottom:1px solid rgba(32,88,160,.10) !important;
      gap:3px !important;
    }
    .expo-registration-head h2{
      color:#163f78 !important;font-size:1.16rem !important;font-weight:800 !important;
      letter-spacing:-.02em !important;line-height:1.1 !important;
    }
    .expo-registration-head p{color:#475569 !important;font-size:.8rem !important;line-height:1.4 !important}
    #expo-form-body{padding:12px 16px 14px !important}
    .expo-lead-form{margin-top:0 !important;gap:10px !important}
    @media(max-width:740px){
      .expo-registration-head{padding:12px 14px 10px !important}
      .expo-registration-head h2{font-size:1.05rem !important}
      .expo-registration-head p{font-size:.74rem !important}
      #expo-form-body{padding:10px 14px 12px !important}
    }
/* Inscríbete claro full-bleed 2026-08-27 */
.expo-page .expo-registration-panel{padding:0 !important;overflow:hidden !important;border-radius:16px !important}
.expo-registration-head{margin:0 !important;border-radius:0 !important}
#expo-form-body{padding:12px 16px 14px !important}
@media(min-width:1025px){.expo-page .expo-registration-panel{padding:0 !important}}
@media(max-width:740px){.expo-page .expo-registration-panel{padding:0 !important}}
.expo-page #expo-form-body{padding:0 !important}
.expo-page .expo-lead-form{padding:12px 16px 14px !important}
.expo-page .expo-registration-head{border-radius:16px 16px 0 0 !important;width:100% !important;box-sizing:border-box !important}
/* Mobile visual fix 2026-08-28 */
    /* Mobile visual fix 2026-08-28 — máquina más grande, centrada y aireada — reversible */
    @media(max-width:740px){
      .expo-page .expo-hero-visual{
        height:clamp(310px,84vw,365px) !important;
        margin-top:10px !important;
        border-radius:20px !important;
        overflow:hidden !important;
      }
      .expo-page .expo-hero-visual:before{
        right:6% !important;bottom:-8% !important;width:92% !important;height:88% !important;
        border-radius:40% 36% 16% 20% / 42% 34% 14% 18% !important;
        background:rgba(232,241,254,.58) !important;
        border-color:rgba(32,88,160,.12) !important;
      }
      .expo-page .expo-machine{
        left:50% !important;transform:translateX(-50%) !important;
        height:clamp(275px,76vw,325px) !important;max-width:78% !important;
        object-position:center bottom !important;
      }
      .expo-page .expo-raffle-badge{
        top:10px !important;right:10px !important;
        width:clamp(88px,24vw,108px) !important;
        filter:drop-shadow(0 6px 14px rgba(16,63,120,.22)) !important;
      }
    }
    @media(max-width:390px){
      .expo-page .expo-hero-visual{height:clamp(285px,88vw,330px) !important}
      .expo-page .expo-machine{height:clamp(250px,78vw,295px) !important}
      .expo-page .expo-raffle-badge{width:clamp(82px,23vw,96px) !important}
    }

/* EXPOTAPIA premium conversion 2026-08-28 — reversible con git revert */
.expo-page .expo-date-rail{display:none!important}
.expo-page .expo-stitch{width:78px!important;height:2px!important;margin:4px 0!important;opacity:.82}
.expo-page .expo-meta{gap:8px!important;margin-top:2px!important}
.expo-page .expo-meta-pill{border-color:rgba(32,88,160,.16)!important;background:rgba(255,255,255,.92)!important}
.expo-page .expo-meta-pill--accent{border-color:rgba(249,115,22,.28)!important;background:#fff8ed!important;color:#c2410c!important}
.expo-page .expo-registration-panel{border:1px solid rgba(32,88,160,.14)!important;border-radius:18px!important;background:#fff!important;box-shadow:0 14px 34px rgba(16,63,120,.10),0 2px 8px rgba(16,63,120,.04)!important}
.expo-page .expo-registration-panel:focus-within{border-color:rgba(32,88,160,.28)!important;box-shadow:0 16px 38px rgba(16,63,120,.12)!important}
.expo-page .expo-registration-head{background:linear-gradient(180deg,#fbfdff 0%,#eef4ff 100%)!important}
.expo-page .expo-register-btn[type=submit] svg{width:16px;height:16px;transition:transform 180ms ease}
.expo-page .expo-register-btn[type=submit]:hover svg{transform:translateX(2px)}
.expo-page .expo-benefit:nth-child(1){border-color:rgba(32,88,160,.24)!important;background:linear-gradient(145deg,#edf5ff 0%,#fff 72%)!important}
.expo-page .expo-benefit:nth-child(2){border-color:rgba(249,115,22,.26)!important;background:linear-gradient(145deg,#fff4e8 0%,#fff 74%)!important}
.expo-page .expo-benefit:nth-child(1) h3,.expo-page .expo-benefit:nth-child(1) p{color:inherit!important}
.expo-page .expo-benefit:nth-child(1) h3{color:var(--brand-blue-dark)!important}
.expo-page .expo-benefit:nth-child(1) p{color:var(--text-secondary)!important}
.expo-page .expo-benefit:nth-child(1) .expo-benefit-icon{background:var(--brand-blue)!important;color:#fff!important}
@media(min-width:901px){
  .expo-page .expo-hero{padding-top:4px!important;background-position:60% center!important}
  .expo-page .expo-hero:before{background:linear-gradient(90deg,rgba(255,255,255,.985) 0%,rgba(255,255,255,.95) 43%,rgba(248,251,255,.70) 65%,rgba(232,241,254,.18) 100%)!important}
  .expo-page .expo-hero-inner{min-height:540px!important;align-items:end!important;gap:clamp(30px,3.3vw,46px)!important}
  .expo-page .expo-hero-copy{padding:10px 0 16px!important;gap:7px!important}
  .expo-page .expo-registration-panel{margin-top:5px!important}
  .expo-page .expo-brands{margin-top:12px!important}
  .expo-page .expo-hero-visual{height:520px!important}
  .expo-page .expo-machine{height:510px!important}
  .expo-page .expo-raffle-badge{top:30px!important;width:152px!important}
}
@media(min-width:741px) and (max-width:900px){
  .expo-page .expo-hero{padding-top:4px!important;background-position:65% center!important}
  .expo-page .expo-hero-inner{grid-template-columns:minmax(0,1.25fr) minmax(260px,.75fr)!important;align-items:end!important;gap:20px!important;min-height:0!important}
  .expo-page .expo-hero-copy{max-width:none!important;padding:14px 0 18px!important;gap:7px!important}
  .expo-page .expo-logo-heading{width:min(300px,72vw)!important}
  .expo-page .expo-registration-panel{width:100%!important;max-width:560px!important;margin-top:6px!important}
  .expo-page .expo-lead-form{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .expo-page .expo-register-btn[type=submit]{grid-column:1/-1!important}
  .expo-page .expo-brands{margin-top:12px!important}
  .expo-page .expo-hero-visual{height:470px!important}
  .expo-page .expo-machine{height:450px!important}
  .expo-page .expo-raffle-badge{top:34px!important;right:4px!important;width:120px!important}
}
@media(max-width:740px){
  .expo-page .expo-hero:before{background:linear-gradient(180deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.97) 60%,rgba(248,250,252,.66) 80%,rgba(232,241,254,.18) 100%)!important}
  .expo-page .expo-hero-copy{padding:10px 0 0!important;gap:5px!important}
  .expo-page .expo-stitch{display:none!important}
  .expo-page .expo-meta{display:none!important}
  .expo-page .expo-meta-pill{box-sizing:border-box!important;min-width:0!important;min-height:30px!important;padding:6px 8px!important;font-size:.64rem!important;line-height:1.1!important}
  .expo-page .expo-meta-pill svg{flex:0 0 14px!important;width:14px!important;height:14px!important}
  .expo-page .expo-registration-panel{margin-top:6px!important}
  .expo-page .expo-lead-form{grid-template-columns:minmax(0,.75fr) minmax(0,1.25fr)!important;gap:10px!important}
  .expo-page .expo-register-btn[type=submit]{grid-column:1/-1!important}
  .expo-page .expo-phone-input b{padding:0 8px!important;font-size:.76rem!important}
  .expo-page .expo-phone-input input{padding:0 7px!important;font-size:.78rem!important}
  .expo-page .expo-brands{margin-top:12px!important;overflow:visible!important}
  .expo-page .expo-brands-row{justify-content:flex-start!important;gap:20px!important;width:100%!important;overflow-x:auto!important;overflow-y:hidden!important;padding:2px 2px 6px!important;scroll-snap-type:x proximity;scrollbar-width:none;overscroll-behavior-inline:contain}
  .expo-page .expo-brands-row img{flex:0 0 auto!important;width:auto!important;min-width:0!important;height:20px!important;max-height:20px!important;scroll-snap-align:start}
  .expo-page .expo-hero-visual{height:clamp(248px,72vw,282px)!important;margin-top:6px!important}
  .expo-page .expo-machine{height:clamp(230px,68vw,265px)!important;max-width:78%!important}
  .expo-page .expo-raffle-badge{top:8px!important;right:8px!important;width:clamp(84px,22vw,92px)!important}
  .expo-page #beneficios.section{padding-block:56px!important;overflow:hidden}
  .expo-page #beneficios .section-head{text-align:left!important}
  .expo-page .expo-benefits-grid{display:flex!important;grid-template-columns:none!important;gap:12px!important;width:auto!important;margin:28px -20px 0!important;padding:4px 20px 18px!important;overflow-x:auto!important;overflow-y:hidden!important;scroll-snap-type:x mandatory;scroll-padding-left:20px;scrollbar-width:none;overscroll-behavior-inline:contain}
  .expo-page .expo-benefits-grid::-webkit-scrollbar,.expo-page .expo-brands-row::-webkit-scrollbar{display:none}
  .expo-page .expo-benefit,.expo-page .expo-benefit:nth-child(n){display:grid!important;flex:0 0 min(78vw,304px)!important;grid-template-columns:42px minmax(0,1fr)!important;grid-column:auto!important;align-content:start!important;min-height:184px!important;padding:20px 18px!important;border-radius:20px 28px 20px 28px!important;scroll-snap-align:start}
  .expo-page .expo-benefit:nth-child(even){border-radius:28px 20px 28px 20px!important}
  .expo-page .expo-benefit-icon{grid-row:1/span 2!important;margin:0!important}
  .expo-page .expo-benefit h3{align-self:end!important;margin:0!important;font-size:.96rem!important}
  .expo-page .expo-benefit p{margin:6px 0 0!important;font-size:.78rem!important;line-height:1.45!important}
  .expo-page .expo-registration-cta{padding-bottom:34px!important}
}
@media(max-width:350px){
  .expo-page .expo-lead-form{grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr)!important}
  .expo-page .expo-meta-pill{font-size:.59rem!important;padding-inline:6px!important}
  .expo-page .expo-brands-row img{height:18px!important;max-height:18px!important}
  .expo-page .expo-hero-visual{height:248px!important}
  .expo-page .expo-machine{height:230px!important}
  .expo-page .expo-raffle-badge{width:80px!important}
}
@media(prefers-reduced-motion:reduce){
  .expo-page .expo-register-btn[type=submit] svg{transition:none!important}
  .expo-page .expo-register-btn[type=submit]:hover svg{transform:none!important}
}

/* EXPOTAPIA mobile spacing + marcas 3+2 centradas 2026-08-28 */
@media(max-width:740px){
  .expo-page .expo-hero-copy{padding-top:10px!important}
  .expo-page .expo-partner-row{margin-bottom:8px!important;padding-bottom:7px!important}
  .expo-page .expo-logo-heading{margin-bottom:10px!important}
  .expo-page .expo-strapline{margin-bottom:5px!important}
  .expo-page .expo-sub{margin-bottom:8px!important}
  .expo-page .expo-registration-panel{margin-top:6px!important}
  .expo-page .expo-brands{width:100%!important;max-width:none!important;margin:14px auto 0!important;overflow:visible!important;text-align:center!important}
  .expo-page .expo-brands-row{
    display:grid!important;grid-template-columns:repeat(6,minmax(0,1fr))!important;
    grid-auto-rows:15px!important;align-items:center!important;justify-items:center!important;
    column-gap:0!important;row-gap:10px!important;width:100%!important;
    margin:0 auto!important;padding:3px 10px 4px!important;overflow:visible!important;
    scroll-snap-type:none!important;
  }
  .expo-page .expo-brands-row img{
    display:block!important;flex:none!important;width:auto!important;height:auto!important;
    max-width:74px!important;max-height:14px!important;margin:auto!important;
    object-fit:contain!important;justify-self:center!important;scroll-snap-align:none!important;
  }
  .expo-page .expo-brands-row img:nth-child(1){grid-column:1/3!important;grid-row:1!important}
  .expo-page .expo-brands-row img:nth-child(2){grid-column:3/5!important;grid-row:1!important}
  .expo-page .expo-brands-row img:nth-child(3){grid-column:5/7!important;grid-row:1!important}
  .expo-page .expo-brands-row img:nth-child(4){grid-column:2/4!important;grid-row:2!important}
  .expo-page .expo-brands-row img:nth-child(5){grid-column:4/6!important;grid-row:2!important}
  .expo-page .expo-hero-visual{margin-top:8px!important}
}
@media(max-width:350px){
  .expo-page .expo-brands-row{grid-auto-rows:14px!important;row-gap:9px!important;padding-inline:2px!important}
  .expo-page .expo-brands-row img{max-width:68px!important;max-height:13px!important}
}

/* EXPOTAPIA mobile event band 2026-08-28 — datos + divisores */
@media(max-width:740px){
  .expo-page .expo-event-band{
    box-sizing:border-box!important;padding:10px 14px 12px!important;
    border-radius:0 0 26px 26px!important;
    background:linear-gradient(145deg,#0d2c61 0%,#16447f 52%,#2058a0 100%)!important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.12),0 10px 26px rgba(15,46,102,.10)!important;
  }
  .expo-page .expo-event-band-inner{
    display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:0!important;width:100%!important;max-width:none!important;padding:0!important;
  }
  .expo-page .expo-event-band-inner>.expo-band-item,
  .expo-page .expo-band-item{
    box-sizing:border-box!important;height:78px!important;max-height:78px!important;min-height:78px!important;
    padding:11px 10px!important;gap:9px!important;overflow:visible!important;
    border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;
  }
  .expo-page .expo-event-band-inner>.expo-band-location{
    grid-column:1/-1!important;height:66px!important;max-height:66px!important;min-height:66px!important;
    padding-inline:4px!important;border:0!important;border-block-end:1px solid rgba(255,255,255,.18)!important;
    border-radius:0!important;
  }
  .expo-page .expo-band-item+.expo-band-item{
    border:0!important;
  }
  .expo-page .expo-event-band-inner>.expo-band-time{padding-inline-start:14px!important;border-inline-start:1px solid rgba(255,255,255,.18)!important}
  .expo-page .expo-band-icon{
    flex:0 0 30px!important;width:30px!important;height:30px!important;
    border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;
  }
  .expo-page .expo-band-icon svg{width:21px!important;height:21px!important}
  .expo-page .expo-band-icon--pin svg{width:20px!important;height:23px!important}
  .expo-page .expo-band-item strong{
    white-space:normal!important;font-size:.8rem!important;line-height:1.12!important;letter-spacing:.01em!important;
  }
  .expo-page .expo-band-item p{margin-top:3px!important;font-size:.65rem!important;line-height:1.22!important}
  .expo-page .expo-band-time strong{font-size:.96rem!important}
  .expo-page .expo-band-time a{
    display:inline-flex!important;align-items:center!important;width:max-content!important;max-width:100%!important;
    margin-top:4px!important;padding:0!important;border:0!important;border-radius:0!important;
    background:transparent!important;color:#ffbd83!important;
    font-size:.58rem!important;line-height:1!important;text-decoration:none!important;
    transition:background-color 180ms ease,transform 180ms ease!important;
  }
  .expo-page .expo-band-time a:hover{background:transparent!important;color:#ffd2ad!important;transform:translateX(1px)!important}
  .expo-page .expo-band-time a:focus-visible{outline:2px solid #fff!important;outline-offset:2px!important}
}
@media(max-width:350px){
  .expo-page .expo-event-band{padding:9px 12px 11px!important}
  .expo-page .expo-event-band-inner{gap:0!important}
  .expo-page .expo-event-band-inner>.expo-band-item,
  .expo-page .expo-band-item{height:78px!important;max-height:78px!important;min-height:78px!important;padding:10px 8px!important;gap:8px!important}
  .expo-page .expo-event-band-inner>.expo-band-location{height:64px!important;max-height:64px!important;min-height:64px!important;padding-inline:2px!important}
  .expo-page .expo-event-band-inner>.expo-band-time{padding-inline-start:12px!important}
  .expo-page .expo-band-icon{flex-basis:28px!important;width:28px!important;height:28px!important}
  .expo-page .expo-band-item strong{font-size:.74rem!important}
  .expo-page .expo-band-item p{font-size:.6rem!important}
  .expo-page .expo-band-time a{font-size:.55rem!important;padding-inline:0!important}
}
@media(prefers-reduced-motion:reduce){
  .expo-page .expo-band-time a{transition:none!important}
  .expo-page .expo-band-time a:hover{transform:none!important}
}

/* EXPOTAPIA 2026-08-28 — franja recta + aire y sombra ligera desktop */
@media(max-width:740px){
  .expo-page .expo-event-band{border-radius:0!important}
}
@media(min-width:1025px){
  .expo-page .expo-logo-heading{width:min(350px,80vw)!important}
  .expo-page .expo-registration-panel{
    box-shadow:0 6px 16px rgba(16,63,120,.055),0 1px 4px rgba(16,63,120,.03)!important;
  }
  .expo-page .expo-registration-panel:focus-within{
    box-shadow:0 7px 18px rgba(16,63,120,.07)!important;
  }
  .expo-page .expo-brands{margin-top:20px!important}
  .expo-page .expo-hero-copy{padding-bottom:26px!important}
}

/* EXPOTAPIA 2026-08-28 — beneficios como muestrario editorial de feria */
body.expo-page #beneficios .section-head{
  max-width:none!important;margin:0 0 30px!important;text-align:left!important;
}
body.expo-page #beneficios .section-eyebrow{
  display:inline-flex!important;align-items:center!important;padding:8px 13px!important;
  border:1px solid #d9e8f8!important;border-radius:999px!important;background:#eef6ff!important;
  color:#215b9f!important;font-size:.72rem!important;font-weight:800!important;
  letter-spacing:.1em!important;text-transform:uppercase!important;
}
body.expo-page #beneficios .section-title{
  max-width:680px!important;margin:13px 0 9px!important;letter-spacing:-.045em!important;
}
body.expo-page #beneficios .section-sub{
  max-width:620px!important;margin:0!important;color:#5c6777!important;
}
body.expo-page #beneficios .expo-benefits-grid{
  display:grid!important;grid-template-columns:repeat(12,minmax(0,1fr))!important;
  gap:16px!important;margin-top:34px!important;padding:0!important;overflow:visible!important;
}
body.expo-page #beneficios .expo-benefit{
  position:relative!important;isolation:isolate!important;display:flex!important;flex-direction:column!important;
  grid-column:span 4!important;min-height:196px!important;margin:0!important;padding:26px!important;
  overflow:hidden!important;border:1px solid #dce6f0!important;border-radius:18px 32px 18px 32px!important;
  background:#fff!important;box-shadow:0 10px 24px rgba(22,61,111,.055)!important;
  color:#102a50!important;transition:transform 180ms ease,box-shadow 180ms ease!important;
}
body.expo-page #beneficios .expo-benefit>*{position:relative!important;z-index:1!important}
body.expo-page #beneficios .expo-benefit::before{
  content:""!important;position:absolute!important;z-index:0!important;inset:0 auto auto 26px!important;
  width:42px!important;height:3px!important;border-radius:99px!important;background:#f97316!important;
}
body.expo-page #beneficios .expo-benefit::after{pointer-events:none!important}
body.expo-page #beneficios .expo-benefit:hover{
  transform:translateY(-4px)!important;box-shadow:0 16px 30px rgba(22,61,111,.11)!important;
}
body.expo-page #beneficios .expo-benefit-icon{
  display:grid!important;place-items:center!important;flex:0 0 46px!important;width:46px!important;height:46px!important;
  margin:9px 0 17px!important;border-radius:14px!important;background:#edf5ff!important;color:#1556a0!important;
}
body.expo-page #beneficios .expo-benefit-icon svg{width:23px!important;height:23px!important}
body.expo-page #beneficios .expo-benefit h3{
  max-width:100%!important;margin:0 0 8px!important;color:#123b70!important;font-size:1.12rem!important;
  font-weight:800!important;line-height:1.16!important;letter-spacing:-.025em!important;
}
body.expo-page #beneficios .expo-benefit p{
  max-width:100%!important;margin:0!important;color:#5c6777!important;font-size:.93rem!important;
  line-height:1.48!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(1){
  grid-column:span 7!important;min-height:270px!important;padding:31px!important;border:0!important;
  background:linear-gradient(125deg,#0b346c 0%,#1559a2 100%)!important;
  box-shadow:0 18px 34px rgba(15,66,135,.18)!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(1)::before{
  content:"4"!important;inset:auto 20px -36px auto!important;width:auto!important;height:auto!important;
  background:transparent!important;color:rgba(255,255,255,.13)!important;font-size:13.5rem!important;
  font-weight:900!important;line-height:1!important;letter-spacing:-.1em!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(1)::after{
  content:"DÍAS DE FERIA"!important;position:absolute!important;right:32px!important;bottom:32px!important;z-index:0!important;
  color:rgba(255,255,255,.55)!important;font-size:.66rem!important;font-weight:800!important;letter-spacing:.16em!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(1) .expo-benefit-icon{
  margin-top:0!important;background:rgba(255,255,255,.14)!important;color:#fff!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(1) h3{
  max-width:420px!important;color:#fff!important;font-size:clamp(1.45rem,2.1vw,1.9rem)!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(1) p{max-width:410px!important;color:rgba(255,255,255,.78)!important}
body.expo-page #beneficios .expo-benefit:nth-child(2){
  grid-column:span 5!important;min-height:270px!important;padding:31px!important;border-color:#f5d5bb!important;
  background:linear-gradient(145deg,#fff9f3 0%,#fff3e6 100%)!important;box-shadow:0 14px 28px rgba(175,91,20,.08)!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(2)::before{
  content:"SORTEO"!important;inset:auto -10px 21px auto!important;width:auto!important;height:auto!important;
  background:transparent!important;color:rgba(207,99,17,.11)!important;font-size:3.9rem!important;
  font-weight:900!important;line-height:1!important;letter-spacing:-.07em!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(2)::after{
  content:"ENTRADA LIBRE"!important;position:absolute!important;top:29px!important;right:31px!important;z-index:0!important;
  color:#bd5a13!important;font-size:.62rem!important;font-weight:800!important;letter-spacing:.13em!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(2) .expo-benefit-icon{
  margin-top:0!important;background:#f97316!important;color:#fff!important;box-shadow:0 8px 16px rgba(201,91,9,.18)!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(2) h3{max-width:295px!important;font-size:1.34rem!important}
body.expo-page #beneficios .expo-benefit:nth-child(2) p{max-width:330px!important}
body.expo-page #beneficios .expo-benefit:nth-child(3){background:#f2f8ff!important;border-color:#d6e8fa!important}
body.expo-page #beneficios .expo-benefit:nth-child(4){background:#fffaf5!important;border-color:#f4dfca!important}
body.expo-page #beneficios .expo-benefit:nth-child(4) .expo-benefit-icon{background:#fff0df!important;color:#d56a13!important}
body.expo-page #beneficios .expo-benefit:nth-child(5){background:#f7f9fc!important;border-color:#e2e8f0!important}
body.expo-page #beneficios .expo-benefit:nth-child(6){
  grid-column:1/-1!important;min-height:116px!important;padding:23px 30px!important;flex-direction:row!important;
  align-items:center!important;gap:20px!important;border-color:#d7e7f7!important;background:#eef6ff!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(6)::before{
  inset:0 auto 0 0!important;width:5px!important;height:auto!important;border-radius:0!important;background:#f97316!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(6)::after{
  content:""!important;position:absolute!important;right:31px!important;bottom:22px!important;width:126px!important;height:1px!important;
  background:repeating-linear-gradient(90deg,#79a2d0 0 5px,transparent 5px 10px)!important;
}
body.expo-page #beneficios .expo-benefit:nth-child(6) .expo-benefit-icon{flex:0 0 46px!important;margin:0!important;background:#1559a2!important;color:#fff!important}
body.expo-page #beneficios .expo-benefit:nth-child(6) h3{flex:0 0 220px!important;margin:0!important}
body.expo-page #beneficios .expo-benefit:nth-child(6) p{flex:1!important;max-width:620px!important;margin:0!important}
@media(min-width:741px) and (max-width:1024px){
  body.expo-page #beneficios .expo-benefits-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:15px!important}
  body.expo-page #beneficios .expo-benefit,
  body.expo-page #beneficios .expo-benefit:nth-child(1),
  body.expo-page #beneficios .expo-benefit:nth-child(2){grid-column:span 1!important;min-height:238px!important;padding:28px!important}
  body.expo-page #beneficios .expo-benefit:nth-child(3),
  body.expo-page #beneficios .expo-benefit:nth-child(4),
  body.expo-page #beneficios .expo-benefit:nth-child(5){min-height:190px!important}
  body.expo-page #beneficios .expo-benefit:nth-child(6){
    grid-column:span 1!important;min-height:190px!important;flex-direction:column!important;
    align-items:flex-start!important;gap:14px!important;
  }
  body.expo-page #beneficios .expo-benefit:nth-child(6) .expo-benefit-icon{margin:9px 0 17px!important}
  body.expo-page #beneficios .expo-benefit:nth-child(6) h3,
  body.expo-page #beneficios .expo-benefit:nth-child(6) p{flex:initial!important;max-width:100%!important;margin:0!important}
}

@media(max-width:740px){
  body.expo-page #beneficios .section-head{margin-bottom:22px!important;text-align:left!important}
  body.expo-page #beneficios .section-title{max-width:330px!important;margin-top:11px!important;font-size:clamp(2rem,9vw,2.55rem)!important}
  body.expo-page #beneficios .section-sub{max-width:330px!important;font-size:.96rem!important;line-height:1.48!important}
  body.expo-page #beneficios .expo-benefits-grid{
    display:flex!important;gap:12px!important;margin:0 -4px!important;padding:4px 4px 13px!important;
    overflow-x:auto!important;overscroll-behavior-x:contain!important;scroll-snap-type:x mandatory!important;scrollbar-width:none!important;
  }
  body.expo-page #beneficios .expo-benefits-grid::-webkit-scrollbar{display:none!important}
  body.expo-page #beneficios .expo-benefit,
  body.expo-page #beneficios .expo-benefit:nth-child(n){
    display:flex!important;flex:0 0 min(82vw,318px)!important;grid-column:auto!important;min-height:224px!important;
    padding:25px!important;border-radius:17px 28px 17px 28px!important;scroll-snap-align:start!important;
  }
  body.expo-page #beneficios .expo-benefit:nth-child(1),
  body.expo-page #beneficios .expo-benefit:nth-child(2){min-height:242px!important}
  body.expo-page #beneficios .expo-benefit:nth-child(1)::before{right:17px!important;font-size:11.2rem!important}
  body.expo-page #beneficios .expo-benefit:nth-child(1)::after{right:25px!important;bottom:26px!important;font-size:.58rem!important}
  body.expo-page #beneficios .expo-benefit:nth-child(2)::before{right:-4px!important;font-size:3rem!important}
  body.expo-page #beneficios .expo-benefit:nth-child(2)::after{top:26px!important;right:25px!important;font-size:.55rem!important}
  body.expo-page #beneficios .expo-benefit h3{font-size:1.1rem!important}
  body.expo-page #beneficios .expo-benefit:nth-child(1) h3{font-size:1.43rem!important;max-width:265px!important}
  body.expo-page #beneficios .expo-benefit:nth-child(2) h3{font-size:1.24rem!important;max-width:225px!important}
  body.expo-page #beneficios .expo-benefit:nth-child(6){align-items:flex-start!important;gap:14px!important}
  body.expo-page #beneficios .expo-benefit:nth-child(6) .expo-benefit-icon{margin:0!important}
  body.expo-page #beneficios .expo-benefit:nth-child(6) h3,
  body.expo-page #beneficios .expo-benefit:nth-child(6) p{flex:initial!important;max-width:100%!important;margin:0!important}
  body.expo-page #beneficios .expo-benefit:nth-child(6)::after{right:24px!important;bottom:20px!important;width:88px!important}
}
@media(max-width:350px){
  body.expo-page #beneficios .expo-benefit,
  body.expo-page #beneficios .expo-benefit:nth-child(n){flex-basis:calc(100vw - 50px)!important;padding:22px!important}
  body.expo-page #beneficios .expo-benefit:nth-child(1),
  body.expo-page #beneficios .expo-benefit:nth-child(2){min-height:258px!important}
  body.expo-page #beneficios .expo-benefit:nth-child(1) h3{max-width:205px!important;font-size:1.32rem!important}
  body.expo-page #beneficios .expo-benefit:nth-child(2) h3{max-width:195px!important;font-size:1.16rem!important}
}
@media(prefers-reduced-motion:reduce){
  body.expo-page #beneficios .expo-benefit{transition:none!important}
  body.expo-page #beneficios .expo-benefit:hover{transform:none!important}
}
