/* ============================================================
   POLLOCELL — refuerzo visual
   Header nuevo, tipografía más grande y legible, neón intenso,
   barniz marcado, carrusel de servicios y ajustes de secciones.
   Se carga al final: sobrescribe lo anterior a propósito.
   ============================================================ */

:root {
  /* grises que se leen de verdad sobre el fondo negro */
  --text-secondary: #dcdcdc;
  --text-muted: #a8a8a8;
  --border: rgba(255, 255, 255, .12);

  /* neón muy visible pero con radios cortos: los halos anchos repintan carísimo
     cuando hay decenas de tarjetas sobre un fondo animado */
  --neon-line: rgba(255, 208, 0, .85);
  --neon-out: 0 0 0 1px rgba(255, 208, 0, .35), 0 0 16px rgba(255, 208, 0, .5);
  --neon-out-hot: 0 0 0 1px rgba(255, 208, 0, .6), 0 0 22px rgba(255, 208, 0, .85);
  --neon-in: inset 0 0 18px rgba(255, 208, 0, .12);
  --neon-in-hot: inset 0 0 26px rgba(255, 208, 0, .22);
  --header-h: 82px;
}

/* ---------- tipografía general más grande ---------- */
body { font-size: 17.5px; line-height: 1.7; color: #f2f2f2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.95rem, 4vw, 3rem); }
h3 { font-size: clamp(1.18rem, 1.8vw, 1.4rem); }
p { color: var(--text-secondary); }
.section-head p, .section-heading p { font-size: clamp(1.04rem, 1.5vw, 1.15rem); }
.card p, .cat-card p, .tl-card p, .vitrina-desc { font-size: 1rem; }
.hero-lead { font-size: clamp(1.08rem, 1.6vw, 1.22rem); color: #e8e8e8; }
.hero-points li { font-size: 1rem; color: #e0e0e0; }
.eyebrow { font-size: .82rem; letter-spacing: .16em; }
.faq-q { font-size: clamp(1.04rem, 1.6vw, 1.16rem); }
.faq-a p { font-size: 1.02rem; color: #dcdcdc; }
.field label { font-size: .95rem; color: #e0e0e0; }
.footer p, .footer-links a, .f-contact { font-size: .98rem; }
.contact-item p { font-size: 1.02rem; }
.note { font-size: .95rem; color: var(--text-muted); }
.product-desc, .vitrina-cat, .review-text { color: #d4d4d4; }
.review-text { font-size: 1rem; }
.stat-lab, .product-cat, .vitrina-cat { color: #b0b0b0; }

/* ============================================================
   1. HEADER
   ============================================================ */
.header {
  height: var(--header-h);
  background: rgba(4, 4, 4, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 208, 0, .16);
}
.header.is-stuck {
  background: rgba(4, 4, 4, .92);
  border-bottom-color: rgba(255, 208, 0, .34);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .7), 0 1px 0 rgba(255, 208, 0, .2);
}
.header .container { max-width: 1320px; }

/* barra de avance de lectura */
.scroll-progress {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}
.scroll-progress i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #b88a00, var(--pollocell-yellow) 45%, var(--pollocell-yellow-bright));
  box-shadow: 0 0 14px rgba(255, 208, 0, .9), 0 0 30px rgba(255, 208, 0, .5);
}

.brand img { height: 46px; }

/* navegación */
.nav { gap: 2px; }
.nav a {
  position: relative;
  padding: 10px 15px;
  font-size: .98rem;
  font-weight: 500;
  color: #cfcfcf;
  border-radius: 12px;
  overflow: hidden;
}
.nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 208, 0, .18), rgba(255, 208, 0, .04));
  opacity: 0;
  transform: scale(.85);
  transition: opacity .3s var(--ui-ease), transform .3s var(--ui-ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 50%; right: 50%; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--pollocell-yellow);
  box-shadow: 0 0 12px 2px rgba(255, 208, 0, .8);
  transition: left .32s var(--ui-ease), right .32s var(--ui-ease);
}
.nav a:hover { color: #fff; background: none; }
.nav a:hover::before { opacity: .55; transform: scale(1); }
.nav a:hover::after { left: 22%; right: 22%; }
.nav a.is-active {
  color: var(--pollocell-yellow-bright);
  text-shadow: 0 0 18px rgba(255, 208, 0, .55);
}
.nav a.is-active::before { opacity: 1; transform: scale(1); }
.nav a.is-active::after { left: 15%; right: 15%; animation: navGlow 2.4s ease-in-out infinite; }
@keyframes navGlow {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px 2px rgba(255, 208, 0, .8); }
  50% { opacity: .65; box-shadow: 0 0 20px 4px rgba(255, 208, 0, 1); }
}

/* acciones redondas de la derecha */
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 14px; }
.round-btn {
  position: relative;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s var(--ui-ease), box-shadow .3s var(--ui-ease);
}
.round-btn svg { width: 26px; height: 26px; }
.round-btn--cat {
  background: linear-gradient(150deg, var(--pollocell-yellow-bright), var(--pollocell-yellow) 55%, #e0b400);
  color: #0a0a0a;
  box-shadow: 0 0 0 1px rgba(255, 230, 0, .5), 0 0 16px rgba(255, 208, 0, .65), 0 8px 20px rgba(0, 0, 0, .55);
}
.round-btn--wa {
  background: linear-gradient(150deg, #3ae07a, #25d366 55%, #12a94d);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(58, 224, 122, .5), 0 0 16px rgba(37, 211, 102, .65), 0 8px 20px rgba(0, 0, 0, .55);
}
.round-btn:hover { transform: translateY(-3px) scale(1.08); }
.round-btn--cat:hover { box-shadow: 0 0 0 1px rgba(255, 230, 0, .8), 0 0 24px rgba(255, 208, 0, 1), 0 12px 26px rgba(0, 0, 0, .6); }
.round-btn--wa:hover { box-shadow: 0 0 0 1px rgba(58, 224, 122, .8), 0 0 24px rgba(37, 211, 102, 1), 0 12px 26px rgba(0, 0, 0, .6); }
/* barniz que cruza el botón redondo */
.round-btn::after {
  content: '';
  position: absolute;
  top: -60%; left: 0;
  width: 45%; height: 220%;
  background: linear-gradient(100deg, transparent 28%, rgba(255, 255, 255, .75) 50%, transparent 72%);
  transform: translateX(-190%) rotate(16deg);
  animation: roundSheen 4.5s var(--ui-ease) infinite;
  pointer-events: none;
}
@keyframes roundSheen {
  0%, 72% { transform: translateX(-190%) rotate(16deg); }
  92%, 100% { transform: translateX(320%) rotate(16deg); }
}
.burger { width: 52px; height: 52px; border-color: rgba(255, 208, 0, .4); box-shadow: var(--neon-out); }

@media (max-width: 1180px) {
  .nav { display: none; }
  .header-actions { margin-left: auto; margin-right: 10px; }
  .round-btn { width: 48px; height: 48px; }
  .round-btn svg { width: 23px; height: 23px; }
}
@media (max-width: 520px) {
  :root { --header-h: 72px; }
  .brand img { height: 38px; }
  .round-btn { width: 44px; height: 44px; }
  .round-btn svg { width: 21px; height: 21px; }
  .header-actions { gap: 8px; }
}

/* ============================================================
   2. TÍTULOS DE SECCIÓN ANIMADOS
   ============================================================ */
.section-heading h2,
.section-heading h1,
.section-head h2 { display: block; }

.sw {
  display: inline-block;
  opacity: 1;
}
/* solo opacidad y transform: un filter por palabra obliga a rasterizar
   decenas de nodos de texto y hunde el rendimiento */
.js .sw {
  opacity: 0;
  transform: translateY(24px) rotateX(-45deg);
  transform-origin: 50% 100%;
  transition: opacity .65s var(--ui-ease), transform .75s var(--ui-ease);
}
.js .sh-in .sw { opacity: 1; transform: none; }

/* el degradado vivo recorre el título completo, no solo la parte resaltada */
.section-heading h2 .sw,
.section-heading h1 .sw,
.section-head h2 .sw {
  background: linear-gradient(100deg, #ffffff 0%, #fff6d0 20%, var(--pollocell-yellow-bright) 42%, var(--pollocell-yellow) 56%, #fff4c2 74%, #ffffff 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* el degradado solo se mueve mientras el título está en pantalla:
   animarlo en todos a la vez hundía los cuadros por segundo */
[data-live] .sw { animation: headFlow 8s ease-in-out infinite; }
/* el resplandor se pinta como una mancha difusa detrás del título:
   un filtro sobre texto recortado obliga a rasterizar cada glifo */
.section-heading h2, .section-heading h1, .section-head h2 { position: relative; }
.section-heading h2::before,
.section-heading h1::before,
.section-head h2::before {
  content: '';
  position: absolute;
  inset: -14% -8%;
  background: radial-gradient(ellipse at center, rgba(255, 208, 0, .22), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
/* la frase clave se mantiene más dorada para conservar la jerarquía */
.section-heading .hl,
.section-head .hl {
  position: relative;
  background: linear-gradient(100deg, #fff8d8 0%, var(--pollocell-yellow-bright) 26%, var(--pollocell-yellow) 50%, #fff3b0 74%, var(--pollocell-yellow-bright) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
[data-live] .hl { animation: headFlow 8s ease-in-out infinite; }
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .section-heading h2 .sw, .section-head h2 .sw { color: #fff; -webkit-text-fill-color: currentColor; }
  .section-heading .hl, .section-head .hl { color: var(--pollocell-yellow); -webkit-text-fill-color: currentColor; }
}
@keyframes headFlow {
  0%, 100% { background-position: 0 0; }
  50% { background-position: 100% 0; }
}
.section-heading .head-rule,
.section-head .head-rule {
  height: 3px;
  width: 120px;
  box-shadow: 0 0 12px rgba(255, 208, 0, .85);
}

/* chispas alrededor del encabezado */
.head-spark {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pollocell-yellow-bright);
  box-shadow: 0 0 12px 3px rgba(255, 208, 0, .85);
  opacity: 0;
  pointer-events: none;
}
/* las chispas aparecen al entrar la sección y se apagan: nada infinito */
.sh-in .head-spark { animation: sparkFloat 2.6s ease-out 1 forwards; }
.head-spark:nth-of-type(2) { animation-delay: .5s; }
.head-spark:nth-of-type(3) { animation-delay: 1s; }
@keyframes sparkFloat {
  0% { opacity: 0; transform: translate3d(0, 12px, 0) scale(.5); }
  35% { opacity: 1; transform: translate3d(4px, -6px, 0) scale(1); }
  100% { opacity: 0; transform: translate3d(-6px, -26px, 0) scale(.6); }
}
.section-heading, .section-head { position: relative; }

/* ============================================================
   3. NEÓN INTENSO EN TODAS LAS TARJETAS
   ============================================================ */
.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, .tl-card, .brand-chip, .svc-card {
  border: 1.5px solid var(--neon-line);
  background: rgba(9, 9, 9, .9);
  box-shadow: var(--neon-out), var(--neon-in), 0 14px 34px rgba(0, 0, 0, .7);
}
@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, .brand-chip:hover, .svc-card:hover {
    border-color: var(--pollocell-yellow-bright);
    box-shadow: var(--neon-out-hot), var(--neon-in-hot), 0 20px 44px rgba(0, 0, 0, .8);
  }
}
.icon-box {
  border-color: rgba(255, 208, 0, .6);
  background: rgba(255, 208, 0, .14);
  box-shadow: 0 0 12px rgba(255, 208, 0, .4), inset 0 0 12px rgba(255, 208, 0, .2);
}
.eyebrow {
  border-color: rgba(255, 208, 0, .55);
  background: rgba(255, 208, 0, .12);
  box-shadow: 0 0 12px rgba(255, 208, 0, .35), inset 0 0 10px rgba(255, 208, 0, .14);
  color: var(--pollocell-yellow-bright);
}
.chip { border-color: rgba(255, 208, 0, .45); box-shadow: 0 0 14px rgba(255, 208, 0, .2); }
.chip.is-active { box-shadow: 0 0 26px rgba(255, 208, 0, .8); }

/* ============================================================
   4. BARNIZ MARCADO EN TODOS LOS BOTONES
   ============================================================ */
.btn, .varnish-button {
  font-size: 1.02rem;
  min-height: 52px;
  padding: 14px 30px;
}
.btn:not(.btn--ghost), .varnish-button:not(.varnish-button--ghost) {
  box-shadow:
    0 0 0 1px rgba(255, 235, 120, .6) inset,
    0 0 18px rgba(255, 208, 0, .6),
    0 10px 24px rgba(0, 0, 0, .5);
}
/* el reflejo pasa solo, no solo en hover, para que se note */
.btn::after, .varnish-button::after {
  width: 46%;
  background: linear-gradient(100deg, transparent 26%, rgba(255, 255, 255, .82) 50%, transparent 74%);
  opacity: 1;
  transform: translateX(-190%) rotate(15deg);
  animation: btnSheen 5s var(--ui-ease) infinite;
}
@keyframes btnSheen {
  0%, 70% { transform: translateX(-190%) rotate(15deg); }
  90%, 100% { transform: translateX(320%) rotate(15deg); }
}
.btn:hover::after, .varnish-button:hover::after { animation: btnSheenFast .8s var(--ui-ease); }
@keyframes btnSheenFast {
  from { transform: translateX(-190%) rotate(15deg); }
  to { transform: translateX(320%) rotate(15deg); }
}
.btn:not(.btn--ghost):hover {
  box-shadow:
    0 0 0 1px rgba(255, 245, 160, .85) inset,
    0 0 26px rgba(255, 208, 0, .95),
    0 14px 30px rgba(0, 0, 0, .6);
}
.btn--ghost {
  border-width: 1.5px;
  border-color: rgba(255, 208, 0, .75);
  box-shadow: 0 0 22px rgba(255, 208, 0, .35), inset 0 0 18px rgba(255, 208, 0, .08);
  color: var(--pollocell-yellow-bright);
}
.btn--ghost:hover { box-shadow: 0 0 24px rgba(255, 208, 0, .9); }
.fab-wa { box-shadow: 0 0 18px rgba(37, 211, 102, .85), 0 10px 24px rgba(0, 0, 0, .5); }

/* ============================================================
   5. SERVICIOS EN CARRUSEL
   ============================================================ */
.svc {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
}
/* el visor manda el ancho: así solo se ve una tarjeta a la vez */
.svc-view {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 14px 6px 18px;
  max-width: 470px;
  margin-inline: auto;
  width: 100%;
}
.svc-track {
  display: flex;
  gap: 26px;
  transition: transform .55s var(--ui-ease);
  will-change: transform;
}
/* sin botón: la altura la marca el contenido, sin hueco al pie */
.svc-card {
  flex: 0 0 100%;
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 30px) clamp(22px, 2.6vw, 30px) clamp(24px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* la ilustración se ve completa: el marco toma su misma proporción */
.svc-media {
  display: block;
  width: 100%;
  aspect-ratio: 1402 / 1122;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 208, 0, .55);
  background: #050505;
  box-shadow: 0 0 14px rgba(255, 208, 0, .35), inset 0 0 18px rgba(255, 208, 0, .08);
  margin-bottom: 20px;
}
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.svc-card .icon-box { display: none; }
.svc-card p { font-size: 1.04rem; color: #dcdcdc; margin: 0; max-width: 38ch; }
.svc-num {
  font-family: var(--font-title);
  font-size: .78rem;
  letter-spacing: .2em;
  color: rgba(255, 208, 0, .8);
  margin-bottom: 12px;
}
.svc-nav {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid rgba(255, 208, 0, .6);
  background: rgba(9, 9, 9, .9);
  color: var(--pollocell-yellow);
  cursor: pointer;
  box-shadow: var(--neon-out);
  transition: all .3s var(--ui-ease);
}
.svc-nav:hover {
  background: var(--pollocell-yellow);
  color: #0a0a0a;
  transform: scale(1.1);
  box-shadow: var(--neon-out-hot);
}
.svc-nav svg { width: 24px; height: 24px; }
.svc-dots { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.svc-dots button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 208, 0, .5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .3s var(--ui-ease);
}
.svc-dots button.is-on {
  background: var(--pollocell-yellow);
  box-shadow: 0 0 14px rgba(255, 208, 0, .9);
  transform: scale(1.25);
}
@media (max-width: 680px) {
  .svc { grid-template-columns: 44px 1fr 44px; gap: 8px; }
  .svc-nav { width: 44px; height: 44px; }
  .svc-nav svg { width: 20px; height: 20px; }
  .svc-card { padding: 22px 18px; }
}

/* ============================================================
   6. LÍNEA DE TIEMPO: tarjetas iguales y texto legible
   ============================================================ */
.tl-steps { align-items: stretch; }
.tl-step { display: flex; flex-direction: column; }
.tl-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 20px 18px 22px;
}
.tl-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.tl-card p { font-size: .98rem; color: #dcdcdc; flex: 1; margin: 0; }
.tl-meta { color: rgba(255, 208, 0, .85); font-size: .72rem; margin-top: 14px; }
.tl-node {
  width: 72px; height: 72px;
  font-size: 1.5rem;
  border-width: 2px;
  border-color: rgba(255, 208, 0, .8);
  box-shadow: 0 0 18px rgba(255, 208, 0, .6), inset 0 0 14px rgba(255, 208, 0, .18);
}
.tl-rail { top: 50px; height: 3px; }
@media (max-width: 760px) {
  .tl-card { min-height: 0; }
}

/* ============================================================
   7. VIDEOS EN FILA
   ============================================================ */
.tik-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
.tik-slot { min-height: 580px; }
@media (max-width: 1080px) {
  .tik-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .tik-grid > :nth-child(3) { grid-column: auto; max-width: none; }
}

/* ============================================================
   8. FORMULARIO CENTRADO
   ============================================================ */
.form-wrap { grid-template-columns: 1fr; max-width: 860px; margin-inline: auto; }
.form-card { padding: clamp(26px, 3.4vw, 44px); }
.form-card .btn { font-size: 1.06rem; }

/* ============================================================
   9. LOADER SOLO CON LOGO Y BOTÓN
   ============================================================ */
/* la fotografía se ve nítida: el velo solo oscurece los bordes para que
   el logo y el botón sigan legibles en el centro */
.loader-plaza {
  opacity: 1;
  mask-image: none;
  -webkit-mask-image: none;
  object-position: center;
}
.loader-sky { display: none; }
.loader-veil {
  background:
    radial-gradient(46% 38% at 50% 44%, rgba(0, 0, 0, .55), transparent 72%),
    radial-gradient(130% 108% at 50% 50%, transparent 42%, rgba(3, 3, 3, .55) 82%, rgba(3, 3, 3, .88) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, .35), transparent 34%, rgba(3, 3, 3, .5));
}
.loader-veil::after { opacity: .35; }
.loader-logo { filter: drop-shadow(0 0 18px rgba(0, 0, 0, .95)) drop-shadow(0 0 30px rgba(255, 208, 0, .55)); }
.loader-halo { opacity: .5; }
.loader-tagline, .loader-progress, .loader-meta { display: none; }
.loader-logo { width: min(400px, 82vw); margin-bottom: 34px; }
.loader-enter {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  font-size: 1.1rem;
  min-height: 58px;
  padding: 16px 42px;
}

/* ============================================================
   9b. TARJETA CON FOTOGRAFÍA (sección «por qué»)
   Neón permanente y fijo alrededor de la imagen, sin parpadeo.
   ============================================================ */
.split-visual--photo {
  padding: 0;
  overflow: visible;
  border: 2px solid var(--pollocell-yellow);
  border-radius: 26px;
  background: #060606;
  box-shadow:
    0 0 0 1px rgba(255, 230, 90, .8),
    0 0 18px rgba(255, 208, 0, .95),
    0 0 38px rgba(255, 208, 0, .6),
    0 0 70px rgba(255, 208, 0, .32),
    inset 0 0 26px rgba(255, 208, 0, .22),
    0 20px 44px rgba(0, 0, 0, .8);
}
.split-visual--photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}
/* segundo halo detrás para que el resplandor se derrame sobre el fondo */
.split-visual--photo::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 208, 0, .3), transparent 72%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}
.split-visual--photo::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 21px;
  border: 1px solid rgba(255, 236, 140, .55);
  pointer-events: none;
}

/* ============================================================
   10. VITRINA: texto más legible
   ============================================================ */
.vitrina-name { font-size: 1.12rem; }
.vitrina-price { font-size: 1.24rem; }
.vitrina-cat { font-size: .78rem; }
.vitrina-state { font-size: .8rem; border-color: rgba(255, 208, 0, .5); }
.vitrina-media { border-bottom-color: rgba(255, 208, 0, .35); }

/* ============================================================
   11. MOVIMIENTO REDUCIDO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .btn::after, .varnish-button::after, .round-btn::after,
  .nav a.is-active::after, .section-heading .hl, .section-head .hl,
  .head-spark { animation: none !important; }
  .js .sw { opacity: 1 !important; transform: none !important; filter: none !important; }
  .svc-track { transition: none; }
}

/* el llamado final usa el mismo encabezado animado que el resto */
.final-cta .section-heading { margin-bottom: 4px; max-width: 640px; }
.final-cta .section-heading p { margin: 0; }
