/* =====================================================================
   Visioneon · site.css (v10)
   ---------------------------------------------------------------------
   Capa visual de la web pública. Se carga DESPUÉS de styles.css:

   1. Redefine los tokens (colores, tipografías) para que las páginas que
      aún usan las clases antiguas (legales, proyecto, producto, errores)
      hereden el nuevo aspecto sin tocarlas.
   2. Define la cabecera, el pie y los componentes de la nueva home
      (prefijo .v-).

   Dirección: empresa de software. Oscuro por defecto, modo claro
   completo, espacio generoso, un solo acento (cian) y brillo muy sutil.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Tokens
   --------------------------------------------------------------------- */
:root {
  --v-bg:          #07080D;
  --v-bg-2:        #0B0E16;
  --v-surface:     #0C0F17;
  --v-surface-2:   #11151F;
  --v-surface-3:   #151A26;
  --v-line-soft:   #141925;
  --v-line:        #1C2231;
  --v-line-strong: #2A3142;

  --v-text:   #F3F5F9;
  --v-text-2: #C9D0DD;
  --v-muted:  #9AA3B5;
  --v-faint:  #8C95A8;

  --v-cyan:   #22D3EE;
  --v-blue:   #3B6BFF;
  --v-violet: #8B5CF6;
  --v-accent:      var(--v-cyan);
  --v-accent-text: #22D3EE;
  --v-accent-soft: rgba(34, 211, 238, .12);
  --v-accent-edge: rgba(34, 211, 238, .40);
  --v-gradient: linear-gradient(90deg, #22D3EE, #3B6BFF 55%, #8B5CF6);

  --v-btn-bg: #F3F5F9;
  --v-btn-fg: #07080D;
  --v-btn-bg-hover: #FFFFFF;

  --v-grid-line: #0E121B;
  --v-glow-a: rgba(59, 107, 255, .20);
  --v-glow-b: rgba(139, 92, 246, .14);
  --v-shadow: 0 30px 80px rgba(0, 0, 0, .45);

  --v-font-display: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
  --v-font-body:    'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --v-font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --v-radius-sm: 10px;
  --v-radius:    16px;
  --v-radius-lg: 20px;
  --v-container: 1200px;
  --v-header-h:  72px;
  --v-section-y: 120px;

  /* Tokens antiguos: las páginas que aún los usan adoptan la nueva paleta */
  --bg-0: var(--v-bg);
  --bg-1: var(--v-bg-2);
  --bg-2: var(--v-surface-2);
  --panel: var(--v-surface);
  --panel-2: var(--v-surface-2);
  --line: var(--v-line);
  --line-strong: var(--v-line-strong);
  --text: var(--v-text);
  --text-mute: var(--v-muted);
  --text-dim: var(--v-faint);
  --gold: var(--v-accent-text);
  --accent: var(--v-accent-text);
  --font-display: var(--v-font-display);
  --font-body: var(--v-font-body);
  --font-mono: var(--v-font-mono);
  --radius: var(--v-radius);
  --radius-lg: var(--v-radius-lg);
}

html[data-theme="light"] {
  --v-bg:          #F7F8FA;
  --v-bg-2:        #EFF2F6;
  --v-surface:     #FFFFFF;
  --v-surface-2:   #F3F5F8;
  --v-surface-3:   #EAEEF3;
  --v-line-soft:   #E6EAF0;
  --v-line:        #DDE2EA;
  --v-line-strong: #C9D0DB;

  --v-text:   #0B0E16;
  --v-text-2: #2A3142;
  --v-muted:  #4F596B;
  --v-faint:  #5D677A;

  --v-accent-text: #0E7490;
  --v-accent-soft: rgba(14, 116, 144, .08);
  --v-accent-edge: rgba(14, 116, 144, .35);

  --v-btn-bg: #0B0E16;
  --v-btn-fg: #FFFFFF;
  --v-btn-bg-hover: #1C2231;

  --v-grid-line: #E9EDF2;
  --v-glow-a: rgba(59, 107, 255, .10);
  --v-glow-b: rgba(139, 92, 246, .07);
  --v-shadow: 0 24px 60px rgba(15, 23, 42, .10);
}

/* ---------------------------------------------------------------------
   2. Base
   --------------------------------------------------------------------- */
html { scroll-padding-top: calc(var(--v-header-h) + 16px); }
body {
  background: var(--v-bg);
  color: var(--v-text);
  font-family: var(--v-font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Fondos decorativos de la versión anterior */
body::before, body::after, #bg-particles { display: none !important; }
.scroll-progress { display: none !important; }

::selection { background: rgba(34, 211, 238, .28); color: var(--v-text); }

a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--v-accent-text);
  outline-offset: 3px;
  border-radius: 6px;
}

.v-container {
  width: 100%;
  max-width: var(--v-container);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.v-sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.v-skip {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  padding: 10px 16px; border-radius: var(--v-radius-sm);
  background: var(--v-btn-bg); color: var(--v-btn-fg); font-weight: 600; text-decoration: none;
}
.v-skip:focus { top: 12px; }

/* Tipografía */
.v-eyebrow {
  display: inline-block;
  font-family: var(--v-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v-accent-text);
}
.v-h1, .v-h2, .v-h3 {
  font-family: var(--v-font-display);
  font-weight: 600;
  color: var(--v-text);
  margin: 0;
}
.v-h1 { font-size: clamp(40px, 5.2vw, 66px); line-height: 1.05; letter-spacing: -.035em; }
.v-h2 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.12; letter-spacing: -.03em; }
.v-h3 { font-size: 20px; line-height: 1.3; letter-spacing: -.01em; }
.v-lead { margin: 0; font-size: 18px; line-height: 1.65; color: var(--v-muted); }
.v-text { margin: 0; font-size: 15px; line-height: 1.6; color: var(--v-muted); }
.v-gradient-text {
  background: var(--v-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Botones */
.v-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px;
  border-radius: 12px; border: 1px solid transparent;
  font-family: var(--v-font-body); font-size: 15px; font-weight: 600; line-height: 1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.v-btn:active { transform: translateY(1px); }
.v-btn--lg { min-height: 54px; padding: 0 26px; font-size: 16px; }
.v-btn--primary { background: var(--v-btn-bg); color: var(--v-btn-fg); }
.v-btn--primary:hover { background: var(--v-btn-bg-hover); color: var(--v-btn-fg); }
.v-btn--secondary { background: transparent; color: var(--v-text); border-color: var(--v-line-strong); }
.v-btn--secondary:hover { border-color: var(--v-faint); color: var(--v-text); }
.v-btn--block { width: 100%; }
.v-btn[disabled] { opacity: .6; cursor: progress; }

.v-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--v-accent-text); font-weight: 600; font-size: 15px; text-decoration: none;
}
.v-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Etiquetas de estado */
.v-status {
  display: inline-flex; align-items: center; gap: 7px;
  height: 28px; padding: 0 12px; border-radius: 999px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  border: 1px solid var(--v-line-strong); color: var(--v-text-2); background: var(--v-surface-2);
}
.v-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.v-status--live { color: var(--v-accent-text); background: var(--v-accent-soft); border-color: var(--v-accent-edge); }
.v-status--beta { color: #A78BFA; background: rgba(139, 92, 246, .10); border-color: rgba(139, 92, 246, .38); }
html[data-theme="light"] .v-status--beta { color: #6D28D9; }

.v-chip {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: 8px;
  background: var(--v-surface-2); border: 1px solid var(--v-line);
  font-size: 13px; color: var(--v-text-2);
}

/* ---------------------------------------------------------------------
   3. Cabecera
   --------------------------------------------------------------------- */
.site-top {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-top.is-scrolled,
.site-top.is-open {
  background: color-mix(in srgb, var(--v-bg) 88%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-top.is-scrolled, .site-top.is-open { background: rgba(7, 8, 13, .9); }
  html[data-theme="light"] .site-top.is-scrolled,
  html[data-theme="light"] .site-top.is-open { background: rgba(247, 248, 250, .92); }
}

.v-announce {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  min-height: 40px; padding: 8px 24px; box-sizing: border-box;
  background: var(--v-bg-2); border-bottom: 1px solid var(--v-line);
  font-size: 14px; line-height: 1.4; color: var(--v-text-2); text-decoration: none;
}
.v-announce:hover { color: var(--v-text); }
.v-announce__tag {
  flex-shrink: 0;
  font-family: var(--v-font-mono); font-size: 11px; font-weight: 500; letter-spacing: .1em;
  color: var(--v-bg); background: var(--v-accent);
  padding: 3px 8px; border-radius: 4px;
}
html[data-theme="light"] .v-announce__tag { color: #FFFFFF; background: #0E7490; }
.v-announce__cta { color: var(--v-accent-text); font-weight: 600; white-space: nowrap; }

.site-header { border-bottom: 1px solid transparent; }
.site-top.is-scrolled .site-header { border-bottom-color: var(--v-line-soft); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: var(--v-header-h);
}
.site-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--v-text); text-decoration: none; flex-shrink: 0;
}
.site-brand img { width: 38px; height: 38px; object-fit: contain; }
.site-brand span { font-family: var(--v-font-display); font-weight: 600; font-size: 20px; letter-spacing: -.01em; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav__link {
  position: relative;
  color: var(--v-muted); font-size: 15px; font-weight: 500; text-decoration: none;
  transition: color .2s ease;
}
.site-nav__link:hover, .site-nav__link.is-active { color: var(--v-text); }

.site-actions { display: flex; align-items: center; gap: 12px; }
.site-actions__login { color: var(--v-muted); font-size: 15px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.site-actions__login:hover { color: var(--v-text); }

.v-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px; border: 1px solid var(--v-line-strong);
  background: transparent; color: var(--v-text); cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease;
}
.v-icon-btn:hover { border-color: var(--v-faint); background: var(--v-surface-2); }
.v-icon-btn i { font-size: 16px; }

.site-menu-toggle { display: none; }
.site-mobile { display: none; }

@media (max-width: 1080px) {
  .site-nav, .site-actions__login, .site-actions .v-btn { display: none; }
  .site-menu-toggle { display: inline-flex; }
  .site-mobile {
    display: none; flex-direction: column; gap: 4px;
    padding: 12px 24px 28px; border-top: 1px solid var(--v-line-soft);
    max-height: calc(100vh - var(--v-header-h) - 40px); overflow-y: auto;
  }
  .site-top.is-open .site-mobile { display: flex; }
  .site-mobile a:not(.v-btn) {
    display: flex; align-items: center; min-height: 52px;
    border-bottom: 1px solid var(--v-line-soft);
    color: var(--v-text); font-size: 17px; font-weight: 500; text-decoration: none;
  }
  .site-mobile .v-btn { margin-top: 16px; }
}
@media (max-width: 560px) {
  .v-announce { justify-content: flex-start; font-size: 13px; padding: 8px 20px; }
  .v-announce__text-long { display: none; }
}

/* ---------------------------------------------------------------------
   4. Secciones
   --------------------------------------------------------------------- */
.v-main { display: block; }
.v-section { padding: var(--v-section-y) 0; border-top: 1px solid var(--v-line-soft); }
.v-section--flush { border-top: 0; }
.v-section__head { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin-bottom: 56px; }
.v-section__head--split {
  max-width: none; flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 40px;
}
.v-section__head--split .v-lead { max-width: 400px; font-size: 16px; }
.v-section__head--center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }

@media (max-width: 860px) {
  :root { --v-section-y: 80px; }
  .v-section__head { margin-bottom: 40px; }
  .v-section__head--split { flex-direction: column; align-items: flex-start; }
}

/* Aparición al hacer scroll (solo con JS y sin movimiento reducido) */
html.js-ready .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
html.js-ready .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js-ready .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------------------------------------------------------------------
   5. Hero
   --------------------------------------------------------------------- */
.v-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--v-header-h) + 110px) 0 110px;
  background-image:
    linear-gradient(var(--v-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--v-grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
}
.v-hero.has-announce { padding-top: calc(var(--v-header-h) + 40px + 100px); }
.v-hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 160px;
  background: linear-gradient(transparent, var(--v-bg)); pointer-events: none;
}
.v-hero__glow {
  position: absolute; right: -8%; top: 12%; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, var(--v-glow-a), var(--v-glow-b) 45%, transparent 70%);
  pointer-events: none;
}
.v-hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 72px; align-items: center;
}
.v-hero__copy { display: flex; flex-direction: column; gap: 28px; }
.v-hero__copy .v-lead { max-width: 560px; font-size: 19px; }
.v-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.v-hero__proof { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 0; margin: 0; list-style: none; font-size: 14px; color: var(--v-faint); }
.v-hero__proof li { display: inline-flex; align-items: center; gap: 8px; }
.v-hero__proof i { color: var(--v-accent-text); font-size: 13px; }

.v-arch {
  display: flex; flex-direction: column;
  padding: 28px; border-radius: var(--v-radius-lg);
  background: var(--v-surface); border: 1px solid var(--v-line);
  box-shadow: var(--v-shadow);
}
.v-arch__head {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-bottom: 18px; border-bottom: 1px solid var(--v-line);
}
.v-arch__label { font-family: var(--v-font-mono); font-size: 12px; letter-spacing: .08em; color: var(--v-faint); }
.v-arch__state { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--v-text-2); }
.v-arch__state::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--v-accent); box-shadow: 0 0 0 4px var(--v-accent-soft); }
.v-arch__list { list-style: none; margin: 0; padding: 0; }
.v-arch__row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--v-line-soft); }
.v-arch__row:last-child { border-bottom: 0; padding-bottom: 0; }
.v-arch__code {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--v-surface-2); border: 1px solid var(--v-line);
  font-family: var(--v-font-mono); font-size: 12px; color: var(--v-accent-text);
}
.v-arch__body { display: flex; flex-direction: column; gap: 2px; flex-grow: 1; min-width: 0; }
.v-arch__name { font-size: 16px; font-weight: 600; color: var(--v-text); }
.v-arch__detail { font-size: 13px; color: var(--v-faint); }
.v-arch__tag { font-family: var(--v-font-mono); font-size: 12px; color: var(--v-faint); }

@media (max-width: 980px) {
  .v-hero { padding: calc(var(--v-header-h) + 64px) 0 80px; }
  .v-hero.has-announce { padding-top: calc(var(--v-header-h) + 40px + 56px); }
  .v-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .v-hero__copy .v-lead { font-size: 17px; }
}
@media (max-width: 560px) {
  .v-hero { background-size: 48px 48px; }
  .v-hero__actions .v-btn { width: 100%; }
  .v-arch { padding: 20px; }
  .v-arch__tag { display: none; }
}

/* ---------------------------------------------------------------------
   6. Producto
   --------------------------------------------------------------------- */
.v-product { position: relative; overflow: hidden; }
.v-product__glow {
  position: absolute; left: 45%; top: 20%; width: 760px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, var(--v-glow-b), transparent 68%); pointer-events: none;
}
.v-product__grid {
  position: relative; display: grid; grid-template-columns: minmax(0, 480px) minmax(0, 1fr); gap: 72px; align-items: start;
}
.v-product__copy { display: flex; flex-direction: column; gap: 22px; }
.v-product__title { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.v-product__title .v-h2 { font-size: clamp(34px, 4vw, 48px); }
.v-product__tagline { margin: 0; font-size: 20px; font-weight: 500; color: var(--v-text); }
.v-checks { list-style: none; margin: 0; padding: 4px 0; display: flex; flex-direction: column; gap: 14px; }
.v-checks li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 1.5; color: var(--v-text-2); }
.v-checks i { flex-shrink: 0; margin-top: 4px; font-size: 14px; color: var(--v-accent-text); }
.v-product__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.v-product__price { margin: 0; font-size: 14px; color: var(--v-faint); }

.v-product__media {
  border-radius: var(--v-radius-lg); overflow: hidden;
  background: var(--v-surface); border: 1px solid var(--v-line); box-shadow: var(--v-shadow);
}
.v-product__media img { display: block; width: 100%; height: auto; }

/* Vista ilustrativa del panel (solo si el producto no tiene captura) */
.v-mock { display: flex; flex-direction: column; }
.v-mock__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 56px; padding: 0 22px; border-bottom: 1px solid var(--v-line);
}
.v-mock__brand { font-family: var(--v-font-display); font-weight: 600; font-size: 15px; color: var(--v-text); }
.v-mock__brand b { color: var(--v-accent-text); font-weight: 600; }
.v-mock__tabs { display: flex; gap: 20px; font-size: 13px; color: var(--v-faint); }
.v-mock__tabs span:first-child { color: var(--v-text); }
.v-mock__body { display: flex; flex-direction: column; gap: 16px; padding: 22px; }
.v-mock__kpis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.v-mock__card {
  display: flex; flex-direction: column; gap: 12px; padding: 16px;
  border-radius: 12px; background: var(--v-surface-2); border: 1px solid var(--v-line);
}
.v-mock__label { font-size: 12px; color: var(--v-faint); }
.v-mock__skel { display: block; height: 16px; width: 90px; border-radius: 5px; background: var(--v-surface-3); }
.v-mock__skel--sm { height: 8px; width: 54px; background: var(--v-accent-soft); }
.v-mock__chart { display: flex; align-items: flex-end; gap: 10px; height: 150px; }
.v-mock__chart span { flex-grow: 1; border-radius: 4px 4px 0 0; background: var(--v-blue); opacity: .45; }
.v-mock__chart span:last-child { background: var(--v-accent); opacity: 1; }
.v-mock__rows { display: flex; flex-direction: column; border-radius: 12px; background: var(--v-surface-2); border: 1px solid var(--v-line); }
.v-mock__row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--v-line); }
.v-mock__row:last-child { border-bottom: 0; }
.v-mock__thumb { width: 32px; height: 32px; border-radius: 8px; background: var(--v-surface-3); flex-shrink: 0; }
.v-mock__line { height: 10px; border-radius: 4px; background: var(--v-surface-3); }
.v-mock__state { margin-left: auto; font-size: 12px; color: var(--v-accent-text); }
.v-mock__state--muted { color: var(--v-faint); }

.v-products-more { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 72px; }
.v-mini-product {
  display: flex; flex-direction: column; gap: 12px; padding: 26px;
  border-radius: var(--v-radius); background: var(--v-surface); border: 1px solid var(--v-line);
}
.v-mini-product__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }

@media (max-width: 1080px) {
  .v-product__grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
}
@media (max-width: 560px) {
  .v-mock__tabs span:nth-child(n+3) { display: none; }
  .v-mock__body { padding: 14px; gap: 12px; }
  .v-mock__kpis { gap: 8px; }
  .v-mock__card { padding: 10px; }
  .v-mock__chart { height: 90px; gap: 6px; }
  .v-mock__rows { display: none; }
  .v-product__actions .v-btn { width: 100%; }
}

/* ---------------------------------------------------------------------
   7. Soluciones
   --------------------------------------------------------------------- */
.v-services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.v-services--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v-services--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v-service {
  display: flex; flex-direction: column; gap: 16px; padding: 28px;
  border-radius: var(--v-radius); background: var(--v-surface); border: 1px solid var(--v-line);
  transition: border-color .25s ease, transform .25s ease;
}
.v-service:hover { border-color: var(--v-line-strong); transform: translateY(-3px); }
.v-service__icon {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--v-surface-2); border: 1px solid var(--v-line);
  color: var(--v-accent-text); font-size: 18px;
}
.v-service ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.v-service li { display: flex; gap: 10px; font-size: 14px; line-height: 1.45; color: var(--v-text-2); }
.v-service li::before { content: "—"; color: var(--v-accent-text); flex-shrink: 0; }
.v-service__foot {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--v-line);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.v-service__price { font-size: 14px; font-weight: 600; color: var(--v-text); }
.v-service__foot .v-link { font-size: 14px; }

@media (max-width: 1080px) { .v-services, .v-services--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px)  { .v-services, .v-services--3, .v-services--2 { grid-template-columns: minmax(0, 1fr); } }

/* ---------------------------------------------------------------------
   8. Casos
   --------------------------------------------------------------------- */
.v-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.v-filter {
  min-height: 40px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--v-line-strong); background: transparent; color: var(--v-text-2);
  font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.v-filter:hover { border-color: var(--v-faint); color: var(--v-text); }
.v-filter.active, .v-filter[aria-pressed="true"] { background: var(--v-btn-bg); color: var(--v-btn-fg); border-color: var(--v-btn-bg); }

.v-cases { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.v-cases--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v-cases--2 .v-case:not(.v-case--featured) .v-case__media { aspect-ratio: 16 / 8; }
.v-case {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--v-radius); background: var(--v-surface); border: 1px solid var(--v-line);
  transition: border-color .25s ease, transform .25s ease, opacity .28s ease;
}
.v-case:hover { border-color: var(--v-line-strong); transform: translateY(-3px); }
.v-case.filter-hide { opacity: 0; transform: scale(.98); }
.v-case__media { position: relative; aspect-ratio: 16 / 10; background: var(--v-surface-2); overflow: hidden; }
.v-case__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.v-case:hover .v-case__media img { transform: scale(1.03); }
.v-case__body { display: flex; flex-direction: column; gap: 10px; padding: 24px; flex-grow: 1; }
.v-case__meta { font-family: var(--v-font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--v-faint); }
.v-case__title { font-family: var(--v-font-display); font-size: 19px; line-height: 1.3; font-weight: 600; color: var(--v-text); margin: 0; }
.v-case__title a { text-decoration: none; color: inherit; }
.v-case__title a::after { content: ""; position: absolute; inset: 0; }
.v-case { position: relative; }
.v-case__foot { margin-top: auto; padding-top: 12px; }

.v-case--featured { grid-column: 1 / -1; flex-direction: row; }
.v-case--featured .v-case__media { flex: 0 0 52%; aspect-ratio: auto; min-height: 380px; }
.v-case--featured .v-case__body { padding: 44px; gap: 16px; justify-content: center; }
.v-case--featured .v-case__title { font-size: clamp(24px, 2.4vw, 30px); letter-spacing: -.02em; }
.v-case--featured .v-text { font-size: 16px; }
.v-case__tags { display: flex; flex-wrap: wrap; gap: 8px; }

.v-cases__empty { grid-column: 1 / -1; padding: 40px; text-align: center; color: var(--v-faint); border: 1px dashed var(--v-line-strong); border-radius: var(--v-radius); }

@media (max-width: 1080px) { .v-cases, .v-cases--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px) {
  .v-case--featured { flex-direction: column; }
  .v-case--featured .v-case__media { flex: none; aspect-ratio: 16 / 10; min-height: 0; }
  .v-case--featured .v-case__body { padding: 26px; }
}
@media (max-width: 620px) { .v-cases, .v-cases--2 { grid-template-columns: minmax(0, 1fr); } }

/* ---------------------------------------------------------------------
   9. Cómo trabajamos · Ingeniería
   --------------------------------------------------------------------- */
.v-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 32px; list-style: none; margin: 0; padding: 0; }
.v-step { display: flex; flex-direction: column; gap: 12px; padding-top: 22px; border-top: 1px solid var(--v-line-strong); }
.v-step__num { font-family: var(--v-font-mono); font-size: 13px; color: var(--v-accent-text); }

.v-principles-wrap { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: 72px; align-items: start; }
.v-principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.v-principle {
  display: flex; flex-direction: column; gap: 10px; padding: 26px;
  border-radius: var(--v-radius); background: var(--v-surface); border: 1px solid var(--v-line);
}
.v-principle i { color: var(--v-accent-text); font-size: 18px; margin-bottom: 4px; }
.v-stack { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

@media (max-width: 980px) {
  .v-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v-principles-wrap { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}
@media (max-width: 620px) {
  .v-steps, .v-principles { grid-template-columns: minmax(0, 1fr); }
}

/* ---------------------------------------------------------------------
   10. Precios
   --------------------------------------------------------------------- */
.v-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; align-items: stretch; }
.v-plan {
  position: relative; display: flex; flex-direction: column; gap: 20px;
  padding: 32px 26px; border-radius: 18px;
  background: var(--v-surface); border: 1px solid var(--v-line);
}
.v-plan--highlight { border-color: var(--v-accent-edge); background: linear-gradient(var(--v-surface), var(--v-surface)) padding-box; box-shadow: 0 0 0 1px var(--v-accent-edge), var(--v-shadow); }
.v-plan__badge {
  position: absolute; top: -13px; left: 26px;
  display: inline-flex; align-items: center; height: 26px; padding: 0 12px; border-radius: 999px;
  background: var(--v-accent); color: #07080D; font-size: 12px; font-weight: 600;
}
html[data-theme="light"] .v-plan__badge { background: #0E7490; color: #FFFFFF; }
.v-plan__price {
  display: flex; align-items: baseline; flex-wrap: nowrap; gap: 4px;
  white-space: nowrap; font-family: var(--v-font-display); color: var(--v-text);
}
.v-plan__amount { font-size: clamp(34px, 3vw, 42px); font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.v-plan__currency { font-size: 22px; font-weight: 600; }
.v-plan__cycle { margin-left: 6px; font-family: var(--v-font-body); font-size: 14px; color: var(--v-faint); }
.v-plan ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.v-plan li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.45; color: var(--v-text-2); }
.v-plan li i { flex-shrink: 0; margin-top: 3px; font-size: 12px; color: var(--v-accent-text); }
.v-plan .v-btn { margin-top: auto; }
.v-plans__note { margin: 28px 0 0; text-align: center; font-size: 14px; color: var(--v-faint); }

/* ---------------------------------------------------------------------
   11. FAQ
   --------------------------------------------------------------------- */
.v-faq-wrap { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: 80px; align-items: start; }
.v-faq { display: flex; flex-direction: column; }
.v-faq__item { border-bottom: 1px solid var(--v-line); }
.v-faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; width: 100%;
  padding: 24px 0; border: 0; background: none; cursor: pointer; text-align: left;
  font-family: var(--v-font-body); font-size: 18px; font-weight: 600; color: var(--v-text);
}
.v-faq__icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--v-line-strong); color: var(--v-faint); transition: transform .25s ease;
}
.v-faq__item.open .v-faq__icon { transform: rotate(45deg); color: var(--v-text); }
.v-faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.v-faq__item.open .v-faq__a { grid-template-rows: 1fr; }
.v-faq__a > div { overflow: hidden; }
.v-faq__a p { margin: 0 0 24px; max-width: 680px; font-size: 15px; line-height: 1.65; color: var(--v-muted); }

@media (max-width: 980px) { .v-faq-wrap { grid-template-columns: minmax(0, 1fr); gap: 32px; } }

/* ---------------------------------------------------------------------
   12. Contacto
   --------------------------------------------------------------------- */
.v-contact { display: grid; grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: 80px; align-items: start; }
.v-contact__intro { display: flex; flex-direction: column; gap: 22px; }
.v-contact__list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.v-contact__list li, .v-contact__list a { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--v-text-2); text-decoration: none; word-break: break-word; }
.v-contact__list a:hover { color: var(--v-text); }
.v-contact__list i { width: 20px; text-align: center; color: var(--v-faint); }

.v-form {
  display: flex; flex-direction: column; gap: 18px;
  padding: 36px; border-radius: var(--v-radius-lg);
  background: var(--v-surface); border: 1px solid var(--v-line);
}
.v-form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.v-field { display: flex; flex-direction: column; gap: 8px; }
.v-field label { font-size: 14px; font-weight: 500; color: var(--v-text-2); }
.v-field .v-optional { font-weight: 400; color: var(--v-faint); }
.v-field input, .v-field select, .v-field textarea {
  width: 100%; box-sizing: border-box;
  min-height: 48px; padding: 12px 14px; border-radius: var(--v-radius-sm);
  border: 1px solid var(--v-line-strong); background: var(--v-bg); color: var(--v-text);
  font-family: var(--v-font-body); font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.v-field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.v-field input:focus, .v-field select:focus, .v-field textarea:focus {
  outline: none; border-color: var(--v-accent-text); box-shadow: 0 0 0 3px var(--v-accent-soft);
}
.v-field input[aria-invalid="true"], .v-field textarea[aria-invalid="true"] { border-color: #E5484D; }
.v-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--v-muted); }
.v-consent input { width: 18px; height: 18px; margin: 2px 0 0; flex-shrink: 0; accent-color: var(--v-accent-text); }
.v-consent a { color: var(--v-text-2); }
.v-form__note { margin: 0; font-size: 13px; color: var(--v-faint); }
.v-form__status { font-size: 14px; line-height: 1.5; border-radius: var(--v-radius-sm); }
.v-form__status:empty { display: none; }
.v-form__status.ok, .v-form__status.err, .v-form__status.loading { padding: 12px 14px; }
.v-form__status.ok { background: var(--v-accent-soft); color: var(--v-accent-text); border: 1px solid var(--v-accent-edge); }
.v-form__status.err { background: rgba(229, 72, 77, .10); color: #F2555A; border: 1px solid rgba(229, 72, 77, .35); }
html[data-theme="light"] .v-form__status.err { color: #B42318; }
.v-form__status.loading { background: var(--v-surface-2); color: var(--v-muted); }
.v-layer { font-size: 13px; line-height: 1.55; color: var(--v-faint); }
.v-layer summary { cursor: pointer; color: var(--v-muted); font-weight: 500; }
.v-layer ul { margin: 10px 0 0; padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }
.v-layer a { color: var(--v-text-2); }
.v-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

@media (max-width: 980px) { .v-contact { grid-template-columns: minmax(0, 1fr); gap: 40px; } }
@media (max-width: 560px) {
  .v-form { padding: 22px; }
  .v-form__row { grid-template-columns: minmax(0, 1fr); }
}

/* ---------------------------------------------------------------------
   13. Pie
   --------------------------------------------------------------------- */
.site-footer { padding: 80px 0 40px; background: var(--v-bg-2); border-top: 1px solid var(--v-line-soft); }
html:not([data-theme="light"]) .site-footer { background: #05060A; }
.site-footer__top { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: 64px; }
.site-footer__about { margin: 14px 0 0; font-size: 14px; line-height: 1.6; color: var(--v-faint); max-width: 320px; }
.site-footer__cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.site-footer__col h2 { margin: 0 0 14px; font-family: var(--v-font-body); font-size: 14px; font-weight: 600; color: var(--v-text); }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { font-size: 14px; color: var(--v-faint); text-decoration: none; }
.site-footer__col a:hover { color: var(--v-text); }
.site-footer__social { display: flex; gap: 8px; margin-top: 20px; }
.site-footer__social a {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 10px; border: 1px solid var(--v-line-strong); color: var(--v-muted); text-decoration: none;
}
.site-footer__social a:hover { color: var(--v-text); border-color: var(--v-faint); }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--v-line-soft);
  font-size: 13px; color: var(--v-faint);
}

@media (max-width: 980px) {
  .site-footer__top { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .site-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------------------------------------------------------------------
   14. Armonización de las páginas con clases antiguas
   --------------------------------------------------------------------- */
.display-serif, .section-title, .legal-head h1, .product-hero-title, .project-hero h1, .error-code {
  font-family: var(--v-font-display) !important;
  letter-spacing: -.03em;
}
.section-title em, .legal-head h1 em, .hero-title em, .display-serif em {
  font-style: normal;
  background: var(--v-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  font-family: var(--v-font-mono) !important; font-size: 12px !important; letter-spacing: .16em !important;
  text-transform: uppercase; color: var(--v-accent-text) !important;
}
.eyebrow::before, .eyebrow::after { display: none !important; }
.btn.btn-gold {
  background: var(--v-btn-bg) !important; color: var(--v-btn-fg) !important;
  border: 1px solid transparent !important; box-shadow: none !important; border-radius: 12px !important;
}
.btn.btn-gold:hover { background: var(--v-btn-bg-hover) !important; }
.btn.btn-ghost {
  background: transparent !important; color: var(--v-text) !important;
  border: 1px solid var(--v-line-strong) !important; border-radius: 12px !important;
}
.legal-body a, .muted a { color: var(--v-accent-text); }
.legal-page { padding-top: calc(var(--v-header-h) + 72px) !important; }

/* ---------------------------------------------------------------------
   15. Páginas interiores: producto y caso (v10.1)
   --------------------------------------------------------------------- */
.v-page-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--v-header-h) + 56px) 0 96px;
}
.v-page-hero .v-product__glow { top: 0; }
.v-crumbs { position: relative; margin-bottom: 40px; }
.v-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; font-size: 14px; color: var(--v-faint); }
.v-crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--v-line-strong); }
.v-crumbs a { color: var(--v-muted); text-decoration: none; }
.v-crumbs a:hover { color: var(--v-text); }
.v-crumbs [aria-current] { color: var(--v-text-2); }
.v-page-hero .v-product__grid { align-items: center; }
.v-page-hero .v-h1 { font-size: clamp(38px, 4.6vw, 58px); }

.v-features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; list-style: none; margin: 0; padding: 0; }
.v-features--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v-feature {
  display: flex; gap: 16px; align-items: flex-start; padding: 26px;
  border-radius: var(--v-radius); background: var(--v-surface); border: 1px solid var(--v-line);
}
.v-feature__icon {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--v-accent-soft); border: 1px solid var(--v-accent-edge); color: var(--v-accent-text); font-size: 15px;
}
.v-feature__text { font-size: 16px; line-height: 1.5; color: var(--v-text); font-weight: 500; padding-top: 8px; }

.v-prose { max-width: 760px; font-size: 17px; line-height: 1.75; color: var(--v-text-2); }
.v-prose p { margin: 0 0 1.1em; }
.v-prose p:last-child { margin-bottom: 0; }

.v-cta-band {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: center;
  padding: 56px; border-radius: var(--v-radius-lg);
  background: var(--v-surface); border: 1px solid var(--v-line);
}
.v-cta-band::before {
  content: ""; position: absolute; right: -120px; top: -160px; width: 520px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, var(--v-glow-a), transparent 68%); pointer-events: none;
}
.v-cta-band > * { position: relative; }
.v-cta-band__copy { display: flex; flex-direction: column; gap: 14px; max-width: 620px; }
.v-cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.v-waitlist { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 480px); gap: 64px; align-items: start; }
.v-waitlist__intro { display: flex; flex-direction: column; gap: 18px; }
.v-inline-field { display: flex; gap: 10px; }
.v-inline-field input { flex: 1 1 auto; min-width: 0; }

/* Caso */
.v-case-hero { padding: calc(var(--v-header-h) + 56px) 0 64px; }
.v-case-hero__head { display: flex; flex-direction: column; gap: 20px; max-width: 860px; }
.v-case-hero .v-h1 { font-size: clamp(36px, 4.4vw, 56px); }
.v-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0;
  margin: 44px 0 0; padding: 0; list-style: none;
  border-top: 1px solid var(--v-line); border-bottom: 1px solid var(--v-line);
}
.v-facts li { display: flex; flex-direction: column; gap: 6px; padding: 20px 24px 20px 0; }
.v-facts li + li { padding-left: 24px; border-left: 1px solid var(--v-line); }
.v-facts small { font-family: var(--v-font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--v-faint); }
.v-facts strong { font-size: 16px; font-weight: 600; color: var(--v-text); }
.v-case-cover {
  margin-top: 48px; border-radius: var(--v-radius-lg); overflow: hidden;
  background: var(--v-surface-2); border: 1px solid var(--v-line); box-shadow: var(--v-shadow);
}
.v-case-cover img { display: block; width: 100%; height: auto; max-height: 640px; object-fit: cover; }

.v-case-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 64px; align-items: start; }
.v-case-main { display: flex; flex-direction: column; gap: 56px; min-width: 0; }
.v-block { display: flex; flex-direction: column; gap: 18px; }
.v-block__head { display: flex; align-items: baseline; gap: 14px; }
.v-block__num { font-family: var(--v-font-mono); font-size: 13px; color: var(--v-accent-text); }
.v-block .v-h2 { font-size: clamp(24px, 2.4vw, 30px); }
.v-block .v-checks li { font-size: 16px; }

.v-aside { position: sticky; top: calc(var(--v-header-h) + 24px); display: flex; flex-direction: column; gap: 16px; }
.v-aside-card {
  display: flex; flex-direction: column; gap: 14px; padding: 24px;
  border-radius: var(--v-radius); background: var(--v-surface); border: 1px solid var(--v-line);
}
.v-aside-card__label { font-family: var(--v-font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--v-faint); }
.v-aside-card__price { font-family: var(--v-font-display); font-size: 34px; font-weight: 600; letter-spacing: -.03em; color: var(--v-text); line-height: 1.1; }
.v-aside-card .v-text { font-size: 14px; }
.v-aside-card ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--v-text-2); }
.v-aside-card .v-btn { width: 100%; }
.v-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.v-chip i { margin-right: 6px; color: var(--v-faint); }

/* Galería (reutiliza el carrusel existente con la nueva piel) */
.v-block .carousel { border-radius: var(--v-radius-lg); background: var(--v-surface); border-color: var(--v-line); }
.v-block .carousel-slide { background: var(--v-surface-2); }
.v-block .carousel-caption { background: linear-gradient(transparent, rgba(7, 8, 13, .85)); color: #F3F5F9; font-size: 14px; }
.v-block .carousel-btn { background: rgba(7, 8, 13, .7); border: 1px solid rgba(255, 255, 255, .14); color: #F3F5F9; }
.v-block .carousel-dot.active { background: var(--v-accent); }

@media (max-width: 1080px) {
  .v-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v-case-layout { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .v-aside { position: static; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}
@media (max-width: 860px) {
  .v-cta-band { grid-template-columns: minmax(0, 1fr); padding: 32px; gap: 24px; }
  .v-waitlist { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .v-facts li, .v-facts li + li { padding: 16px 0; border-left: 0; }
  .v-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .v-features, .v-features--2 { grid-template-columns: minmax(0, 1fr); }
  .v-page-hero { padding-bottom: 64px; }
  .v-cta-band__actions .v-btn { width: 100%; }
  .v-inline-field { flex-direction: column; }
}

/* ---------------------------------------------------------------------
   16. Galería de casos (v10.4) — autónoma, no depende de styles.css
   Sin JS: rejilla de imágenes. Con JS: visor + miniaturas + ampliación.
   --------------------------------------------------------------------- */
.v-gallery { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.v-gallery__stage { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.v-gallery__slide { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.v-gallery__slide figcaption { font-size: 13px; color: var(--v-faint); }
.v-gallery__zoom {
  display: block; width: 100%; padding: 0; border: 1px solid var(--v-line); border-radius: var(--v-radius);
  background: var(--v-surface-2); cursor: zoom-in; overflow: hidden; aspect-ratio: 16 / 10;
}
.v-gallery__zoom img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.v-gallery__zoom:hover img { transform: scale(1.03); }
.v-gallery__nav, .v-gallery__count, .v-gallery__thumbs { display: none; }

.v-gallery.is-ready .v-gallery__stage {
  position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: var(--v-radius-lg); background: var(--v-surface-2); border: 1px solid var(--v-line);
}
.v-gallery.is-ready .v-gallery__slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .45s ease, visibility 0s linear .45s;
}
.v-gallery.is-ready .v-gallery__slide.is-active { opacity: 1; visibility: visible; transition: opacity .45s ease; }
.v-gallery.is-ready .v-gallery__zoom { height: 100%; aspect-ratio: auto; border: 0; border-radius: 0; background: transparent; }
.v-gallery.is-ready .v-gallery__zoom img { object-fit: contain; }
.v-gallery.is-ready .v-gallery__zoom:hover img { transform: none; }
.v-gallery.is-ready .v-gallery__slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 20px 16px;
  background: linear-gradient(transparent, rgba(7, 8, 13, .82)); color: #F3F5F9; font-size: 14px; pointer-events: none;
}
.v-gallery.is-ready .v-gallery__nav {
  position: absolute; top: 50%; z-index: 2; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-top: -22px; border-radius: 50%; cursor: pointer;
  background: rgba(7, 8, 13, .72); color: #F3F5F9; border: 1px solid rgba(255, 255, 255, .16);
  transition: background-color .2s ease, transform .2s ease;
}
.v-gallery.is-ready .v-gallery__nav:hover { background: rgba(7, 8, 13, .9); transform: scale(1.06); }
.v-gallery__nav--prev { left: 14px; }
.v-gallery__nav--next { right: 14px; }
.v-gallery.is-ready .v-gallery__count {
  position: absolute; right: 14px; top: 14px; z-index: 2; display: inline-block;
  padding: 4px 10px; border-radius: 999px; font: 500 12px var(--v-font-mono);
  background: rgba(7, 8, 13, .72); color: #C9D0DD;
}
.v-gallery__count b { color: #F3F5F9; font-weight: 600; }
.v-gallery.is-ready .v-gallery__thumbs {
  display: flex; gap: 10px; overflow-x: auto; padding: 2px 2px 6px; scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.v-gallery__thumb {
  flex: 0 0 104px; height: 66px; padding: 0; border-radius: 10px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--v-line); background: var(--v-surface-2); opacity: .6; scroll-snap-align: start;
  transition: opacity .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.v-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v-gallery__thumb:hover { opacity: .9; }
.v-gallery__thumb.is-active { opacity: 1; border-color: var(--v-accent-edge); box-shadow: 0 0 0 2px var(--v-accent-soft); }

/* Visor ampliado */
.v-lightbox {
  position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center;
  padding: 64px 72px; background: rgba(4, 5, 9, .92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.v-lightbox.is-open { display: flex; }
.v-lightbox figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 100%; max-height: 100%; }
.v-lightbox img { max-width: 100%; max-height: calc(100vh - 170px); object-fit: contain; border-radius: 10px; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.v-lightbox figcaption { color: #C9D0DD; font-size: 14px; text-align: center; }
.v-lightbox__btn {
  position: absolute; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .08); color: #F3F5F9; border: 1px solid rgba(255, 255, 255, .16);
}
.v-lightbox__btn:hover { background: rgba(255, 255, 255, .16); }
.v-lightbox__close { top: 16px; right: 16px; }
.v-lightbox__prev { left: 16px; top: 50%; margin-top: -24px; }
.v-lightbox__next { right: 16px; top: 50%; margin-top: -24px; }
.v-lightbox__count { position: absolute; top: 28px; left: 50%; transform: translateX(-50%); font: 500 13px var(--v-font-mono); color: #C9D0DD; }
@media (max-width: 620px) {
  .v-lightbox { padding: 64px 12px; }
  .v-lightbox__prev, .v-lightbox__next { top: auto; bottom: 16px; margin-top: 0; }
  .v-gallery.is-ready .v-gallery__nav { width: 38px; height: 38px; margin-top: -19px; }
  .v-gallery__thumb { flex-basis: 84px; height: 54px; }
}
.v-prose img { max-width: 100%; height: auto; }
.v-gallery img { max-width: 100%; }
