/* ===========================================================
   Bistro Cinema Hermosa — sistema visual
   Tipo:  Archivo (display / marquesina) · Hanken Grotesk (texto) · Space Mono (códigos)
   Color: carbón neutro cálido + dorado marquesina + ascua
   =========================================================== */

:root {
  /* superficies — carbón neutro, sin tinte morado */
  --bg:        #0a0a0b;
  --bg-1:      #101011;
  --panel:     #161618;
  --panel-2:   #1d1d20;
  --panel-3:   #252529;
  --line:      rgba(255, 252, 245, 0.07);
  --line-2:    rgba(255, 252, 245, 0.13);
  --line-3:    rgba(255, 252, 245, 0.22);

  /* tinta */
  --ink:       #f7f5f0;
  --ink-soft:  #c9c6c0;
  --muted:     #8f8c87;
  --faint:     #615f5b;

  /* acentos */
  --gold:      #e9b94d;
  --gold-2:    #f7d889;
  --gold-deep: #a87c2c;
  --gold-ink:  #1c1505;
  --ember:     #ff6a4d;
  --ember-2:   #ff8f76;

  --ok:        #5ac68d;

  --shadow:    0 30px 70px -28px rgba(0,0,0,0.9);
  --shadow-sm: 0 12px 32px -18px rgba(0,0,0,0.85);
  --shadow-gold: 0 14px 34px -14px rgba(233,185,77,0.45);

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 24px;

  --max: 1320px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--gold-ink); }

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: "Archivo", "Hanken Grotesk", sans-serif;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
}
.mono { font-family: "Space Mono", ui-monospace, monospace; }

/* etiqueta de sección — limpia, sin monospace, con guía */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ---------- App shell / scroll ---------- */
#root { min-height: 100vh; }
/* image-slot es de solo lectura en el sitio publicado: permitir scroll al deslizar el dedo sobre la imagen
   (su shadow DOM fija touch-action:none para el modo de edición, que aquí no aplica) */
image-slot::part(image) { touch-action: pan-y !important; }
.app { min-height: 100vh; display: flex; flex-direction: column; position: relative; }
.app-main { flex: 1; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid transparent; border-radius: 9px;
  padding: 13px 22px; font-weight: 700; font-size: 15px;
  letter-spacing: -0.005em; color: var(--ink);
  transition: transform .18s var(--ease), background .2s, border-color .2s, box-shadow .2s, filter .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--gold-ink); border-color: var(--gold-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.02); border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--line-3); background: rgba(255,255,255,.05); }
.btn-solid { background: var(--panel-2); border-color: var(--line-2); }
.btn-solid:hover { background: var(--panel-3); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 9px 15px; font-size: 13.5px; border-radius: 8px; }

/* ---------- Chips / badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: 4px 9px; border-radius: 5px;
  border: 1px solid var(--line-2); color: var(--ink-soft); white-space: nowrap;
}
.badge.fmt-premium { color: var(--gold-2); border-color: rgba(233,185,77,.42); background: rgba(233,185,77,.07); }
.badge.fmt-3D { color: var(--ember-2); border-color: rgba(255,106,77,.4); background: rgba(255,106,77,.06); }
.badge.fmt-JUNIOR { color: #6fd3c2; border-color: rgba(77,184,168,.4); }
.rating {
  display: inline-grid; place-items: center; min-width: 30px; height: 24px;
  padding: 0 6px; border-radius: 5px; font-weight: 800; font-size: 12px;
  letter-spacing: .02em;
  background: var(--panel-2); border: 1px solid var(--line-2); color: var(--ink);
}
.rating.A   { color: #82dba4; border-color: rgba(90,198,141,.45); }
.rating.B   { color: var(--gold-2); border-color: rgba(233,185,77,.42); }
.rating.B15 { color: var(--ember-2); border-color: rgba(255,106,77,.45); }
.rating.C   { color: #ff7a7a; border-color: rgba(255,90,90,.45); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px) saturate(1.2);
  background: linear-gradient(180deg, rgba(10,10,11,.94), rgba(10,10,11,.66));
  border-bottom: 1px solid var(--line);
}
.hdr-row { display: flex; align-items: center; gap: 30px; height: 72px; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: var(--ink-soft); font-weight: 600; font-size: 15px; position: relative; padding: 6px 0; transition: color .18s; }
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  border-radius: 2px; background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s var(--ease);
}
.nav a:hover::after {
  transform: scaleX(0.6);
  transform-origin: left;
}
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  border-radius: 2px; background: var(--gold);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
/* Eventos & Empresas: link destacado como oferta B2B (pill dorado sutil) */
.nav a.nav-cta {
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(233,185,77,.32);
  background: rgba(233,185,77,.06);
  color: var(--gold-2); font-weight: 700;
  transition: border-color .18s, background .18s, color .18s;
}
.nav a.nav-cta:hover { border-color: var(--gold); background: rgba(233,185,77,.12); color: var(--gold-2); }
.nav a.nav-cta.active { color: var(--gold-2); }
.nav a.nav-cta::after, .nav a.nav-cta.active::after { display: none; }
.hdr-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 11px; cursor: pointer; }
.logo-mark { width: 32px; height: 32px; position: relative; flex: none; display: grid; place-items: center; }
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-word {
  font-family: "Archivo", sans-serif; font-weight: 900;
  font-size: 22px; letter-spacing: .02em; color: var(--ink);
}
.logo-word b { color: var(--gold); font-weight: 900; }

/* location pill */
.loc {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-2); border-radius: 9px; padding: 9px 14px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft); background: var(--panel);
  transition: border-color .18s, color .18s;
}
.loc:hover { border-color: var(--line-3); color: var(--ink); }
.loc-name { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* barra de navegación inferior (móvil) */
.mtabs { display: none; }

/* ---------- Poster (teaser one-sheet) con slot rellenable ---------- */
.poster {
  position: relative; aspect-ratio: 2/3; border-radius: var(--r);
  overflow: hidden; background: #141416;
}
.poster-art {
  position: absolute; inset: 0;
  background:
    radial-gradient(125% 90% at 28% 8%, color-mix(in srgb, var(--t0) 78%, #fff 22%), transparent 55%),
    linear-gradient(165deg, var(--t0) 0%, var(--t1) 96%);
}
.poster-sheen {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,.12) 0%, transparent 28%, transparent 72%, rgba(0,0,0,.22) 100%);
}
.poster-frame {
  position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px; pointer-events: none;
}
.poster image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 2; }
.poster-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }
.poster image-slot::part(frame) { background: transparent; }
.poster image-slot::part(ring) { display: none; }
.poster image-slot::part(empty) { display: none; }
.omelette-active .poster:hover image-slot:not([data-filled])::part(empty) {
  display: flex; background: rgba(10,10,11,.5); color: var(--gold);
}
.poster-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: space-between; padding: 18px 17px; pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.02) 46%, rgba(0,0,0,.14) 100%);
}
.poster-fallback .pf-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.poster-fallback .pf-dir {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.66); max-width: 64%; line-height: 1.4;
}
.poster-fallback .pf-title {
  font-family: "Archivo", sans-serif; font-weight: 900;
  font-size: clamp(20px, 2.3vw, 30px); line-height: .92; letter-spacing: -.03em;
  color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.5); text-wrap: balance;
}
.poster-fallback .pf-genre {
  font-size: 11px; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.58); margin-top: 9px;
}

/* ---------- utilidades ---------- */
.row { display: flex; align-items: center; }
.gap8 { gap: 8px; } .gap12 { gap: 12px; } .gap16 { gap: 16px; }
.muted { color: var(--muted); }
.soft { color: var(--ink-soft); }
.center { text-align: center; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.dot-sep { color: var(--faint); }

.fade-up { animation: fadeUp .55s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes heroProg { from { width: 0; } to { width: 100%; } }
@media (prefers-reduced-motion: reduce) { .fade-up { animation: none; } * { scroll-behavior: auto !important; } }

/* scrollbar */
::-webkit-scrollbar { height: 10px; width: 10px; }
::-webkit-scrollbar-thumb { background: #2a2a2e; border-radius: 10px; border: 2px solid var(--bg); }
::-webkit-scrollbar-track { background: transparent; }

/* ---------- splash de carga ---------- */
#boot {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(120% 90% at 50% 30%, #141416 0%, var(--bg) 70%);
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
html.app-ready #boot { opacity: 0; visibility: hidden; pointer-events: none; }
.boot-logo { display: flex; align-items: center; gap: 12px; }
.boot-mark { width: 44px; height: 44px; display: grid; place-items: center; }
.boot-mark svg { width: 100%; height: 100%; animation: bootPulse 2.4s ease-in-out infinite; }
.boot-word { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 30px; letter-spacing: .02em; color: var(--ink); }
.boot-word b { color: var(--gold); }
.boot-bar { display: block; width: 120px; height: 2px; border-radius: 2px; margin-top: 28px; background: rgba(255,252,245,.08); overflow: hidden; }
.boot-bar i { display: block; width: 38%; height: 100%; border-radius: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: bootSlide 1.15s var(--ease) infinite; }
@keyframes bootPulse { 0%,100% { opacity: .82; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes bootSlide { from { transform: translateX(-130%); } to { transform: translateX(330%); } }

/* ---------- scroll-reveal (lo controla reveal.js; sin JS nada queda oculto) ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- brillo sutil del CTA dorado ---------- */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg); pointer-events: none; opacity: 0;
}
.btn-gold:hover::after { animation: ctaSheen .85s var(--ease); }
@keyframes ctaSheen { 0% { left: -60%; opacity: 0; } 18% { opacity: 1; } 100% { left: 130%; opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .boot-mark svg, .boot-bar i { animation: none; }
  .btn-gold:hover::after { animation: none; }
}

/* ===========================================================
   ASTRA PREMIUM UPGRADE — Estilos Adicionales
   =========================================================== */

/* Experiencias Premium Badges & Cards Neon Glow */
.badge.fmt-premium {
  border: 1px solid rgba(233,185,77,0.5);
  background: linear-gradient(135deg, rgba(233,185,77,0.15) 0%, rgba(28,21,5,0.4) 100%);
  box-shadow: 0 0 10px rgba(233,185,77,0.15);
  text-shadow: 0 0 4px rgba(233,185,77,0.5);
}
.badge.fmt-3D {
  border: 1px solid rgba(255,106,77,0.5);
  background: linear-gradient(135deg, rgba(255,106,77,0.15) 0%, rgba(20,5,5,0.4) 100%);
  box-shadow: 0 0 10px rgba(255,106,77,0.15);
  text-shadow: 0 0 4px rgba(255,106,77,0.5);
}
.badge.fmt-JUNIOR {
  border: 1px solid rgba(77,184,168,0.5);
  background: linear-gradient(135deg, rgba(77,184,168,0.15) 0%, rgba(5,20,17,0.4) 100%);
  box-shadow: 0 0 10px rgba(77,184,168,0.15);
  text-shadow: 0 0 4px rgba(77,184,168,0.5);
}

/* Buscador Rápido en Header */
.hdr-search-container {
  position: relative;
  display: flex;
  align-items: center;
}
.hdr-search-input {
  width: 0;
  opacity: 0;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 6px 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  transition: width 0.3s var(--ease), opacity 0.3s var(--ease), padding 0.3s var(--ease);
  outline: none;
}
.hdr-search-input.open {
  width: 200px;
  opacity: 1;
  padding: 6px 14px 6px 36px;
  margin-right: -28px;
}
.search-icon-btn {
  position: relative;
  z-index: 2;
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: var(--panel);
  border: 1px solid var(--line-3);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  z-index: 99;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: fadeUp 0.2s var(--ease);
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
  cursor: pointer;
  text-align: left;
  width: 100%;
  background: none;
  border-left: 0;
  border-right: 0;
  color: inherit;
}
.search-result-item:hover {
  background: var(--panel-2);
}
.search-result-item img {
  width: 36px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--bg-1);
}
.search-result-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.search-result-title {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: center;
}
.search-no-results {
  padding: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* Modal de Cuenta / Club ASTRA */
.acct-modal {
  width: min(540px, 100%);
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  max-height: 90vh;
  overflow-y: auto;
}

/* Tarjeta de Membresía 3D Giroscópica */
.card-3d-wrapper {
  perspective: 1000px;
  margin: 20px auto;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1.586/1; /* Estándar CR80 */
}
.card-3d {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  border: 1px solid rgba(233,185,77,0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 15px rgba(233,185,77,0.1);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}
.card-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 70%);
  background-size: 200% 200%;
  background-position: var(--shine-x, 0%) var(--shine-y, 0%);
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 5;
}
.card-bg-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(233,185,77,0.15) 0%, transparent 70%);
  top: -30px;
  right: -30px;
  pointer-events: none;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transform: translateZ(30px);
}
.card-logo {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--ink);
}
.card-logo b {
  color: var(--gold);
}
.card-tier {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(233,185,77,0.4);
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(233,185,77,0.1);
}
.card-chip {
  width: 42px;
  height: 32px;
  background: linear-gradient(135deg, #f7d889 0%, #b88a2e 100%);
  border-radius: 6px;
  margin-top: 14px;
  box-shadow: inset 0 1px 3px rgba(255,255,255,0.3);
  transform: translateZ(25px);
  position: relative;
}
.card-chip::after {
  content: "";
  position: absolute;
  inset: 4px 8px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 3px;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transform: translateZ(40px);
}
.card-holder {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-label {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.card-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.card-number {
  font-family: "Space Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

/* Panel de Puntos y Progreso */
.points-tracker {
  margin-top: 24px;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 16px;
}
.points-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.points-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
}
.points-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
}
.points-bar-bg {
  width: 100%;
  height: 6px;
  background: var(--bg-1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.points-bar-fg {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
  border-radius: 3px;
}
.points-footer {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}

/* Historial de Tickets */
.history-title {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--ink);
}
.history-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.history-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.history-item-poster {
  width: 40px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--bg-1);
}
.history-item-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.history-item-title {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.history-item-meta {
  font-size: 12px;
  color: var(--muted);
}
.history-item-qr {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 4px;
  padding: 3px;
  cursor: pointer;
  transition: transform 0.2s;
}
.history-item-qr:hover {
  transform: scale(1.1);
}
.history-item-qr img {
  width: 100%;
  height: 100%;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--panel-3);
  border-radius: 4px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Logo Hover Interaction Glow */
.logo:hover .logo-mark svg path {
  fill: var(--gold-2) !important;
  filter: drop-shadow(0 0 6px var(--gold));
  transition: all 0.3s ease;
}
.logo:hover .logo-mark svg circle {
  stroke: var(--gold) !important;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.logo:hover .logo-word {
  color: #fff;
  text-shadow: 0 0 4px rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

/* Logo de marca (imagen real del cliente) */
.logo-img { height: 46px; width: auto; display: block; object-fit: contain; transition: transform .3s ease, filter .3s ease; }
.logo:hover .logo-img { transform: scale(1.03); filter: brightness(1.08) drop-shadow(0 0 10px rgba(233,185,77,.28)); }
.boot-img { height: 132px; width: auto; display: block; animation: bootPulse 2.4s ease-in-out infinite; }
.card-logo-img { height: 44px; width: auto; display: block; filter: drop-shadow(0 1px 3px rgba(0,0,0,.45)); }

@media (max-width: 560px) {
  .logo-img { height: 38px; }
  .boot-img { height: 104px; }
}
@media (prefers-reduced-motion: reduce) {
  .boot-img { animation: none; }
}
