/* =====================================================================
   Las Auténticas Prepizzas Pugliese — hoja de estilos
   Paleta y tipografía derivadas de los flyers de la marca:
   crema de papel, verde y rojo del sello, hilo dorado.
   ===================================================================== */

:root {
  --crema: #F6EBD3;
  --crema-claro: #FBF5E8;
  --crema-oscuro: #EADCBC;
  --verde: #175C2F;
  --verde-oscuro: #0E3F20;
  --verde-suave: rgba(23, 92, 47, 0.10);
  --rojo: #B3231E;
  --rojo-oscuro: #8C1A16;
  --oro: #C9A44E;
  --tinta: #1F1A13;
  --tinta-suave: #675E4F;
  --linea: rgba(31, 26, 19, 0.14);
  --linea-fuerte: rgba(31, 26, 19, 0.26);
  --sombra: 0 28px 48px -28px rgba(31, 26, 19, 0.38);
  --radio: 22px;
  --radio-chico: 14px;

  --f-display: "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;
  --f-body: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-script: "Kaushan Script", "Brush Script MT", cursive;

  --ancho: 1120px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --seccion-y: clamp(3.5rem, 7vw, 6rem);
  --tricolor: linear-gradient(90deg, var(--verde) 0 33.4%, #fff 33.4% 66.7%, var(--rojo) 66.7% 100%);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--tinta);
  background-color: var(--crema);
  /* Grano de papel muy sutil: el sitio se siente como el flyer impreso. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.10 0 0 0 0 0.07 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; }
a { color: inherit; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 500; }

:focus-visible {
  outline: 3px solid var(--oro);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Destinos de las anclas: dejan lugar al header fijo y no muestran
   contorno al recibir foco programático (son secciones, no controles). */
main[id], section[id], footer[id], #promociones {
  scroll-margin-top: 6rem;
}
main[id]:focus, section[id]:focus, footer[id]:focus, #promociones:focus {
  outline: none;
}

.container {
  width: min(100% - 2 * var(--gutter), var(--ancho));
  margin-inline: auto;
}

.skip {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--verde);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}
.skip:focus { top: 1rem; }

.icono {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  flex: none;
}

/* ---------- Tipografía ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font: 700 .78rem/1 var(--f-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--verde);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--tricolor);
  border-radius: 2px;
}

.titulo {
  font: 500 clamp(2.1rem, 4.4vw, 3.4rem)/1.02 var(--f-display);
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-top: .9rem;
  color: var(--tinta);
}

.bajada {
  margin-top: 1rem;
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  color: var(--tinta-suave);
}

.seccion { padding-block: var(--seccion-y); }
.seccion--sin-arriba { padding-top: 0; }
.seccion__cabecera { margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.seccion__cabecera--con-hilo { padding-top: var(--seccion-y); }
.hilo { border: 0; border-top: 1px solid var(--linea); margin: 0; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.6rem .95rem;
  border-radius: 999px;
  font: 500 1rem/1 var(--f-display);
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--rojo { background: var(--rojo); color: #fff; }
.btn--rojo:hover { background: var(--rojo-oscuro); box-shadow: 0 14px 24px -14px rgba(179, 35, 30, .7); }

.btn--verde { background: var(--verde); color: #fff; }
.btn--verde:hover { background: var(--verde-oscuro); box-shadow: 0 14px 24px -14px rgba(23, 92, 47, .7); }

.btn--linea { background: transparent; color: var(--verde); box-shadow: inset 0 0 0 1.5px var(--verde); }
.btn--linea:hover { background: var(--verde-suave); }

.btn--blanco { background: var(--crema-claro); color: var(--verde); }
.btn--blanco:hover { background: #fff; box-shadow: 0 14px 24px -14px rgba(0, 0, 0, .5); }

.btn--contorno-claro { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .7); }
.btn--contorno-claro:hover { background: rgba(255, 255, 255, .1); }

.btn--chico { padding: .75rem 1.15rem .7rem; font-size: .9rem; }

/* ---------- Barra superior ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 235, 211, .88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .55rem;
}
.marca { display: block; line-height: 0; }
.marca img {
  display: block;
  height: 64px;
  width: auto;
}
.nav { display: none; gap: 2.1rem; }
.nav a {
  position: relative;
  padding: .3rem 0;
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--rojo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }

.topbar__texto-largo { display: none; }
.tricolor { height: 3px; background: var(--tricolor); }

@media (min-width: 560px) {
  .topbar__texto-largo { display: inline; }
  .topbar__texto-corto { display: none; }
}
@media (min-width: 900px) {
  .nav { display: flex; }
}
@media (max-width: 559px) {
  .marca img { height: 52px; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  text-align: center;
}
.hero__script {
  font: 400 clamp(1.7rem, 3.2vw, 2.4rem)/1 var(--f-script);
  color: var(--verde);
}
.hero__titulo {
  margin: .9rem auto 0;
  max-width: 15ch;
  font: 500 clamp(2.9rem, 7.4vw, 5.6rem)/.98 var(--f-display);
  text-transform: uppercase;
  letter-spacing: .008em;
  text-wrap: balance;
}
.hero__titulo em { font-style: normal; color: var(--rojo); }
.pincel {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.pincel__trazo {
  position: absolute;
  left: -1%;
  bottom: -.06em;
  width: 102%;
  height: .22em;
  overflow: visible;
  pointer-events: none;
}
.pincel__trazo path {
  fill: none;
  stroke: var(--oro);
  stroke-width: 3.2;
  stroke-linecap: round;
  opacity: .85;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: pincel-dibujo .9s cubic-bezier(.4, 0, .2, 1) 1.1s forwards;
}
@keyframes pincel-dibujo {
  to { stroke-dashoffset: 0; }
}
.hero__bajada {
  margin: 1.6rem auto 0;
  max-width: 48ch;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  color: var(--tinta-suave);
  text-wrap: pretty;
}
.hero__acciones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-top: 2.1rem;
}
.hero__claims {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem 1.9rem;
  margin: 1.9rem 0 0;
  padding: 0;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tinta-suave);
}
.hero__claims li::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin: 0 .65rem 2px 0;
  border-radius: 50%;
  background: var(--oro);
}
.hero__foto {
  position: relative;
  margin: clamp(2.75rem, 6vw, 4.5rem) auto 0;
  max-width: 980px;
}
.hero__foto img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
}
.sello {
  position: absolute;
  top: -2.6rem;
  right: clamp(.4rem, 3vw, 2rem);
  width: clamp(104px, 14vw, 150px);
  height: auto;
  transform: rotate(-9deg);
  filter: drop-shadow(0 10px 18px rgba(31, 26, 19, .28));
  animation: sello-estampar .75s cubic-bezier(.2, .9, .3, 1.25) 1.25s both;
}
@keyframes sello-estampar {
  0%   { opacity: 0; transform: rotate(-24deg) scale(1.8); filter: drop-shadow(0 30px 30px rgba(31, 26, 19, 0)); }
  55%  { opacity: 1; transform: rotate(-7deg) scale(.94); }
  100% { opacity: 1; transform: rotate(-9deg) scale(1); filter: drop-shadow(0 10px 18px rgba(31, 26, 19, .28)); }
}
.sello__arco {
  font: 500 9.4px var(--f-display);
  letter-spacing: 1.5px;
  fill: var(--verde);
}
.sello__centro {
  font: 400 24px var(--f-script);
  fill: var(--rojo);
}

@media (max-width: 559px) {
  .hero__acciones .btn { flex: 1 1 100%; }
  .hero__claims { flex-direction: column; align-items: center; gap: .5rem; }
}

/* ---------- Valores ---------- */
.valores__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}
.valor {
  padding-top: 1.25rem;
  border-top: 2px solid var(--oro);
}
.valor__titulo {
  font: 500 1.35rem/1.1 var(--f-display);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.valor__texto {
  margin-top: .6rem;
  color: var(--tinta-suave);
  text-wrap: pretty;
}

/* ---------- Productos (pizzetas y combos) ---------- */
.productos {
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 720px) {
  .productos--2 { grid-template-columns: 1fr 1fr; }
  .producto--ancho { grid-column: 1 / -1; }
}

.producto {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.35rem 1.35rem 1.5rem;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.producto:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra);
  border-color: var(--linea-fuerte);
}
.producto__foto {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.producto__foto picture { display: contents; }
.producto__foto img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* El fondo crema de la foto se funde con el papel del sitio. */
  mix-blend-mode: darken;
  transition: transform .45s cubic-bezier(.2, .8, .3, 1.2);
}
.producto:hover .producto__foto img { transform: translateY(-5px) rotate(-1.5deg) scale(1.03); }
.producto__foto--combo { aspect-ratio: 2 / 1; }
.producto__foto--ancha { aspect-ratio: auto; }
.producto__foto--ancha img { height: auto; }
.producto__info { display: flex; flex-direction: column; gap: .55rem; }
.producto__nombre {
  font: 500 clamp(1.6rem, 2.4vw, 2rem)/1 var(--f-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--verde);
}
.producto__nombre .x { color: var(--oro); padding-inline: .1em; }
.producto__linea {
  display: flex;
  align-items: baseline;
  gap: .6rem;
}
.producto__detalle { color: var(--tinta-suave); }
.producto__puntos {
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 2px dotted var(--oro);
  transform: translateY(-.35em);
}
.producto__precio {
  font: 600 clamp(1.7rem, 2.6vw, 2.1rem)/1 var(--f-display);
  color: var(--rojo);
  letter-spacing: .01em;
}
.producto__accion { margin-top: .5rem; align-self: flex-start; }

.etiqueta {
  align-self: flex-start;
  display: inline-block;
  padding: .45rem .8rem .4rem;
  border-radius: 999px;
  font: 500 .78rem/1 var(--f-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--verde);
}
.etiqueta--rojo { background: var(--rojo); }

@media (min-width: 760px) {
  .producto--ancho {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .producto--ancho .producto__foto { flex: 1.2; }
  .producto--ancho .producto__info { flex: 1; }
  .producto--ancho .producto__nombre { font-size: clamp(1.5rem, 2vw, 1.75rem); }
}

/* ---------- Cómo pedir ---------- */
.pasos {
  list-style: none;
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.paso {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  align-items: start;
}
.paso__num {
  grid-row: span 2;
  font: 500 2.6rem/1 var(--f-display);
  color: var(--oro);
  transform: translateY(-.1em);
}
.paso__titulo {
  font: 500 1.35rem/1.1 var(--f-display);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.paso__texto {
  margin-top: .5rem;
  color: var(--tinta-suave);
  text-wrap: pretty;
}

/* ---------- Franja de pedido ---------- */
.cta {
  position: relative;
  background: var(--verde);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, .09), transparent 60%);
  pointer-events: none;
}
.cta .container { position: relative; }
.cta__script {
  font: 400 clamp(1.6rem, 3vw, 2.2rem)/1 var(--f-script);
  color: var(--oro);
}
.cta__titulo {
  margin: .8rem auto 0;
  max-width: 20ch;
  font: 500 clamp(2rem, 4.4vw, 3.4rem)/1.02 var(--f-display);
  text-transform: uppercase;
  text-wrap: balance;
}
.cta__texto {
  margin: 1.1rem auto 0;
  max-width: 46ch;
  color: rgba(255, 255, 255, .8);
}
.cta__acciones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-top: 2rem;
}
@media (max-width: 559px) {
  .cta__acciones .btn { flex: 1 1 100%; }
}

/* ---------- Pie ---------- */
.pie { padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.pie__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .pie__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.pie__logo { display: block; width: 150px; height: auto; }
.pie__tagline {
  margin-top: 1rem;
  font: 400 1.35rem/1.2 var(--f-script);
  color: var(--verde);
}
.pie__zona { margin-top: .5rem; color: var(--tinta-suave); font-size: .95rem; }
.pie__titulo {
  font: 500 .95rem/1 var(--f-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tinta-suave);
  margin-bottom: 1rem;
}
.pie__lista {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.pie__lista a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  font-weight: 500;
}
.pie__lista a:hover { color: var(--verde); }
.pie__lista .icono { color: var(--verde); }
.pie__contacto strong {
  display: block;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tinta-suave);
  margin-bottom: .1rem;
}
.pie__contacto a { font-size: 1.1rem; }
.pie__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 2rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--linea);
  font-size: .85rem;
  color: var(--tinta-suave);
}

/* ---------- WhatsApp flotante ---------- */
.wa-flotante {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--verde);
  color: #fff;
  box-shadow: 0 16px 30px -12px rgba(23, 92, 47, .7);
  transition: transform .2s ease, background-color .2s ease;
}
.wa-flotante:hover { transform: translateY(-3px) scale(1.04); background: var(--verde-oscuro); }
.wa-flotante .icono { width: 28px; height: 28px; }
.wa-flotante::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--verde);
  opacity: 0;
  pointer-events: none;
  animation: latido 4.5s ease-out 3s infinite;
}
@keyframes latido {
  0%   { transform: scale(1); opacity: .4; }
  55%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.burbuja {
  position: fixed;
  right: calc(clamp(1rem, 3vw, 1.75rem) + 70px);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 40;
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  width: min(280px, calc(100vw - 7.5rem));
  padding: .85rem 1rem .9rem;
  background: var(--crema-claro);
  color: var(--tinta);
  border: 1px solid var(--linea);
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 20px 40px -20px rgba(31, 26, 19, .45);
  font-size: .95rem;
  line-height: 1.45;
  animation: burbuja-entrar .55s cubic-bezier(.2, .9, .3, 1.2) both;
}
.burbuja[hidden] { display: none; }
.burbuja--saliendo { animation: burbuja-salir .3s ease-in forwards; }
.burbuja__texto { text-decoration: none; }
.burbuja__texto strong { color: var(--verde); }
.burbuja__cerrar {
  flex: none;
  margin: -.35rem -.5rem 0 0;
  width: 1.9rem;
  height: 1.9rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--tinta-suave);
  font: 400 1.25rem/1 var(--f-body);
  cursor: pointer;
}
.burbuja__cerrar:hover { background: var(--verde-suave); color: var(--verde); }
@keyframes burbuja-entrar {
  from { opacity: 0; transform: translateX(14px) scale(.92); transform-origin: 100% 100%; }
  to   { opacity: 1; transform: none; }
}
@keyframes burbuja-salir {
  to { opacity: 0; transform: translateY(8px) scale(.96); }
}

/* Íconos de WhatsApp: "suenan" al pasar el mouse. */
.btn:hover .icono, .wa-flotante:hover .icono, .pie__lista a:hover .icono {
  animation: campanita .6s ease-in-out;
  transform-origin: 50% 85%;
}
@keyframes campanita {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-14deg); }
  40% { transform: rotate(11deg); }
  60% { transform: rotate(-7deg); }
  80% { transform: rotate(4deg); }
}

/* ---------- Aparición al hacer scroll ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .75s ease, transform .75s ease;
  transition-delay: var(--d, 0s);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* El recorte va en un span interno: si se recortara el párrafo observado,
   el IntersectionObserver de Chromium lo vería con área cero y nunca lo revelaría. */
html.js .reveal.escribir { transition: opacity .3s ease var(--d, 0s), transform .3s ease var(--d, 0s); }
html.js .reveal.escribir > span {
  display: inline-block;
  padding: 0 .1em;
  clip-path: inset(-20% 100% -20% -2%);
  transition: clip-path .9s cubic-bezier(.4, 0, .2, 1) calc(var(--d, 0s) + .15s);
}
html.js .reveal.escribir.is-visible > span { clip-path: inset(-20% -2% -20% -2%); }

html.js .reveal .producto__precio {
  display: inline-block;
  opacity: 0;
  transform: rotate(-5deg) scale(1.3);
  transition: opacity .3s ease, transform .5s cubic-bezier(.2, .9, .3, 1.3);
  transition-delay: calc(var(--d, 0s) + .4s);
}
html.js .reveal.is-visible .producto__precio { opacity: 1; transform: none; }

html.js .reveal .paso__num {
  opacity: 0;
  transform: translateY(.3em) scale(.5);
  transition: opacity .3s ease, transform .55s cubic-bezier(.2, .9, .3, 1.4);
  transition-delay: calc(var(--d, 0s) + .3s);
}
html.js .reveal.is-visible .paso__num { opacity: 1; transform: translateY(-.1em) scale(1); }

html.js .reveal .eyebrow::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1) calc(var(--d, 0s) + .25s);
}
html.js .reveal.is-visible .eyebrow::before { transform: scaleX(1); }

html.js .hero__foto.reveal img {
  transform: scale(1.04);
  transition: transform 1.4s cubic-bezier(.2, .7, .2, 1) var(--d, 0s);
}
html.js .hero__foto.reveal.is-visible img { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal,
  html.js .reveal .producto__precio,
  html.js .reveal .paso__num,
  html.js .reveal .eyebrow::before,
  html.js .hero__foto.reveal img { opacity: 1; transform: none; transition: none; clip-path: none; }
  html.js .reveal.escribir > span { clip-path: none; transition: none; }
  .btn, .producto, .producto__foto img, .wa-flotante, .nav a::after { transition: none; }
  .sello, .pincel__trazo path, .wa-flotante::before, .burbuja, .icono { animation: none; }
  .pincel__trazo path { stroke-dashoffset: 0; }
  .producto:hover .producto__foto img { transform: none; }
}
