/* =============================================
   NUVORA DESCANSO — Capa estética premium
   Grano · Luz · Tipografía editorial · Sellos
   (carga sobre styles.css / shop.css / blog.css)
   ============================================= */

/* ──────────────────────────────────────────────
   1. GRANO DE MARCA en secciones navy
   Ruido SVG sutil, como el papel de un libro caro
   ────────────────────────────────────────────── */
.promesa, .crossband__inner, .cta, .giftband__inner,
.cutaway, .vs__card--gold, .article-hero, .reveal-text,
.checkout__steps {
  position: relative;
}
.promesa::after, .crossband__inner::after, .cta::after,
.giftband__inner::after, .cutaway::after, .article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
/* El contenido de esas secciones queda por encima del grano */
.promesa > *, .crossband__inner > *, .cta > *,
.giftband__inner > *, .article-hero > * { position: relative; z-index: 1; }

/* ──────────────────────────────────────────────
   2. HALO DE LUZ que sigue al cursor en el hero
   ────────────────────────────────────────────── */
.hero__glow {
  position: absolute;
  top: 0; left: 0;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(212, 175, 55, 0.16) 0%,
    rgba(212, 175, 55, 0.06) 35%,
    rgba(212, 175, 55, 0) 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform;
  mix-blend-mode: multiply;
}
.hero:hover .hero__glow { opacity: 1; }
@media (hover: none) { .hero__glow { display: none; } }

/* ──────────────────────────────────────────────
   3. TIPOGRAFÍA EDITORIAL
   ────────────────────────────────────────────── */

/* Comillas tipográficas gigantes en el testimonio central */
.stagger__card.is-center { position: relative; }
.stagger__card.is-center::before {
  content: '\201C';
  position: absolute;
  top: -6px;
  left: 22px;
  font-family: var(--serif);
  font-size: 6.5rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.45);
  pointer-events: none;
}

/* Estadísticas: dígitos enormes, tabulares, con guarismo dorado */
.numero__value {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.numero__value::after {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, #C49A2C, transparent);
}

/* Inicial capitular en el primer párrafo de los artículos */
.article-content__inner > p:first-of-type::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: 0.82;
  font-weight: 600;
  color: var(--navy);
  padding: 6px 12px 0 0;
}

/* ──────────────────────────────────────────────
   7. SELLOS DE CONFIANZA (reemplazo de la marquesina)
   ────────────────────────────────────────────── */
/* Banda puente: del final de la banda de compromiso (#101d3d) al navy del CTA (#1B2D5B) */
.seals {
  position: relative;
  padding: 64px 24px 76px;
  background: linear-gradient(180deg, #101d3d 0%, #16264a 52%, #1B2D5B 100%);
  text-align: center;
}
.seals__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C49A2C;
  margin-bottom: 38px;
}
.seals__grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px;
}
.seal__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: radial-gradient(circle at 50% 35%, rgba(212,175,55,0.10), rgba(212,175,55,0) 70%);
  color: #D4AF37;
}
.seal__icon svg { width: 26px; height: 26px; }
/* Por defecto el icono se ve entero (también sin JS).
   Solo cuando JS marca .seal--draw se esconde para dibujarse. */
.seal--draw .seal__icon svg path,
.seal--draw .seal__icon svg circle,
.seal--draw .seal__icon svg rect,
.seal--draw .seal__icon svg polyline {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
}
.seal--draw.is-drawn .seal__icon svg path,
.seal--draw.is-drawn .seal__icon svg circle,
.seal--draw.is-drawn .seal__icon svg rect,
.seal--draw.is-drawn .seal__icon svg polyline {
  animation: sealDraw 1.2s var(--ease-out) forwards;
}
@keyframes sealDraw { to { stroke-dashoffset: 0; } }
.seal__title {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}
.seal__sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .seals { padding: 52px 24px 60px; }
  .seals__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
}

/* ──────────────────────────────────────────────
   3-bis. TRANSICIONES DE PÁGINA (View Transitions API)
   Degrada con elegancia: navegadores sin soporte lo ignoran
   ────────────────────────────────────────────── */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.45s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

/* La imagen del producto "vuela" entre la tarjeta y la ficha */
.pdp__main img { view-transition-name: hero-product; }

/* ──────────────────────────────────────────────
   5. CURSOR MAGNÉTICO — suaviza el movimiento del botón
   ────────────────────────────────────────────── */
.btn--solid, .pdp__buy-btn, .crossband__btn, .giftband__btn {
  will-change: transform;
}

/* ──────────────────────────────────────────────
   SECCIÓN "HECHO EN NUESTRA FÁBRICA" con vídeo real
   ────────────────────────────────────────────── */
.fabrica {
  background: var(--white);
  padding: clamp(70px, 9vw, 120px) 24px;
}
.fabrica__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.fabrica__frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 464 / 832;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 34px 80px -26px rgba(13, 27, 62, 0.5);
  background: #0A1128;
}
.fabrica__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fabrica__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(10, 17, 40, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 7px 13px;
  border-radius: 100px;
}
.fabrica__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: heroLive 2s infinite;
}
@keyframes heroLive {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.fabrica__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C49A2C;
  margin-bottom: 14px;
}
.fabrica__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 18px;
}
.fabrica__title em { font-style: italic; color: #C49A2C; }
.fabrica__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 24px;
}
.fabrica__points {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.fabrica__points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.5;
  padding: 7px 0;
}
.fabrica__points svg { color: #C49A2C; flex-shrink: 0; margin-top: 2px; }

@media (max-width: 820px) {
  .fabrica__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
    text-align: center;
  }
  .fabrica__frame { max-width: 300px; }
  .fabrica__points { display: inline-block; text-align: left; }
}


/* ==============================================
   ICONOS QUE SE DIBUJAN en la ficha (envío/prueba/garantía)
   ============================================== */
.trust-pill--draw svg path,
.trust-pill--draw svg circle,
.trust-pill--draw svg rect {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}
.trust-pill--draw.is-drawn svg path,
.trust-pill--draw.is-drawn svg circle,
.trust-pill--draw.is-drawn svg rect {
  animation: sealDraw 1.1s var(--ease-out) forwards;
}

/* ==============================================
   MICROINTERACCIÓN al elegir medida — "pop"
   ============================================== */
@keyframes pillPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.09); }
  100% { transform: scale(1); }
}
.size-pill.is-pop { animation: pillPop 0.34s var(--ease-out); }


/* ==============================================
   SELECTOR DE IDIOMA — círculo compacto + desplegable
   ============================================== */
.flag {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.flag--es { background: linear-gradient(#c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75%); }
.flag--it { background: linear-gradient(90deg, #008C45 0 33.34%, #fff 33.34% 66.67%, #cd212a 66.67%); }
.flag--fr { background: linear-gradient(90deg, #0055A4 0 33.34%, #fff 33.34% 66.67%, #EF4135 66.67%); }
.flag--de { background: linear-gradient(#000 0 33.34%, #DD0000 33.34% 66.67%, #FFCE00 66.67%); }
.flag--en {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0,0 60,30 M60,0 0,30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0,0 60,30' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M60,0 0,30' stroke='%23C8102E' stroke-width='4'/%3E%3Crect x='25' width='10' height='30' fill='%23fff'/%3E%3Crect y='10' width='60' height='10' fill='%23fff'/%3E%3Crect x='27' width='6' height='30' fill='%23C8102E'/%3E%3Crect y='12' width='60' height='6' fill='%23C8102E'/%3E%3C/svg%3E") center / cover;
}

.langpick { position: relative; margin-left: 14px; }
.langpick__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 5px 3px 3px;
  background: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  color: var(--text-2);
  transition: background 0.2s ease;
}
.langpick__btn:hover { background: rgba(27, 45, 91, 0.06); }
.langpick__chev { transition: transform 0.25s var(--ease-out); }
.langpick.is-open .langpick__chev { transform: rotate(180deg); }

.langpick__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 40px -14px rgba(13, 27, 62, 0.28);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s var(--ease-out), visibility 0.22s;
  z-index: 1003;
}
.langpick.is-open .langpick__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.langpick__opt {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 9px 12px;
  background: none;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--text);
  text-align: left;
  transition: background 0.18s ease;
}
.langpick__opt:hover { background: var(--gray); }
.langpick__opt.is-active { font-weight: 600; color: var(--navy); }
.langpick__opt.is-active .flag { box-shadow: 0 0 0 2px #C49A2C; }

/* En móvil el selector vive dentro del menú desplegable, centrado */
.langpick--mobile { margin: 30px auto 0; }
.langpick--mobile .langpick__btn { padding: 6px 10px 6px 6px; }
.langpick--mobile .langpick__menu { left: 50%; right: auto; transform: translate(-50%, -6px); }
.langpick--mobile.is-open .langpick__menu { transform: translate(-50%, 0); }
@media (max-width: 768px) {
  .langpick--header { display: none; }
}


/* ==============================================
   BANDA SUPERIOR — marquesina de anuncios
   ============================================== */
.announce {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: 36px;
  background: linear-gradient(90deg, #14224A, #1B2D5B 50%, #14224A);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announce__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: announceScroll 34s linear infinite;
}
.announce:hover .announce__track { animation-play-state: paused; }
.announce__item {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 20px;
}
.announce__sep {
  color: #D4AF37;
  font-size: 0.7rem;
  padding: 0 2px;
}
@keyframes announceScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .announce__track { animation: none; }
}

/* El header y la barra de progreso bajan bajo la banda */
.header { top: 36px; }
.scroll-progress { top: 36px; }


/* ==============================================
   CINE — Hero con profundidad real
   ============================================== */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDawn 2.6s var(--ease-out) both;
  will-change: transform, filter;
}
/* Amanecer: la escena se ilumina y asienta al cargar */
@keyframes heroDawn {
  from { transform: scale(1.07); filter: brightness(0.62) saturate(0.9); }
  to   { transform: scale(1);    filter: brightness(1) saturate(1); }
}
/* Viñeteado cinematográfico para que el texto respire */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 105%, rgba(10, 17, 40, 0.82) 0%, rgba(10, 17, 40, 0.25) 45%, rgba(10, 17, 40, 0) 70%),
    linear-gradient(180deg, rgba(10, 17, 40, 0.42) 0%, rgba(10, 17, 40, 0.05) 30%, rgba(10, 17, 40, 0) 55%);
}

/* Partículas por delante de la foto, como polvo al contraluz */
.hero .hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.85;
}

/* Texto del hero en claro sobre la escena */
.hero { color: #fff; }
.hero .hero__title { color: #fff; text-shadow: 0 2px 26px rgba(5, 10, 25, 0.45); }
.hero .hero__type-cursor { background: #D4AF37; }
.hero .hero__sub {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 14px rgba(5, 10, 25, 0.55);
}
.hero .hero__trust span {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 10px rgba(5, 10, 25, 0.5);
}
.hero .hero__trust svg { color: #D4AF37; }
.hero .hero__arrow svg { stroke: rgba(255, 255, 255, 0.85); }

/* CTAs sobre foto: oro sólido + contorno blanco */
.hero .btn--solid {
  background: #D4AF37;
  color: #0A1128;
}
.hero .btn--solid:hover {
  box-shadow: 0 10px 30px -6px rgba(212, 175, 55, 0.55);
}
.hero .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}
.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* El halo del cursor ilumina la escena (luz, no sombra) */
.hero__glow { mix-blend-mode: screen; z-index: 1; }
.hero::before { display: none; } /* el resplandor estático ya no hace falta */

/* ==============================================
   CINE — Títulos con reveal de máscara editorial
   ============================================== */
.section-title[data-animate] {
  clip-path: inset(-10% 0 105% 0);
}
.section-title[data-animate].is-visible {
  clip-path: inset(-10% 0 -14% 0);
  transition: clip-path 1s var(--ease-out) 0.05s,
              opacity 0.7s ease,
              transform 0.9s var(--ease-out);
}

/* ==============================================
   CINE — Foco de luz en las bandas navy
   ============================================== */
.spot-host { position: relative; overflow: hidden; }
.spot-glow {
  position: absolute;
  top: 0; left: 0;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(212, 175, 55, 0.16) 0%,
    rgba(212, 175, 55, 0.05) 40%,
    rgba(212, 175, 55, 0) 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
  z-index: 0;
}
.spot-host:hover .spot-glow { opacity: 1; }
@media (hover: none) { .spot-glow { display: none; } }

/* ==============================================
   CINE — Transición entre páginas con más intención
   ============================================== */
::view-transition-old(root) {
  animation: vtOut 0.38s ease both;
}
::view-transition-new(root) {
  animation: vtIn 0.55s var(--ease-out) both;
}
@keyframes vtOut {
  to { opacity: 0; transform: translateY(-16px) scale(0.996); }
}
@keyframes vtIn {
  from { opacity: 0; transform: translateY(20px) scale(1.004); }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
  .hero__bg img { animation: none; }
}


/* ==============================================
   FOOTER EDITORIAL — columnas, aire y jerarquía
   ============================================== */
.footer__grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 68px 24px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  text-align: left;
}
.footer__brand .footer__logo { height: 34px; width: auto; margin-bottom: 16px; }
.footer__claim {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer__brand .footer__social { justify-content: flex-start; }
.footer__head {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  width: fit-content;
  font-size: 0.875rem;
  color: var(--text-2);
  padding: 5px 0;
  transition: color 0.25s, transform 0.3s var(--ease-out);
}
.footer__col a:hover { color: var(--navy); transform: translateX(4px); }

.footer__bar {
  border-top: 1px solid var(--border);
}
.footer__bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bar .footer__pay { margin: 0; }
.footer__bar .footer__copy { margin: 0; }

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__grid { padding: 52px 24px 36px; }
  .footer__bar-inner { justify-content: center; text-align: center; }
}

/* ==============================================
   ACABADO APP — selección, scrollbar, header, pulsado
   ============================================== */

/* Selección de texto en colores de marca */
::selection { background: rgba(212, 175, 55, 0.35); color: #0A1128; }

/* Scrollbar fino y elegante */
html { scrollbar-width: thin; scrollbar-color: rgba(27, 45, 91, 0.55) transparent; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(27, 45, 91, 0.45);
  border-radius: 100px;
  border: 3px solid #fff;
}
::-webkit-scrollbar-thumb:hover { background: rgba(27, 45, 91, 0.7); }

/* Header con vidrio más rico + filo dorado al hacer scroll */
.header {
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  backdrop-filter: blur(20px) saturate(1.6);
}
.header.is-scrolled::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(212, 175, 55, 0.35) 50%, transparent 95%);
  pointer-events: none;
}

/* Sensación táctil: los botones se hunden al pulsar */
.btn--solid:active, .btn--outline:active, .header__cta:active,
.pdp__buy-btn:active, .pdp__cart-btn:active, .pcard__btn:active,
.crossband__btn:active, .giftband__btn:active, .chk-submit:active,
.cart__checkout:active, .xp__cta:active, .buybar__btn:active {
  transform: scale(0.97);
  transition-duration: 0.08s;
}

/* Entrada con desenfoque: las tarjetas "enfocan" al aparecer */
.pcard[data-animate], .bcard[data-animate], .producto[data-animate] {
  filter: blur(10px);
  transition: opacity 0.7s ease, transform 0.85s var(--ease-out), filter 0.9s var(--ease-out);
}
.pcard[data-animate].is-visible,
.bcard[data-animate].is-visible,
.producto[data-animate].is-visible {
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .pcard[data-animate], .bcard[data-animate], .producto[data-animate] { filter: none; }
}
