/* ==========================================================================
   MINIMALIST INTEGRATED HERO & NAVBAR ARCHITECTURE — IORI BIKER MOTOS PERÚ
   ========================================================================== */

/* Contenedor Raíz del Hero Integrado */
.integrated-hero-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-height: none;
  aspect-ratio: auto;
  background: #000000;
  overflow: hidden;
}

/* Header / Navbar Flotante Fijo Integrado (Sin Líneas Divisoras) */
.iori-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
  padding: 0 54px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none !important;
  will-change: background, height, padding;
  transition: background 0.25s ease, height 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.iori-header.scrolled {
  background: #000000 !important;
  height: 64px;
  padding: 0 40px;
  border-bottom: none !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.iori-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.iori-logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: max-height 0.25s ease;
}

.iori-header.scrolled .iori-logo-img {
  max-height: 36px;
}

.iori-logo-text {
  display: none !important;
}

.iori-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.iori-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E5E5E5;
  padding: 10px 16px !important;
  margin: -10px -4px !important;
  display: inline-flex;
  align-items: center;
  background: transparent !important;
  transition: color 0.2s ease;
}

.iori-nav a:hover {
  color: var(--accent-gold) !important;
  background: transparent !important;
}

/* Botón CTA FINANCIAMIENTO en Cuadro sin Flecha */
.iori-btn-credit {
  background: rgba(0, 0, 0, 0.45);
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold) !important;
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0 !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.iori-btn-credit:hover {
  background: var(--accent-gold);
  color: #000000;
  box-shadow: 0 0 20px rgba(255, 145, 1, 0.5);
}

.iori-header.scrolled .iori-btn-credit {
  padding: 8px 18px;
  font-size: 10.5px;
}

/* Capa de Slides del Hero Integrado */
.hero-slider-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s ease;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.hero-pure-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
}

/* Capa 2: Oscuridad plana pareja directamente delante de la imagen */
.hero-flat-dark-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* Capa 3A: Degradado Oscuro Superior Extendido (Navbar - 30% fluido de la altura del Hero) */
.hero-top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30% !important;
  z-index: 3;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.92) 30%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* Capa 3B: Degradado Oscuro Inferior Extendido (Líneas y Transición - 30% fluido de la altura del Hero) */
.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30% !important;
  z-index: 3;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.92) 30%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* 3 LÍNEAS HORIZONTALES DE PROGRESO DE SLIDER AL CENTRO INFERIOR */
.hero-center-progress-bars {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-bar-item {
  width: 54px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.25s ease;
}

.slider-bar-item:hover {
  background: rgba(255, 255, 255, 0.45);
}

.slider-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent-gold);
}

.slider-bar-item.completed .slider-bar-fill {
  width: 100% !important;
  transition: none;
  background: var(--accent-gold) !important;
}

.slider-bar-item.active .slider-bar-fill {
  background: var(--accent-gold) !important;
  animation: fillProgressLine 5s linear forwards;
}

@keyframes fillProgressLine {
  from { width: 0%; }
  to { width: 100%; }
}

/* CONTENIDO CENTRADO SOBRE CADA SLIDE DEL HERO (TIPOGRAFÍA CINEMÁTICA PURA) */
.hero-center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 25;
  text-align: center;
  width: 92%;
  max-width: 880px;
  padding: 0 !important;
  background: transparent !important;
  pointer-events: auto;
  opacity: 0;
  transform: translate3d(-50%, -46%, 0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hero-slide.active .hero-center-content {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
}

.hero-content-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: #FFFFFF !important;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  backdrop-filter: none !important;
  text-shadow: 0 1px 3px #000000, 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.9);
}

.hero-content-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 44px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  color: #FFFFFF !important;
  text-transform: uppercase !important;
  margin: 0 0 10px 0 !important;
  text-shadow: 0 2px 4px #000000, 0 4px 20px rgba(0, 0, 0, 0.95), 0 8px 36px rgba(0, 0, 0, 0.9);
  line-height: 1.15 !important;
}

@media (max-width: 768px) {
  .hero-center-content {
    padding: 0 !important;
    width: 95% !important;
  }
  .hero-content-badge {
    font-size: 10px !important;
    letter-spacing: 0.22em !important;
    margin-bottom: 6px !important;
  }
  .hero-content-title {
    font-size: 24px !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 8px !important;
  }
  .hero-content-subtitle {
    font-size: 11.5px !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 18px !important;
    line-height: 1.4 !important;
  }
  .hero-content-btn {
    padding: 12px 24px !important;
    font-size: 10px !important;
  }
}

.hero-content-subtitle {
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px #000000, 0 2px 14px rgba(0, 0, 0, 0.95), 0 0 24px rgba(0, 0, 0, 0.9);
}

.hero-content-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 14px 34px;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
  cursor: pointer;
  isolation: isolate;
  transform: none !important;
  will-change: background-color;
}

.hero-content-btn:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3) !important;
  transform: none !important;
}

.hero-content-btn.ktm-btn {
  background: #FF6600;
  color: #FFFFFF;
}

.hero-content-btn.ktm-btn:hover {
  background: #FFFFFF;
  color: #FF6600;
  box-shadow: 0 12px 36px rgba(255, 102, 0, 0.5);
}

.hero-content-btn.suzuki-btn {
  background: #0088FF;
  color: #FFFFFF;
}

.hero-content-btn.suzuki-btn:hover {
  background: #FFFFFF;
  color: #0088FF;
  box-shadow: 0 12px 36px rgba(0, 136, 255, 0.5);
}

/* Estándar Universal de Wrapper de Slider en Secciones */
.slider-section-wrapper {
  position: relative;
  width: 100%;
}

/* Flechas Laterales Circulares Glassmorphism (Opción 2: Flotante Exterior 50/50 - 100% Limpio Sin Bordes) */
.slider-arrow-btn {
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 50;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(15, 23, 42, 0.88) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2) !important;
  color: var(--accent-gold) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.slider-arrow-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold) !important;
  transition: stroke 0.2s ease;
}

.slider-arrow-btn:hover {
  background: var(--accent-gold) !important;
  border: none !important;
  outline: none !important;
  color: #000000 !important;
  box-shadow: 0 8px 24px rgba(255, 199, 0, 0.4) !important;
  transform: translateY(-50%) !important;
}

.slider-arrow-btn:hover svg {
  stroke: #000000 !important;
}

.slider-arrow-btn.hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Flechas Laterales en Sliders: Invisibles por defecto, visibles solo al acercar el mouse a los laterales */
/* Slider Principal Hero: Proximidad Lateral Exclusiva */
.integrated-hero-wrapper .slider-arrow-btn {
  top: 50% !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease, background 0.25s ease, transform 0.25s ease !important;
}

.integrated-hero-wrapper.show-lateral-arrows .slider-arrow-btn {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Demás Secciones con Sliders (Catálogo, Accesorios, Financiamiento, etc.): Visibilidad Permanente por Defecto */
.slider-section-wrapper .slider-arrow-btn,
.catalog-slider-wrapper .slider-arrow-btn,
.coupons-slider-wrapper .slider-arrow-btn,
.accessories-slider-wrapper .slider-arrow-btn,
.wizard-slider-wrapper .slider-arrow-btn,
.sim-slider-wrapper .slider-arrow-btn {
  top: 50% !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.25s ease, transform 0.25s ease !important;
}

.integrated-hero-wrapper .slider-arrow-btn.prev-btn {
  left: 54px !important;
}

.integrated-hero-wrapper .slider-arrow-btn.next-btn {
  right: 54px !important;
}

/* Alineación Lateral Externa Universal para Secciones - Opción 2 (-22px) */
.slider-section-wrapper .slider-arrow-btn.prev-btn,
.catalog-slider-wrapper .slider-arrow-btn.prev-btn,
.coupons-slider-wrapper .slider-arrow-btn.prev-btn,
.accessories-slider-wrapper .slider-arrow-btn.prev-btn,
.wizard-slider-wrapper .slider-arrow-btn.prev-btn,
.sim-slider-wrapper .slider-arrow-btn.prev-btn {
  left: -22px !important;
}

.slider-section-wrapper .slider-arrow-btn.next-btn,
.catalog-slider-wrapper .slider-arrow-btn.next-btn,
.coupons-slider-wrapper .slider-arrow-btn.next-btn,
.accessories-slider-wrapper .slider-arrow-btn.next-btn,
.wizard-slider-wrapper .slider-arrow-btn.next-btn,
.sim-slider-wrapper .slider-arrow-btn.next-btn {
  right: -22px !important;
}

@media (max-width: 1380px) {
  .slider-section-wrapper .slider-arrow-btn.prev-btn,
  .catalog-slider-wrapper .slider-arrow-btn.prev-btn,
  .coupons-slider-wrapper .slider-arrow-btn.prev-btn,
  .accessories-slider-wrapper .slider-arrow-btn.prev-btn,
  .wizard-slider-wrapper .slider-arrow-btn.prev-btn,
  .sim-slider-wrapper .slider-arrow-btn.prev-btn {
    left: 4px !important;
  }

  .slider-section-wrapper .slider-arrow-btn.next-btn,
  .catalog-slider-wrapper .slider-arrow-btn.next-btn,
  .coupons-slider-wrapper .slider-arrow-btn.next-btn,
  .accessories-slider-wrapper .slider-arrow-btn.next-btn,
  .wizard-slider-wrapper .slider-arrow-btn.next-btn,
  .sim-slider-arrow-btn.next-btn {
    right: 4px !important;
  }
}

/* Barra de Progreso Inferior */
.hero-bottom-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.hero-progress-fill {
  height: 100%;
  background: var(--accent-gold);
  width: 33.33%;
  transition: width 0.3s ease;
}

/* ESTÁNDAR DE ESPACIADO UNIVERSAL OPCIÓN 2 (~75PX SEPARACIÓN EQUILIBRADA EN TODO EL SITIO) */
.brand-marquee-section,
.catalog-section,
.accessories-section,
.repuestos-section,
.master-coupons-section,
.coupons-section,
.credit-banner-section,
.sim-section,
.transparency-section,
.technical-service-section {
  width: 100%;
  background: #FFFFFF !important;
  padding: 38px 0 !important;
}

/* ESPACIADO GENEROSO ENTRE LA SECCIÓN REPUESTOS Y EL FOOTER FINAL */
.catalog-section#repuestos {
  padding-top: 48px !important;
  padding-bottom: 96px !important;
}

.catalog-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px !important;
  box-sizing: border-box;
}

.catalog-header,
.coupons-header,
.accessories-header,
.repuestos-header,
.credit-header-block {
  text-align: center;
  margin-bottom: 24px !important;
}

/* ENCABEZADO ASIMÉTRICO (ESTÁNDAR PROPUESTA 3 PULIDA) */
.asymmetric-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--accent-gold) !important;
  padding-bottom: 14px;
  margin-bottom: 24px !important;
}

.asymmetric-header-left {
  text-align: left;
}

.asymmetric-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000 !important;
  display: block;
  margin-bottom: 6px;
}

.asymmetric-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #000000 !important;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

/* BOTÓN DE TEXTO LIMPIO "VER TODO ->" EN EXTREMO DERECHO DE ENCABEZADO (ELIMINADO PERMANENTE) */
.btn-header-view-all {
  display: none !important;
}

.btn-header-view-all .arrow-symbol {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.btn-header-view-all:hover {
  color: #52525B !important;
}

.btn-header-view-all:hover .arrow-symbol {
  transform: translateX(4px);
}

/* TARJETA BANNER CORPORATIVO DE FINANCIAMIENTO ENCAJONADA A CONTENT-WIDTH */
.luxury-credit-card-box {
  background: #FFFFFF;
  color: #000000;
  padding: 38px 44px;
  border: 1px solid #E5E5E5;
  border-left: 5px solid var(--accent-gold) !important;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: none !important;
}

.luxury-credit-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #FFFFFF;
  background: #000000;
  padding: 5px 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.luxury-credit-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #000000;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}

.luxury-credit-checks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 6px;
}

.check-item-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #262626;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.check-icon-svg {
  width: 14px;
  height: 14px;
  color: #000000;
  flex-shrink: 0;
}

.luxury-credit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 36px;
  text-decoration: none !important;
  transition: background-color 0.2s ease;
}

.luxury-credit-btn:hover {
  background: #27272A !important;
}

.asymmetric-subtitle {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #71717A;
  text-transform: uppercase;
}

.catalog-tag,
.coupons-tag,
.accessories-tag,
.repuestos-tag,
.credit-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #000000 !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 8px;
}

.catalog-title,
.coupons-title,
.accessories-title,
.repuestos-title,
.credit-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #000000 !important;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ESTÁNDAR UNIVERSAL DE FILTROS EN 1 SOLA LÍNEA (SIN WRAP) CON MÁSCARA Y DEGRADADO DERECHO DE 64PX */
.ssenda-tabs-container,
.brand-filter-bar,
.accessories-filter-bar,
.repuesto-tabs-container,
.repuestos-filter-bar,
.coupons-filter-bar {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  align-items: center !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  gap: 6px !important;
  padding: 4px 64px 4px 0 !important;
  position: relative !important;
  width: 100% !important;
  mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 64px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 64px), transparent 100%);
}

/* Espaciados entre Filtro Fila 1, Filtro Fila 2 y Grid de Tarjetas */
#marcas.brand-filter-bar {
  margin-bottom: 12px !important;
}

#motos .ssenda-tabs-container,
.catalog-section .ssenda-tabs-container {
  margin-bottom: 28px !important;
}

#accesorios .ssenda-tabs-container,
#repuestos .ssenda-tabs-container {
  margin-bottom: 12px !important;
}

#accesorios .brand-filter-bar,
#repuestos .brand-filter-bar,
.accessories-filter-bar,
.repuestos-filter-bar,
.coupons-filter-bar {
  margin-bottom: 28px !important;
}

.ssenda-tabs-container::-webkit-scrollbar,
.brand-filter-bar::-webkit-scrollbar,
.accessories-filter-bar::-webkit-scrollbar,
.repuesto-tabs-container::-webkit-scrollbar,
.repuestos-filter-bar::-webkit-scrollbar,
.coupons-filter-bar::-webkit-scrollbar {
  display: none !important;
}

/* Filtro Nivel 1 (Categorías - Bloque Negro con Bordes Rectos) */
.ssenda-tab,
.repuesto-tab,
.master-coupon-chip,
.acc-coupon-chip {
  padding: 10px 22px !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 !important;
  background: transparent !important;
  color: #737373 !important;
  border: none !important;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.ssenda-tab:hover,
.repuesto-tab:hover,
.master-coupon-chip:hover,
.acc-coupon-chip:hover {
  background: #F5F5F5 !important;
  color: #000000 !important;
}

.ssenda-tab.active,
.repuesto-tab.active,
.master-coupon-chip.active,
.acc-coupon-chip.active {
  background: #000000 !important;
  color: #FFFFFF !important;
  border-radius: 0 !important;
  font-weight: 800 !important;
}

/* Fina Línea Divisoria Horizontal Arquitectónica (Estilo BMW) */
.bmw-filter-divider {
  width: 100%;
  height: 1px;
  background: #E5E7EB !important;
  margin: 0 0 20px 0 !important;
  border: none !important;
}

/* Filtro Nivel 2 (Marcas - Bloque Amarillo con Bordes Rectos) */
.brand-chip,
.accessory-chip,
.repuesto-chip {
  padding: 10px 22px !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 !important;
  background: transparent !important;
  color: #737373 !important;
  border: none !important;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.brand-chip:hover,
.accessory-chip:hover,
.repuesto-chip:hover {
  background: #F5F5F5 !important;
  color: #000000 !important;
}

.brand-chip.active,
.accessory-chip.active,
.repuesto-chip.active {
  background: var(--accent-gold) !important;
  color: #000000 !important;
  border-radius: 0 !important;
  font-weight: 800 !important;
}

/* Grid de Motos & Accesorios (4 Columnas) */
.motos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

@media (max-width: 1100px) {
  .motos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .motos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 550px) {
  .motos-grid { grid-template-columns: 1fr; }
}

/* Tarjetas Estructuradas con Bordes Rectos Nítidos (#CBD5E1) */
/* ==========================================================================
   ESTILOS UNIFICADOS Y LIMPIOS DE TARJETAS DE MOTO Y CATÁLOGO
   ========================================================================== */

.moto-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 0 0 auto !important;
  width: 195px !important;
  min-width: 195px !important;
  max-width: 195px !important;
  padding: 16px 16px 14px 16px !important;
  background: #FFFFFF !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  position: relative !important;
  transition: background-color 0.25s ease !important;
}

.moto-card:hover {
  border: none !important;
  box-shadow: none !important;
  background: #FFFFFF !important;
}

/* 0. Cabecera Neutra Superior (ELIMINADA PERMANENTE DE TODAS LAS SECCIONES) */
.pa-neutral-meta,
.moto-card-header {
  display: none !important;
}

.pa-brand-text,
.moto-brand-tag {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  color: #334155 !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  line-height: 1 !important;
}

.pa-cc-text,
.moto-cc-badge {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #64748B !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  line-height: 1 !important;
}

/* 1. Imagen de la Motocicleta (order: 1) */
.moto-img-box {
  order: 1 !important;
  width: 100% !important;
  height: 110px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  margin: 4px 0 14px 0 !important;
  position: relative !important;
  background: transparent !important;
  border: none !important;
}

.moto-img-box::before {
  display: none !important;
}

.moto-img-box::after {
  content: '' !important;
  position: absolute !important;
  bottom: 1px !important;
  left: 12% !important;
  width: 76% !important;
  height: 7px !important;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 55%, transparent 75%) !important;
  border-radius: 50% !important;
  z-index: 1 !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, filter 0.3s ease !important;
  transform-origin: center center !important;
  pointer-events: none !important;
}

.moto-img-box img {
  position: relative !important;
  z-index: 2 !important;
  max-height: 100px !important;
  max-width: 92% !important;
  margin-bottom: 4px !important;
  object-fit: contain !important;
  transform-origin: bottom center !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease !important;
}

.moto-card:hover .moto-img-box img {
  transform: scale(1.012) translateY(-1.5px) !important;
  filter: none !important;
}

.moto-card:hover .moto-img-box::after {
  transform: scaleX(1.06) scaleY(1.08) !important;
  opacity: 0.6 !important;
  filter: blur(0.3px) !important;
}

/* 2. Contenedor de Título con Soporte Marquee y Degradado de Desbordamiento */
.moto-title-box {
  order: 2 !important;
  width: 100% !important;
  height: 22px !important;
  overflow: hidden !important;
  position: relative !important;
  margin-top: 4px !important;
  margin-bottom: 2px !important;
  padding: 0 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.moto-title-box.has-overflow {
  justify-content: flex-start !important;
}

/* Capa de Sombra Degradada Traslúcida Blanco a la Derecha (Fade-out Elegante) */
.moto-title-box.has-overflow::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 28px !important;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 75%, #FFFFFF 100%) !important;
  pointer-events: none !important;
  z-index: 5 !important;
  opacity: 1 !important;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  will-change: opacity !important;
}

.moto-card:hover .moto-title-box.has-overflow::after,
.moto-card.is-tapped .moto-title-box.has-overflow::after {
  opacity: 0 !important;
}

.moto-title {
  order: 2 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  margin: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
  display: inline-block !important;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform !important;
}

/* 3. Precio (order: 3) */
.moto-price {
  order: 3 !important;
  font-size: 11px !important;
  color: #888888 !important;
  margin-top: 2px !important;
  text-align: center !important;
  width: 100% !important;
  font-weight: 500 !important;
}

.moto-price strong {
  font-size: 11px !important;
  color: #666666 !important;
  font-weight: 700 !important;
}

.btn-quote-moto {
  display: none !important;
}

/* CERO SCROLLBARS EN TODAS LAS SECCIONES (ESTILO FINANCIAMIENTO ORIGINAL) */
.catalog-slider-grid,
.wizard-models-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto !important;
  gap: 16px !important;
  padding: 12px 4px 4px 4px !important;
  margin-bottom: 0 !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  cursor: default !important;
}

.catalog-slider-grid *,
.wizard-models-grid * {
  user-select: none !important;
  -webkit-user-select: none !important;
}

.catalog-slider-grid.is-dragging-active,
.wizard-models-grid.is-dragging-active {
  cursor: default !important;
}

.catalog-slider-grid img,
.wizard-models-grid img {
  user-select: none !important;
  -webkit-user-drag: none !important;
  pointer-events: none !important;
}

/* Ocultar 100% todo scrollbar nativo per se en todos los navegadores */
.catalog-slider-grid::-webkit-scrollbar,
.wizard-models-grid::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.catalog-slider-grid .moto-price strong {
  font-size: 12px !important;
  color: #666666 !important;
}

/* BOTÓN VER CATÁLOGO COMPLETO (Borde Amarillo Estilo Ssenda Imagen 1) */
.ssenda-full-catalog-box {
  text-align: center;
  margin-top: 36px;
}

.btn-ssenda-full-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: #000000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 32px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-ssenda-full-catalog:hover {
  background: var(--accent-gold);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.35);
}

.btn-load-more {
  background: #000000;
  color: #FFFFFF;
  padding: 14px 36px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0 !important;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-load-more svg {
  width: 16px;
  height: 16px;
  stroke: #FFFFFF !important;
  transition: transform 0.25s ease, stroke 0.25s ease;
}

.btn-load-more:hover {
  background: var(--accent-gold);
  color: #000000;
}

.btn-load-more:hover svg {
  stroke: #000000 !important;
  transform: translateY(2px);
}

/* ==========================================================================
   WIZARD INTERACTIVO PASO A PASO (MOSTRAR SOLO 1 PASO A LA VEZ)
   ========================================================================== */
.credit-banner-section {
  width: 100%;
  background: #ffffff !important;
  color: #171717 !important;
  padding: 60px 0 !important;
}

.credit-container {
  max-width: 800px;
  margin: 0 auto;
}

.credit-header-block {
  text-align: center;
  margin-bottom: 40px;
}

.credit-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.credit-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000 !important;
}

.credit-subtitle {
  color: #666666 !important;
  font-size: 14px;
  max-width: 600px;
  margin: 12px auto 0 auto;
}

.wizard-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
}

.wizard-progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E5E5E5 !important;
  z-index: 1;
}

.wizard-progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: #000000 !important;
  z-index: 2;
  transition: width 0.3s ease;
  width: 0%;
}

.wizard-step-pill {
  position: relative;
  z-index: 3;
  width: 36px;
  height: 36px;
  background: #F0F0F0 !important;
  color: #666666 !important;
  border: 1px solid #E0E0E0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 900;
  transition: all 0.25s ease;
}

.wizard-step-pill.active {
  background: #000000 !important;
  color: #FFFFFF !important;
  border-color: #000000 !important;
}

.wizard-step-pill.completed {
  background: #000000 !important;
  color: #FFFFFF !important;
  border-color: #000000 !important;
}

.wizard-card-box {
  background: #FFFFFF !important;
  border: 1.5px solid #64748B !important;
  border-radius: 6px;
  padding: 44px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
}

.wizard-step-pane {
  display: none;
}

.wizard-step-pane.active {
  display: block;
  animation: fadeInStep 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.wizard-pane-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000 !important;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.btn-wizard-header-back {
  background: transparent;
  border: none;
  color: #000000 !important;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 4px 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-wizard-header-back:hover {
  color: var(--accent-gold) !important;
  transform: translateX(-3px);
}

.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 600px) {
  .wizard-options-grid { grid-template-columns: repeat(2, 1fr); }
}

.wizard-opt-btn {
  box-sizing: border-box;
  background: #F8FAFC !important;
  color: #0F172A !important;
  border: 1px solid #CBD5E1 !important;
  padding: 16px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  box-shadow: none !important;
  transform: none !important;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  user-select: none;
  border-radius: 0 !important;
}

.wizard-opt-btn:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.wizard-opt-btn:active {
  background: #E5E5E5 !important;
  color: #000000 !important;
}

.wizard-opt-btn.active {
  background: #000000 !important;
  color: #FFFFFF !important;
  border-color: #000000 !important;
  font-weight: 900;
}

.wizard-dp-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dp-custom-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.dp-currency {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 12px;
}

.dp-custom-input {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: inherit;
  width: 80px;
  text-align: center;
  padding: 0;
  -moz-appearance: textfield;
}

.dp-custom-input::-webkit-outer-spin-button,
.dp-custom-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Capa Oscura Overlay sobre la Galería (Sin ocupar espacio en layout) */
.slider-overlay-hint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.slider-overlay-hint.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 150 !important;
}

.slider-overlay-hint-content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 28px 22px 28px;
  background: #141414;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  user-select: none;
  overflow: hidden;
}

/* Track de Barra de Tiempo en Reversa */
.overlay-timer-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #262626;
  overflow: hidden;
}

.overlay-timer-progress-bar {
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
}

.slider-overlay-hint.active .overlay-timer-progress-bar {
  animation: timerReverseShrink 3.8s linear forwards;
}

@keyframes timerReverseShrink {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

.btn-dismiss-overlay-hint {
  margin-top: 8px;
  background: var(--accent-gold);
  color: #000000;
  border: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 20px !important;
  cursor: pointer;
  transition: all 0.2s ease;
  pointer-events: auto;
}

.btn-dismiss-overlay-hint:hover {
  background: #FFFFFF;
  color: #000000;
  transform: scale(1.05);
}

.slider-overlay-hint-content span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.hand-swipe-anim-box svg {
  animation: handSwipeAnim 1.4s infinite ease-in-out;
}

@keyframes handSwipeAnim {
  0% { transform: translateX(-24px); }
  50% { transform: translateX(24px); }
  100% { transform: translateX(-24px); }
}

/* Contenedor Relativo para Slider de Modelos */
.wizard-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* BARRA INDICADORA DE UBICACIÓN Y PROGRESO EN EL SLIDER (COLOR 100% CONSTANTE - CERO CAMBIOS DE COLOR O TAMAÑO) */
.slider-scroll-indicator-bar {
  width: 100%;
  height: 3px !important;
  background: rgba(0, 0, 0, 0.08) !important;
  border-radius: 2px;
  margin-top: 10px;
  position: relative;
  overflow: visible;
  cursor: pointer !important;
  user-select: none;
  box-shadow: none !important;
}

/* ESTÁNDAR UNIVERSAL DE INDICADOR DE SCROLLBAR HORIZONTAL (INVISIBLE EN REPOSO) */
/* 1. Track/Fondo Completo: Color Gris Constante (#E2E8F0), Invisible por defecto (opacity: 0) */
.slider-scroll-indicator-bar,
#credito .slider-scroll-indicator-bar {
  height: 3px !important;
  background: #E2E8F0 !important;
  border-radius: 99px !important;
  margin-top: 10px !important;
  box-shadow: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative !important;
  transition: opacity 0.35s ease !important;
}

/* Área Táctil Transparente Ampliada (Hitbox Invisible) */
.slider-scroll-indicator-bar::before {
  content: '' !important;
  position: absolute !important;
  top: -6px !important;
  bottom: -6px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10 !important;
}

.slider-scroll-indicator-bar:hover,
.slider-scroll-indicator-bar.is-interacting,
#credito .slider-scroll-indicator-bar:hover,
#credito .slider-scroll-indicator-bar.is-interacting,
.slider-section-wrapper:hover .slider-scroll-indicator-bar,
.sim-slider-wrapper:hover .slider-scroll-indicator-bar,
.wizard-slider-wrapper:hover .slider-scroll-indicator-bar,
.catalog-slider-wrapper:hover .slider-scroll-indicator-bar,
.accessories-slider-wrapper:hover .slider-scroll-indicator-bar,
.show-lateral-arrows .slider-scroll-indicator-bar {
  height: 3px !important;
  background: #E2E8F0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

/* 2. Barrita Corta de Ubicación (Thumb): Cero scales, cero sombras - Solo cambio de tono a negro en hover */
.slider-scroll-indicator-fill {
  height: 100% !important;
  width: 25%;
  background: #64748B !important;
  border-radius: 99px !important;
  transition: transform 0.05s ease-out, background-color 0.25s ease !important;
  transform-origin: left center;
  box-shadow: none !important;
}

.slider-scroll-indicator-bar:hover .slider-scroll-indicator-fill,
.slider-scroll-indicator-bar.is-interacting .slider-scroll-indicator-fill,
.slider-section-wrapper:hover .slider-scroll-indicator-fill,
.coupons-slider-wrapper:hover .slider-scroll-indicator-fill,
.wizard-slider-wrapper:hover .slider-scroll-indicator-fill {
  background: #000000 !important;
  box-shadow: none !important;
}

/* Flechas Laterales Flotantes Estilo Hero para Carruseles (Nuestros Modelos, Accesorios, Financiamiento) */
.wizard-slider-wrapper .slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90 !important;
  width: 44px;
  height: 44px;
  background: rgba(10, 10, 10, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--accent-gold);
  border: none !important;
  outline: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: background 0.15s ease;
  user-select: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.wizard-slider-wrapper .slider-arrow-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold);
  transition: stroke 0.2s ease;
}

.wizard-slider-wrapper .slider-arrow-btn.prev-btn {
  left: 0;
}

.wizard-slider-wrapper .slider-arrow-btn.next-btn {
  right: 0;
}

.wizard-slider-wrapper .slider-arrow-btn:hover {
  background: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
}

.wizard-slider-wrapper .slider-arrow-btn:hover svg {
  stroke: #000000 !important;
}

.wizard-slider-wrapper .slider-arrow-btn.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transition: none !important;
}

@keyframes fadeInFloatingBtn {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.85);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes bounceRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* Animación Sutil y Elegante de Selección para Botones Opción */
@keyframes instantSelectPop {
  0% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}

/* Animación Sutil y Elegante de Selección para Tarjeta de Moto (Paso 2 - Sin cambios de color) */
@keyframes cardSelectPop {
  0% {
    transform: scale(0.985);
  }
  50% {
    transform: scale(1.005);
  }
  100% {
    transform: scale(1);
  }
}

.wizard-opt-btn.is-selecting,
.wizard-brand-opt.is-selecting,
.wizard-dp-opt.is-selecting,
.wizard-month-opt.is-selecting,
.wizard-model-card.is-selecting {
  animation: none !important;
  transform: none !important;
}
}

.wizard-models-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 14px 4px;
  scroll-snap-type: none !important;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  will-change: scroll-position;
  -webkit-overflow-scrolling: touch;
  cursor: default;
  user-select: none;
}

.wizard-models-grid.is-dragging {
  cursor: default !important;
  user-select: none !important;
}

.wizard-models-grid {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.wizard-models-grid::-webkit-scrollbar {
  display: none !important;
  height: 0 !important;
}

.wizard-model-card,
.wizard-model-card * {
  user-select: none !important;
  -webkit-user-drag: none !important;
  -webkit-touch-callout: none !important;
}

.wizard-model-card {
  flex: 0 0 195px !important;
  width: 195px !important;
  min-width: 195px !important;
  max-width: 195px !important;
  box-sizing: border-box !important;
  background: #FFFFFF !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 16px 16px 14px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: center !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background-color 0.25s ease !important;
  user-select: none !important;
  position: relative !important;
}

.wizard-model-card:hover {
  background: #FFFFFF !important;
  border: none !important;
  box-shadow: none !important;
}

.wizard-model-card.active {
  background: #FFFFFF !important;
  border: none !important;
  box-shadow: none !important;
}

.wizard-model-img-box {
  width: 100% !important;
  height: 125px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 8px !important;
  background: transparent !important;
  padding: 0 !important;
  overflow: visible !important;
}

.wizard-model-img {
  max-width: 90% !important;
  max-height: 110px !important;
  object-fit: contain !important;
  transform-origin: bottom center !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  filter: drop-shadow(0 10px 8px rgba(0,0,0,0.06)) !important;
}

.wizard-model-card:hover .wizard-model-img {
  transform: scale(1.03) !important;
}

.wizard-model-title-box {
  width: 100% !important;
  height: 22px !important;
  overflow: hidden !important;
  position: relative !important;
  margin-top: 4px !important;
  margin-bottom: 4px !important;
  padding: 0 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.wizard-model-title-box.has-overflow {
  justify-content: flex-start !important;
}

.wizard-model-title-box.has-overflow::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 28px !important;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 75%, #FFFFFF 100%) !important;
  pointer-events: none !important;
  z-index: 5 !important;
  opacity: 1 !important;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  will-change: opacity !important;
}

.wizard-model-card:hover .wizard-model-title-box.has-overflow::after,
.wizard-model-card.is-tapped .wizard-model-title-box.has-overflow::after {
  opacity: 0 !important;
}

.wizard-model-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  margin: 0 !important;
  white-space: nowrap !important;
  display: inline-block !important;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform !important;
}

.wizard-model-price {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: #888888 !important;
  margin-top: 2px !important;
}

.wizard-model-price strong {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #404040 !important;
}

@media (max-width: 600px) {
  .wizard-models-grid {
    gap: 10px;
    padding-bottom: 10px;
  }
  .wizard-model-card {
    flex: 0 0 150px;
    width: 150px;
    padding: 12px 8px;
  }
  .wizard-model-img-box {
    height: 80px;
  }
}

.wizard-nav-footer {
  display: none !important;
}

.transparency-info-note {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: #8C8C8C !important;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.transparency-info-note a {
  color: inherit !important;
  font-weight: 500 !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
  text-decoration: underline !important;
  cursor: pointer;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  display: inline;
  transition: color 0.15s ease;
}

.transparency-info-note a:hover {
  color: #000000 !important;
  text-decoration: underline !important;
}

.btn-wizard-prev {
  background: transparent;
  color: #888888;
  border: 1px solid #333333;
  padding: 12px 24px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-wizard-prev:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-wizard-next {
  display: none !important;
}

.btn-wizard-next:hover {
  background: #FFFFFF;
  color: #000000;
}

.btn-wizard-next.disabled {
  opacity: 0.45 !important;
  background: #262626 !important;
  color: #737373 !important;
  border: 1px solid #333333 !important;
  cursor: not-allowed !important;
}

.btn-wizard-next.disabled:hover {
  background: #262626 !important;
  color: #737373 !important;
}

/* ==========================================================================
   PANTALLA RESULTADO DE EVALUACIÓN (PASO FINAL DEL WIZARD)
   ========================================================================== */
/* FICHA RESUMEN DE FINANCIAMIENTO E-COMMERCE (UI/UX 100% CONSISTENTE) */
.eval-spec-sheet {
  padding: 4px 0;
  margin-bottom: 0 !important;
}

.spec-product-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 4px;
  border-bottom: none !important;
}

.spec-img-box {
  width: 120px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none !important;
}

.spec-product-info {
  flex-grow: 1;
}

.spec-model-name {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  margin-bottom: 4px !important;
}

.spec-model-price {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  color: #737373 !important;
}

.spec-model-price strong {
  color: #000000 !important;
  font-weight: 700 !important;
}

/* TABLA PAR CLAVE-VALOR DE RESUMEN DE CUOTAS (FORMATO HOMOGÉNEO) */
.spec-table {
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
}

.spec-label {
  color: #737373 !important;
  font-weight: 500 !important;
}

.spec-value {
  color: #000000 !important;
  font-weight: 700 !important;
}

/* SELECTOR DE PLAZO EN MESES (UBICADO DESPUÉS DE CUOTA INICIAL) */
.spec-months-selector {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5E5E5 !important;
}

.spec-months-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 8px !important;
}

/* FILAS CON MONTOS ALINEADOS CERCA (NO AL BORDE DERECHO EXTREMO) */
.spec-row-left-aligned {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
}

.spec-label-fixed {
  color: #737373 !important;
  font-weight: 500 !important;
  min-width: 130px;
  flex-shrink: 0;
}

.spec-value-near {
  color: #000000 !important;
  font-weight: 700 !important;
}

/* PISTA DESLIZABLE HORIZONTAL EN UNA SOLA FILA PARA PLAZO EN MESES (A LA DERECHA DE LA ETIQUETA) */
.spec-months-inline-track {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  overflow-x: auto !important;
  white-space: nowrap !important;
  scroll-behavior: auto !important;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
  flex-grow: 1;

  /* Ocultar barra de scroll manteniendo interactividad */
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.spec-months-inline-track::-webkit-scrollbar {
  display: none !important;
  height: 0 !important;
}

.spec-months-inline-track .wizard-opt-btn {
  flex-shrink: 0 !important;
  padding: 10px 14px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  border: 1px solid #E5E5E5 !important;
  background: #FFFFFF !important;
  color: #000000 !important;
  cursor: pointer;
  border-radius: 0 !important;
  transition: all 0.15s ease;
}

.spec-months-inline-track .wizard-opt-btn.active {
  background: #000000 !important;
  color: #FFFFFF !important;
  border-color: #000000 !important;
}

/* DIVISORES UNIFICADOS CON FORMATO 100% IDÉNTICO */
.spec-item-divider {
  height: 1px !important;
  background: #E5E5E5 !important;
  width: 100% !important;
  margin: 20px 0 !important;
  border: none !important;
}

.spec-quote-left-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.spec-value-highlight {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  color: #000000 !important;
  line-height: 1 !important;
}

.eval-months-grid {
  grid-template-columns: repeat(auto-fit, minmax(75px, 1fr)) !important;
  gap: 8px !important;
}

.eval-validity-box {
  background: #F8F9FA !important;
  border: 1px solid #E5E5E5 !important;
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #666666 !important;
}

.wizard-gray-divider {
  display: none !important;
}

.btn-wizard-restart-flat {
  background: transparent;
  color: #000000 !important;
  border: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: none !important;
}

.btn-wizard-restart-flat:hover {
  color: var(--accent-gold) !important;
  transform: none !important;
}

.wizard-actions-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px !important;
}

.btn-action-download {
  background: #F8F9FA !important;
  color: #000000 !important;
  border: 1.5px solid #CCCCCC !important;
  padding: 16px 24px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-action-download:hover {
  border-color: #000000 !important;
  background: #000000 !important;
  color: #FFFFFF !important;
}

.btn-action-whatsapp {
  background: var(--accent-gold);
  color: #000000;
  border: 1.5px solid var(--accent-gold);
  padding: 16px 24px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-action-whatsapp:hover {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
}

/* ==========================================================================
   SECCIÓN ACCESORIOS & EQUIPAMIENTO (FONDO BLANCO #FFFFFF EDGE-TO-EDGE)
   ========================================================================== */
.accessories-section {
  width: 100%;
  background: #FFFFFF;
  padding: 90px 48px;
  border-top: 1px solid #E5E5E5;
}

.accessories-container {
  max-width: 1320px;
  margin: 0 auto;
}

.accessory-filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .accessories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .accessories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 550px) {
  .accessories-grid { grid-template-columns: 1fr; }
}

/* SECCIÓN TALLER AUTORIZADO FULL WIDTH */
.service-section {
  width: 100%;
  background: #FFFFFF;
  padding: 90px 48px;
}

.service-container {
  max-width: 1280px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 40px auto 0 auto;
}

.service-card {
  background: #F5F5F5;
  border-radius: 0 !important;
  padding: 40px;
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: #E5E5E5;
}

/* Footer Profesional Enterprise (100% FULL VIEWPORT WIDTH EDGE-TO-EDGE) */
.footer-enterprise {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  background: #0A0A0A !important;
  color: #A3A3A3 !important;
  padding: 70px 0 40px 0 !important;
  border-top: 1px solid #171717 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.footer-container {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.6;
  color: #888888;
  max-width: 320px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: #888888;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--accent-gold);
}

.footer-bottom-bar {
  border-top: 1px solid #171717;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #666666;
}

@media (max-width: 900px) {
  .integrated-hero-wrapper { aspect-ratio: auto; min-height: 580px; }
  .hero-slide-callout { bottom: 40px; left: 20px; right: 20px; max-width: 100%; }
  .hero-callout-title { font-size: 26px; }
  .hero-counter-tag { bottom: 40px; right: 20px; font-size: 14px; }
  .wizard-card-box { padding: 28px 20px; }
  .wizard-actions-group { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .iori-header { padding: 0 20px; }
  .iori-header.scrolled { padding: 0 16px; }
  .iori-nav { display: none; }
  .catalog-section, .credit-banner-section, .service-section, .footer-enterprise { padding: 60px 20px; }
  .footer-bottom-bar { flex-direction: column; gap: 16px; text-align: center; }
  .slider-arrow-btn { width: 36px; height: 36px; }
  .slider-arrow-btn.prev-btn { left: 10px; }
  .slider-arrow-btn.next-btn { right: 10px; }
}

/* Texto Modo Info (Ícono (i) + Garantía de transparencia Aquí) */
.transparency-info-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 12px;
  color: #8C8C8C !important;
  text-align: center;
}

.info-letter-icon {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 14px;
  color: var(--accent-gold);
  line-height: 1;
  display: inline-block;
}

.transparency-info-note a {
  color: inherit !important;
  font-weight: 500 !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
  text-decoration: underline !important;
  cursor: pointer;
  transition: color 0.2s ease;
}

.transparency-info-note a:hover {
  color: #000000 !important;
}

/* Tarjeta Inevitable en Paso 5 */
.transparency-result-card {
  background: rgba(255, 199, 0, 0.05);
  border: 1px solid rgba(255, 199, 0, 0.25);
  padding: 16px 20px;
  margin-bottom: 20px;
  text-align: left;
}

.transparency-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.transparency-card-text {
  font-size: 12px;
  line-height: 1.5;
  color: #D4D4D4;
  margin-bottom: 10px;
}

.btn-read-full-transparency {
  background: transparent;
  border: none;
  color: var(--accent-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-read-full-transparency:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Bloqueo estricto del scroll de fondo al abrir cualquier modal */
body.modal-open {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none !important;
}

/* Modal Overlay & Card Architecture */
.iori-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.iori-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.iori-modal-card {
  background: #0A0A0A;
  border: 1px solid var(--accent-gold);
  width: 100%;
  max-width: 620px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 199, 0, 0.15);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.iori-modal-overlay.active .iori-modal-card {
  transform: translateY(0) scale(1);
}

.iori-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: #888888;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.iori-modal-close:hover {
  color: var(--accent-gold);
}

.iori-modal-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.iori-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #222222;
}

.transparency-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.transparency-pillar:last-child {
  margin-bottom: 0;
}

.pillar-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 199, 0, 0.1);
  border: 1px solid rgba(255, 199, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
}

.pillar-content h4 {
  font-size: 14px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.pillar-content p {
  font-size: 13px;
  line-height: 1.5;
  color: #A3A3A3;
}

.iori-modal-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #222222;
}

.btn-modal-understand {
  width: 100%;
  padding: 14px;
  background: var(--accent-gold);
  color: #000000;
  border: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-understand:hover {
  background: #FFFFFF;
  color: #000000;
}

/* ==========================================================================
   NOTIFICACIÓN TOAST ENTERPRISE (IORI BIKER MOTOS PERÚ)
   ========================================================================== */
.iori-toast-container {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.iori-toast {
  pointer-events: auto;
  min-width: 320px;
  max-width: 420px;
  background: #0A0A0A;
  color: #FFFFFF;
  border-left: 4px solid var(--accent-gold);
  border-top: 1px solid #262626;
  border-right: 1px solid #262626;
  border-bottom: 1px solid #262626;
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: slideInToast 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastReappear {
  0% {
    transform: scale(0.93) translateY(10px);
    opacity: 0;
  }
  50% {
    transform: scale(1.03) translateY(-2px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.iori-toast.reappear {
  animation: toastReappear 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.iori-toast.hiding {
  animation: fadeOutToast 0.3s ease forwards;
}

.iori-toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.iori-toast-content {
  flex-grow: 1;
}

.iori-toast-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.iori-toast-message {
  font-size: 12px;
  font-weight: 500;
  color: #E5E5E5;
  line-height: 1.4;
}

.iori-toast-close {
  background: transparent;
  border: none;
  color: #737373;
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.iori-toast-close:hover {
  color: #FFFFFF;
}

@keyframes slideInToast {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOutToast {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(40px); }
}

@media (max-width: 600px) {
  .iori-toast-container {
    top: 74px;
    left: 16px;
    right: 16px;
  }
  .iori-toast {
    min-width: 100%;
    max-width: 100%;
  }
}

/* MODAL SIMPLE MONTO INICIAL PERSONALIZADO */
.custom-dp-modal-card {
  max-width: 420px !important;
}

.custom-dp-input-box {
  background: #141414;
  border: 1px solid #333333;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 10px;
}

.custom-dp-input-box:focus-within {
  border-color: var(--accent-gold);
}

.custom-dp-prefix {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--accent-gold);
}

.custom-dp-modal-field {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #FFFFFF;
  width: 100%;
}

.custom-dp-modal-field::-webkit-outer-spin-button,
.custom-dp-modal-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==========================================================================
   REGLA DE ORO DE DISEÑO ENTERPRISE: CERO SOMBRAS EN TODOS LOS BOTONES
   ========================================================================== */
button,
a.btn,
.btn,
[class*="btn"],
.wizard-opt-btn,
.wizard-brand-opt,
.wizard-dp-opt,
.wizard-month-opt,
.wizard-model-card,
.ssenda-tab,
.brand-chip,
.iori-btn-credit {
  box-shadow: none !important;
}

button:hover,
button:active,
button:focus,
a.btn:hover,
.btn:hover,
[class*="btn"]:hover,
[class*="btn"]:active,
.wizard-opt-btn:hover,
.wizard-brand-opt:hover,
.wizard-dp-opt:hover,
.wizard-month-opt:hover,
.wizard-model-card:hover,
.ssenda-tab:hover,
.brand-chip:hover,
.iori-btn-credit:hover {
  box-shadow: none !important;
}

/* ==========================================================================
   SECCIÓN CUPONES MOTOS (DISEÑO ESTÉTICO, LIMPIO Y ORDENADO)
   ========================================================================== */
.coupons-section {
  background: #ffffff;
  padding: 60px 0 !important;
  border-top: none;
}

.coupons-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px !important;
  box-sizing: border-box;
}

.coupons-header {
  text-align: center;
  margin-bottom: 36px;
}

.coupons-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 8px;
}

.coupons-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #000000;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

.coupons-subtitle {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  margin: 0;
}

.coupons-slider-wrapper {
  position: relative;
  width: 100%;
}

.coupons-slider-wrapper .slider-arrow-btn.prev-btn {
  left: -24px !important;
}

.coupons-slider-wrapper .slider-arrow-btn.next-btn {
  right: -24px !important;
}

@media (max-width: 1380px) {
  .coupons-slider-wrapper .slider-arrow-btn.prev-btn {
    left: -12px !important;
  }
  .coupons-slider-wrapper .slider-arrow-btn.next-btn {
    right: -12px !important;
  }
}

.coupons-slider-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto !important;
  gap: 22px !important;
  padding: 8px 4px 4px 4px !important;
  margin-bottom: 0 !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  cursor: grab !important;
}

.coupons-slider-grid::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.coupons-slider-grid .coupon-card-item {
  flex: 0 0 360px !important;
  width: 360px !important;
  max-width: 360px !important;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-left: 5px solid var(--accent-gold);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.coupons-slider-grid .coupon-card-item:hover {
  border-color: #18181b;
  border-left-color: var(--accent-gold);
}

.coupon-hero-group {
  margin-bottom: 14px;
}

.coupon-sublabel {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  color: #000000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.coupon-hero-val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: #000000;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.coupon-hero-val .curr {
  font-size: 24px;
  color: #000000;
  font-weight: 900;
}

.coupon-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  border-top: 1px dashed #e5e7eb;
  padding-top: 12px;
}

.coupon-bullet-row {
  font-size: 12px;
  color: #374151;
  font-weight: 600;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap !important;
}

.coupon-bullet-row:last-child {
  margin-bottom: 0;
}

.coupon-bullet-row .check-mark {
  color: #d97706;
  font-weight: 900;
  font-size: 12px;
}

.btn-coupon-claim {
  background: #000000;
  color: var(--accent-gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 13px 20px;
  border-radius: 6px;
  border: 1.5px solid #000000;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  width: 100%;
}

.btn-coupon-claim:hover {
  background: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
}

/* ==========================================================================
   ESTILO TICKET STUB COMPACTO PERFECCIONADO (SISTEMA DE CUPONES ELEGANTES)
   ========================================================================== */
/* ==========================================================================
   ESTILO DE CUPONES HOMOLOGADOS CON LA ESTÉTICA FINANCIAMIENTO MULTIMARCA
   ========================================================================== */
.ticket-stub-card {
  flex: 0 0 340px !important;
  width: 340px !important;
  height: 110px !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-left: 5px solid #FFC700 !important;
  border-radius: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  padding: 18px 20px !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: border-color 0.2s ease !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.ticket-stub-card:hover {
  border-color: #CBD5E1 !important;
  border-left-color: #FFC700 !important;
  box-shadow: none !important;
  transform: none !important;
}

.ticket-stub-left {
  width: auto !important;
  background: transparent !important;
  color: #000000 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  position: static !important;
}

.ticket-stub-left::after {
  display: none !important;
}

.ticket-discount-val {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  color: #FFFFFF !important;
  background: #000000 !important;
  padding: 4px 10px !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  border-radius: 0 !important;
  line-height: 1.2 !important;
}

.ticket-discount-val span {
  display: inline !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  color: #FFC700 !important;
  margin-left: 3px !important;
  letter-spacing: 0.12em !important;
}

.ticket-stub-right {
  width: 100% !important;
  padding: 0 !important;
  background: transparent !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  border-radius: 0 !important;
}

.ticket-title-text {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: -0.01em !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  line-height: 1.25 !important;
  margin: 0 !important;
}

.ticket-stub-action {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-top: 6px !important;
}

/* ==========================================================================
   NUEVO DISEÑO EDITORIAL DE SERVICIO TÉCNICO AUTORIZADO (3 TARJETAS INMERSIVAS)
   ========================================================================== */
.tech-service-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 992px) {
  .tech-service-editorial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.tech-service-card {
  position: relative;
  height: 380px;
  background: #000000;
  overflow: hidden;
  box-sizing: border-box;
}

.tech-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.tech-service-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

.tech-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 75%, #000000 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #FFFFFF;
  box-sizing: border-box;
}

.tech-service-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
  background: var(--accent-gold);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}

.tech-service-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.tech-service-desc {
  font-size: 12px;
  color: #E2E8F0;
  line-height: 1.45;
  margin: 0;
  font-weight: 500;
}

.ticket-action-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 6px;
}

.btn-ticket-claim-action {
  background: transparent !important;
  border: none !important;
  color: #000000 !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 !important;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  cursor: pointer;
}

.ticket-stub-card:hover .btn-ticket-claim-action,
.btn-ticket-claim-action:hover {
  color: var(--accent-gold, #FFC700) !important;
}

@media (max-width: 992px) {
  .coupons-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   AIRE SUPERIOR DE NAVEGACIÓN (LUXURY SECTION OFFSET ALIGNMENT)
   ========================================================================== */
section[id],
div[id].catalog-section,
.catalog-section,
.coupons-section,
.wizard-section,
.service-section,
.footer-enterprise {
  scroll-margin-top: 110px !important;
}

/* ==========================================================================
   INDICADOR DE SCROLL SLIDER DINÁMICO (INVISIBLE EN REPOSO / VISIBLE EN HOVER/INTERACCIÓN)
   ========================================================================== */
.slider-section-wrapper:hover .slider-scroll-indicator-bar,
.coupons-slider-wrapper:hover .slider-scroll-indicator-bar,
.wizard-slider-wrapper:hover .slider-scroll-indicator-bar,
.slider-scroll-indicator-bar.is-interacting {
  opacity: 1 !important;
}

/* ==========================================================================
   SECCIÓN INSTITUCIONAL: MARQUEE DE MARCAS + NOSOTROS + GALERÍA MASONRY
   ========================================================================== */
.brand-marquee-section {
  width: 100%;
  background: #FFFFFF !important;
  border: none !important;
  padding: 38px 0 !important;
  overflow: hidden;
  position: relative;
}

.brand-marquee-header {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000 !important;
  margin-bottom: 24px !important;
}

.marquee-track-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee-track {
  display: flex;
  gap: 40px !important;
  white-space: nowrap;
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.marquee-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  height: 48px;
}

.brand-logo-img {
  max-height: 34px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.75);
  transition: filter 0.25s ease;
}

.marquee-logo-item:hover .brand-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: none;
}

.marquee-logo-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #0F172A;
  opacity: 0.85;
  transition: all 0.25s ease;
}
.marquee-logo-card:hover {
  opacity: 1;
  border-color: #000000;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.brand-icon-emblem {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #FFC700;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.about-impact-section {
  width: 100%;
  background: #FFFFFF;
  padding: 36px 0 60px 0 !important;
}

.about-impact-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.about-text-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 48px;
}

.about-left-block {
  text-align: left;
}

.about-tag-pill {
  display: inline-block;
  padding: 4px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #000000;
  color: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 14px;
}

.about-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
}

.about-body-text {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #334155;
  font-weight: 400;
  text-align: justify;
  margin: 0;
}

.editorial-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #F1F5F9;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-caption-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.88) 100%);
  color: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-caption-overlay {
  opacity: 1;
  visibility: visible;
}

.gallery-caption-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  color: #FFFFFF;
  line-height: 1.3;
}

.gallery-caption-sub {
  font-size: 10px;
  color: #FFC700;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.gallery-span-tall {
  grid-row: span 2;
}
.gallery-span-wide {
  grid-column: span 2;
}

@media (max-width: 992px) {
  .about-text-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .editorial-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   FOOTER MULTINIVEL DE ALTA GAMA (4 PISOS ENTERPRISE LUXURY - MEJORADO)
   ========================================================================== */
.footer-enterprise-multi {
  background: #000000 !important;
  color: #E5E5E5 !important;
  border-top: 1px solid #1F1F1F !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  width: 100%;
}

.footer-container {
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 44px !important;
  box-sizing: border-box !important;
  transition: padding 0.25s ease;
}

/* --------------------------------------------------------------------------
   SECCIÓN 1 (FULL-WIDTH): BANNER VIP COMUNIDAD WHATSAPP (3 COLUMNAS & SWITCH)
   -------------------------------------------------------------------------- */
.footer-tier-vip {
  border-bottom: 1px solid #1A1A1A;
  padding: 44px 0;
  background: #000000;
}

.footer-vip-box-clean {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}

.vip-header-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-badge-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-newsletter-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  color: #FFFFFF !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
  line-height: 1.15 !important;
}

/* Grilla de 6 Beneficios en 3 Columnas (3x2) */
.vip-benefits-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 36px;
  width: 100%;
  max-width: 980px;
  margin-top: 4px;
  margin-bottom: 8px;
  text-align: left;
}

.bullet-item {
  font-size: 13.5px;
  font-weight: 400;
  color: #D1D5DB;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bullet-dot {
  color: var(--accent-gold);
  font-size: 16px;
  line-height: 1.3;
  flex-shrink: 0;
}

/* Módulo Switch Interactivo (Link ⇄ QR) */
.vip-action-switcher {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}

.vip-switch-nav {
  display: inline-flex;
  background: #121214;
  padding: 5px;
  border: 1px solid #26262B;
  border-radius: 30px;
  gap: 6px;
}

.vip-switch-tab {
  background: transparent;
  color: #A3A3A3;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.vip-switch-tab.active {
  background: var(--accent-gold);
  color: #000000;
  box-shadow: 0 4px 14px rgba(255, 145, 1, 0.35);
}

.vip-switch-panels {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 115px;
}

.vip-switch-panel {
  display: none;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  animation: fadeInSwitch 0.3s ease-in-out;
}

.vip-switch-panel.active {
  display: flex;
}

@keyframes fadeInSwitch {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vip-qr-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.vip-qr-box {
  background: #FFFFFF;
  padding: 8px;
  border: 1.5px solid var(--accent-gold);
  width: 106px;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.vip-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vip-qr-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #A3A3A3;
  text-transform: uppercase;
}

.footer-vip-btn {
  background: var(--accent-gold);
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 15px 32px;
  border-radius: 0px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(255, 145, 1, 0.25);
  white-space: nowrap;
  min-width: 240px;
  text-align: center;
}

.footer-vip-btn:hover {
  background: #25D366;
  color: #000000;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

@media (max-width: 992px) {
  .vip-benefits-3col-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 380px;
  }
}

/* --------------------------------------------------------------------------
   SECCIÓN 2 (FULL-WIDTH 3-COL): TRÍO DE HERRAMIENTAS Y ATENCIÓN DIRECTA
   -------------------------------------------------------------------------- */
.footer-tier-tools {
  padding: 38px 0;
  background: #000000 !important;
  border-bottom: none !important;
}

.footer-tier-tools .footer-container {
  border-bottom: 1px solid #1A1A1A;
  padding-bottom: 38px;
}

.footer-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .footer-tools-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.footer-tool-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0B0B0B;
  border: 1px solid #222222;
  padding: 26px 28px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.footer-tool-card:hover {
  background: #111111;
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.tool-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.tool-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 199, 0, 0.08);
  border: 1px solid rgba(255, 199, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.footer-tool-card:hover .tool-card-icon {
  transform: scale(1.1);
  background: rgba(255, 199, 0, 0.18);
}

.tool-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-card-desc {
  font-size: 12.5px;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.tool-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
}

.footer-tool-card:hover .tool-card-link {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   PISO 1: IDENTIDAD DE MARCA & INFORMACIÓN DE CONTACTO DIRECTA
   -------------------------------------------------------------------------- */
.footer-tier-brand {
  background: #000000 !important;
  padding: 88px 0 0 0 !important;
  border-bottom: none !important;
}

.footer-tier-brand .footer-container {
  border-bottom: 1px solid #262626 !important;
  padding-bottom: 40px !important;
}

.footer-brand-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 48px !important;
  align-items: start !important;
  width: 100% !important;
}

.footer-brand-hero-col {
  grid-column: 1 / span 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding-right: 0 !important;
  border-right: none !important;
  width: 100% !important;
}

.footer-brand-desc {
  font-size: 12px !important;
  line-height: 1.6 !important;
  letter-spacing: -0.01em !important;
  color: #D1D5DB !important;
  margin: 0 !important;
  max-width: 580px !important;
}

.footer-hero-trust-badges {
  display: flex !important;
  align-items: center !important;
  gap: 10px 12px !important;
  margin-top: 18px !important;
  flex-wrap: wrap !important;
  max-width: 520px !important;
  width: 100% !important;
}

.footer-trust-badge-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255, 145, 1, 0.06) !important;
  border: 1px solid rgba(255, 145, 1, 0.2) !important;
  border-radius: 4px !important;
  padding: 6px 12px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #E5E5E5 !important;
  letter-spacing: 0.03em !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
}

.footer-trust-badge-item svg {
  stroke: var(--accent-gold) !important;
  flex-shrink: 0 !important;
}

.footer-trust-badge-item:hover {
  background: rgba(255, 145, 1, 0.14) !important;
  border-color: var(--accent-gold) !important;
  color: #FFFFFF !important;
}

.footer-right-info-group {
  grid-column: 3 / span 2 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
  width: 100% !important;
  margin: 0 !important;
}

.footer-brand-col {
  margin-top: 0 !important;
  padding: 0 !important;
  border-right: none !important;
  width: 100% !important;
}

@media (max-width: 1024px) {
  .footer-brand-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  .footer-brand-hero-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    border-right: none !important;
  }
  .footer-right-info-group {
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }
  .footer-brand-col {
    padding: 0 !important;
    border-right: none !important;
  }
}

.footer-entry-group {
  margin-bottom: 16px;
}

.footer-entry-group:last-child {
  margin-bottom: 0;
}

.footer-entry-subtitle {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: #D1D5DB !important;
  margin-bottom: 3px !important;
}

.footer-entry-content {
  font-size: 12.5px !important;
  color: #9CA3AF !important;
  line-height: 1.45 !important;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-entry-link {
  font-size: 12.5px !important;
  color: #9CA3AF !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.footer-entry-link:hover {
  color: #FFFFFF !important;
  text-decoration: underline !important;
}

@media (max-width: 1024px) {
  .footer-container {
    padding: 0 32px !important;
  }
  .footer-brand-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    align-items: start !important;
  }
  .footer-brand-hero-col {
    grid-column: span 2;
    padding-right: 0 !important;
  }
}

@media (max-width: 640px) {
  .footer-container {
    padding: 0 20px !important;
  }
  .footer-brand-grid {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 24px !important;
    align-items: start !important;
  }
  .footer-brand-hero-col {
    grid-column: span 1;
    padding-right: 0 !important;
  }
}

.footer-brand-tagline {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  color: var(--accent-gold) !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
  display: block;
}

.footer-brand-logo-img {
  max-height: 68px !important;
  width: auto !important;
  margin-bottom: 14px !important;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.footer-brand-desc {
  font-size: 12px !important;
  line-height: 1.6 !important;
  letter-spacing: -0.01em !important;
  color: #D1D5DB !important;
  margin: 0 !important;
  max-width: 580px !important;
}

.footer-info-heading {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
  color: #FFFFFF !important;
  margin: 0 0 14px 0 !important;
  padding: 0 0 0 10px !important;
  border-left: 3px solid var(--accent-gold) !important;
  text-transform: uppercase !important;
  display: block;
}

.footer-info-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px !important;
  font-size: 12px !important;
  color: #D1D5DB !important;
}

.footer-info-list li {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.5 !important;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.info-dot {
  color: var(--accent-gold) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.footer-info-list strong {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.highlight-val {
  color: #FFFFFF !important;
  font-weight: 400 !important;
}

@keyframes dotPulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.footer-status-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #4ADE80 !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  margin-top: 4px !important;
  letter-spacing: 0.06em !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50% !important;
  display: inline-block;
  animation: dotPulse 2s infinite ease-in-out;
}

/* --------------------------------------------------------------------------
   PISO 2: DIRECTORIO DIVIDIDO EN PANELES ESTRUCTURADOS DE ALTO CONTRASTE
   -------------------------------------------------------------------------- */
.footer-tier-directory {
  padding: 40px 0 0 0 !important;
  background: #000000 !important;
  border-bottom: none !important;
}

.footer-tier-directory .footer-container {
  border-bottom: 1px solid #262626 !important;
  padding-bottom: 36px !important;
}

.footer-directory-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 48px !important;
  align-items: start !important;
  width: 100% !important;
}

.footer-dir-panel {
  padding: 0 !important;
  border-right: none !important;
  width: 100% !important;
}

@media (max-width: 1024px) {
  .footer-directory-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 24px !important;
  }
  .footer-dir-panel {
    border-right: none !important;
    padding: 0 !important;
  }
}

.footer-vip-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.vip-pill-item {
  background: #111111;
  border: 1px solid #282828;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #E5E5E5;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.vip-pill-item span {
  color: var(--accent-gold);
}

.footer-dir-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  margin: 0 0 14px 0 !important;
  padding: 0 0 0 10px !important;
  border: none !important;
  border-left: 3px solid var(--accent-gold) !important;
  display: block;
  width: 100%;
  white-space: nowrap !important;
}

.footer-dir-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px !important;
}

.footer-dir-list li {
  padding: 0 !important;
  margin: 0 !important;
}

.footer-dir-list a {
  color: #D1D5DB !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex;
  align-items: center;
  position: relative;
  white-space: nowrap !important;
  margin: 0 !important;
  padding: 0 0 0 12px !important;
}

.footer-dir-list a::before {
  content: '›';
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 14px;
  position: absolute;
  left: 0;
  opacity: 1 !important;
  transform: translateX(0);
  transition: all 0.2s ease;
}

.footer-dir-list a:hover {
  color: var(--accent-gold) !important;
  transform: translateX(4px);
}

.footer-dir-list a:hover::before {
  opacity: 1 !important;
  transform: translateX(0);
}

.footer-dir-highlight {
  color: var(--accent-gold) !important;
  font-weight: 800 !important;
}

.footer-badge-item {
  background: #161616;
  border: 1px solid rgba(255, 199, 0, 0.3);
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   PISO 3: RESPALDO MULTIMARCA & SOCIAL
   -------------------------------------------------------------------------- */
.footer-tier-trust {
  border-top: none !important;
  padding: 32px 0 0 0 !important;
  background: #000000 !important;
}

.footer-tier-trust .footer-container {
  border-bottom: 1px solid #262626 !important;
  padding-bottom: 32px !important;
}

.footer-trust-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand-statement {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
}

.footer-statement-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.08em;
}

.footer-brand-tags {
  color: #D1D5DB;
  letter-spacing: 0.05em;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: #141414 !important;
  border: 1px solid #2E2E2E !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D1D5DB;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--accent-gold) !important;
  color: #000000 !important;
  border-color: var(--accent-gold) !important;
}

/* --------------------------------------------------------------------------
   PISO 4: BARRA ENTERPRISE BOTTOM
   -------------------------------------------------------------------------- */
.footer-tier-bottom {
  border-top: none !important;
  padding: 24px 0 28px 0 !important;
  background: #000000 !important;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #6B7280;
}

@media (max-width: 768px) {
  .footer-trust-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
  }
  .footer-brand-statement {
    justify-content: center !important;
    text-align: center !important;
  }
  .footer-bottom-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
  }
  .footer-legal-nav {
    justify-content: center !important;
  }
}

.footer-copy {
  color: #9CA3AF;
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal-nav a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-nav a:hover {
  color: #FFFFFF;
}

.footer-region-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #D1D5DB;
  letter-spacing: 0.05em;
}

.sugerencias-input-field {
  width: 100%;
  background: #0A0A0A;
  border: 1px solid #333333;
  color: #FFFFFF;
  padding: 10px 14px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.sugerencias-input-field:focus {
  border-color: var(--accent-gold);
}

/* ==========================================================================
   ARQUITECTURA RESPONSIVE MEGA PROFESIONAL A DETALLE (FOOTER IORI BIKER MOTOS)
   ========================================================================== */

/* 1. DESKTOPS MEDIANOS & LAPTOPS (max-width: 1280px) */
@media (max-width: 1280px) {
  .footer-container {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .footer-brand-grid,
  .footer-directory-grid {
    gap: 36px !important;
  }
  .footer-right-info-group {
    gap: 36px !important;
  }
}

/* 2. TABLETS LANDSCAPE & MEDIAS (max-width: 1024px) */
@media (max-width: 1024px) {
  .footer-hero-trust-badges {
    max-width: 100% !important;
  }
  .footer-brand-desc {
    max-width: 100% !important;
  }
}

/* 3. TABLETS PORTRAIT & SMARTPHONES GRANDES (max-width: 768px) */
@media (max-width: 768px) {
  .footer-tier-brand {
    padding-top: 48px !important;
  }
  .footer-tier-brand .footer-container {
    padding-bottom: 32px !important;
  }
  .footer-hero-trust-badges {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px 10px !important;
    max-width: 100% !important;
  }
  .footer-trust-badge-item {
    font-size: 10.5px !important;
    padding: 6px 10px !important;
    justify-content: center !important;
  }
  .footer-tier-directory {
    padding-top: 32px !important;
  }
  .footer-tier-directory .footer-container {
    padding-bottom: 32px !important;
  }
  .footer-trust-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 20px !important;
  }
  .footer-brand-statement {
    justify-content: center !important;
    text-align: center !important;
  }
  .footer-social-row {
    justify-content: center !important;
    gap: 14px !important;
  }
  .footer-social-link {
    width: 38px !important;
    height: 38px !important;
  }
  .footer-bottom-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 14px !important;
  }
  .footer-legal-nav {
    justify-content: center !important;
    gap: 12px !important;
  }
}

/* 4. SMARTPHONES COMPACTOS (max-width: 540px) */
@media (max-width: 540px) {
  .footer-tier-brand {
    padding-top: 36px !important;
  }
  .footer-brand-logo-img {
    height: 38px !important;
    width: auto !important;
  }
  .footer-brand-desc {
    font-size: 12.5px !important;
    line-height: 1.6 !important;
  }
  .footer-right-info-group {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .footer-directory-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px 16px !important;
  }
  .footer-dir-title {
    font-size: 10.5px !important;
    margin-bottom: 10px !important;
  }
  .footer-dir-list {
    gap: 10px !important;
  }
  .footer-dir-list a {
    font-size: 12px !important;
    min-height: 28px !important;
    display: flex !important;
    align-items: center !important;
  }
  .footer-statement-label {
    font-size: 10.5px !important;
  }
  .footer-brand-tags {
    font-size: 10px !important;
    line-height: 1.5 !important;
  }
  .footer-copy {
    font-size: 11px !important;
  }
  .footer-legal-nav {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .footer-legal-nav span {
    display: none !important;
  }
}

/* ==========================================================================
   ARQUITECTURA RESPONSIVE GLOBAL MEGA PROFESIONAL (TODAS LAS SECCIONES DEL SITIO)
   ========================================================================== */

/* 1. SECCIONES GENERALES EN LAPTOPS & DESKTOPS MEDIANOS (<= 1280px) */
@media (max-width: 1280px) {
  .about-impact-container,
  .catalog-container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .about-headline {
    font-size: 32px !important;
  }
  .hero-content-title {
    font-size: 42px !important;
  }
}

/* 2. SECCIONES GENERALES EN TABLETS LANDSCAPE (<= 1024px) */
@media (max-width: 1024px) {
  /* Hero */
  .integrated-hero-wrapper {
    height: 80vh !important;
    min-height: 520px !important;
  }
  .hero-content-title {
    font-size: 34px !important;
  }
  .hero-content-subtitle {
    font-size: 13px !important;
  }
  .iori-header {
    padding: 16px 24px !important;
  }
  .iori-nav {
    gap: 20px !important;
  }
  .iori-nav a {
    font-size: 11px !important;
  }

  /* Nosotros & Galería */
  .about-text-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .about-headline {
    font-size: 28px !important;
  }
  .editorial-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .gallery-span-tall,
  .gallery-span-wide {
    grid-row: span 1 !important;
    grid-column: span 1 !important;
  }

  /* Catálogo & Accesorios */
  .asymmetric-title {
    font-size: 28px !important;
  }
  .ssenda-tabs-container,
  .brand-filter-bar {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 10px !important;
    justify-content: flex-start !important;
  }
  .ssenda-tab,
  .brand-chip,
  .accessory-chip {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }
}

/* 3. SECCIONES GENERALES EN TABLETS PORTRAIT & MOBILE (<= 768px) */
@media (max-width: 768px) {
  /* Hero */
  .integrated-hero-wrapper {
    height: 75vh !important;
    min-height: 480px !important;
  }
  .iori-header {
    padding: 14px 18px !important;
  }
  .iori-nav {
    display: none !important;
  }
  .hero-content-title {
    font-size: 28px !important;
    letter-spacing: 0.04em !important;
  }
  .hero-content-subtitle {
    font-size: 12px !important;
  }
  .hero-content-btn {
    font-size: 10.5px !important;
    padding: 10px 20px !important;
  }
  .slider-arrow-btn,
  .prev-btn,
  .next-btn {
    display: none !important;
  }

  /* Marquee */
  .brand-marquee-section {
    padding: 16px 0 !important;
  }
  .brand-logo-img {
    height: 26px !important;
  }

  /* Nosotros & Galería */
  .about-impact-section {
    padding: 56px 0 !important;
  }
  .about-headline {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }
  .about-body-text {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }
  .editorial-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Catálogo & Accesorios */
  .catalog-section {
    padding: 56px 0 !important;
  }
  .asymmetric-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }
  .asymmetric-title {
    font-size: 24px !important;
  }
  .btn-header-view-all {
    font-size: 11px !important;
  }
  .catalog-slider-grid {
    gap: 16px !important;
  }
  .moto-card {
    min-width: 260px !important;
    max-width: 270px !important;
  }
  .moto-title {
    font-size: 13px !important;
  }
  .moto-price {
    font-size: 14px !important;
  }
  .btn-quote-moto {
    min-height: 42px !important;
    font-size: 11px !important;
  }
}

/* 4. SECCIONES GENERALES EN SMARTPHONES COMPACTOS (<= 540px) */
@media (max-width: 540px) {
  /* Hero */
  .integrated-hero-wrapper {
    height: 70vh !important;
    min-height: 440px !important;
  }
  .iori-logo-img {
    height: 32px !important;
    width: auto !important;
  }
  .iori-btn-credit {
    padding: 8px 14px !important;
    font-size: 10px !important;
  }
  .hero-content-title {
    font-size: 22px !important;
  }
  .hero-content-badge {
    font-size: 9.5px !important;
    padding: 4px 10px !important;
  }

  /* Nosotros */
  .about-impact-section {
    padding: 40px 0 !important;
  }
  .about-headline {
    font-size: 20px !important;
  }

  /* Catálogo & Accesorios */
  .catalog-section {
    padding: 40px 0 !important;
  }
  .ssenda-tab {
    font-size: 10.5px !important;
    padding: 8px 14px !important;
  }
  .brand-chip,
  .accessory-chip {
    font-size: 10.5px !important;
    padding: 6px 12px !important;
  }
  .moto-card {
    min-width: 240px !important;
    max-width: 250px !important;
    padding: 16px !important;
  }
}

/* ==========================================================================
   ARQUITECTURA RESPONSIVE MINUCIOSA Y DE ALTA PRECISIÓN (TODAS LAS SECCIONES Y COMPONENTES)
   ========================================================================== */

/* 5. FINANCIAMIENTO & SIMULADOR INTEGRADO EN PANTALLAS PEQUEÑAS (<= 768px) */
@media (max-width: 768px) {
  .wizard-step-pills {
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: center !important;
  }
  .wizard-step-pill {
    font-size: 10px !important;
    padding: 6px 12px !important;
  }
  .wizard-card {
    padding: 24px 16px !important;
  }
  .wizard-chip-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .wizard-result-box {
    padding: 24px 16px !important;
  }
  .wizard-result-amount {
    font-size: 28px !important;
  }

  /* Páginas de Detalle, Fichas Técnicas & Construcción (<= 768px) */
  .construction-hero,
  .detail-hero,
  .brand-hero,
  .page-hero-wrapper {
    padding: 130px 18px 50px 18px !important;
  }
  .construction-title,
  .detail-title,
  .brand-title,
  .page-hero-title {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }
  .construction-subtitle,
  .detail-sub,
  .brand-sub,
  .page-hero-sub {
    font-size: 13.5px !important;
    margin-bottom: 24px !important;
  }
  .preview-block-grid,
  .specs-grid,
  .brand-features-grid,
  .branches-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .social-btn-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .social-btn {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
}

/* 6. SMARTPHONES ULTRA-COMPACTOS (<= 480px / 360px) */
@media (max-width: 480px) {
  /* Header Flotante */
  .iori-header {
    padding: 10px 14px !important;
  }
  .iori-logo-img {
    height: 26px !important;
  }
  .iori-btn-credit {
    padding: 7px 12px !important;
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
  }

  /* Hero Slider */
  .integrated-hero-wrapper {
    height: 65vh !important;
    min-height: 380px !important;
  }
  .hero-content-title {
    font-size: 20px !important;
    line-height: 1.2 !important;
  }
  .hero-content-subtitle {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
  .hero-content-btn {
    font-size: 9.5px !important;
    padding: 9px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .slider-arrow-btn {
    width: 34px !important;
    height: 34px !important;
  }

  /* Wizard Formulario */
  .wizard-chip-grid {
    grid-template-columns: 1fr !important;
  }
  .btn-wizard-submit {
    font-size: 10.5px !important;
    padding: 14px 12px !important;
  }

  /* Modales */
  .iori-modal-card {
    width: 92% !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    padding: 20px 14px !important;
    border-radius: 0 !important;
  }
  .iori-modal-title {
    font-size: 18px !important;
  }

  /* Fichas Técnicas & Construcción (<= 480px) */
  .construction-hero,
  .detail-hero,
  .brand-hero,
  .page-hero-wrapper {
    padding: 120px 14px 40px 14px !important;
  }
  .construction-title,
  .detail-title,
  .brand-title,
  .page-hero-title {
    font-size: 21px !important;
  }
  .construction-badge,
  .detail-badge,
  .brand-badge,
  .page-hero-tag {
    font-size: 9.5px !important;
    padding: 6px 12px !important;
    letter-spacing: 0.12em !important;
  }
  .spec-card,
  .preview-card,
  .brand-feature-card,
  .branch-card {
    padding: 20px 16px !important;
  }
}

/* ==========================================================================
   REDISEÑO RESPONSIVE ENTERPRISE PARA FINANCIAMIENTO & BOTÓN DE CRÉDITO
   ========================================================================== */

.iori-btn-credit {
  position: relative !important;
  z-index: 105 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .financing-standalone-wrapper {
    padding-top: 135px !important;
    padding-bottom: 40px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    min-height: auto !important;
  }
  .credit-header-block {
    margin-bottom: 20px !important;
  }
  .credit-title {
    font-size: 22px !important;
    line-height: 1.25 !important;
  }
  .wizard-progress-bar {
    margin-bottom: 24px !important;
    padding: 0 8px !important;
  }
  .wizard-step-pill {
    width: 32px !important;
    height: 32px !important;
    font-size: 11px !important;
  }
  .wizard-card-box {
    padding: 24px 16px !important;
    min-height: auto !important;
    border-radius: 0 !important;
  }
  .wizard-pane-title {
    font-size: 15px !important;
    margin-bottom: 18px !important;
  }
  .wizard-options-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .wizard-opt-btn {
    padding: 14px 10px !important;
    font-size: 10.5px !important;
  }
  .spec-product-row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
  }
  .spec-img-box {
    width: 140px !important;
    height: 95px !important;
    margin: 0 auto !important;
  }
  .spec-model-name {
    font-size: 15px !important;
    text-align: center !important;
  }
  .spec-model-price {
    font-size: 12.5px !important;
    text-align: center !important;
  }
  .spec-row-left-aligned {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    text-align: left !important;
  }
  .spec-label-fixed {
    font-size: 12px !important;
    font-weight: 800 !important;
  }
  .spec-months-inline-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    width: 100% !important;
    padding-bottom: 8px !important;
    gap: 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .wizard-actions-group {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 20px !important;
  }
  .btn-action-download,
  .btn-action-whatsapp {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px 20px !important;
    font-size: 11px !important;
    justify-content: center !important;
  }
  .transparency-info-note {
    font-size: 11px !important;
    margin-top: 18px !important;
    padding: 0 12px !important;
  }
}

@media (max-width: 480px) {
  .iori-header {
    padding: 10px 14px !important;
  }
  .iori-logo-img {
    height: 26px !important;
  }
  .iori-btn-credit {
    padding: 7px 12px !important;
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
    border-width: 1.5px !important;
  }
  .financing-standalone-wrapper {
    padding-top: 125px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .credit-title {
    font-size: 19px !important;
  }
  .wizard-card-box {
    padding: 18px 12px !important;
  }
  .wizard-options-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

/* ==========================================================================
   MENÚ HAMBURGUESA & DRAWER NAVEGACIÓN MÓVIL LUXURY
   ========================================================================== */
* {
  -webkit-tap-highlight-color: transparent !important;
}

button, a, .ssenda-tab, .brand-chip, .wizard-opt-btn, .iori-btn-credit, .iori-hamburger-btn {
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* ==========================================================================
   SUPERPOSICIÓN DE CAPAS HEADER & HERO (INDEX.HTML)
   ========================================================================== */
.iori-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100000 !important;
  pointer-events: auto !important;
  transform: translateZ(0) !important;
  -webkit-transform: translateZ(0) !important;
}

.iori-header * {
  pointer-events: auto !important;
}

.iori-header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  z-index: 100001 !important;
  position: relative !important;
  pointer-events: auto !important;
}

.iori-btn-credit {
  position: relative !important;
  z-index: 100002 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.iori-hamburger-btn {
  display: none !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
  padding: 6px 10px !important;
  cursor: pointer !important;
  z-index: 100002 !important;
  pointer-events: auto !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  border-radius: 0 !important;
}

.iori-hamburger-btn:hover,
.iori-hamburger-btn:active {
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
}

@media (max-width: 900px) {
  .iori-hamburger-btn {
    display: inline-flex !important;
  }
}

/* ==========================================================================
   DRAWER NAVEGACIÓN MÓVIL LUXURY (REESTRUCTURADO & INMUNE A FALLAS)
   ========================================================================== */
.iori-mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9999999 !important;
  display: none !important;
}

.iori-mobile-drawer.active,
.iori-mobile-drawer.open {
  display: block !important;
}

.iori-drawer-backdrop {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.iori-drawer-panel {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 82% !important;
  max-width: 320px !important;
  height: 100% !important;
  background: #080808 !important;
  border-left: 1.5px solid var(--accent-gold) !important;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.95) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 24px !important;
  padding: 28px 20px !important;
  box-sizing: border-box !important;
  z-index: 10000000 !important;
}

.iori-drawer-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid #1E293B !important;
  padding-bottom: 18px !important;
  margin-bottom: 0 !important;
}

.iori-drawer-close {
  background: transparent !important;
  border: none !important;
  color: #FFFFFF !important;
  font-size: 32px !important;
  font-weight: 300 !important;
  cursor: pointer !important;
  line-height: 1 !important;
}

.iori-drawer-close:hover {
  color: var(--accent-gold) !important;
}

.iori-drawer-menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.iori-drawer-menu a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  padding: 16px 20px !important;
  background: #111111 !important;
  border: 1px solid #222222 !important;
  border-left: 4px solid #333333 !important;
  border-radius: 0 !important;
}

.iori-drawer-menu a::after {
  content: '→';
  font-size: 14px;
  opacity: 0.4;
}

.iori-drawer-menu a:hover,
.iori-drawer-menu a.active {
  background: #181818 !important;
  color: var(--accent-gold) !important;
  border-color: #333333 !important;
  border-left-color: var(--accent-gold) !important;
}

.iori-drawer-menu a:hover::after,
.iori-drawer-menu a.active::after {
  opacity: 1;
  transform: translateX(4px);
  color: var(--accent-gold);
}

.drawer-highlight-btn {
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
}

.iori-drawer-footer {
  border-top: 1px solid #1E293B !important;
  padding-top: 16px !important;
  margin-top: 20px !important;
}

.drawer-ws-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: #25D366 !important;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 14px !important;
  text-decoration: none !important;
}

/* ==========================================================================
   OPTIMIZACIÓN DE RENDIMIENTO ULTRA FAST & GPU HARDWARE ACCELERATION
   ========================================================================== */
img {
  content-visibility: auto;
}

.brand-marquee-section,
.about-impact-section,
#motos,
#financiamiento,
#accesorios,
#repuestos,
.footer-enterprise-multi {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

.marquee-track,
.catalog-slider-grid,
.hero-slider-canvas {
  will-change: transform;
  transform: translateZ(0);
}





