/* ============================================================
   POLLOCELL — sistema de componentes
   section-heading · neon-card · varnish-button
   Se carga después de style.css y fx.css.
   ============================================================ */

:root {
  --pollocell-yellow: #ffd000;
  --pollocell-yellow-bright: #ffe600;
  --pollocell-yellow-soft: rgba(255, 208, 0, .35);
  --pollocell-black: #030303;
  --pollocell-surface: #0a0a0a;
  --pollocell-card: rgba(10, 10, 10, .88);
  --pollocell-white: #ffffff;

  --neon: var(--pollocell-yellow);
  --primary: var(--pollocell-yellow);
  --primary-hover: var(--pollocell-yellow-bright);

  --neon-line: rgba(255, 208, 0, .55);
  --neon-out: 0 0 18px rgba(255, 208, 0, .22), 0 0 42px rgba(255, 208, 0, .1);
  --neon-out-hot: 0 0 26px rgba(255, 208, 0, .42), 0 0 70px rgba(255, 208, 0, .22);
  --neon-in: inset 0 0 22px rgba(255, 208, 0, .06);
  --neon-in-hot: inset 0 0 34px rgba(255, 208, 0, .13);
  --depth: 0 24px 60px rgba(0, 0, 0, .72);
  --ui-ease: cubic-bezier(.22, .68, .36, 1);
}

/* ============================================================
   1. TÍTULO DE SECCIÓN (siempre centrado)
   ============================================================ */
.section-heading {
  max-width: 780px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-heading .eyebrow { justify-content: center; margin-bottom: 16px; }
.section-heading h2,
.section-heading h1 { margin-bottom: 14px; }
.section-heading p {
  font-size: 1.02rem;
  margin: 0;
  max-width: 62ch;
}
.section-heading .head-rule {
  margin: 18px auto 0;
  background: linear-gradient(90deg, rgba(255, 208, 0, 0), var(--pollocell-yellow), rgba(255, 208, 0, 0));
  transform-origin: center;
}

/* el título de sección hereda el mismo acabado del hero */
.section-heading h2 .hl,
.section-heading h1 .hl { color: var(--pollocell-yellow); }

/* los encabezados antiguos alineados a la izquierda se centran igual */
.section-head { max-width: 780px; margin-inline: auto; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head .head-rule { margin-inline: auto; transform-origin: center;
  background: linear-gradient(90deg, rgba(255, 208, 0, 0), var(--pollocell-yellow), rgba(255, 208, 0, 0)); }
/* el bloque de texto del split conserva su alineación */
.split .section-head, .split-copy { text-align: left; margin-inline: 0; margin-bottom: 22px; max-width: none; }
.split .section-head .eyebrow { justify-content: flex-start; }
.split .section-head .head-rule { margin-inline: 0; transform-origin: left;
  background: linear-gradient(90deg, var(--pollocell-yellow), rgba(255, 208, 0, 0)); }

/* ============================================================
   2. TARJETA NEÓN (borde permanente + reacción al cursor)
   ============================================================ */
.neon-card,
.card,
.product,
.work,
.contact-item,
.faq-item,
.form-card,
.brand-card,
.stat,
.split-visual,
.social-cta,
.map-panel,
.empty-state,
.review,
.vitrina-card,
.cat-card,
.tik-card,
.step-card {
  position: relative;
  background: var(--pollocell-card);
  border: 1.5px solid var(--neon-line);
  border-radius: var(--radius, 18px);
  box-shadow: var(--neon-out), var(--neon-in), var(--depth);
  transition:
    transform .38s var(--ui-ease),
    box-shadow .38s var(--ui-ease),
    border-color .38s var(--ui-ease),
    background-color .38s var(--ui-ease);
}

/* el resplandor no se recorta: el brillo vive en una capa interior */
.neon-card > .neon-sheen,
.card::before,
.product::before,
.work::before,
.review::before,
.vitrina-card::before,
.cat-card::before,
.tik-card::before,
.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, .07) 47%, rgba(255, 232, 150, .16) 51%, transparent 62%);
  opacity: 0;
  transition: opacity .35s var(--ui-ease);
  pointer-events: none;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .neon-card:hover,
  .card:hover,
  .product:hover,
  .work:hover,
  .contact-item:hover,
  .brand-card:hover,
  .review:hover,
  .vitrina-card:hover,
  .cat-card:hover,
  .tik-card:hover,
  .step-card:hover {
    transform: translateY(-7px) scale(1.025);
    border-color: var(--pollocell-yellow);
    box-shadow: var(--neon-out-hot), var(--neon-in-hot), 0 32px 74px rgba(0, 0, 0, .78);
  }
  .neon-card:hover > .neon-sheen,
  .card:hover::before,
  .product:hover::before,
  .work:hover::before,
  .review:hover::before,
  .vitrina-card:hover::before,
  .cat-card:hover::before,
  .tik-card:hover::before { opacity: 1; }
}

/* el contenedor no debe recortar el resplandor de sus tarjetas */
.grid, .product-grid, .works-grid, .brand-grid, .stats, .reviews,
.vitrina-grid, .cat-grid, .tik-grid, .faq { overflow: visible; }

/* ============================================================
   3. BOTÓN CON BARNIZ
   ============================================================ */
.varnish-button,
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .28s var(--ui-ease), box-shadow .28s var(--ui-ease),
              background-color .28s var(--ui-ease), color .28s var(--ui-ease),
              border-color .28s var(--ui-ease);
}
.varnish-button,
.btn:not(.btn--ghost) {
  background: linear-gradient(160deg, var(--pollocell-yellow-bright), var(--pollocell-yellow) 58%, #e6b800);
  color: #0a0a0a;
  border: 1px solid rgba(255, 230, 0, .8);
  box-shadow: 0 12px 30px rgba(255, 208, 0, .26), 0 0 0 1px rgba(0, 0, 0, .2) inset;
}
/* reflejo diagonal que atraviesa el botón */
.varnish-button::after,
.btn::after {
  content: '';
  position: absolute;
  top: -60%;
  left: 0;
  width: 42%;
  height: 220%;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .5) 50%, transparent 70%);
  transform: translateX(-160%) rotate(14deg);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  animation: none;
}
.varnish-button:hover::after,
.btn:hover::after {
  opacity: 1;
  animation: varnishSweep .85s var(--ui-ease);
}
@keyframes varnishSweep {
  from { transform: translateX(-160%) rotate(14deg); }
  to { transform: translateX(320%) rotate(14deg); }
}
.varnish-button:hover,
.btn:not(.btn--ghost):hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(255, 208, 0, .38), 0 0 30px rgba(255, 208, 0, .3);
}
.varnish-button:active,
.btn:active { transform: translateY(0) scale(.985); }

.varnish-button--ghost,
.btn--ghost {
  background: rgba(3, 3, 3, .72);
  color: var(--pollocell-yellow);
  border: 1.5px solid var(--neon-line);
  box-shadow: var(--neon-out);
}
.varnish-button--ghost:hover,
.btn--ghost:hover {
  color: #0a0a0a;
  background: var(--pollocell-yellow);
  border-color: var(--pollocell-yellow);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(255, 208, 0, .34);
}
.btn--ghost::before { display: none; }

.varnish-button:focus-visible,
.btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; box-shadow: 0 0 0 5px rgba(255, 208, 0, .55); }

/* ============================================================
   4. HERO
   ============================================================ */
/* el título completo comparte el mismo acabado, no solo una parte */
.hero-title { position: relative; }
.hero-title .w {
  display: inline-block;
  background: linear-gradient(100deg, #ffffff 0%, #fff6cf 22%, var(--pollocell-yellow) 46%, var(--pollocell-yellow-bright) 62%, #fff3c0 78%, #ffffff 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 26px rgba(255, 208, 0, .34));
  animation: titleFlow 9s ease-in-out infinite;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title .w { color: var(--pollocell-yellow); -webkit-text-fill-color: currentColor; }
}
@keyframes titleFlow {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}
.hero-title .w::after { display: none; }

/* revelado con máscara, una sola vez */
.js .hero-title .w {
  opacity: 0;
  transform: translateY(30px);
  clip-path: inset(0 0 110% 0);
  filter: blur(12px) drop-shadow(0 0 26px rgba(255, 208, 0, .34));
  transition: opacity .85s var(--ui-ease), transform .95s var(--ui-ease),
              clip-path 1s var(--ui-ease), filter .9s var(--ui-ease);
}
.js .fx-hero-in .hero-title .w {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 -20% 0);
  filter: blur(0) drop-shadow(0 0 26px rgba(255, 208, 0, .34));
}

/* escena del hero */
.hero-frame {
  border-width: 2px;
  border-color: rgba(255, 208, 0, .55);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .7),
    0 0 34px rgba(255, 208, 0, .3),
    0 0 90px rgba(255, 208, 0, .18),
    inset 0 0 40px rgba(255, 208, 0, .07),
    0 34px 80px rgba(0, 0, 0, .82);
  transition: box-shadow .4s var(--ui-ease), border-color .4s var(--ui-ease), transform .4s var(--ui-ease);
}
.hero-frame img { transition: transform .7s var(--ui-ease); }
@media (hover: hover) and (pointer: fine) {
  .hero-scene:hover .hero-frame {
    border-color: var(--pollocell-yellow-bright);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, .7),
      0 0 54px rgba(255, 208, 0, .5),
      0 0 130px rgba(255, 208, 0, .3),
      inset 0 0 60px rgba(255, 208, 0, .12),
      0 40px 90px rgba(0, 0, 0, .85);
  }
  .hero-scene:hover .hero-frame img { transform: scale(1.06); }
  .hero-scene:hover .gloss { animation-duration: 2.6s; }
}
@media (hover: none) {
  .hero-scene:active .hero-frame img { transform: scale(1.04); }
}

/* ============================================================
   5. VITRINA Y ACCESORIOS
   ============================================================ */
.vitrina-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.vitrina-card { display: flex; flex-direction: column; overflow: hidden; text-align: left; padding: 0; }
.vitrina-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #151515, #070707);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 208, 0, .2);
}
.vitrina-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ui-ease); }
.vitrina-card:hover .vitrina-media img { transform: scale(1.06); }
.vitrina-media .ph { width: 100%; height: 100%; display: grid; place-items: center; color: #2f2f2f; }
.vitrina-media .ph svg { width: 52px; height: 52px; }
.vitrina-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
.vitrina-cat { font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-muted); }
.vitrina-name { font-family: var(--font-title); font-size: 1.04rem; font-weight: 600; margin: 0; line-height: 1.3; }
.vitrina-price { font-family: var(--font-title); font-weight: 700; color: var(--pollocell-yellow); font-size: 1.1rem; margin-top: 2px; }
.vitrina-price.is-ask { font-size: .9rem; color: var(--text-secondary); font-weight: 500; }
.vitrina-state {
  align-self: flex-start;
  font-size: .74rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 208, 0, .3);
  color: var(--pollocell-yellow);
  background: rgba(255, 208, 0, .08);
}
/* la tarjeta se abre completa; encima solo va el botón de agregar.
   Los selectores llevan la tarjeta por delante para ganarle a boost.css,
   que se carga después y redefine el tamaño de todos los botones. */
.vitrina-card { position: relative; }
.vitrina-card .vitrina-add {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  font-size: .88rem;
  gap: 8px;
}
.vitrina-card .vitrina-add svg { width: 17px; height: 17px; flex: none; }
.vitrina-card .vitrina-add[disabled] { opacity: .45; cursor: not-allowed; filter: grayscale(.6); }
/* confirmación breve al agregar */
.vitrina-card .vitrina-add.is-added {
  background: #25d366;
  border-color: #25d366;
  color: #06210f;
  box-shadow: 0 0 0 1px rgba(37, 211, 102, .6) inset, 0 0 16px rgba(37, 211, 102, .5);
}
.vitrina-open {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: inherit;
}
.vitrina-open:focus-visible { outline: 2px solid var(--pollocell-yellow); outline-offset: 3px; }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 20px); }
.cat-card {
  display: flex; align-items: center; gap: 15px;
  padding: 18px 20px;
  text-align: left;
  color: inherit;
}
.cat-card .ic {
  width: 46px; height: 46px; flex: none;
  border-radius: 13px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 208, 0, .4);
  background: rgba(255, 208, 0, .08);
  color: var(--pollocell-yellow);
  transition: background .3s var(--ui-ease), transform .3s var(--ui-ease);
}
.cat-card:hover .ic { background: rgba(255, 208, 0, .2); transform: scale(1.08); }
.cat-card .ic svg { width: 22px; height: 22px; }
.cat-card h3 { font-size: 1rem; margin: 0 0 2px; }
.cat-card p { font-size: .85rem; margin: 0; color: var(--text-muted); }
.cat-card .go { margin-left: auto; color: var(--pollocell-yellow); flex: none; }
.cat-card .go svg { width: 18px; height: 18px; transition: transform .28s var(--ui-ease); }
.cat-card:hover .go svg { transform: translateX(4px); }

/* ============================================================
   6. CARRUSEL INFINITO (marcas y testimonios)
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex;
  gap: clamp(12px, 1.4vw, 18px);
  width: max-content;
  will-change: transform;
  animation: marqueeRun var(--dur, 38s) linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee.is-dragging .marquee-track { animation-play-state: paused; }
@keyframes marqueeRun {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.marquee-item { flex: none; }

.brand-chip {
  display: grid;
  place-items: center;
  min-width: 168px;
  min-height: 88px;
  padding: 16px 26px;
  border-radius: 14px;
  border: 1.5px solid var(--neon-line);
  background: var(--pollocell-card);
  box-shadow: var(--neon-out), var(--neon-in);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.06rem;
  color: #d8d8d8;
  text-align: center;
  line-height: 1;
  transition: all .3s var(--ui-ease);
}
.brand-chip:hover {
  color: var(--pollocell-yellow);
  border-color: var(--pollocell-yellow);
  box-shadow: var(--neon-out-hot), var(--neon-in-hot);
  transform: translateY(-4px);
}

/* testimonios */
.review {
  width: 340px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.review-stars { display: flex; gap: 3px; color: var(--pollocell-yellow); }
.review-stars svg { width: 15px; height: 15px; }
.review-text { font-size: .93rem; color: var(--text-secondary); margin: 0; flex: 1; }
.review-foot { display: flex; align-items: center; gap: 11px; padding-top: 12px; border-top: 1px solid rgba(255, 208, 0, .18); }
.review-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 208, 0, .12);
  border: 1px solid rgba(255, 208, 0, .45);
  color: var(--pollocell-yellow);
  font-family: var(--font-title); font-weight: 700;
  flex: none;
}
.review-name { font-weight: 600; font-size: .93rem; }
.review-src { font-size: .78rem; color: var(--text-muted); }
.demo-note {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 auto 22px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 208, 0, .38);
  background: rgba(255, 208, 0, .06);
  font-size: .8rem;
  color: var(--text-secondary);
}
.demo-note b { color: var(--pollocell-yellow); font-weight: 600; }

/* ============================================================
   7. LÍNEA DE TIEMPO
   ============================================================ */
.tl { position: relative; padding: 10px 0 6px; }
.tl-rail {
  position: absolute;
  left: 0; right: 0; top: 46px;
  height: 2px;
  background: rgba(255, 208, 0, .16);
  border-radius: 2px;
  overflow: hidden;
}
.tl-rail i {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--pollocell-yellow), var(--pollocell-yellow-bright));
  box-shadow: 0 0 16px rgba(255, 208, 0, .7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ui-ease);
}
.tl.is-on .tl-rail i { transform: scaleX(1); }
/* partícula que recorre la línea */
.tl-rail b {
  position: absolute;
  top: 50%; left: 0;
  width: 46px; height: 3px;
  transform: translateY(-50%);
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0;
}
.tl.is-on .tl-rail b { animation: tlPulse 3.6s linear 1s infinite; }
@keyframes tlPulse {
  0% { left: -6%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 102%; opacity: 0; }
}

.tl-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.tl-step { text-align: center; opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ui-ease), transform .7s var(--ui-ease); }
.tl-step.is-on { opacity: 1; transform: none; }
.tl-node {
  position: relative;
  width: 64px; height: 64px;
  margin: 14px auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 35%, #1b1b1b, #070707);
  border: 1.5px solid var(--neon-line);
  color: var(--pollocell-yellow);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--neon-out);
  transition: all .35s var(--ui-ease);
  z-index: 2;
}
.tl-step.is-on .tl-node {
  border-color: var(--pollocell-yellow);
  box-shadow: 0 0 26px rgba(255, 208, 0, .45), inset 0 0 20px rgba(255, 208, 0, .12);
}
.tl-node::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 208, 0, .4);
  opacity: 0;
}
.tl-step.is-on .tl-node::after { animation: nodePulse 2.6s ease-out infinite; }
@keyframes nodePulse {
  0% { transform: scale(1); opacity: .8; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}
.tl-step:hover .tl-node { transform: scale(1.08); }
.tl-ico { position: absolute; bottom: -9px; right: -9px; width: 28px; height: 28px; border-radius: 50%;
  background: #0a0a0a; border: 1px solid rgba(255, 208, 0, .45); display: grid; place-items: center; color: var(--pollocell-yellow); }
.tl-ico svg { width: 14px; height: 14px; }
.tl-card { padding: 16px 15px 18px; border-radius: 16px; }
.tl-card h3 { font-size: .98rem; margin-bottom: 6px; }
.tl-card p { font-size: .85rem; margin: 0; }
.tl-meta { display: block; margin-top: 10px; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 208, 0, .55); }

/* ============================================================
   8. VIDEOS DE TIKTOK
   ============================================================ */
.tik-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.tik-card { padding: 12px; overflow: hidden; }
.tik-slot { position: relative; border-radius: 14px; overflow: hidden; background: #070707; min-height: 540px; }
.tik-slot blockquote { margin: 0 !important; }
.tik-skeleton {
  position: absolute; inset: 0;
  display: grid; place-items: center; gap: 10px;
  background: linear-gradient(110deg, #0c0c0c 30%, #141414 46%, #0c0c0c 62%);
  background-size: 260% 100%;
  animation: skel 1.5s linear infinite;
  color: var(--text-muted);
  font-size: .84rem;
  text-align: center;
  padding: 20px;
}
@keyframes skel { to { background-position: -160% 0; } }
.tik-fallback { display: grid; place-items: center; gap: 14px; padding: 42px 22px; text-align: center; min-height: 340px; }
.tik-fallback svg { width: 40px; height: 40px; color: var(--pollocell-yellow); }
.tik-fallback p { margin: 0; font-size: .9rem; }

/* ============================================================
   9. PREGUNTAS FRECUENTES
   ============================================================ */
.faq { display: grid; gap: 14px; }
.faq-item { transition: all .35s var(--ui-ease); }
.faq-item.is-open {
  border-color: var(--pollocell-yellow);
  box-shadow: var(--neon-out-hot), var(--neon-in-hot), var(--depth);
}
@media (hover: hover) and (pointer: fine) {
  .faq-item:hover { transform: translateY(-3px) scale(1.008); }
}
.faq-q { position: relative; z-index: 2; }
.faq-q .plus {
  border-color: rgba(255, 208, 0, .5);
  transition: transform .4s var(--ui-ease), background .3s var(--ui-ease), color .3s var(--ui-ease);
}
.faq-item.is-open .plus { transform: rotate(135deg); background: var(--pollocell-yellow); color: #0a0a0a; }

/* ============================================================
   10. FORMULARIO
   ============================================================ */
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-grid .field.is-wide { grid-column: 1 / -1; }
.field.is-off { display: none; }
.field input, .field select, .field textarea {
  border-color: rgba(255, 208, 0, .22);
  background: rgba(6, 6, 6, .8);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--pollocell-yellow);
  box-shadow: 0 0 0 3px rgba(255, 208, 0, .16);
}
.legal-note {
  margin: 16px 0 0;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 208, 0, .2);
  background: rgba(255, 208, 0, .05);
  font-size: .82rem;
  color: var(--text-secondary);
}

/* ============================================================
   11. UBICACIÓN CON RASTREO
   ============================================================ */
.map-panel { min-height: 380px; }
#mapStack { position: relative; overflow: hidden; }
.map-view { position: absolute; inset: 0; }
.map-view[hidden] { display: none; }
.map-view iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-view .map-placeholder { position: absolute; inset: 0; }
/* la fotografía de Bogotá queda de fondo del rastreo, oscurecida */
.scan {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #040404;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: opacity .55s var(--ui-ease), visibility .55s var(--ui-ease);
}
.scan-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
  transform: scale(1.08);
  animation: scanPhoto 9s ease-in-out infinite alternate;
}
.scan::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(60% 50% at 50% 52%, rgba(255, 208, 0, .12), transparent 68%),
    linear-gradient(180deg, rgba(4, 4, 4, .82), rgba(4, 4, 4, .55) 45%, rgba(4, 4, 4, .9));
}
.scan > *:not(.scan-photo) { position: relative; z-index: 2; }
@keyframes scanPhoto {
  from { transform: scale(1.08) translate3d(-1%, 0, 0); }
  to { transform: scale(1.16) translate3d(1%, -1%, 0); }
}
.scan[hidden] { display: none; }
.scan.is-done { opacity: 0; visibility: hidden; }
.scan-grid {
  position: absolute; inset: -20%;
  background-image:
    linear-gradient(rgba(255, 208, 0, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 208, 0, .12) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0;
  animation: scanGridIn .7s var(--ui-ease) .25s forwards;
}
@keyframes scanGridIn { to { opacity: .55; } }
.scan-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--pollocell-yellow), transparent);
  box-shadow: 0 0 18px rgba(255, 208, 0, .7);
}
.scan-line--h { left: 0; right: 0; height: 2px; top: 0; animation: scanH 2.2s var(--ui-ease) .3s 2; }
.scan-line--v { top: 0; bottom: 0; width: 2px; left: 0;
  background: linear-gradient(180deg, transparent, var(--pollocell-yellow), transparent);
  animation: scanV 2.6s var(--ui-ease) .5s 2; }
@keyframes scanH { from { top: -2%; } to { top: 102%; } }
@keyframes scanV { from { left: -2%; } to { left: 102%; } }
.scan-radar {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(255, 208, 0, .45);
  opacity: 0;
  animation: radarOut 2.4s ease-out 1.3s 2;
}
.scan-radar:nth-of-type(2) { animation-delay: 1.8s; }
@keyframes radarOut {
  0% { transform: scale(.35); opacity: .85; }
  100% { transform: scale(2.6); opacity: 0; }
}
.scan-pin {
  position: absolute;
  left: 50%; top: 52%;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  background: var(--pollocell-yellow);
  box-shadow: 0 0 20px 6px rgba(255, 208, 0, .55);
  opacity: 0;
  animation: pinIn .5s var(--ui-ease) 2.9s forwards, pinPulse 1.4s ease-in-out 3.4s infinite;
}
@keyframes pinIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes pinPulse { 0%, 100% { box-shadow: 0 0 20px 6px rgba(255, 208, 0, .55); } 50% { box-shadow: 0 0 30px 12px rgba(255, 208, 0, .3); } }
.scan-route {
  position: absolute;
  left: 8%; right: 8%; top: 20%; bottom: 20%;
  pointer-events: none;
}
.scan-route path {
  fill: none;
  stroke: var(--pollocell-yellow);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255, 208, 0, .7));
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: routeDraw 1.9s var(--ui-ease) 1.5s forwards;
}
@keyframes routeDraw { to { stroke-dashoffset: 0; } }
.scan-hud {
  position: relative;
  z-index: 3;
  text-align: center;
  font-family: var(--font-title);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--pollocell-yellow);
  text-shadow: 0 0 14px rgba(255, 208, 0, .5);
}
.scan-hud .coords {
  display: block;
  margin-top: 10px;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}
.scan-hud .done { display: none; }
.scan.is-found .scan-hud .going { display: none; }
.scan.is-found .scan-hud .done { display: block; }
.scan-restart {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 9px 18px;
  margin-top: 16px;
}
.map-tabs { justify-content: center; }

/* ============================================================
   12. CURSOR PERSONALIZADO
   ============================================================ */
.pc-cursor, .pc-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 2147483000;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .25s var(--ui-ease);
}
.pc-cursor {
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--pollocell-yellow-bright);
  box-shadow: 0 0 12px 3px rgba(255, 208, 0, .8);
}
.pc-cursor-ring {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid rgba(255, 208, 0, .65);
  box-shadow: 0 0 18px rgba(255, 208, 0, .25), inset 0 0 12px rgba(255, 208, 0, .12);
  transition: width .28s var(--ui-ease), height .28s var(--ui-ease), margin .28s var(--ui-ease),
              border-color .28s var(--ui-ease), background .28s var(--ui-ease), opacity .25s var(--ui-ease);
}
html.pc-cursor-on .pc-cursor,
html.pc-cursor-on .pc-cursor-ring { opacity: 1; }
html.pc-cursor-on,
html.pc-cursor-on a,
html.pc-cursor-on button,
html.pc-cursor-on [role="button"],
html.pc-cursor-on .chip,
html.pc-cursor-on input,
html.pc-cursor-on select,
html.pc-cursor-on textarea { cursor: none; }
.pc-cursor-ring.is-hot {
  width: 56px; height: 56px; margin: -28px 0 0 -28px;
  border-color: var(--pollocell-yellow-bright);
  background: rgba(255, 208, 0, .1);
}
.pc-cursor-ring.is-down { width: 24px; height: 24px; margin: -12px 0 0 -12px; background: rgba(255, 208, 0, .22); }

/* ============================================================
   13. LOADER
   ============================================================ */
#loader.is-leaving { animation: none; }
#loader.is-sinking {
  animation: loaderSink 1.15s cubic-bezier(.65, 0, .35, 1) forwards;
  transform-origin: var(--sink-x, 50%) var(--sink-y, 62%);
}
@keyframes loaderSink {
  0% { opacity: 1; transform: scale(1); filter: blur(0) brightness(1); clip-path: circle(150% at var(--sink-x, 50%) var(--sink-y, 62%)); }
  40% { filter: blur(3px) brightness(1.25); }
  100% { opacity: 0; transform: scale(.82); filter: blur(18px) brightness(1.5);
    clip-path: circle(0% at var(--sink-x, 50%) var(--sink-y, 62%)); visibility: hidden; }
}
.loader-enter { min-width: 190px; }

/* ============================================================
   14. RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .vitrina-grid, .tik-grid { grid-template-columns: repeat(2, 1fr); }
  .tik-grid > :nth-child(3) { grid-column: 1 / -1; max-width: 520px; margin-inline: auto; width: 100%; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-steps { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .tl-rail { display: none; }
}
@media (max-width: 760px) {
  .vitrina-grid, .tik-grid, .cat-grid { grid-template-columns: 1fr; }
  .tik-grid > :nth-child(3) { grid-column: auto; }
  .tl-steps { grid-template-columns: 1fr; gap: 0; }
  .tl-step { display: grid; grid-template-columns: 64px 1fr; gap: 16px; text-align: left; padding-bottom: 26px; position: relative; }
  .tl-node { margin: 0; }
  .tl-step::before {
    content: '';
    position: absolute;
    left: 31px; top: 64px; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 208, 0, .5), rgba(255, 208, 0, .05));
  }
  .tl-step:last-child::before { display: none; }
  .quote-grid { grid-template-columns: 1fr; }
  .review { width: 280px; }
  .brand-chip { min-width: 138px; min-height: 76px; font-size: .96rem; padding: 12px 18px; }
  .tik-slot { min-height: 460px; }
  .neon-card, .card, .product, .work, .contact-item, .faq-item, .form-card,
  .brand-card, .stat, .split-visual, .social-cta, .map-panel, .empty-state,
  .review, .vitrina-card, .cat-card, .tik-card {
    box-shadow: 0 0 14px rgba(255, 208, 0, .16), var(--neon-in), 0 16px 40px rgba(0, 0, 0, .65);
  }
}

/* ============================================================
   15. MOVIMIENTO REDUCIDO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-title .w { animation: none; }
  .tl-rail b, .tl-node::after, .scan-line--h, .scan-line--v, .scan-radar,
  .scan-pin, .scan-route path, .tik-skeleton { animation: none !important; }
  .scan { display: none; }
  .varnish-button::after, .btn::after { display: none; }
  .pc-cursor, .pc-cursor-ring { display: none; }
  #loader.is-sinking { animation: none; opacity: 0; visibility: hidden; }
}

/* ============================================================
   16. AJUSTES 2026-07-29
   ============================================================ */

/* ---------- carrusel de opiniones ---------- */
/* la pausa al pasar el cursor solo tiene sentido con ratón: en el celular
   el «hover» se queda pegado tras tocar y dejaba el carrusel congelado */
.marquee:hover .marquee-track { animation-play-state: running; }
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
/* el dedo puede desplazar la página en vertical y el carrusel en horizontal */
.marquee { touch-action: pan-y; }

/* ---------- tarjetas de contacto ---------- */
.loc-card--link { text-decoration: none; cursor: pointer; }
.loc-card .ic--wa { background: rgba(37, 211, 102, .12); border-color: rgba(37, 211, 102, .5); color: #25d366; }
.loc-card--link:hover .ic--wa { background: rgba(37, 211, 102, .2); }
.loc-dato {
  display: block;
  margin-top: 3px;
  font-family: var(--font-title);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--pollocell-yellow);
  letter-spacing: .01em;
}
.loc-card--link:hover .loc-dato { color: #ffe14d; }

/* ---------- formulario de cotización más compacto ---------- */
.form-card { padding: clamp(20px, 2.4vw, 28px); }
.form-card .field { margin-bottom: 0; }
.quote-grid { gap: 12px 14px; }
.form-card > form > .field { margin-bottom: 12px; }
.form-card .field label { margin-bottom: 5px; font-size: .88rem; }
.form-card .field input,
.form-card .field select { min-height: 44px; padding: 10px 13px; }
.form-card .field textarea { min-height: 84px; padding: 10px 13px; }
.form-card .field-error { margin-top: 4px; font-size: .78rem; }

@media (min-width: 761px) {
  /* dos columnas y ancho contenido: el bloque deja de ocupar media pantalla */
  .form-wrap { max-width: 760px; margin-inline: auto; }
}

/* ---------- solo celular ---------- */
@media (max-width: 760px) {
  /* todas las opiniones con el mismo alto y el mismo ancho */
  .review {
    width: min(80vw, 300px);
    height: 232px;
    padding: 18px 18px 16px;
    gap: 10px;
  }
  .review-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .92rem;
    line-height: 1.55;
    min-height: 0;
  }
  .review-foot { padding-top: 10px; }
  .review-name, .review-src {
    display: block;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .review-av { width: 38px; height: 38px; }
  /* el degradado de los bordes se estrecha para no comerse las tarjetas */
  #reviewMarquee {
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  /* el formulario queda en una sola columna, como estaba */
  .form-wrap { max-width: 100%; }
  .form-card { padding: 20px 16px; }

  .vitrina-card .vitrina-add { font-size: .86rem; }
}
