/* ============================================================
   IV TECH LATAM — Dark Theme CSS
   Diseño: oscuro, moderno, tecnológico, SaaS premium
   Paleta: #050e1f | #0a1a33 | #00d4ff | #f5f3ee
   ============================================================ */

/* ── VARIABLES GLOBALES ─────────────────────────────────────────────────────── */
/*
   CÓMO CAMBIAR COLORES:
   Apariencia → Personalizar → Colores → Paleta de colores
   Slot 1 = color de acento (cyan por defecto: #00d4ff)
   Slot 2 = fondo secundario (azul oscuro: #0a1a33)
   Slot 3 = texto claro (#f5f3ee)
   Slot 4 = fondo principal (#050e1f)

   Estos slots alimentan las variables --ivt-accent, --ivt-bg, etc.
   Al cambiar un slot en el Customizer, el cambio se propaga a todo el sitio.
*/
:root {
  /* ── Colores de fondo (oscuros — parte del diseño del tema) */
  --ivt-bg:          var(--theme-palette-color-4, #050e1f);
  --ivt-bg2:         var(--theme-palette-color-2, #0a1a33);
  --ivt-bg3:         #0d2040;
  --ivt-bg4:         #112244;

  /* ── Color de acento — controlado por Paleta Slot 1 en el Customizer */
  --ivt-accent:      var(--theme-palette-color-1, #00d4ff);
  --ivt-accent-h:    var(--theme-palette-color-5, #00a8cc);
  --ivt-accent-dim:  color-mix(in srgb, var(--theme-palette-color-1, #00d4ff) 12%, transparent);
  --ivt-accent-glow: color-mix(in srgb, var(--theme-palette-color-1, #00d4ff) 25%, transparent);

  /* ── Colores de texto — controlados por Paleta Slot 3 en el Customizer */
  --ivt-text:        var(--theme-palette-color-3, #f5f3ee);
  --ivt-text-m:      #c8c5be;
  --ivt-text-s:      #8a877e;
  --ivt-white:       #ffffff;

  /* ── Bordes y sombras */
  --ivt-border:      color-mix(in srgb, var(--theme-palette-color-1, #00d4ff) 12%, transparent);
  --ivt-border-s:    rgba(255,255,255,.06);
  --ivt-radius:      12px;
  --ivt-radius-l:    20px;
  --ivt-shadow:      0 4px 24px rgba(0,0,0,.4);
  --ivt-shadow-h:    0 12px 48px rgba(0,212,255,.15);
  --ivt-glow:        0 0 30px rgba(0,212,255,.2);
  --ivt-font:        'Inter', system-ui, -apple-system, sans-serif;
  --ivt-mono:        'JetBrains Mono', 'Fira Code', monospace;
}

/* ── RESET Y BASE ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ivt-dark-mode {
  background-color: var(--ivt-bg) !important;
  color: var(--ivt-text) !important;
  font-family: var(--ivt-font) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Override wp_die / WordPress error-page CSS injected on some pages */
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* ── TIPOGRAFÍA ──────────────────────────────────────────────────────────────── */
.ivt-dark-mode h1,
.ivt-dark-mode h2,
.ivt-dark-mode h3,
.ivt-dark-mode h4,
.ivt-dark-mode h5,
.ivt-dark-mode h6 {
  color: var(--ivt-white) !important;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.ivt-dark-mode h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.ivt-dark-mode h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
.ivt-dark-mode h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

.ivt-dark-mode p   { color: var(--ivt-text-m); line-height: 1.7; }
.ivt-dark-mode a   { color: var(--ivt-accent); text-decoration: none; transition: color .2s; }
.ivt-dark-mode a:hover { color: var(--ivt-accent-h); }
.ivt-dark-mode strong { color: var(--ivt-text); }

/* Texto con acento neón */
.ivt-accent-text { color: var(--ivt-accent) !important; }
.ivt-gradient-text {
  background: linear-gradient(135deg, var(--ivt-accent) 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HEADER / NAVEGACIÓN ─────────────────────────────────────────────────────── */
/*
   ARQUITECTURA DE COLORES DEL HEADER:
   ─────────────────────────────────────────────────────────────────────────────
   REGLA: !important solo en propiedades ESTRUCTURALES (position, z-index,
   backdrop-filter, font-size, padding, border-radius, overflow, transition).
   NUNCA !important en color, background, border-color.

   TODOS los widgets del header usan "color: inherit" — esto cancela el cyan
   que la regla global ".ivt-dark-mode a" pondría, y deja que el Customizer
   de Blocksy tome el control completo de cada color.

   RUTAS DEL CUSTOMIZER (Apariencia → Personalizar → Cabecera):
   · Fondo header          → [Header] → Diseño → Background Color
   · Color nav (normal)    → Menú Principal → Diseño → Link Color
   · Color nav (hover)     → Menú Principal → Diseño → Link Hover Color
   · Color dropdown texto  → Menú Principal → Dropdown → Dropdown Text Color
   · Fondo dropdown        → Menú Principal → Dropdown → Background Color
   · Carrito — icono       → Carrito → Diseño → Color de icono
   · Carrito — texto       → Carrito → Diseño → Color de la fuente del total
   · Cuenta — icono/texto  → Cuenta → Diseño → Color de icono / Color de fuente
   · Búsqueda — icono      → Search Box → Diseño → Icon Color
   · Búsqueda — fondo      → Search Box → Diseño → Input Background Color
   · Popup de login        → Cuenta → Diseño (colores de popup)
*/

/* Logo */
.ivt-dark-mode .site-logo img { filter: brightness(1.1); }

/* ── 2. RESET DE COLOR PARA TODOS LOS WIDGETS DEL HEADER ─────────────────────
   "color: inherit" cancela nuestra regla global ".ivt-dark-mode a { color: cyan }"
   para que el Customizer de Blocksy sea la única fuente de verdad para los colores
   del header. La especificidad de estas reglas es 0,2,1 — igual a la del Customizer,
   pero el CSS inline del Customizer se inyecta al final del <head> y gana por
   orden de carga. */
.ivt-dark-mode .ct-header a,
.ivt-dark-mode .ct-header a:hover,
.ivt-dark-mode .ct-header svg,
.ivt-dark-mode .ct-header .ct-label,
.ivt-dark-mode .ct-header button {
  color: inherit;
}

/* ── 3. MENÚ NAV — PRIMER NIVEL ───────────────────────────────────────────────
   Sobreescribe el reset anterior con nuestros valores de diseño.
   El Customizer puede aún cambiar estos colores si usa mayor especificidad. */
.ivt-dark-mode .ct-main-nav > ul > li > a,
.ivt-dark-mode nav.main-nav > ul > li > a {
  color: var(--ivt-text-m);
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: .01em !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  transition: color .2s, background .2s !important;
}

.ivt-dark-mode .ct-main-nav > ul > li > a:hover,
.ivt-dark-mode nav.main-nav > ul > li > a:hover {
  color: var(--ivt-accent);
  background: var(--ivt-accent-dim);
}

.ivt-dark-mode .ct-main-nav > ul > li.current-menu-item > a {
  color: var(--ivt-accent);
}

/* ── 4. DROPDOWN DEL MENÚ ─────────────────────────────────────────────────────
   Fondo oscuro permanente (no hay control Customizer para el fondo del sub-menu).
   El color del texto SI tiene control: Menú → Dropdown → Dropdown Text Color. */
.ivt-dark-mode .sub-menu,
.ivt-dark-mode .dropdown-menu {
  background: var(--ivt-bg2);
  border: 1px solid var(--ivt-border);
  border-radius: var(--ivt-radius) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.ivt-dark-mode .sub-menu a,
.ivt-dark-mode .dropdown-menu a {
  color: var(--ivt-text-m);
  transition: color .2s, background .2s !important;
  padding: 10px 16px !important;
  display: block !important;
}

.ivt-dark-mode .sub-menu a:hover,
.ivt-dark-mode .dropdown-menu a:hover {
  color: var(--ivt-accent);
  background: var(--ivt-accent-dim);
}

/* ── 5. POPUP DE LOGIN / DROPDOWN DE CUENTA ───────────────────────────────────
   Blocksy muestra este popup al hacer clic en "Sign In".
   Fondo oscuro forzado (no hay control Customizer para el fondo del popup).
   Colores de texto y links: sin !important para que el Customizer pueda cambiarlos. */
.ivt-dark-mode .ct-account-dropdown,
.ivt-dark-mode .ct-header-account-dropdown,
.ivt-dark-mode [data-id="account"] .ct-toggleable-dropdown,
.ivt-dark-mode .woocommerce-account-navigation + *,
.ivt-dark-mode .ct-header-account [class*="dropdown"],
.ivt-dark-mode .ct-header-account [class*="modal"],
.ivt-dark-mode .ct-header-account [class*="popup"] {
  background: var(--ivt-bg2) !important;
  border: 1px solid var(--ivt-border) !important;
  border-radius: var(--ivt-radius) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.6) !important;
}

/* Links y texto dentro del popup de cuenta */
.ivt-dark-mode .ct-account-dropdown a,
.ivt-dark-mode .ct-header-account-dropdown a,
.ivt-dark-mode [data-id="account"] .ct-toggleable-dropdown a {
  color: var(--ivt-text-m);
  padding: 10px 16px !important;
  display: flex !important;
  transition: color .15s, background .15s !important;
}

.ivt-dark-mode .ct-account-dropdown a:hover,
.ivt-dark-mode .ct-header-account-dropdown a:hover,
.ivt-dark-mode [data-id="account"] .ct-toggleable-dropdown a:hover {
  color: var(--ivt-accent);
  background: var(--ivt-accent-dim);
}

/* Formulario de login dentro del popup */
.ivt-dark-mode .ct-account-dropdown .woocommerce-form-login,
.ivt-dark-mode [data-id="account"] [class*="dropdown"] form {
  padding: 20px !important;
}

.ivt-dark-mode .ct-account-dropdown p,
.ivt-dark-mode [data-id="account"] [class*="dropdown"] p {
  color: var(--ivt-text-m);
  font-size: 13px;
}

/* ── 6. PANEL LATERAL MÓVIL (Fuera del lienzo / Off-canvas) ───────────────
   Estructura confirmada con DevTools:
   #offcanvas.ct-panel.ct-header-active
     └ div.ct-panel-inner
         └ div.ct-panel-content
             └ div.ct-panel-content-inner  ← logo + nav */

/* Contenedor principal del panel — fondo oscuro sólido */
#offcanvas,
.ivt-dark-mode #offcanvas {
  background: #050e1f !important;
}

/* Capas internas */
.ivt-dark-mode #offcanvas .ct-panel-inner,
.ivt-dark-mode #offcanvas .ct-panel-content,
.ivt-dark-mode #offcanvas .ct-panel-content-inner {
  background: #050e1f !important;
}

/* Borde derecho decorativo cian */
.ivt-dark-mode #offcanvas .ct-panel-inner {
  border-left: 1px solid rgba(0, 212, 255, 0.15) !important;
  border-right: 1px solid rgba(0, 212, 255, 0.15) !important;
}

/* Items de navegación */
.ivt-dark-mode #offcanvas nav a,
.ivt-dark-mode #offcanvas .menu-item a,
.ivt-dark-mode #offcanvas li a {
  color: #f5f3ee !important;
  font-weight: 600;
  padding: 14px 0 !important;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ivt-dark-mode #offcanvas nav a:hover,
.ivt-dark-mode #offcanvas .menu-item a:hover {
  color: #00d4ff !important;
}

/* Logo dentro del panel */
.ivt-dark-mode #offcanvas .site-logo-container {
  margin-bottom: 24px;
  display: block;
}

/* Botón de cierre (×) */
.ivt-dark-mode #offcanvas [class*="close"],
.ivt-dark-mode #offcanvas .ct-toggle-close {
  color: #f5f3ee !important;
}

/* Overlay semitransparente detrás del panel (cuando está abierto) */
.ivt-dark-mode .ct-panel-overlay,
.ivt-dark-mode body.panel-is-open::after {
  background: rgba(0, 0, 0, 0.6) !important;
}

/* ── BOTONES GLOBALES ────────────────────────────────────────────────────────── */
.ivt-btn,
.ivt-dark-mode .wp-block-button__link,
.ivt-dark-mode .btn-primary,
.ivt-dark-mode a.button.alt,
.ivt-dark-mode button.button.alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ivt-accent) !important;
  color: var(--ivt-bg) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: background .2s, transform .15s, box-shadow .2s !important;
  letter-spacing: .02em !important;
  white-space: nowrap !important;
}

.ivt-btn:hover,
.ivt-dark-mode .wp-block-button__link:hover {
  background: var(--ivt-accent-h) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--ivt-shadow-h) !important;
  color: var(--ivt-bg) !important;
}

/* Botón secundario (outline) */
.ivt-btn--secondary,
.ivt-dark-mode .btn-secondary {
  background: transparent !important;
  color: var(--ivt-accent) !important;
  border: 1.5px solid var(--ivt-accent) !important;
}

.ivt-btn--secondary:hover {
  background: var(--ivt-accent-dim) !important;
  transform: translateY(-2px) !important;
}

/* Botón pequeño */
.ivt-btn--sm { font-size: 12px !important; padding: 8px 16px !important; }

/* Botón grande */
.ivt-btn--lg { font-size: 16px !important; padding: 16px 32px !important; border-radius: 10px !important; }

/* ── FOCUS VISIBLE — accesibilidad de teclado ────────────────────────────────── */
:focus-visible { outline: 2px solid var(--ivt-accent); outline-offset: 3px; border-radius: 4px; }

/* ── HERO CAROUSEL ───────────────────────────────────────────────────────────── */
.ivt-hero {
  position: relative;
  width: 100%;
  height: calc(85vh - 40px);
  min-height: 520px;
  max-height: 860px;
  overflow: hidden;
  background: var(--ivt-bg);
}

.ivt-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.ivt-hero__slide.active { opacity: 1; z-index: 1; }

.ivt-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.ivt-hero__slide.active .ivt-hero__bg { transform: scale(1.05); }

.ivt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,14,31,.95) 0%, rgba(10,26,51,.75) 60%, rgba(5,14,31,.4) 100%);
  z-index: 1;
}

/* Inner wrapper: grid de 2 columnas en desktop */
.ivt-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Columna izquierda: contenido */
.ivt-hero__content {
  text-align: left;
}

/* Columna derecha: visual mockup */
.ivt-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Glow ambiental detrás del mockup */
.ivt-hero__visual::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse, rgba(0,212,255,.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── MOCKUP: ventana de app CSS-only ─────────────────────────────────────── */
.ivt-hero__mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: rgba(10,26,51,.85);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(0,212,255,.08);
  backdrop-filter: blur(10px);
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) scale(.95);
  transition: transform .7s cubic-bezier(.22,1,.36,1), box-shadow .7s ease;
}

.ivt-hero__slide.active .ivt-hero__mockup {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1);
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 50px rgba(0,212,255,.07), 0 0 0 1px rgba(0,212,255,.18);
}

/* Barra tipo browser chrome */
.ivt-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(5,14,31,.75);
  border-bottom: 1px solid rgba(0,212,255,.1);
}

.ivt-mock-bar__dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
}
.ivt-mock-bar__dot:nth-child(1) { background: rgba(255,95,87,.75); }
.ivt-mock-bar__dot:nth-child(2) { background: rgba(254,188,46,.75); }
.ivt-mock-bar__dot:nth-child(3) { background: rgba(40,200,64,.75); }

.ivt-mock-bar__url {
  flex: 1;
  height: 18px;
  margin-left: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
}

/* Body: sidebar + contenido principal */
.ivt-mock-body {
  display: grid;
  grid-template-columns: 48px 1fr;
  min-height: 220px;
}

.ivt-mock-sidebar {
  background: rgba(5,14,31,.5);
  border-right: 1px solid rgba(0,212,255,.07);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.ivt-mock-nav-item {
  width: 26px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.1);
  transition: background .3s;
}

.ivt-mock-nav-item.is-active {
  background: rgba(0,212,255,.55);
  box-shadow: 0 0 8px rgba(0,212,255,.3);
}

.ivt-mock-main {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* KPI cards */
.ivt-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.ivt-mock-stat {
  background: rgba(0,212,255,.05);
  border: 1px solid rgba(0,212,255,.1);
  border-radius: 7px;
  padding: 7px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ivt-mock-stat__val {
  height: 7px; border-radius: 2px;
  background: linear-gradient(90deg, var(--ivt-accent), rgba(0,212,255,.4));
}

.ivt-mock-stat__lbl {
  height: 5px; border-radius: 2px;
  background: rgba(255,255,255,.1);
  width: 80%;
}

/* Gráfica de barras — animadas al activar el slide */
.ivt-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 70px;
  padding: 0 2px;
  border-left: 1px solid rgba(0,212,255,.1);
  border-bottom: 1px solid rgba(0,212,255,.1);
}

.ivt-mock-chart__bar {
  flex: 1;
  background: linear-gradient(180deg, var(--ivt-accent) 0%, rgba(0,212,255,.12) 100%);
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s ease, opacity .4s ease;
}

.ivt-hero__slide.active .ivt-mock-chart__bar {
  opacity: .75;
  transform: scaleY(1);
}

/* Escalonado para que las barras aparezcan una a una */
.ivt-hero__slide.active .ivt-mock-chart__bar:nth-child(1) { transition-delay: .05s; }
.ivt-hero__slide.active .ivt-mock-chart__bar:nth-child(2) { transition-delay: .10s; }
.ivt-hero__slide.active .ivt-mock-chart__bar:nth-child(3) { transition-delay: .15s; }
.ivt-hero__slide.active .ivt-mock-chart__bar:nth-child(4) { transition-delay: .20s; }
.ivt-hero__slide.active .ivt-mock-chart__bar:nth-child(5) { transition-delay: .25s; }
.ivt-hero__slide.active .ivt-mock-chart__bar:nth-child(6) { transition-delay: .30s; }
.ivt-hero__slide.active .ivt-mock-chart__bar:nth-child(7) { transition-delay: .35s; }

/* Líneas de texto placeholder */
.ivt-mock-lines { display: flex; flex-direction: column; gap: 5px; }

.ivt-mock-line {
  height: 5px; border-radius: 2px;
  background: rgba(255,255,255,.08);
}

/* ── SLIDE 3: DRONE (vista cenital) ─────────────────────────────────────── */
.ivt-mock-drone-scene {
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-height: 220px;
  justify-content: center;
}

.ivt-mock-drone {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

/* Cuerpo central */
.ivt-mock-drone__body {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  background: rgba(0,212,255,.15);
  border: 2px solid rgba(0,212,255,.55);
  border-radius: 6px;
  z-index: 2;
}

/* Lente de cámara */
.ivt-mock-drone__body::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 11px; height: 11px;
  background: rgba(0,212,255,.25);
  border: 1.5px solid rgba(0,212,255,.8);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,212,255,.4);
}

/* Brazos diagonales */
.ivt-mock-drone__arm {
  position: absolute;
  width: 3px;
  height: 38px;
  background: rgba(0,212,255,.35);
  top: 50%; left: 50%;
  border-radius: 2px;
  transform-origin: 50% 0%;
}

.ivt-mock-drone__arm--tl { transform: translate(-1.5px, -19px) rotate(-135deg); }
.ivt-mock-drone__arm--tr { transform: translate(-1.5px, -19px) rotate(-45deg); }
.ivt-mock-drone__arm--bl { transform: translate(-1.5px, -19px) rotate(135deg); }
.ivt-mock-drone__arm--br { transform: translate(-1.5px, -19px) rotate(45deg); }

/* Hélices */
.ivt-mock-drone__prop {
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid rgba(0,212,255,.5);
  border-radius: 50%;
  background: rgba(0,212,255,.06);
}

.ivt-mock-drone__prop--tl { top: 5px; left: 5px; }
.ivt-mock-drone__prop--tr { top: 5px; right: 5px; }
.ivt-mock-drone__prop--bl { bottom: 5px; left: 5px; }
.ivt-mock-drone__prop--br { bottom: 5px; right: 5px; }

/* Hélice interior (aspas) */
.ivt-mock-drone__prop::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 2px;
  background: rgba(0,212,255,.5);
  transform: translate(-50%, -50%);
  border-radius: 1px;
}

.ivt-mock-drone__prop::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 2px; height: 18px;
  background: rgba(0,212,255,.5);
  transform: translate(-50%, -50%);
  border-radius: 1px;
}

/* Rotación cuando el slide está activo */
@keyframes ivt-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.ivt-hero__slide.active .ivt-mock-drone__prop::before,
.ivt-hero__slide.active .ivt-mock-drone__prop::after {
  animation: ivt-spin .5s linear infinite;
}

/* Info de producto debajo del dron */
.ivt-mock-drone-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.ivt-mock-drone-name {
  height: 8px; width: 65%;
  background: rgba(255,255,255,.14);
  border-radius: 3px;
}

.ivt-mock-drone-price {
  height: 11px; width: 38%;
  background: linear-gradient(90deg, var(--ivt-accent), rgba(0,212,255,.4));
  border-radius: 3px;
  opacity: .8;
}

.ivt-mock-drone-badges {
  display: flex; gap: 6px;
}

.ivt-mock-drone-badge {
  height: 14px; width: 34px;
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.3);
  border-radius: 20px;
}

/* ── SLIDE 4: CHECKLIST ─────────────────────────────────────────────────── */
.ivt-mock-cl-hdr {
  height: 8px; width: 60%;
  background: rgba(255,255,255,.12);
  border-radius: 3px;
  margin-bottom: 2px;
}

.ivt-mock-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ivt-mock-cl-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .35s ease, transform .35s ease;
}

.ivt-hero__slide.active .ivt-mock-cl-item { opacity: 1; transform: translateX(0); }
.ivt-hero__slide.active .ivt-mock-cl-item:nth-child(1) { transition-delay: .05s; }
.ivt-hero__slide.active .ivt-mock-cl-item:nth-child(2) { transition-delay: .15s; }
.ivt-hero__slide.active .ivt-mock-cl-item:nth-child(3) { transition-delay: .25s; }
.ivt-hero__slide.active .ivt-mock-cl-item:nth-child(4) { transition-delay: .35s; }
.ivt-hero__slide.active .ivt-mock-cl-item:nth-child(5) { transition-delay: .45s; }

.ivt-mock-cl-check {
  width: 14px; height: 14px; flex-shrink: 0;
  border-radius: 3px;
  border: 1.5px solid rgba(0,212,255,.3);
  background: transparent;
  position: relative;
}

/* Checkmark para items completados */
.ivt-mock-cl-item.is-done .ivt-mock-cl-check {
  background: rgba(16,185,129,.2);
  border-color: rgba(16,185,129,.6);
}

.ivt-mock-cl-item.is-done .ivt-mock-cl-check::after {
  content: '';
  position: absolute;
  top: 2px; left: 4px;
  width: 4px; height: 7px;
  border-right: 2px solid #10b981;
  border-bottom: 2px solid #10b981;
  transform: rotate(45deg);
}

.ivt-mock-cl-label {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  width: 90%;
}

.ivt-mock-cl-item.is-done .ivt-mock-cl-label {
  background: rgba(255,255,255,.18);
}

/* Barra de progreso */
.ivt-mock-cl-progress-wrap {
  margin-top: 6px;
  height: 5px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  overflow: hidden;
}

.ivt-mock-cl-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #10b981, rgba(0,212,255,.7));
  border-radius: 3px;
  transition: width .8s ease .5s;
}

.ivt-hero__slide.active .ivt-mock-cl-progress { width: 60%; }

/* ── SLIDE 5: ESCUDO + CANDADO ──────────────────────────────────────────── */
.ivt-mock-main--security {
  align-items: center;
  justify-content: center;
}

.ivt-mock-shield-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

/* Escudo con clip-path */
.ivt-mock-shield {
  width: 64px;
  height: 72px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 18%, 100% 62%, 50% 100%, 0% 62%, 0% 18%);
  background: linear-gradient(180deg, rgba(0,212,255,.25) 0%, rgba(0,212,255,.08) 100%);
  border: 0;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .5s ease, transform .5s ease;
}

.ivt-hero__slide.active .ivt-mock-shield {
  opacity: 1;
  transform: scale(1);
}

/* Borde del escudo (pseudo-elemento ligeramente mayor) */
.ivt-mock-shield::before {
  content: '';
  position: absolute;
  inset: -2px;
  clip-path: polygon(50% 0%, 100% 18%, 100% 62%, 50% 100%, 0% 62%, 0% 18%);
  background: linear-gradient(180deg, rgba(0,212,255,.5) 0%, rgba(0,212,255,.15) 100%);
  z-index: -1;
}

/* Candado dentro del escudo */
.ivt-mock-lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.ivt-mock-lock__shackle {
  width: 16px; height: 10px;
  border: 2.5px solid rgba(0,212,255,.9);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.ivt-mock-lock__body {
  width: 20px; height: 14px;
  background: rgba(0,212,255,.7);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0,212,255,.5);
}

/* Items de seguridad con check verde */
.ivt-mock-sec-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

.ivt-mock-sec-item {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  transition: opacity .3s ease;
}

.ivt-hero__slide.active .ivt-mock-sec-item { opacity: 1; }
.ivt-hero__slide.active .ivt-mock-sec-item:nth-child(1) { transition-delay: .4s; }
.ivt-hero__slide.active .ivt-mock-sec-item:nth-child(2) { transition-delay: .55s; }
.ivt-hero__slide.active .ivt-mock-sec-item:nth-child(3) { transition-delay: .7s; }

.ivt-mock-sec-check {
  width: 14px; height: 14px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(16,185,129,.2);
  border: 1.5px solid rgba(16,185,129,.6);
  position: relative;
}

.ivt-mock-sec-check::after {
  content: '';
  position: absolute;
  top: 1px; left: 4px;
  width: 4px; height: 7px;
  border-right: 2px solid #10b981;
  border-bottom: 2px solid #10b981;
  transform: rotate(45deg);
}

.ivt-mock-sec-label {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  width: 90%;
}

/* Barra de uptime */
.ivt-mock-uptime {
  width: 100%;
  margin-top: 8px;
}

.ivt-mock-uptime__bar {
  height: 5px;
  background: rgba(255,255,255,.07);
  border-radius: 3px;
  overflow: hidden;
}

.ivt-mock-uptime__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #10b981, rgba(0,212,255,.7));
  border-radius: 3px;
  transition: width 1s ease .8s;
}

.ivt-hero__slide.active .ivt-mock-uptime__fill { width: 99%; }

.ivt-hero__tag {
  display: inline-block;
  background: var(--ivt-accent-dim);
  color: var(--ivt-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0,212,255,.25);
  margin-bottom: 20px;
}

.ivt-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem) !important;
  font-weight: 800 !important;
  color: var(--ivt-white) !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
  letter-spacing: -.03em !important;
}

.ivt-hero__title .ivt-accent-text { letter-spacing: -.03em; }

.ivt-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,243,238,.7);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

.ivt-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Controles del carrusel */
.ivt-hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.ivt-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}

.ivt-hero__dot.active {
  background: var(--ivt-accent);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--ivt-accent);
}

/* Flechas del carrusel eliminadas — navegación solo con swipe, dots y teclado */

.ivt-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;                          /* JS controla el ancho vía transition */
  background: var(--ivt-accent);
  box-shadow: 0 0 8px var(--ivt-accent);
  z-index: 10;
  /* Sin animación CSS — el JS dispara la transición en cada goTo()
     para mantener sincronía perfecta con el cambio de slide */
}

/* ── SECCIÓN: DOS BLOQUES HOME (APPS + SHOP) ─────────────────────────────────── */
.ivt-home-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--ivt-bg2);
}

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

.ivt-section-block {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: default;
}

.ivt-section-block--apps {
  background: linear-gradient(165deg, #020b18 0%, #051835 55%, #071f42 100%);
}

.ivt-section-block--shop {
  background: linear-gradient(165deg, #02080f 0%, #080c1e 55%, #0e1030 100%);
}

/* Glow centrado en el bloque — no en esquina */
.ivt-section-block__bg-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .4s;
  z-index: 0;
}

.ivt-section-block--apps .ivt-section-block__bg-glow {
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 68%);
  opacity: 1;
}

.ivt-section-block--shop .ivt-section-block__bg-glow {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, transparent 68%);
  opacity: 1;
}

.ivt-section-block:hover .ivt-section-block__bg-glow { opacity: 1.4; }

/* ── Galería 3D coverflow ─────────────────────────────────── */
.ivt-section-gallery {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  perspective-origin: 50% 55%;
  min-height: 210px;
  /* overflow:hidden aplana el 3D en Safari — el bloque padre ya hace el clip */
  overflow: visible;
  z-index: 1;
}

.ivt-sg-item {
  position: absolute;
  width: 260px;
  height: 158px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  will-change: transform, filter;
}

/* Especificidad (0,2,0) — gana sobre .lazyloaded (0,1,0) del plugin de lazy load
   que sobreescribiría la transición de transform con "opacity 400ms" */
.ivt-section-gallery .ivt-sg-item {
  transition: transform .65s cubic-bezier(.22,1,.36,1),
              filter .65s ease,
              box-shadow .65s ease;
}

/* Placeholders cuando no hay imagen real */
.ivt-sg-item--apps { background-color: #071829; background-image: linear-gradient(145deg, #071829 0%, #0e2a44 100%); }
.ivt-sg-item--shop { background-color: #0d0820; background-image: linear-gradient(145deg, #0d0820 0%, #1c0d3a 100%); }

/* Posición 0 — centro / protagonista */
.ivt-sg-item[data-pos="0"] {
  transform: translateX(0px) translateZ(0px) rotateY(0deg) scale(1);
  z-index: 5;
  filter: brightness(1);
  box-shadow: 0 8px 48px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.07);
}
/* Posición 5 — izquierda cercana */
.ivt-sg-item[data-pos="5"] {
  transform: translateX(-192px) translateZ(-72px) rotateY(22deg) scale(0.79);
  z-index: 4;
  filter: brightness(0.5);
  box-shadow: none;
}
/* Posición 1 — derecha cercana */
.ivt-sg-item[data-pos="1"] {
  transform: translateX(192px) translateZ(-72px) rotateY(-22deg) scale(0.79);
  z-index: 4;
  filter: brightness(0.5);
  box-shadow: none;
}
/* Posición 4 — izquierda lejana */
.ivt-sg-item[data-pos="4"] {
  transform: translateX(-346px) translateZ(-155px) rotateY(34deg) scale(0.61);
  z-index: 3;
  filter: brightness(0.25);
  box-shadow: none;
}
/* Posición 2 — derecha lejana */
.ivt-sg-item[data-pos="2"] {
  transform: translateX(346px) translateZ(-155px) rotateY(-34deg) scale(0.61);
  z-index: 3;
  filter: brightness(0.25);
  box-shadow: none;
}
/* Posición 3 — oculta (carta de transición) */
.ivt-sg-item[data-pos="3"] {
  transform: translateX(0) translateZ(-300px) scale(0.25);
  z-index: 1;
  filter: brightness(0);
  opacity: 0;
  box-shadow: none;
}

.ivt-section-block__content {
  position: relative;
  z-index: 2;
  padding: 32px 48px 48px;
}

.ivt-section-block__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ivt-accent);
  margin-bottom: 12px;
  display: block;
}

.ivt-section-block__title {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: var(--ivt-white) !important;
  margin-bottom: 14px !important;
  line-height: 1.15 !important;
}

.ivt-section-block__text {
  color: var(--ivt-text-m);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 420px;
}

.ivt-section-block__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ivt-accent);
  border: 1.5px solid rgba(0,212,255,.3);
  padding: 11px 22px;
  border-radius: 8px;
  transition: all .25s;
  background: var(--ivt-accent-dim);
  text-decoration: none;
}

.ivt-section-block__btn:hover {
  background: var(--ivt-accent);
  color: var(--ivt-bg);
  border-color: var(--ivt-accent);
  transform: translateX(4px);
}

/* ── SECCIÓN GENÉRICA ────────────────────────────────────────────────────────── */
.ivt-section {
  padding: 100px 0;
  background: var(--ivt-bg);
}

.ivt-section--alt { background: var(--ivt-bg2); }
.ivt-section--dark { background: var(--ivt-bg); }

.ivt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ivt-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.ivt-section__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ivt-accent);
  background: var(--ivt-accent-dim);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0,212,255,.2);
  margin-bottom: 16px;
}

.ivt-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important;
  font-weight: 800 !important;
  color: var(--ivt-white) !important;
  margin-bottom: 16px !important;
}

.ivt-section__subtitle {
  font-size: 17px;
  color: var(--ivt-text-m);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── GRID DE APPS ────────────────────────────────────────────────────────────── */
.ivt-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) { .ivt-apps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ivt-apps-grid { grid-template-columns: 1fr; } }

/* Tarjeta de app */
.ivt-app-card {
  background: var(--ivt-bg2);
  border: 1px solid var(--ivt-border);
  border-radius: var(--ivt-radius-l);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.ivt-app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ivt-shadow-h);
  border-color: rgba(0,212,255,.3);
}

.ivt-app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ivt-accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.ivt-app-card:hover::before { opacity: 1; }

.ivt-app-card__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.ivt-app-card:hover .ivt-app-card__thumb { transform: scale(1.04); }

.ivt-app-card__thumb-wrap {
  overflow: hidden;
  position: relative;
}

.ivt-app-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ivt-app-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ivt-bg3);
  border: 1px solid var(--ivt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}

.ivt-app-card__name {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--ivt-white) !important;
  margin-bottom: 8px !important;
}

.ivt-app-card__tagline {
  font-size: 13px;
  color: var(--ivt-text-m);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.ivt-app-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--ivt-border-s);
}

.ivt-app-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--ivt-accent);
}

.ivt-app-card__price small {
  font-size: 11px;
  color: var(--ivt-text-s);
  font-weight: 400;
}

/* ── BADGES ──────────────────────────────────────────────────────────────────── */
.ivt-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 3;
}

.ivt-badge--digital {
  background: var(--ivt-accent-dim);
  color: var(--ivt-accent);
  border: 1px solid rgba(0,212,255,.3);
}

.ivt-badge--new {
  background: rgba(16,185,129,.12);
  color: #10b981;
  border: 1px solid rgba(16,185,129,.3);
}

.ivt-badge--disponible {
  background: rgba(16,185,129,.12);
  color: #10b981;
  border: 1px solid rgba(16,185,129,.25);
}

.ivt-badge--demo {
  background: rgba(59,130,246,.12);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,.25);
}

.ivt-badge--beta {
  background: rgba(245,158,11,.12);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,.25);
}

.ivt-badge--proximamente {
  background: rgba(107,114,128,.12);
  color: #9ca3af;
  border: 1px solid rgba(107,114,128,.25);
}

/* ── PÁGINA INDIVIDUAL DE APP ────────────────────────────────────────────────── */
.ivt-app-hero {
  padding: 80px 0 60px;
  background: var(--ivt-bg2);
  border-bottom: 1px solid var(--ivt-border);
}

.ivt-app-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) { .ivt-app-hero__inner { grid-template-columns: 1fr; gap: 40px; } }

.ivt-app-hero__title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
}

.ivt-app-hero__desc {
  font-size: 17px;
  color: var(--ivt-text-m);
  line-height: 1.7;
  margin-bottom: 32px;
}

.ivt-app-hero__meta {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ivt-app-hero__meta-item {
  font-size: 13px;
  color: var(--ivt-text-s);
}

.ivt-app-hero__meta-item strong { color: var(--ivt-text); display: block; font-size: 15px; }

.ivt-app-hero__image {
  border-radius: var(--ivt-radius-l);
  overflow: hidden;
  border: 1px solid var(--ivt-border);
  box-shadow: var(--ivt-shadow);
}

.ivt-app-hero__image img { width: 100%; display: block; }

/* Características y beneficios */
.ivt-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

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

.ivt-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--ivt-bg3);
  border: 1px solid var(--ivt-border-s);
  border-radius: var(--ivt-radius);
}

.ivt-feature-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ivt-accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ivt-feature-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ivt-accent);
  fill: none;
  flex-shrink: 0;
}

.ivt-feature-item__text {
  font-size: 14px;
  color: var(--ivt-text-m);
  line-height: 1.5;
}

/* Precios */
.ivt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) { .ivt-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; } }

.ivt-pricing-card {
  background: var(--ivt-bg2);
  border: 1px solid var(--ivt-border);
  border-radius: var(--ivt-radius-l);
  padding: 32px 28px;
  position: relative;
  transition: border-color .25s, transform .25s;
}

.ivt-pricing-card--featured {
  border-color: rgba(0,212,255,.4);
  background: linear-gradient(160deg, var(--ivt-bg3) 0%, var(--ivt-bg2) 100%);
  transform: scale(1.03);
}

.ivt-pricing-card--featured::after {
  content: 'Más Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ivt-accent);
  color: var(--ivt-bg);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.ivt-pricing-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ivt-text-m);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.ivt-pricing-card__price {
  margin-bottom: 24px;
}

.ivt-pricing-card__amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ivt-white);
  line-height: 1;
}

.ivt-pricing-card__period {
  font-size: 13px;
  color: var(--ivt-text-s);
  margin-top: 4px;
}

.ivt-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.ivt-pricing-card__features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ivt-text-m);
  border-bottom: 1px solid var(--ivt-border-s);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ivt-pricing-card__features li::before {
  content: '✓';
  color: var(--ivt-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.ivt-dark-mode footer,
.ivt-dark-mode #site-footer,
.ivt-dark-mode .site-footer {
  background: var(--ivt-bg2) !important;
  border-top: 1px solid var(--ivt-border) !important;
  color: var(--ivt-text-m) !important;
}

.ivt-footer {
  padding: 80px 0 40px;
  background: var(--ivt-bg2);
  border-top: 1px solid var(--ivt-border);
}

.ivt-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (max-width: 900px)  { .ivt-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px)  { .ivt-footer__grid { grid-template-columns: 1fr; } }

.ivt-footer__brand-desc {
  font-size: 14px;
  color: var(--ivt-text-s);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.ivt-footer__title {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--ivt-text) !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}

.ivt-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ivt-footer__links li { margin-bottom: 10px; }

.ivt-footer__links a {
  font-size: 14px;
  color: var(--ivt-text-s) !important;
  transition: color .2s !important;
}

.ivt-footer__links a:hover { color: var(--ivt-accent) !important; }

.ivt-footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--ivt-border-s);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ivt-footer__copy {
  font-size: 13px;
  color: var(--ivt-text-s);
}

.ivt-footer__social {
  display: flex;
  gap: 12px;
}

.ivt-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--ivt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivt-text-s) !important;
  font-size: 16px;
  transition: all .2s !important;
}

.ivt-footer__social a:hover {
  color: var(--ivt-accent) !important;
  border-color: rgba(0,212,255,.3) !important;
  background: var(--ivt-accent-dim) !important;
}

/* ── FORMULARIOS (checkout, contacto, Mi Cuenta, etc.) ───────────────────────
   Nota: input[type="search"] NO está aquí — el Customizer de Blocksy lo controla.
   Cambia el color del search box en: Personalizar → Cabecera → Search Box → Design */
.ivt-dark-mode input[type="text"],
.ivt-dark-mode input[type="email"],
.ivt-dark-mode input[type="password"],
.ivt-dark-mode input[type="number"],
.ivt-dark-mode input[type="tel"],
.ivt-dark-mode input[type="url"],
.ivt-dark-mode textarea,
.ivt-dark-mode select {
  background: var(--ivt-bg3) !important;
  border: 1.5px solid var(--ivt-border) !important;
  color: var(--ivt-text) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  font-family: var(--ivt-font) !important;
  transition: border-color .2s, box-shadow .2s !important;
  outline: none !important;
}

.ivt-dark-mode input:not([type="search"]):focus,
.ivt-dark-mode textarea:focus,
.ivt-dark-mode select:focus {
  border-color: var(--ivt-accent) !important;
  box-shadow: 0 0 0 3px var(--ivt-accent-glow) !important;
}

.ivt-dark-mode input:not([type="search"])::placeholder,
.ivt-dark-mode textarea::placeholder {
  color: var(--ivt-text-s) !important;
}

/* ── SEARCH BOX ───────────────────────────────────────────────────────────────
   Colores SIN !important → Customizer → Cabecera → Search Box → Design
   controla: Input Background Color, Input Font Color, Input Border Color       */
.ivt-dark-mode input[type="search"],
.ivt-dark-mode .ct-search-field {
  color: var(--theme-palette-color-3, #f5f3ee);
  font-family: var(--ivt-font) !important;
  outline: none !important;
}

.ivt-dark-mode input[type="search"]::placeholder,
.ivt-dark-mode .ct-search-field::placeholder {
  color: rgba(245,243,238,.45);
}

/* ── SEARCH DROPDOWN (resultados) ─────────────────────────────────────────────
   Blocksy no tiene Customizer para estos colores → los controlamos aquí.
   El fondo y borde SÍ llevan !important porque no hay control externo para ellos.
   El color del texto NO lleva !important por si Blocksy añade soporte futuro.   */
.ivt-dark-mode .ct-search-results,
.ivt-dark-mode [class*="search-results"] {
  background: var(--ivt-bg2) !important;     /* sin control en Customizer */
  border: 1px solid var(--ivt-border) !important;
  border-radius: 12px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.6) !important;
  overflow: hidden !important;
}

/* a.ct-search-item son hijos directos (no dentro de <li>) — especificidad 0,2,1 */
.ivt-dark-mode .ct-search-results a,
.ivt-dark-mode .ct-search-results .ct-search-item {
  color: var(--ivt-text-m);
  font-size: 14px !important;
  transition: color .15s, background .15s !important;
}

.ivt-dark-mode .ct-search-results a:hover,
.ivt-dark-mode .ct-search-results .ct-search-item:hover {
  color: var(--ivt-accent);
  background: var(--ivt-accent-dim);
}

/* "Mostrar más" */
.ivt-dark-mode .ct-search-results .ct-search-more,
.ivt-dark-mode .ct-search-results .ct-show-all {
  color: var(--ivt-accent);
  font-weight: 600 !important;
  text-align: center !important;
  border-top: 1px solid var(--ivt-border) !important;
  background: var(--ivt-accent-dim);
}

/* Sin resultados */
.ivt-dark-mode .ct-search-results .ct-nothing-found,
.ivt-dark-mode .ct-search-results p {
  color: var(--ivt-text-s);
  font-size: 13px !important;
  padding: 16px !important;
  text-align: center !important;
}

.ivt-dark-mode label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ivt-text-m) !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* ── PÁGINA 404 ───────────────────────────────────────────────────────────────── */
.ivt-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 80px 24px;
}

.ivt-404__code {
  font-size: 8rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, var(--ivt-accent), rgba(0,212,255,.3));
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
}

/* ── TARJETAS GENÉRICAS ──────────────────────────────────────────────────────── */
.ivt-card {
  background: var(--ivt-bg2);
  border: 1px solid var(--ivt-border);
  border-radius: var(--ivt-radius-l);
  padding: 32px;
  transition: border-color .25s, transform .25s;
}

.ivt-card:hover {
  border-color: rgba(0,212,255,.25);
  transform: translateY(-4px);
}

/* ── TESTIMONIOS ─────────────────────────────────────────────────────────────── */
.ivt-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) { .ivt-testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .ivt-testimonials-grid { grid-template-columns: 1fr; } }

.ivt-testimonial {
  background: var(--ivt-bg2);
  border: 1px solid var(--ivt-border-s);
  border-radius: var(--ivt-radius-l);
  padding: 28px;
}

.ivt-testimonial__stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 16px;
}

.ivt-testimonial__text {
  font-size: 15px;
  color: var(--ivt-text-m);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.ivt-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ivt-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ivt-bg3);
}

.ivt-testimonial__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ivt-text);
}

.ivt-testimonial__role {
  font-size: 12px;
  color: var(--ivt-text-s);
}

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.ivt-faq { max-width: 720px; margin: 0 auto; }

.ivt-faq-item {
  border-bottom: 1px solid var(--ivt-border-s);
  padding: 20px 0;
}

.ivt-faq-item__q {
  font-size: 16px;
  font-weight: 600;
  color: var(--ivt-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.ivt-faq-item__q::after {
  content: '+';
  font-size: 20px;
  color: var(--ivt-accent);
  flex-shrink: 0;
  transition: transform .2s;
}

.ivt-faq-item.open .ivt-faq-item__q::after { transform: rotate(45deg); }

.ivt-faq-item__a {
  font-size: 14px;
  color: var(--ivt-text-m);
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}

.ivt-faq-item.open .ivt-faq-item__a { display: block; }

/* ── LOADER / SKELETON ───────────────────────────────────────────────────────── */
.ivt-skeleton {
  background: linear-gradient(90deg, var(--ivt-bg3) 25%, var(--ivt-bg4) 50%, var(--ivt-bg3) 75%);
  background-size: 200% 100%;
  animation: ivt-skeleton 1.5s infinite;
  border-radius: 6px;
}

@keyframes ivt-skeleton {
  from { background-position: 200% 0 }
  to   { background-position: -200% 0 }
}

/* ── UTILIDADES ──────────────────────────────────────────────────────────────── */
.ivt-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ivt-border), transparent);
  margin: 48px 0;
}

.ivt-glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ivt-accent), transparent);
  box-shadow: 0 0 12px var(--ivt-accent);
  margin: 0;
}

.ivt-tag-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--ivt-bg3);
  border: 1px solid var(--ivt-border-s);
  color: var(--ivt-text-m);
}

/* ── SCROLLBAR ───────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; background: var(--ivt-bg); }
::-webkit-scrollbar-track { background: var(--ivt-bg); }
::-webkit-scrollbar-thumb { background: var(--ivt-bg4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,212,255,.3); }

/* ── SELECCIÓN DE TEXTO ──────────────────────────────────────────────────────── */
::selection { background: rgba(0,212,255,.2); color: var(--ivt-white); }

/* ── RESPONSIVE GLOBAL ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero mobile: el slide activo define la altura del contenedor;
     los slides inactivos quedan absolutos y no contribuyen al flujo.
     overflow:visible permite que la barra de progreso (bottom:0) sea
     visible sin ser recortada por el borde del contenedor. Las slides
     inactivas (opacity:0, position:absolute) no escapan visualmente. */
  .ivt-hero {
    height: auto;
    min-height: 0;
    position: relative;
    overflow: visible;
  }

  /* Clip solo a las slides, no al contenedor completo */
  .ivt-hero__slide {
    overflow: hidden;
  }

  /* Barra de progreso: visible y por encima de todo en mobile */
  .ivt-hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    z-index: 100;
    display: block;
  }

  /* Slide activo: relativo para que el hero crezca con el contenido */
  .ivt-hero__slide.active {
    position: relative;
    align-items: flex-start;
    display: flex;
  }

  /* Slides inactivos: apilados sin afectar la altura */
  .ivt-hero__slide:not(.active) {
    position: absolute;
    inset: 0;
    align-items: flex-start;
  }

  /* Inner: 1 columna, 45px extra de separación con el header */
  .ivt-hero__inner {
    grid-template-columns: 1fr;
    padding: 145px 24px 96px;
    gap: 0;
  }

  /* Contenido: alineado a la IZQUIERDA en mobile */
  .ivt-hero__content {
    text-align: left;
    max-width: 100%;
    width: 100%;
  }

  /* Título: mínimo 2 líneas de altura para consistencia entre slides */
  .ivt-hero__title {
    font-size: clamp(2.06rem, 7vw, 2.71rem);
    min-height: 5rem;
  }

  /* Subtítulo: mínimo 3 líneas */
  .ivt-hero__subtitle {
    min-height: 80px;
    font-size: 15px;
    max-width: 100%;
  }

  /* CTAs: izquierda */
  .ivt-hero__ctas {
    justify-content: flex-start;
    flex-wrap: wrap;
    min-height: 52px;
  }

  .ivt-hero__dots { bottom: 20px; }
  .ivt-hero__visual { display: none; }

  .ivt-section { padding: 64px 0; }
  .ivt-section-block { min-height: 420px; }
  .ivt-section-block__content { padding: 24px 28px 36px; }
  .ivt-sg-item { width: 200px; height: 122px; }
  .ivt-sg-item[data-pos="5"] { transform: translateX(-148px) translateZ(-56px) rotateY(22deg) scale(0.79); }
  .ivt-sg-item[data-pos="1"] { transform: translateX(148px) translateZ(-56px) rotateY(-22deg) scale(0.79); }
  .ivt-sg-item[data-pos="4"] { transform: translateX(-270px) translateZ(-120px) rotateY(34deg) scale(0.61); }
  .ivt-sg-item[data-pos="2"] { transform: translateX(270px) translateZ(-120px) rotateY(-34deg) scale(0.61); }
  .ivt-sg-item[data-pos="3"] { transform: translateX(0) translateZ(-240px) scale(0.25); opacity: 0; filter: brightness(0); }
  .ivt-apps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .ivt-apps-grid { grid-template-columns: 1fr; }
  .ivt-hero__ctas { flex-direction: column; align-items: flex-start; }
  .ivt-btn--lg { font-size: 14px !important; padding: 14px 24px !important; }
}

/* ════════════════════════════════════════════════════════════
   MARKET CATEGORY CARDS — Nuestras Soluciones Digitales
   ════════════════════════════════════════════════════════════ */

.ivt-markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ivt-market-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ivt-bg2);
  border: 1px solid rgba(0, 212, 255, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

.ivt-market-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.12);
}

/* Imagen — rectángulo vertical con fallback de gradiente */
.ivt-market-card__img {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center top;
  background-color: #0a1a2e; /* fallback cuando no hay imagen */
  flex-shrink: 0;
}

/* Fallback visual si la imagen no está cargada */
.ivt-market-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #071829 0%, #0d2a42 50%, #071829 100%);
  opacity: 1;
  transition: opacity 0.3s;
}

/* Ocultar el fallback cuando la imagen carga */
.ivt-market-card__img[style*="background-image"]::before {
  opacity: 0;
}

/* Overlay degradado sobre la foto para legibilidad del label */
.ivt-market-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 14, 31, 0.05) 0%,
    rgba(5, 14, 31, 0.25) 50%,
    rgba(5, 14, 31, 0.82) 100%
  );
  z-index: 1;
}

/* Nombre de la categoría sobre la imagen */
.ivt-market-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5f3ee;
  letter-spacing: 0.01em;
  line-height: 1.25;
  z-index: 2;
}

/* Cuerpo de texto */
.ivt-market-card__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.ivt-market-card__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(245, 243, 238, 0.62);
  margin: 0;
  flex: 1;
}

.ivt-market-card__btn {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ivt-accent);
  letter-spacing: 0.03em;
  transition: letter-spacing 0.2s ease;
}

.ivt-market-card:hover .ivt-market-card__btn {
  letter-spacing: 0.06em;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 1024px) {
  .ivt-markets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ivt-market-card__img { height: 260px; }
}

/* Mobile: scroll horizontal — muestra 1 card completa + mitad de la siguiente */
@media (max-width: 640px) {
  /* Sección padre necesita overflow visible para el peek */
  .ivt-section--dark:has(.ivt-markets-grid),
  .ivt-section:has(.ivt-markets-grid) {
    overflow: hidden;
  }

  .ivt-markets-grid {
    display: flex;
    flex-direction: row;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    /* Sangría lateral para que el peek se vea al borde de la pantalla */
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    /* Padding derecho pequeño → deja peeking del siguiente card */
    padding-right: 40px;
    padding-bottom: 8px;
    /* Ocultar scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .ivt-markets-grid::-webkit-scrollbar { display: none; }

  .ivt-market-card {
    /* ~85vw por card → queda ~15vw del siguiente visible */
    min-width: calc(85vw - 24px);
    max-width: calc(85vw - 24px);
    flex-shrink: 0;
    flex-direction: column;
    scroll-snap-align: start;
    border-radius: 14px;
  }

  /* Restaurar layout vertical dentro de cada card.
     background-position viene por inline style por card — no sobrescribir. */
  .ivt-market-card__img {
    width: 100%;
    height: 260px;
    flex-shrink: 0;
    background-size: cover;
  }
  .ivt-market-card__overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 14, 31, 0.05) 0%,
      rgba(5, 14, 31, 0.25) 50%,
      rgba(5, 14, 31, 0.82) 100%
    );
  }
  .ivt-market-card__label {
    font-size: 1rem;
    padding: 18px 18px 14px;
  }
  .ivt-market-card__body {
    padding: 16px 18px 20px;
    gap: 10px;
  }
  .ivt-market-card__text { font-size: 0.8125rem; }
}

/* ── Features grid — Construido para LATAM ────────────────── */
.ivt-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .ivt-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .ivt-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ivt-feature-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ════════════════════════════════════════════════════════════
   LOGIN PAGE — tpl-login.php
   Standalone (sin header Blocksy). Pantalla completa oscura.
   ════════════════════════════════════════════════════════════ */

/* Bloquear scroll del body en la página de login */
.ivt-login-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

.ivt-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #020812 0%, #050e1f 45%, #071829 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}

/* ── Fondo decorativo ──────────────────────────────────────── */
.ivt-login-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ivt-login-bg__glow--1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.07) 0%, transparent 65%);
  top: -160px;
  left: -160px;
}

.ivt-login-bg__glow--2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.045) 0%, transparent 65%);
  bottom: -120px;
  right: -120px;
}

/* Grid sutil de fondo */
.ivt-login-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ── Tarjeta central ───────────────────────────────────────── */
.ivt-login-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: rgba(5, 14, 31, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 22px;
  padding: 44px 40px 36px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 212, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

/* ── Logo ──────────────────────────────────────────────────── */
.ivt-login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  text-decoration: none;
}

.ivt-login-logo img {
  max-height: 52px;
  width: auto;
  display: block;
}

.ivt-login-logo__name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f5f3ee;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ivt-login-tagline {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 243, 238, 0.4);
  margin: 0 0 32px;
  letter-spacing: 0.02em;
}

/* ── Tabs ──────────────────────────────────────────────────── */
.ivt-login-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 28px;
  gap: 0;
}

.ivt-login-tab {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(245, 243, 238, 0.45);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  font-family: inherit;
  line-height: 1;
}

.ivt-login-tab.active {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  border-color: rgba(0, 212, 255, 0.28);
}

.ivt-login-tab:hover:not(.active) {
  color: rgba(245, 243, 238, 0.7);
}

/* ── Formulario ────────────────────────────────────────────── */
.ivt-form {
  display: flex;
  flex-direction: column;
}

.ivt-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.ivt-form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(245, 243, 238, 0.65);
  letter-spacing: 0.02em;
}

/* ── Inputs — texto BLANCO ─────────────────────────────────── */
.ivt-login-card input[type="text"],
.ivt-login-card input[type="email"],
.ivt-login-card input[type="password"],
.ivt-login-card .woocommerce-Input,
.ivt-login-card .input-text {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(0, 212, 255, 0.2) !important;
  border-radius: 11px !important;
  padding: 13px 16px !important;
  color: #ffffff !important;
  font-size: 0.9375rem !important;
  font-family: inherit !important;
  line-height: 1.4 !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  outline: none !important;
  box-sizing: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
}

.ivt-login-card input[type="text"]:focus,
.ivt-login-card input[type="email"]:focus,
.ivt-login-card input[type="password"]:focus {
  border-color: rgba(0, 212, 255, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.09) !important;
  background: rgba(255, 255, 255, 0.07) !important;
}

/* Fix color de autocompletado de Chrome */
.ivt-login-card input:-webkit-autofill,
.ivt-login-card input:-webkit-autofill:hover,
.ivt-login-card input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #071426 inset !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(0, 212, 255, 0.3) !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* ── Fila: recordarme + link ───────────────────────────────── */
.ivt-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 8px;
  flex-wrap: wrap;
}

.ivt-form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(245, 243, 238, 0.55);
  cursor: pointer;
  user-select: none;
}

.ivt-form-check input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  accent-color: #00d4ff;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.ivt-login-link {
  font-size: 0.8rem;
  color: rgba(0, 212, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.ivt-login-link:hover { color: #00d4ff; }

/* ── Botón full-width ──────────────────────────────────────── */
.ivt-btn--full {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: 4px;
}

/* ── Nota de términos (registro) ───────────────────────────── */
.ivt-register-note {
  font-size: 0.775rem;
  color: rgba(245, 243, 238, 0.4);
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}

/* ── Aviso cuando registro está deshabilitado ──────────────── */
.ivt-login-notice {
  text-align: center;
  color: rgba(245, 243, 238, 0.5);
  font-size: 0.875rem;
  padding: 32px 0 16px;
  line-height: 1.7;
}

/* ── Volver al inicio ──────────────────────────────────────── */
.ivt-login-back {
  margin-top: 24px;
  text-align: center;
}

.ivt-login-back a {
  font-size: 0.8125rem;
  color: rgba(245, 243, 238, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.ivt-login-back a:hover { color: rgba(245, 243, 238, 0.7); }

/* ── WooCommerce notices dentro de la card ─────────────────── */
.ivt-login-card .woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

.ivt-login-card .woocommerce-error,
.ivt-login-card .woocommerce-message,
.ivt-login-card .woocommerce-info {
  list-style: none !important;
  margin: 0 0 20px !important;
  padding: 14px 16px 14px 20px !important;
  border-radius: 10px !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  display: block !important;
}

/* Reset li — hereda el color del contenedor */
.ivt-login-card .woocommerce-error li,
.ivt-login-card .woocommerce-message li,
.ivt-login-card .woocommerce-info li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  color: inherit !important;
  background: none !important;
}

/* Eliminar ícono ::before (campana / check) que agrega WooCommerce */
.ivt-login-card .woocommerce-error::before,
.ivt-login-card .woocommerce-error li::before,
.ivt-login-card .woocommerce-message::before,
.ivt-login-card .woocommerce-message li::before,
.ivt-login-card .woocommerce-info::before,
.ivt-login-card .woocommerce-info li::before,
.ivt-login-card .woocommerce-notices-wrapper ul.woocommerce-error::before,
.ivt-login-card .woocommerce-notices-wrapper ul.woocommerce-error li::before {
  display: none !important;
  content: none !important;
}

/* ── Nextend Social Login (Google / Facebook) — centrado ──── */
.ivt-login-card .nsl-container,
.ivt-login-card .nsl-container-buttons,
.ivt-login-card .nsl-container-block {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.ivt-login-card .nsl-button {
  width: 100% !important;
  max-width: 360px !important;
  justify-content: center !important;
  margin: 0 auto !important;
}

/* Error — rojo */
.ivt-login-card .woocommerce-error {
  background: rgba(160, 20, 20, 0.55) !important;
  border: 1px solid rgba(255, 80, 80, 0.5) !important;
  border-left: 4px solid #ff5555 !important;
  color: #ffffff !important;
}
/* Forzar blanco en strong/b/"ERROR:" que WooCommerce pone en elemento hijo */
.ivt-login-card .woocommerce-error strong,
.ivt-login-card .woocommerce-error b,
.ivt-login-card .woocommerce-error * {
  color: #ffffff !important;
}
.ivt-login-card .woocommerce-error a,
.ivt-login-card .woocommerce-error a strong,
.ivt-login-card .woocommerce-error a b {
  color: #ffdd88 !important;
  text-decoration: underline !important;
}
.ivt-login-card .woocommerce-error a:hover,
.ivt-login-card .woocommerce-error a:hover strong {
  color: #ffffff !important;
}

/* Éxito/mensaje — cian */
.ivt-login-card .woocommerce-message {
  background: rgba(0, 212, 255, 0.07) !important;
  border: 1px solid rgba(0, 212, 255, 0.2) !important;
  border-left: 3px solid rgba(0, 212, 255, 0.7) !important;
  color: #80e8ff !important;
}

/* Informativo — violeta */
.ivt-login-card .woocommerce-info {
  background: rgba(100, 100, 255, 0.07) !important;
  border: 1px solid rgba(100, 100, 255, 0.2) !important;
  border-left: 3px solid rgba(120, 120, 255, 0.7) !important;
  color: #b0b0ff !important;
}

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .ivt-login-card {
    padding: 36px 24px 28px;
    border-radius: 18px;
  }
  .ivt-login-logo img { max-height: 42px; }

  /* Error / notices — colores explícitos en móvil */
  .ivt-login-card .woocommerce-error {
    background: rgba(160, 20, 20, 0.60) !important;
    border: 1px solid rgba(255, 80, 80, 0.55) !important;
    border-left: 4px solid #ff5555 !important;
    color: #ffffff !important;
    font-size: 0.875rem !important;
    padding: 12px 14px 12px 16px !important;
  }
  .ivt-login-card .woocommerce-error strong,
  .ivt-login-card .woocommerce-error b,
  .ivt-login-card .woocommerce-error li,
  .ivt-login-card .woocommerce-error * {
    color: #ffffff !important;
  }
  .ivt-login-card .woocommerce-error a,
  .ivt-login-card .woocommerce-error a * {
    color: #ffdd88 !important;
    text-decoration: underline !important;
  }
  .ivt-login-card .woocommerce-error::before,
  .ivt-login-card .woocommerce-error li::before {
    display: none !important;
    content: none !important;
  }

  /* NSL Google button — centrado en móvil */
  .ivt-login-card .nsl-container,
  .ivt-login-card .nsl-container-buttons,
  .ivt-login-card .nsl-container-block {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .ivt-login-card .nsl-button {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO — encabezado compartido para páginas interiores
═══════════════════════════════════════════════════════════════ */
.ivt-page-hero {
  position: relative;
  background: linear-gradient(160deg, #020b18 0%, #050e1f 60%, #061422 100%);
  padding: 120px 0 72px;
  overflow: hidden;
  text-align: center;
}
.ivt-page-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.ivt-page-hero__glow--1 {
  width: 520px; height: 320px;
  background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 70%);
  top: -60px; left: -80px;
}
.ivt-page-hero__glow--2 {
  width: 400px; height: 280px;
  background: radial-gradient(circle, rgba(0,150,255,.08) 0%, transparent 70%);
  bottom: -40px; right: -60px;
}
.ivt-page-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #f5f3ee;
  margin: 0 0 16px;
  line-height: 1.15;
}
.ivt-page-hero__sub {
  font-size: 1rem;
  color: #8b9ab5;
  max-width: 520px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */
.ivt-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.ivt-contact-card {
  background: var(--ivt-bg2);
  border: 1px solid var(--ivt-border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.ivt-contact-card:hover {
  border-color: var(--ivt-accent);
  transform: translateY(-4px);
}
.ivt-contact-card__icon {
  width: 56px; height: 56px;
  background: rgba(0,212,255,.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--ivt-accent);
}
.ivt-contact-card__label {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8b9ab5;
  margin-bottom: 8px;
}
.ivt-contact-card__email {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ivt-accent);
  text-decoration: none;
  word-break: break-all;
  margin-bottom: 12px;
}
.ivt-contact-card__email:hover { text-decoration: underline; }
.ivt-contact-card__desc {
  font-size: 13px;
  color: #8b9ab5;
  line-height: 1.55;
  margin: 0;
}

.ivt-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.ivt-contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ivt-contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #8b9ab5;
}
.ivt-contact-detail svg { color: var(--ivt-accent); flex-shrink: 0; }

.ivt-contact-form-wrap {
  background: var(--ivt-bg2);
  border: 1px solid var(--ivt-border);
  border-radius: 20px;
  padding: 40px 36px;
}

.ivt-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ivt-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.ivt-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #c0ccd8;
}
.ivt-required { color: var(--ivt-accent); }
.ivt-form-group input,
.ivt-form-group select,
.ivt-form-group textarea {
  background: var(--ivt-bg3);
  border: 1px solid var(--ivt-border);
  border-radius: 10px;
  padding: 11px 14px;
  color: #f5f3ee;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s;
  outline: none;
}
.ivt-form-group input:focus,
.ivt-form-group select:focus,
.ivt-form-group textarea:focus {
  border-color: var(--ivt-accent);
}
.ivt-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b9ab5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.ivt-form-group textarea { resize: vertical; min-height: 120px; }
.ivt-btn--full { width: 100%; justify-content: center; }

.ivt-contact-notice {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.ivt-contact-notice--ok {
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.25);
  color: #80e8ff;
}
.ivt-contact-notice--err {
  background: rgba(220,60,60,.1);
  border: 1px solid rgba(220,60,60,.25);
  color: #ffb3b3;
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES — Términos y Privacidad
═══════════════════════════════════════════════════════════════ */
.ivt-legal-body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  color: #c0ccd8;
}
.ivt-legal-intro {
  font-size: 16px;
  color: #d0dae6;
  border-left: 3px solid var(--ivt-accent);
  padding-left: 20px;
  margin-bottom: 40px;
}
.ivt-legal-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f5f3ee;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ivt-border);
}
.ivt-legal-body p { margin: 0 0 14px; }
.ivt-legal-body ul {
  padding-left: 20px;
  margin: 0 0 14px;
}
.ivt-legal-body ul li { margin-bottom: 6px; }
.ivt-legal-body a {
  color: var(--ivt-accent);
  text-decoration: none;
}
.ivt-legal-body a:hover { text-decoration: underline; }

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ivt-page-hero { padding: 100px 0 56px; }
  .ivt-contact-cards { grid-template-columns: 1fr; }
  .ivt-contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .ivt-contact-form-wrap { padding: 28px 20px; }
  .ivt-form-row-2 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   NOSOTROS PAGE
═══════════════════════════════════════════════════════════════ */
.ivt-about-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivt-accent);
  margin-bottom: 16px;
}

/* Misión / Visión / Compromiso */
.ivt-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ivt-mvv-card {
  background: var(--ivt-bg2);
  border: 1px solid var(--ivt-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform .25s, border-color .25s;
}
.ivt-mvv-card:hover { transform: translateY(-4px); border-color: var(--ivt-accent); }
.ivt-mvv-card--accent {
  background: linear-gradient(135deg, rgba(0,212,255,.08) 0%, var(--ivt-bg2) 100%);
  border-color: rgba(0,212,255,.3);
}
.ivt-mvv-card__icon {
  width: 52px; height: 52px;
  background: rgba(0,212,255,.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivt-accent);
  margin-bottom: 20px;
}
.ivt-mvv-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5f3ee;
  margin-bottom: 12px;
}
.ivt-mvv-card__text { font-size: 14px; color: #8b9ab5; line-height: 1.65; margin: 0; }

/* Stats */
.ivt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--ivt-border);
  border-radius: 20px;
  overflow: hidden;
}
.ivt-stat-item {
  background: var(--ivt-bg2);
  padding: 40px 24px;
  text-align: center;
}
.ivt-stat-item__num {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--ivt-accent);
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.ivt-stat-item__label { font-size: 13px; color: #8b9ab5; font-weight: 500; }

/* Timeline */
.ivt-timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 32px;
}
.ivt-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--ivt-accent) 0%, rgba(0,212,255,.1) 100%);
}
.ivt-timeline-item {
  position: relative;
  padding: 0 0 40px 24px;
}
.ivt-timeline-item:last-child { padding-bottom: 0; }
.ivt-timeline-item__dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ivt-bg2);
  border: 2px solid var(--ivt-accent);
  box-shadow: 0 0 8px rgba(0,212,255,.3);
}
.ivt-timeline-item__dot--active {
  background: var(--ivt-accent);
}
.ivt-timeline-item__year {
  font-size: 12px;
  font-weight: 700;
  color: var(--ivt-accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ivt-timeline-item__content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #f5f3ee;
  margin: 0 0 8px;
}
.ivt-timeline-item__content p { font-size: 14px; color: #8b9ab5; margin: 0; line-height: 1.65; }

/* Values */
.ivt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ivt-value-item {
  padding: 28px;
  border: 1px solid var(--ivt-border);
  border-radius: 16px;
  transition: border-color .25s;
}
.ivt-value-item:hover { border-color: var(--ivt-accent); }
.ivt-value-item__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ivt-accent);
  margin-bottom: 14px;
  box-shadow: 0 0 8px var(--ivt-accent);
}
.ivt-value-item__title { font-size: 15px; font-weight: 700; color: #f5f3ee; margin-bottom: 8px; }
.ivt-value-item__text { font-size: 13px; color: #8b9ab5; line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   APPS PAGE
═══════════════════════════════════════════════════════════════ */
.ivt-apps-filter-bar {
  background: var(--ivt-bg2);
  border-bottom: 1px solid var(--ivt-border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.ivt-apps-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.ivt-apps-filter {
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid var(--ivt-border);
  background: transparent;
  color: #8b9ab5;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.ivt-apps-filter:hover { border-color: var(--ivt-accent); color: var(--ivt-accent); }
.ivt-apps-filter.active {
  background: var(--ivt-accent);
  border-color: var(--ivt-accent);
  color: #020812;
}

.ivt-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ivt-app-card {
  background: var(--ivt-bg2);
  border: 1px solid var(--ivt-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.ivt-app-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,212,255,.4);
  box-shadow: 0 16px 48px rgba(0,212,255,.1);
}
.ivt-app-card__img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--ivt-bg3);
}
.ivt-app-card__img--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,212,255,.3);
}
.ivt-app-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.ivt-app-card__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ivt-accent);
  margin-bottom: 8px;
  display: block;
}
.ivt-app-card__title { font-size: 1rem; font-weight: 700; color: #f5f3ee; margin-bottom: 10px; }
.ivt-app-card__excerpt { font-size: 13px; color: #8b9ab5; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.ivt-app-card__price { font-size: 15px; font-weight: 700; color: var(--ivt-accent); margin-bottom: 16px; }
.ivt-app-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ivt-accent);
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s;
}
.ivt-app-card__btn:hover { gap: 10px; }

/* Industries list */
.ivt-industries-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ivt-industry-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--ivt-bg2);
  border: 1px solid var(--ivt-border);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.ivt-industry-item:hover { border-color: var(--ivt-accent); transform: translateX(4px); }
.ivt-industry-item__arrow {
  font-size: 20px;
  color: var(--ivt-accent);
  flex-shrink: 0;
  transition: transform .2s;
}
.ivt-industry-item:hover .ivt-industry-item__arrow { transform: translateX(4px); }
.ivt-industry-item__name { font-size: 15px; font-weight: 700; color: #f5f3ee; margin-bottom: 4px; }
.ivt-industry-item__desc { font-size: 13px; color: #8b9ab5; }

/* Empty state */
.ivt-empty-state {
  max-width: 440px;
  margin: 0 auto;
  padding: 64px 0;
  color: #8b9ab5;
}
.ivt-empty-state svg { color: rgba(0,212,255,.25); margin-bottom: 24px; }
.ivt-empty-state h3 { color: #f5f3ee; font-size: 1.4rem; margin-bottom: 12px; }
.ivt-empty-state p { font-size: 15px; }

/* ── Mobile nosotros + apps ──────────────────────────────── */
@media (max-width: 768px) {
  .ivt-mvv-grid    { grid-template-columns: 1fr; }
  .ivt-stats-grid  { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
  .ivt-values-grid { grid-template-columns: 1fr 1fr; }
  .ivt-apps-grid   { grid-template-columns: 1fr; }
  .ivt-industries-list { grid-template-columns: 1fr; }
  .ivt-timeline    { padding-left: 24px; }
}
@media (max-width: 480px) {
  .ivt-stats-grid  { grid-template-columns: 1fr 1fr; }
  .ivt-values-grid { grid-template-columns: 1fr; }
}

/* ── PREFERENCIA DE MOVIMIENTO REDUCIDO ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .ivt-hero__progress { transition: none !important; }
  /* Coverflow: transición reducida pero presente para que el cambio sea perceptible */
  .ivt-section-gallery .ivt-sg-item {
    transition: transform .4s ease, filter .4s ease !important;
  }
}
