/* ==========================================================================
   POMA · capa visual estilo Apple · 2026-09
   Se carga la última. Solo CSS: no cambia HTML, JS, traducciones ni pagos.
   Para desactivarla basta con quitar su <link> en index.html.
   ========================================================================== */

:root {
  --ap-black: #000;
  --ap-graphite: #1d1d1f;
  --ap-graphite-2: #272729;
  --ap-gray: #f5f5f7;
  --ap-white: #fff;
  --ap-ink: #1d1d1f;
  --ap-muted: #6e6e73;
  --ap-muted-dark: #86868b;
  --ap-soft-dark: #a1a1a6;
  --ap-line: #d2d2d7;
  --ap-blue: #0071e3;
  --ap-blue-hover: #0077ed;
  --ap-link: #0066cc;
  --ap-link-dark: #2997ff;
  --ap-radius-xl: 30px;
  --ap-radius-lg: 22px;
  --ap-radius-md: 16px;
  --ap-ease: cubic-bezier(.28, .11, .32, 1);
  --ap-spectrum: linear-gradient(92deg, #2997ff 0%, #7a6cff 26%, #d65bd6 50%, #ff6a5c 74%, #ffb340 100%);
  --ap-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", system-ui, sans-serif;
  --shell: min(1120px, calc(100vw - 48px));
  --font-sans: var(--ap-font);
  --font-editorial: var(--ap-font);
}

html body {
  font-family: var(--ap-font);
  font-size: 17px;
  letter-spacing: -.012em;
  color: var(--ap-ink);
  /* Negro bajo la barra superior para que el cristal oscuro se vea negro sobre la portada */
  background: var(--ap-white);
}

html body .shell { width: var(--shell); }
html body .scroll-progress { display: none; }

/* --------------------------------------------------------------------------
   Tipografía de sección: titulares centrados, tracking de producto Apple
   -------------------------------------------------------------------------- */
html body .section-heading,
html body .section-heading--split {
  display: block;
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

html body .section-heading h2,
html body .section-heading--split h2,
html body .technical__intro h2,
html body .local-section h2,
html body .interest h2,
html body .faq h2,
html body #precios .section-heading h2 {
  max-width: none;
  margin: 0 auto;
  font-family: var(--ap-font);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.035em;
  text-wrap: balance;
}

html body .eyebrow,
html body .eyebrow--dark {
  justify-content: center;
  margin: 0 0 12px;
  color: var(--ap-muted);
  font-size: clamp(.95rem, 1.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -.01em;
}

html body .eyebrow span { display: none !important; }

/* Botones: píldoras Apple */
html body .button {
  min-height: 44px;
  padding-inline: 22px;
  border-radius: 980px;
  font-family: var(--ap-font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: background-color .25s var(--ap-ease), color .25s var(--ap-ease), transform .25s var(--ap-ease);
}

html body .button:active { transform: scale(.98); }
html body .button--small { min-height: 32px; padding-inline: 16px; font-size: .82rem; }
html body .button--signal,
html body .button--ink,
html body .button--light { color: #fff; background: var(--ap-blue); }
html body .button--signal:hover,
html body .button--ink:hover,
html body .button--light:hover { background: var(--ap-blue-hover); }
html body .button i { font-style: normal; }

/* --------------------------------------------------------------------------
   Navegación global: cristal claro; oscuro sobre la portada
   -------------------------------------------------------------------------- */
html body .site-header,
html body .site-header.is-scrolled {
  background: rgba(251, 251, 253, .8) !important;
  border-bottom: 1px solid rgba(0, 0, 0, .06) !important;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: background-color .4s var(--ap-ease), border-color .4s var(--ap-ease);
}

html body .desktop-nav a {
  color: rgba(0, 0, 0, .8);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: -.01em;
  transition: color .3s var(--ap-ease);
}

html body .desktop-nav a:hover,
html body .desktop-nav a.is-active { color: #000; }

html body .header-cta { min-height: 30px; padding-inline: 14px; font-size: .75rem; font-weight: 500; }

html body .brand__symbol,
html body .brand__wordmark { transition: filter .4s var(--ap-ease); }

/* --------------------------------------------------------------------------
   Portada: animación de impresión controlada por el scroll (poma-film.js)
   --intro  0→1 el titular se retira y la ventana del vídeo se abre a pantalla completa
   -------------------------------------------------------------------------- */
html body .hero {
  height: 360svh;
  min-height: 2200px;
  color: var(--ap-ink);
  background: var(--ap-white);
  overflow: clip !important; /* hidden rompería el sticky */
}

html body .hero__grid {
  position: sticky;
  top: 54px;
  width: 100%;
  max-width: none;
  height: calc(100svh - 54px);
  min-height: 600px;
  margin: 0;
  padding: 0;
  display: block;
  overflow: hidden;
}

html body .hero__copy {
  position: relative;
  z-index: 4;
  width: var(--shell);
  max-width: 980px;
  margin: 0 auto;
  padding-top: clamp(28px, 6vh, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: calc(1 - var(--intro, 0) * 2.6) !important;
  transform: translate3d(0, calc(var(--intro, 0) * -60px), 0) scale(calc(1 - var(--intro, 0) * .05));
  transform-origin: 50% 0;
}

html:not(.has-print-hero) body .hero__copy { opacity: 1 !important; transform: none; }

html body .hero .eyebrow { margin-bottom: 12px; color: var(--ap-muted); font-size: clamp(1rem, 1.5vw, 1.25rem); }

html body .hero h1 {
  max-width: none;
  margin: 0 auto;
  color: var(--ap-ink);
  font-size: clamp(2.7rem, 5.6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.042em;
}

html body .hero h1 em {
  margin: 0;
  padding-bottom: .1em;
  color: transparent;
  background: linear-gradient(92deg, #0071e3 0%, #6e4cff 30%, #c23fd0 55%, #f0503f 80%, #f59a1b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html body .hero__lead {
  max-width: 36ch;
  margin: 14px auto 0;
  color: var(--ap-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -.015em;
}

html body .hero__actions { margin-top: 24px; justify-content: center; gap: 28px; }
html body .hero__actions .button { min-height: 46px; padding-inline: 24px; font-size: 1.05rem; }
html body .hero__actions .button i { display: none; }
html body .hero__secondary { color: var(--ap-link); font-size: 1.05rem; font-weight: 400; }
html body .hero__secondary:hover { color: var(--ap-link); text-decoration: underline; text-underline-offset: 3px; }
html body .hero__scroll-cue { display: none; }

html body .hero-product {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  display: block;
  pointer-events: none;
  opacity: 1 !important;
  translate: none !important;
  scale: none !important;
}

html body .hero-product::before,
html body .hero-product::after { display: none !important; }
html body .hero-product__roller { display: none !important; }

/* Ventana del vídeo: arranca bajo el titular y se abre hasta ocupar la pantalla */
.print-film { position: absolute; inset: 0; }

.print-film__panel {
  --top: clamp(330px, 52%, 470px);
  --side: max(24px, calc(50% - 560px));
  position: absolute;
  inset: 0;
  background: #d5dfe1;
  clip-path: inset(
    calc((1 - var(--intro, 0)) * var(--top)) calc((1 - var(--intro, 0)) * var(--side)) calc((1 - var(--intro, 0)) * 3vh)
    round calc((1 - var(--intro, 0)) * 30px)
  );
}

.print-film__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateY(calc((1 - var(--intro, 0)) * 14%)) scale(calc(1.06 - var(--intro, 0) * .06));
  transform-origin: 50% 30%;
}

.print-film__caption {
  position: absolute;
  z-index: 2;
  left: max(24px, calc(50% - 560px));
  top: clamp(28px, 7vh, 72px);
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.04em;
  text-shadow: 0 1px 30px rgba(255, 255, 255, .6);
}

.print-film__caption--build { opacity: var(--cap-build, 0); translate: 0 calc((1 - var(--cap-build, 0)) * 24px); }
.print-film__caption--done {
  color: transparent;
  background: linear-gradient(92deg, #0071e3 0%, #6e4cff 35%, #c23fd0 65%, #f0503f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  opacity: var(--cap-done, 0);
  translate: 0 calc((1 - var(--cap-done, 0)) * 24px);
}

.print-film__credit {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 12px;
  color: rgba(29, 29, 31, .55);
  font-size: .7rem;
  opacity: var(--intro, 0);
}

/* --------------------------------------------------------------------------
   Ventajas: continúa en negro con tres azulejos grafito
   -------------------------------------------------------------------------- */
html body .process {
  padding-block: clamp(40px, 5vw, 72px) clamp(90px, 10vw, 150px);
  color: #f5f5f7;
  background: var(--ap-black);
}

html body .process .section-heading h2 { color: #f5f5f7; }
html body .process .eyebrow { color: var(--ap-muted-dark); }

html body .validation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border: 0;
}

html body .validation-grid::before { display: none; }

html body .validation-card,
html body .validation-card--active,
html body .validation-card--done,
html body .validation-card:first-child,
html body .validation-card:last-child {
  min-height: 300px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  color: #f5f5f7;
  background: var(--ap-graphite) !important;
  border: 0 !important;
  border-radius: var(--ap-radius-xl);
  overflow: hidden;
  position: relative;
}

html body .validation-card + .validation-card { border-left: 0 !important; }

html body .validation-card__top {
  position: absolute;
  top: clamp(26px, 3vw, 40px);
  left: clamp(28px, 3vw, 44px);
  right: clamp(28px, 3vw, 44px);
  margin: 0;
}

html body .validation-card__top > span { color: var(--ap-muted-dark) !important; font-size: .82rem; font-weight: 500; }
html body .validation-card__top b { color: var(--ap-soft-dark) !important; font-size: .82rem !important; font-weight: 600 !important; }

html body .validation-card h3 {
  max-width: none;
  color: transparent;
  background: var(--ap-spectrum);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}

html body .validation-card:nth-child(1) h3 { background-position: 0 0; }
html body .validation-card:nth-child(2) h3 { background-position: 50% 0; }
html body .validation-card:nth-child(3) h3 { background-position: 100% 0; }

html body .validation-card > small { order: 3; color: var(--ap-soft-dark); font-size: .9rem; }
html body .validation-card p { max-width: 28ch; color: var(--ap-soft-dark) !important; font-size: 1.05rem; line-height: 1.4; }

/* --------------------------------------------------------------------------
   Materiales: tarjetas blancas tipo Apple Store sobre gris
   -------------------------------------------------------------------------- */
html body .filament-collection {
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--ap-gray);
}

html body .filament-collection .shell { width: var(--shell); }
html body .filament-collection .section-heading h2 { font-size: clamp(2.4rem, 5.2vw, 4rem); }

html body .filament-collection__toolbar {
  max-width: none;
  min-height: 0;
  margin: -18px auto 48px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px 18px;
  border: 0;
  text-align: center;
}

html body .filament-collection__toolbar strong { color: var(--ap-ink); font-size: 1.05rem; font-weight: 600; }
html body .filament-collection__toolbar span { color: var(--ap-muted); font-size: 1.05rem; }
html body .filament-collection__toolbar > * { margin: 0 !important; grid-column: auto !important; }
html body .filament-collection__toolbar a { color: var(--ap-link); font-size: 1.05rem; font-weight: 400; }
html body .filament-collection__toolbar a i { font-style: normal; }

html body .filament-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

html body .filament-card,
html body .filament-card--featured,
html body .filament-card:hover {
  height: 100%;
  padding: 18px 18px 30px;
  display: flex;
  flex-direction: column;
  background: var(--ap-white);
  border-radius: var(--ap-radius-xl);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  overflow: hidden;
  transition: box-shadow .45s var(--ap-ease), transform .45s var(--ap-ease) !important;
}

@media (hover: hover) {
  html body .filament-card:hover {
    box-shadow: 0 18px 50px rgba(0, 0, 0, .1);
    transform: translateY(-4px) !important;
  }
}

html body .filament-card__media,
html body .filament-card > .filament-card__visual {
  width: 100%;
  align-self: stretch;
}

html body .filament-card__visual {
  background: #f3f3f0;
  border-radius: var(--ap-radius-lg);
}

html body .filament-card__visual::before { top: 18px; left: 20px; font-size: .75rem; }
html body .filament-card__badge,
html body .filament-card--featured .filament-card__badge {
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  color: #b64400;
  background: rgba(255, 255, 255, .8);
  border-radius: 980px;
  font-size: .72rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

html body .filament-card__colors,
html body .filament-card__body { padding-inline: 14px; }

html body .filament-card__colors { margin-top: 20px; }
html body .filament-swatches { justify-content: center; gap: 9px; }

html body .filament-card__body {
  margin-top: auto;
  padding-top: 22px;
  text-align: center;
}

html body .filament-card__heading {
  display: block;
  text-align: center;
}

html body .filament-card__heading > span { display: none; }

html body .filament-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -.035em;
}

html body .filament-card h3 a { color: var(--ap-ink); }

html body .filament-card__description {
  margin: 6px 0 0;
  color: var(--ap-muted);
  font-size: 1.15rem;
  font-weight: 400;
}

html body .filament-card__footer {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 0;
  padding: 0;
}

html body .filament-card__price { display: block; text-align: center; }
html body .filament-card__price > span { color: var(--ap-ink); font-size: 1rem; }
html body .filament-card__price strong { color: var(--ap-ink); font-size: 1rem; font-weight: 600; }
html body .filament-card__price small { display: block; margin-top: 2px; color: var(--ap-muted); font-size: .82rem; }

html body .filament-card__cta {
  min-height: 40px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff !important;
  background: var(--ap-blue) !important;
  border-radius: 980px;
  font-size: .95rem;
  font-weight: 500;
}

html body .filament-card__cta:hover { background: var(--ap-blue-hover) !important; }
html body .filament-card__cta span { display: none; }

html body .filament-collection__note {
  margin: 36px auto 0;
  max-width: 70ch;
  color: var(--ap-muted);
  font-size: .78rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Precios: cuatro azulejos grises con el precio como protagonista
   -------------------------------------------------------------------------- */
html body .pricing {
  padding-block: clamp(90px, 10vw, 150px) clamp(28px, 3vw, 40px);
  background: var(--ap-white);
}

html body .pricing .eyebrow { color: var(--ap-muted); }

html body .purchase-step-number {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
  color: #fff;
  background: var(--ap-ink);
  font-size: .75rem;
}

html body .price-grid.price-grid--compact {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border: 0;
}

html body .price-grid--compact .price-card,
html body .price-grid--compact .price-card:first-child,
html body .price-grid--compact .price-card + .price-card {
  min-height: 250px;
  padding: 30px 26px 26px !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  background: var(--ap-gray) !important;
  border: 0 !important;
  border-radius: var(--ap-radius-lg) !important;
  box-shadow: inset 0 0 0 0 var(--ap-blue) !important;
  transition: box-shadow .3s var(--ap-ease), background-color .3s var(--ap-ease) !important;
}

html body .price-grid--compact .price-card:hover { background: #ededf0 !important; }

html body .price-grid--compact .price-card.is-selected {
  background: var(--ap-white) !important;
  box-shadow: inset 0 0 0 2px var(--ap-blue) !important;
}

html body .price-grid--compact .price-card__name {
  color: var(--ap-ink) !important;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

html body .price-grid--compact .price-card--featured .price-card__name::after {
  content: " ★";
  color: #bf4800;
  font-size: .9rem;
}

html body .price-grid--compact .price-card__amount { margin-top: auto; align-items: flex-start; }
html body .price-grid--compact .price-card__amount strong {
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.045em;
}
html body .price-grid--compact .price-card__amount span { margin-left: 3px; color: var(--ap-ink); font-size: 1.4rem; font-weight: 600; }
html body .price-grid--compact .price-card__unit { color: var(--ap-muted); font-size: .9rem; }

html body .price-grid--compact .price-card .button {
  margin-top: 18px;
  min-height: 36px;
  padding: 0 16px !important;
  color: var(--ap-blue) !important;
  background: transparent !important;
  border-radius: 980px !important;
  box-shadow: inset 0 0 0 1px var(--ap-blue) !important;
  font-size: .9rem;
  text-decoration: none !important;
}

html body .price-grid--compact .price-card .button:hover,
html body .price-grid--compact .price-card.is-selected .button {
  color: #fff !important;
  background: var(--ap-blue) !important;
}

/* Configurador: un gran panel gris con el resumen como tarjeta blanca */
html body .purchase-configurator {
  max-width: none;
  margin-top: 56px;
  padding: clamp(16px, 1.6vw, 22px);
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .75fr);
  gap: clamp(16px, 1.6vw, 22px);
  background: var(--ap-gray);
  border: 0 !important;
  border-radius: var(--ap-radius-xl);
}

html body .configurator__main {
  padding: clamp(24px, 3vw, 44px);
  background: var(--ap-white);
  border-radius: var(--ap-radius-lg);
}

html body .configurator__header { border: 0; }
html body .configurator__header > p { color: var(--ap-muted); font-size: .95rem; font-weight: 600; }
html body .configurator__header h3 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -.035em;
}

html body .order-line {
  border-radius: var(--ap-radius-md);
}

html body .order-line__preview { border-radius: 14px; }

html body .add-order-line {
  min-height: 42px;
  padding: 0 20px;
  color: var(--ap-blue);
  background: transparent;
  border: 1px solid var(--ap-blue);
  border-radius: 980px;
  font-weight: 500;
}

html body .add-order-line:hover { color: #fff; background: var(--ap-blue); }

html body .delivery-option {
  border-radius: var(--ap-radius-md);
}

html body .configurator-summary {
  position: sticky;
  top: 72px;
  align-self: start;
  padding: clamp(24px, 2.6vw, 36px);
  background: var(--ap-white) !important;
  border: 0 !important;
  border-radius: var(--ap-radius-lg);
}

html body .configurator-summary h3 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -.03em;
}

html body .configurator-total strong {
  font-weight: 600;
  letter-spacing: -.045em;
}

html body .checkout-button { min-height: 50px; font-size: 1.02rem; }
html body .configurator-human { color: var(--ap-link); text-decoration: none; }
html body .configurator-human:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Ficha técnica: fila desplegable limpia
   -------------------------------------------------------------------------- */
html body .technical {
  padding-block: 0 clamp(80px, 8vw, 120px);
  background: var(--ap-white);
}

html body .technical-disclosure {
  background: var(--ap-gray);
  border: 0 !important;
  border-radius: var(--ap-radius-xl);
  overflow: hidden;
}

html body .technical-disclosure__summary,
html body .technical-disclosure[open] .technical-disclosure__summary,
html body .technical-disclosure__summary:hover {
  background: transparent !important;
  padding: clamp(26px, 3vw, 40px) clamp(26px, 3.4vw, 48px);
  border: 0 !important;
}

html body .technical-disclosure__kicker { color: var(--ap-muted); letter-spacing: 0; text-transform: none; font-size: .9rem; font-weight: 600; }
html body .technical-disclosure__title strong { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 600; letter-spacing: -.03em; }
html body .technical-disclosure__title small { color: var(--ap-muted); font-size: .95rem; }
html body .technical-disclosure__action { color: var(--ap-link); }
html body .technical-disclosure__body { padding: 0 clamp(26px, 3.4vw, 48px) clamp(26px, 3.4vw, 48px); }
html body .technical-disclosure .section-heading,
html body .technical__intro { text-align: left; }
html body .technical__intro .eyebrow { justify-content: flex-start; }
html body .technical__intro h2 { margin: 0; font-size: clamp(2rem, 3.4vw, 2.8rem); }
html body .profile-downloads__grid a { border-radius: var(--ap-radius-md); }

/* --------------------------------------------------------------------------
   Recogida: bloque oscuro con mapa redondeado
   -------------------------------------------------------------------------- */
html body .local-section {
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--ap-black);
}

html body .local-section__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(40px, 6vw, 88px);
}

html body .local-map {
  height: 460px;
  background: var(--ap-graphite);
  border-radius: var(--ap-radius-xl);
}

html body .local-map iframe { filter: grayscale(.4) contrast(1.05); }
html body .local-map__address { border-radius: var(--ap-radius-md); background: rgba(29, 29, 31, .78); }
html body .local-map__address address { font-size: .85rem; }
html body .local-map__address a { font-size: .85rem; }
html body .local-section .eyebrow { justify-content: flex-start; color: var(--ap-muted-dark); }
html body .local-section h2 { margin: 0; color: #f5f5f7; text-align: left; font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
html body .local-section__copy > p:not(.eyebrow) { max-width: 34ch; margin-top: 20px; color: var(--ap-soft-dark); font-size: 1.2rem; line-height: 1.45; }

/* --------------------------------------------------------------------------
   Contacto
   -------------------------------------------------------------------------- */
html body .interest {
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--ap-gray);
}

html body .interest__copy .eyebrow { justify-content: flex-start; color: var(--ap-muted); }
html body .interest__copy h2 { margin: 0; text-align: left; font-size: clamp(2.2rem, 4vw, 3.4rem); }
html body .interest__copy > p:not(.eyebrow) { color: var(--ap-muted); font-size: 1.15rem; }

html body .interest-form {
  padding: clamp(28px, 3.4vw, 48px);
  gap: 20px;
  background: var(--ap-white);
  border: 0 !important;
  border-radius: var(--ap-radius-xl);
}

html body .interest-form legend,
html body .interest-form label > .field-label { font-size: .85rem; }

html body .interest-form input[type="text"],
html body .interest-form input[type="email"],
html body .interest-form input[type="number"],
html body .interest-form select,
html body .interest-form textarea {
  min-height: 50px;
  padding-inline: 16px;
  background-color: var(--ap-white);
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color .2s var(--ap-ease), box-shadow .2s var(--ap-ease);
}

html body .interest-form textarea { padding-block: 14px; }

html body .interest-form input:focus,
html body .interest-form select:focus,
html body .interest-form textarea:focus {
  border-color: var(--ap-blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, .16);
}

html body .interest-form .button--submit {
  min-height: 50px;
  border-radius: 980px;
}

html body .consent { font-size: .82rem; }
html body .form-note { font-size: .78rem; }

/* --------------------------------------------------------------------------
   Preguntas frecuentes: columna centrada
   -------------------------------------------------------------------------- */
html body .faq {
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--ap-white);
}

html body .faq__grid {
  display: block;
  max-width: 820px;
  margin-inline: auto;
}

html body .faq .section-heading { margin: 0 auto 44px; }
html body .faq .section-heading h2 { max-width: none; }
html body .faq__list { border-top: 1px solid var(--ap-line); }

html body .faq summary {
  min-height: 76px;
  padding: 24px 0;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -.02em;
}

html body .faq summary span,
html body .faq summary span::after { background: var(--ap-ink); }
html body .faq details p { padding-bottom: 26px; font-size: 1.05rem; line-height: 1.5; }

/* --------------------------------------------------------------------------
   Pie: el pie compacto de apple.com
   -------------------------------------------------------------------------- */
html body .site-footer {
  background: var(--ap-gray);
  border-top: 0;
}

html body .site-footer__top { min-height: 0; padding-block: 36px 24px; }
html body .site-footer__info > p { font-size: .78rem; color: var(--ap-muted); }
html body .site-footer__info nav a { color: #424245; font-size: .78rem; }
html body .site-footer__info nav a:hover { color: var(--ap-ink); text-decoration: underline; }
html body .site-footer__bottom { color: var(--ap-muted-dark); border-top-color: var(--ap-line); font-size: .75rem; }
html body .site-footer .button--light { min-height: 36px; font-size: .88rem; }

/* Botones flotantes y barras móviles: cristal */
html body .petg-chat__toggle,
html body .whatsapp-link--floating {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
}

html body .mobile-cta,
html body .mobile-config-summary {
  border-radius: 980px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

/* --------------------------------------------------------------------------
   Movimiento de entrada: más suave y largo, al estilo de las páginas de producto
   -------------------------------------------------------------------------- */
html.js body [data-reveal] {
  translate: 0 36px;
  transition:
    opacity 1s var(--ap-ease) var(--delay, 0s),
    translate 1s var(--ap-ease) var(--delay, 0s),
    scale 1s var(--ap-ease) var(--delay, 0s);
}

html.js body [data-reveal="scale"] { translate: 0 28px; scale: .97; }
html.js body [data-reveal].is-visible { translate: 0; scale: 1; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  html body .validation-grid { grid-template-columns: 1fr; }
  html body .validation-card,
  html body .validation-card--active,
  html body .validation-card--done,
  html body .validation-card:first-child,
  html body .validation-card:last-child { min-height: 220px; }
  html body .price-grid.price-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  html body .purchase-configurator { grid-template-columns: 1fr; }
  html body .configurator-summary { position: static; }
}

@media (max-width: 900px) {
  html body .hero__grid { grid-template-columns: 1fr !important; }
  html body .local-section__grid,
  html body .interest__grid { grid-template-columns: 1fr; }
  html body .interest__copy { position: static; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 32px); }

  html body .hero { height: 320svh; min-height: 1900px; }
  html body .hero__grid { min-height: 560px; }
  html body .hero__copy { padding-top: 36px; }
  html body .hero .eyebrow { font-size: 1rem; }
  html body .hero h1 { font-size: clamp(2.5rem, 11.4vw, 3.5rem); line-height: 1.06; }
  html body .hero__lead { font-size: 1.08rem; }
  html body .hero__actions { flex-direction: column; gap: 16px; }
  .print-film__panel { --top: clamp(430px, 62%, 480px); --side: 16px; }
  .print-film__caption { left: 20px; right: 20px; top: 28px; font-size: clamp(2rem, 9vw, 2.6rem); }

  html body .filament-grid { grid-template-columns: 1fr; gap: 18px; }
  html body .filament-card,
  html body .filament-card--featured,
  html body .filament-card:hover { padding: 12px 12px 26px; border-radius: 26px; }

  html body .price-grid.price-grid--compact { gap: 12px; }
  html body .price-grid--compact .price-card,
  html body .price-grid--compact .price-card:first-child,
  html body .price-grid--compact .price-card + .price-card { min-height: 190px; padding: 22px 18px 18px !important; }
  html body .price-grid--compact .price-card__amount strong { font-size: 2.4rem; }
  html body .price-grid--compact .price-card > * { align-self: flex-start !important; }

  html body .purchase-configurator { padding: 10px; border-radius: 24px; }
  html body .configurator__main,
  html body .configurator-summary { padding: 22px 18px; border-radius: 18px; }

  html body .local-map { height: 340px; }
  html body .technical-disclosure { border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html body .hero { height: auto; min-height: 0; }
  html body .hero__grid { position: relative; top: 0; height: auto; min-height: 0; }
  html body .hero__copy { opacity: 1 !important; transform: none; }
  html body .hero-product { position: relative; inset: auto; height: 72svh; }
  .print-film__panel { position: relative; height: 62svh; clip-path: none; border-radius: 28px; overflow: hidden; margin: 24px auto 0; width: var(--shell); }
  .print-film__canvas { transform: none; }
  .print-film__caption { display: none; }
  .print-film { position: relative; }
  html body .filament-card:hover { transform: none !important; }
}


/* Ficha abierta: todo el contenido sobre el mismo gris del bloque */
html body .technical-disclosure[open],
html body .technical-disclosure .technical-disclosure__body,
html body .technical-disclosure .technical__grid,
html body .technical-disclosure .technical__data,
html body .technical-disclosure .profile-downloads { background: transparent !important; }
html body .technical-disclosure[open] { background: var(--ap-gray) !important; }
html body .technical-disclosure[open] .technical-disclosure__summary { border-bottom: 1px solid var(--ap-line) !important; }
html body .profile-downloads__grid a { background: var(--ap-white) !important; border: 0 !important; }

/* --------------------------------------------------------------------------
   Ajustes 25-09: cuatro materiales en una fila, preguntas sin arrastre,
   interruptor de IVA en el resumen del pedido
   -------------------------------------------------------------------------- */
html body .filament-collection .shell { width: min(1280px, calc(100vw - 48px)); }

@media (min-width: 1081px) {
  html body .filament-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
  html body .filament-card,
  html body .filament-card--featured,
  html body .filament-card:hover { padding: 12px 12px 26px; border-radius: 26px; }
  html body .filament-card__visual { border-radius: 18px; }
  html body .filament-card__colors,
  html body .filament-card__body { padding-inline: 6px; }
  html body .filament-swatches { gap: 5px; }
  html body .filament-swatch { flex-basis: 28px; width: 28px; height: 28px; }
  html body .filament-swatch i { width: 20px; height: 20px; }
  html body .filament-card h3 { font-size: clamp(1.4rem, 1.9vw, 1.75rem); }
  html body .filament-card__description { font-size: 1rem; }
}

@media (min-width: 721px) and (max-width: 1080px) {
  html body .filament-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* El titular de Preguntas era "sticky" en el diseño anterior y se arrastraba */
html body .faq .section-heading { position: static !important; top: auto; }

/* Interruptor tipo iOS */
.vat-toggle {
  margin: 18px 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ap-ink);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.vat-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vat-toggle__switch {
  position: relative;
  flex: 0 0 51px;
  width: 51px;
  height: 31px;
  border-radius: 999px;
  background: #e9e9eb;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
  transition: background-color .25s var(--ap-ease);
}

.vat-toggle__switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .15), 0 1px 1px rgba(0, 0, 0, .16);
  transition: transform .25s var(--ap-ease);
}

.vat-toggle input:checked + .vat-toggle__switch { background: #34c759; }
.vat-toggle input:checked + .vat-toggle__switch::after { transform: translateX(20px); }
.vat-toggle input:focus-visible + .vat-toggle__switch { outline: 3px solid rgba(0, 113, 227, .35); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   Ventajas en formato bento: velocímetro, barras de precio y mezcla de colores
   -------------------------------------------------------------------------- */
html body .process .shell { width: min(1180px, calc(100vw - 48px)); }

html body .validation-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

html body .validation-card,
html body .validation-card--active,
html body .validation-card--done,
html body .validation-card:first-child,
html body .validation-card:last-child {
  min-height: 0;
  padding: clamp(28px, 3.2vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  background: #161617 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

html body .validation-card:nth-child(1) { grid-column: span 7; }
html body .validation-card:nth-child(2) { grid-column: span 5; }
html body .validation-card:nth-child(3) { grid-column: 1 / -1; }

html body .validation-card__top {
  position: static;
  margin: 0 0 6px;
  justify-content: flex-start;
}

html body .validation-card__top > span { display: none; }
html body .validation-card__top b {
  color: var(--ap-muted-dark) !important;
  font-size: .95rem !important;
}

html body .validation-card h3 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
html body .validation-card > small { order: 0; margin-top: -4px; }
html body .validation-card p { font-size: 1.1rem; }

/* 1 · Velocímetro */
.adv-gauge {
  position: relative;
  width: min(100%, 440px);
  margin: clamp(20px, 3vw, 36px) auto 0;
}

.adv-gauge svg { display: block; width: 100%; overflow: visible; }
.adv-gauge path { fill: none; stroke-linecap: round; }
.adv-gauge__track { stroke: rgba(255, 255, 255, .08); stroke-width: 14; }
.adv-gauge .adv-gauge__ticks { stroke: rgba(255, 255, 255, .28); stroke-width: 30; stroke-linecap: butt; stroke-dasharray: .25 4.75; stroke-dashoffset: -.1; opacity: .55; -webkit-mask: none; }
.adv-gauge__fill {
  stroke: url(#adv-gauge-grad);
  stroke-width: 14;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 10px rgba(179, 108, 255, .55));
  transition: stroke-dashoffset 1.6s cubic-bezier(.16, 1, .3, 1);
}
.adv-on .adv-gauge__fill { stroke-dashoffset: 0; }

.adv-gauge__readout {
  position: absolute;
  left: 50%;
  bottom: -2px;
  translate: -50% 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.adv-gauge__readout b {
  color: #f5f5f7;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
}
.adv-gauge__readout span { color: var(--ap-muted-dark); font-size: 1rem; font-weight: 500; }

/* 2 · Barras de precio por kilo (eje desde cero) */
.adv-bars {
  height: 230px;
  margin-top: auto;
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.adv-bar {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.adv-bar i {
  width: 100%;
  height: calc(var(--v) / 8.1 * 100% - 48px);
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(#3a3a3c, #2c2c2e);
  transform-origin: 50% 100%;
  transform: scaleY(.04);
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.adv-bar:nth-child(2) i { transition-delay: .08s; }
.adv-bar:nth-child(3) i { transition-delay: .16s; }
.adv-bar:nth-child(4) i { transition-delay: .24s; }
.adv-on .adv-bar i { transform: scaleY(1); }

.adv-bar--best i { background: linear-gradient(#2997ff, #0071e3); box-shadow: 0 10px 30px rgba(0, 113, 227, .35); }

.adv-bar b {
  order: -1;
  color: var(--ap-soft-dark);
  font-size: .8rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transition: opacity .6s ease .7s;
}
.adv-on .adv-bar b { opacity: 1; }
.adv-bar--best b { color: #f5f5f7; }
.adv-bar span { color: var(--ap-muted-dark); font-size: .8rem; }

.adv-bar em {
  position: absolute;
  top: 2px;
  right: 50%;
  translate: 50% 0;
  padding: 3px 9px;
  white-space: nowrap;
  color: #fff;
  background: #0071e3;
  border-radius: 999px;
  font-size: .72rem;
  font-style: normal;
  font-weight: 700;
  opacity: 0;
  scale: .8;
  transition: opacity .5s ease 1.1s, scale .5s cubic-bezier(.16, 1, .3, 1) 1.1s;
}
.adv-on .adv-bar em { opacity: 1; scale: 1; }

/* 3 · Mezcla de materiales: filas de colores reales en movimiento */
html body .validation-card:nth-child(3) {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.6fr);
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

html body .validation-card:nth-child(3) > * { grid-column: 1; }
html body .validation-card:nth-child(3) .adv-mix { grid-column: 2; grid-row: 1 / -1; align-self: center; }

.adv-mix { display: grid; gap: 14px; }

.adv-mix__row { display: grid; grid-template-columns: 118px minmax(0, 1fr); align-items: center; gap: 14px; }
.adv-mix__row > span { color: var(--ap-soft-dark); font-size: .85rem; font-weight: 600; white-space: nowrap; text-align: right; }
.adv-mix__track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.adv-mix__strip {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: adv-marquee calc(var(--n, 16) * 1.6s) linear infinite;
}

.adv-mix__row:nth-child(even) .adv-mix__strip { animation-direction: reverse; }

.adv-mix__strip i {
  flex: 0 0 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .45), transparent 42%), var(--c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), inset 0 -6px 10px rgba(0, 0, 0, .25);
}

[data-adv-mix="petg-translucid"] .adv-mix__strip i { opacity: .72; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35); }

@keyframes adv-marquee { to { transform: translateX(-50%); } }

@media (max-width: 1080px) {
  html body .validation-card:nth-child(1),
  html body .validation-card:nth-child(2),
  html body .validation-card:nth-child(3) { grid-column: 1 / -1; }
  html body .validation-card:nth-child(3) { display: flex; }
  .adv-mix { margin-top: 22px; }
}

@media (max-width: 720px) {
  html body .process .shell { width: calc(100vw - 32px); }
  html body .validation-grid { gap: 14px; }
  html body .validation-card,
  html body .validation-card:first-child,
  html body .validation-card:last-child { padding: 26px 22px; border-radius: 24px; }
  .adv-bars { height: 180px; gap: 8px; }
  .adv-mix__row { grid-template-columns: 1fr; gap: 6px; }
  .adv-mix__row > span { text-align: left; }
  .adv-mix__strip i { flex-basis: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .adv-mix__strip { animation: none; }
  .adv-gauge__fill, .adv-bar i, .adv-bar b, .adv-bar em { transition: none; }
}

/* --------------------------------------------------------------------------
   Crea tu pack: ver un color antes de añadirlo y ampliar la imagen
   -------------------------------------------------------------------------- */
.order-line__zoom {
  grid-area: preview;
  position: relative;
  width: 100%;
  padding: 0;
  display: block;
  background: #f3f3f0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
}

.order-line__zoom .order-line__preview { display: block; width: 100%; border-radius: 0; transition: transform .45s var(--ap-ease); }
.order-line__zoom:hover .order-line__preview { transform: scale(1.06); }
.order-line__zoom:focus-visible { outline: 3px solid rgba(0, 113, 227, .35); outline-offset: 2px; }

.order-line__zoom-icon {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85) center / 14px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2.4' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='M15.5 15.5 21 21M10.5 7.5v6M7.5 10.5h6'/%3E%3C/svg%3E");
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  backdrop-filter: blur(8px);
}

.order-line__preview-state:not(:empty) {
  margin-left: 8px;
  padding: 2px 8px;
  color: #b64400;
  background: #fff4e5;
  border-radius: 999px;
  font-size: .72rem;
  font-style: normal;
  font-weight: 600;
  vertical-align: 1px;
}

.order-line.is-previewing .order-line__zoom { box-shadow: inset 0 0 0 2px #f5a623; }
.order-line.is-previewing .quantity-stepper input { color: var(--ap-muted); }
.order-line.is-previewing [data-group-step="1"] {
  color: #fff !important;
  background: var(--ap-blue) !important;
  border-radius: 0 10px 10px 0;
  animation: poma-plus-pulse 1.6s ease-in-out infinite;
}

@keyframes poma-plus-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 113, 227, .45); }
  50% { box-shadow: 0 0 0 6px rgba(0, 113, 227, 0); }
}

/* Color que se está viendo (anillo) frente a colores ya en el pedido (contador) */
.order-swatch[data-active="true"] { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ap-blue) !important; }

/* Visor ampliado */
.color-zoom {
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  color: var(--ap-ink);
  background: #fff;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.color-zoom::backdrop { background: rgba(0, 0, 0, .45); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.color-zoom[open] { animation: poma-zoom-in .35s var(--ap-ease); }
@keyframes poma-zoom-in { from { opacity: 0; transform: scale(.96); } }

.color-zoom__figure { margin: 0; display: grid; }
.color-zoom__img { display: block; width: 100%; max-height: calc(100dvh - 140px); aspect-ratio: 1; object-fit: contain; background: #f3f3f0; }

.color-zoom__caption {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.color-zoom__dot { width: 18px; height: 18px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15); }
.color-zoom__name { font-size: 1.05rem; font-weight: 600; letter-spacing: -.02em; }
.color-zoom__state { color: var(--ap-muted); font-size: .85rem; }

.color-zoom__add {
  margin-left: auto;
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
  background: var(--ap-blue);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
}

.color-zoom__add:hover { background: var(--ap-blue-hover); }

.color-zoom__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  color: var(--ap-ink);
  background: rgba(255, 255, 255, .85);
  border: 0;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

@media (prefers-reduced-motion: reduce) {
  .order-line.is-previewing [data-group-step="1"] { animation: none; }
  .color-zoom[open] { animation: none; }
}
@media (min-width: 721px) {
  html body .order-line { grid-template-columns: 124px minmax(0, 1fr) 190px 32px; }
}
.order-line__preview-state:not(:empty) { white-space: nowrap; }

/* Ficha técnica: selector de material tipo control segmentado */
.technical__tabs {
  margin: 0 0 22px;
  padding: 4px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2px;
  background: #e8e8ed;
  border-radius: 12px;
}

.technical__tabs [role="tab"] {
  min-height: 34px;
  padding: 0 14px;
  color: var(--ap-ink);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .2s var(--ap-ease), box-shadow .2s var(--ap-ease);
}

.technical__tabs [role="tab"]:hover { background: rgba(255, 255, 255, .5); }
.technical__tabs [role="tab"][aria-selected="true"] { background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 1px rgba(0, 0, 0, .06); font-weight: 600; }
.technical__tabs [role="tab"]:focus-visible { outline: 3px solid rgba(0, 113, 227, .35); outline-offset: 1px; }

.technical__panel[hidden] { display: none !important; }
.technical__panel:not([hidden]) { animation: poma-panel-in .35s var(--ap-ease); }
@keyframes poma-panel-in { from { opacity: 0; transform: translateY(6px); } }
.technical__panel .technical__group-label + .technical__list { margin-bottom: 22px; }
.technical__source,
.technical__pending-copy { margin: 4px 0 0; color: var(--ap-muted); font-size: .8rem; line-height: 1.5; }
.technical__pending-copy { font-size: .95rem; }
.technical__pending-copy a { color: var(--ap-link); }

@media (max-width: 720px) {
  .technical__tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
}

/* --------------------------------------------------------------------------
   Comparativa de materiales (estilo "Comparar modelos")
   -------------------------------------------------------------------------- */
.material-compare {
  margin-top: clamp(64px, 8vw, 110px);
  padding: clamp(28px, 4vw, 56px);
  background: #fff;
  border-radius: 30px;
}

.material-compare__heading { max-width: 640px; margin: 0 auto 32px; text-align: center; }
.material-compare__heading h3 { margin: 0; font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 600; letter-spacing: -.035em; }
.material-compare__heading p { margin: 10px 0 0; color: var(--ap-muted); font-size: 1.1rem; }

.material-compare__scroll { overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.material-compare__scroll:focus-visible { outline: 3px solid rgba(0, 113, 227, .35); outline-offset: 4px; border-radius: 12px; }

.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; table-layout: fixed; }
.compare-table thead td { width: 18%; }
.compare-table thead th { padding: 0 10px 18px; vertical-align: bottom; text-align: center; font-weight: 600; }
.compare-table thead img { display: block; width: min(150px, 100%); height: auto !important; margin: 0 auto 12px; aspect-ratio: 1; object-fit: cover; border-radius: 18px; background: #f3f3f0; }
.compare-table thead span { font-size: 1.15rem; letter-spacing: -.02em; }

.compare-table tbody th,
.compare-table tbody td { padding: 16px 10px; border-top: 1px solid var(--ap-line); font-size: .95rem; line-height: 1.35; vertical-align: middle; }
.compare-table tbody th { color: var(--ap-muted); font-size: .82rem; font-weight: 600; text-align: left; }
.compare-table tbody td { color: var(--ap-ink); text-align: center; }
.compare-table__cta th, .compare-table__cta td { border-top: 0 !important; padding-top: 22px !important; }

.compare-meter { display: grid; gap: 6px; justify-items: center; }
.compare-meter b { font-weight: 600; font-variant-numeric: tabular-nums; }
.compare-meter i { width: min(120px, 90%); height: 6px; border-radius: 6px; background: #e8e8ed; position: relative; overflow: hidden; }
.compare-meter i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: calc(var(--v) * 100%); border-radius: inherit; background: linear-gradient(90deg, #2997ff, #0071e3); }

.compare-table__button {
  min-height: 36px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--ap-blue);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
}
.compare-table__button:hover { background: var(--ap-blue-hover); }

.material-compare__note { margin: 22px auto 0; max-width: 70ch; color: var(--ap-muted); font-size: .78rem; text-align: center; }

@media (max-width: 720px) {
  .material-compare { padding: 24px 0 28px; border-radius: 24px; }
  .material-compare__heading { padding-inline: 20px; }
  .material-compare__scroll { padding-inline: 12px; }
  .compare-table { min-width: 640px; }
  .compare-table tbody th { position: sticky; left: 0; z-index: 1; background: #fff; }
  html body .hero { height: 250svh; min-height: 1500px; }
}

/* Comparativa dentro de "Datos técnicos y ajustes" */
.technical-disclosure__body > .material-compare { margin: 0 0 clamp(28px, 4vw, 48px); }

/* --------------------------------------------------------------------------
   Preguntas frecuentes: buscador, temas y ayuda
   -------------------------------------------------------------------------- */
html body .faq__grid { max-width: 860px; }

.faq__tools { margin: 0 0 28px; display: grid; gap: 14px; justify-items: center; }

.faq__search { width: min(100%, 520px); }
.faq__search input {
  width: 100%;
  min-height: 48px;
  padding: 0 18px 0 46px;
  color: var(--ap-ink);
  background: var(--ap-gray) no-repeat 16px 50% / 18px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='M15.5 15.5 21 21'/%3E%3C/svg%3E");
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 1rem;
  transition: border-color .2s var(--ap-ease), box-shadow .2s var(--ap-ease), background-color .2s var(--ap-ease);
}
.faq__search input:focus { outline: 0; background-color: #fff; border-color: var(--ap-blue); box-shadow: 0 0 0 4px rgba(0, 113, 227, .15); }

.faq__filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.faq__filters button {
  min-height: 36px;
  padding: 0 16px;
  color: var(--ap-ink);
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: 999px;
  font: inherit;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .2s var(--ap-ease), color .2s var(--ap-ease), border-color .2s var(--ap-ease);
}
.faq__filters button:hover { border-color: #86868b; }
.faq__filters button[aria-pressed="true"] { color: #fff; background: var(--ap-ink); border-color: var(--ap-ink); }

html body .faq details[hidden] { display: none; }
html body .faq summary { position: relative; padding-right: 44px; cursor: pointer; list-style: none; }
html body .faq summary::-webkit-details-marker { display: none; }
html body .faq summary:hover { color: var(--ap-blue); }
html body .faq details[open] > p { animation: poma-faq-in .35s var(--ap-ease); }
html body .faq details p a { color: var(--ap-link); }
@keyframes poma-faq-in { from { opacity: 0; transform: translateY(-4px); } }

.faq__empty { margin: 24px 0 0; color: var(--ap-muted); text-align: center; }

.faq__help {
  margin-top: 40px;
  padding: 26px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  background: var(--ap-gray);
  border-radius: 24px;
}
.faq__help > div:first-child { display: grid; gap: 4px; }
.faq__help strong { font-size: 1.15rem; letter-spacing: -.02em; }
.faq__help span { color: var(--ap-muted); }
.faq__help-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.faq__help-actions .button { min-height: 42px; }
.faq__help-wa { color: #1d8a3a; font-weight: 600; text-decoration: none; }
.faq__help-wa:hover { text-decoration: underline; }

/* Mapa bajo demanda (sin cookies de terceros hasta pulsar) */
.local-map__consent {
  position: absolute;
  inset: 0 0 76px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  color: #f5f5f7;
  background:
    radial-gradient(circle at 50% 40%, rgba(41, 151, 255, .18), transparent 55%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 36px),
    #1d1d1f;
}
.local-map__pin { width: 38px; height: 38px; border-radius: 50% 50% 50% 0; background: #2997ff; transform: rotate(-45deg); box-shadow: 0 8px 20px rgba(41, 151, 255, .45); }
.local-map__consent strong { margin-top: 6px; font-size: 1.1rem; }
.local-map__consent small { max-width: 36ch; color: var(--ap-soft-dark); font-size: .82rem; line-height: 1.45; }
.local-map__consent .button { margin-top: 6px; min-height: 40px; }

@media (max-width: 720px) {
  .faq__help { padding: 22px; }
  .faq__help-actions { width: 100%; }
}

/* --------------------------------------------------------------------------
   Formulario: confirmación de envío con animación de "impresión" del check
   -------------------------------------------------------------------------- */
html body .interest-form.is-sent { display: none; }
html body .button.is-sending { opacity: .75; cursor: progress; }

html body .form-result {
  margin: 4px 0 0;
  padding: 14px 16px;
  color: var(--ap-ink);
  background: #eef5ff;
  border: 0;
  border-radius: 14px;
  font-size: .9rem;
  line-height: 1.5;
}
html body .form-result[data-tone="error"] { background: #fff1f0; }
html body .form-result[data-tone="error"] strong { color: #b42318; }
html body .form-result a { color: var(--ap-link); font-weight: 600; }

.form-success {
  position: relative;
  min-width: 0;
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  background: #fff;
  border-radius: var(--ap-radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transition: opacity .6s var(--ap-ease), transform .6s var(--ap-ease);
}
.form-success.is-in { opacity: 1; transform: none; }
.form-success:focus { outline: none; }
.form-success::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(closest-side, rgba(110, 76, 255, .12), transparent), radial-gradient(closest-side at 70% 50%, rgba(240, 80, 63, .1), transparent);
  pointer-events: none;
}

.form-success__mark { position: relative; width: 120px; height: 120px; margin-bottom: 6px; }
.form-success__mark svg { width: 120px; height: 120px; overflow: visible; }
.form-success__ring, .form-success__check { fill: none; stroke: url(#form-success-grad); stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 100; stroke-dashoffset: 100; }
.form-success__ring { stroke-width: 4; opacity: .35; }
.form-success__check { stroke-width: 9; }
.is-in .form-success__ring { animation: form-draw .8s var(--ap-ease) .1s forwards; }
.is-in .form-success__check { animation: form-draw .55s cubic-bezier(.65, 0, .35, 1) .8s forwards; }
@keyframes form-draw { to { stroke-dashoffset: 0; } }

/* La "boquilla" recorre el trazo del check como si lo imprimiera */
.form-success__nozzle {
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: #fff6e0;
  box-shadow: 0 0 10px 4px rgba(255, 154, 60, .9), 0 0 26px 10px rgba(255, 110, 30, .45);
  offset-path: path("M36 62 L53 78 L86 44");
  offset-rotate: 0deg;
  offset-distance: 0%;
  opacity: 0;
}
.form-success__nozzle::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9px;
  width: 22px;
  height: 26px;
  translate: -50% 0;
  background: linear-gradient(#6e6e73, #3a3a3c);
  clip-path: polygon(0 0, 100% 0, 100% 62%, 62% 100%, 38% 100%, 0 62%);
  border-radius: 4px 4px 0 0;
}
.is-in .form-success__nozzle { animation: form-nozzle .55s cubic-bezier(.65, 0, .35, 1) .8s forwards, form-nozzle-out .5s var(--ap-ease) 1.4s forwards; }
@keyframes form-nozzle { 0% { opacity: 1; offset-distance: 0%; } 100% { opacity: 1; offset-distance: 100%; } }
@keyframes form-nozzle-out { from { opacity: 1; offset-distance: 100%; transform: translateY(0); } to { opacity: 0; offset-distance: 100%; transform: translateY(-26px); } }

/* Hebras de filamento de colores */
.form-success__burst { position: absolute; left: 50%; top: 50%; pointer-events: none; }
.form-success__burst i {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--w);
  height: 4px;
  border-radius: 4px;
  background: var(--c);
  opacity: 0;
  animation: form-strand 1.3s cubic-bezier(.12, .7, .3, 1) calc(1.15s + var(--d)) forwards;
}
@keyframes form-strand {
  0% { opacity: 1; transform: translate(0, 0) rotate(0) scale(.4); }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--x), calc(var(--y) + 90px)) rotate(var(--r)) scale(1); }
}

.form-success__title, .form-success__lead, .form-success__steps, .form-success__summary, .form-success__actions, .form-success__again {
  opacity: 0;
  transform: translateY(10px);
}
.is-in .form-success__title { animation: form-rise .6s var(--ap-ease) 1.05s forwards; }
.is-in .form-success__lead { animation: form-rise .6s var(--ap-ease) 1.15s forwards; }
.is-in .form-success__steps { animation: form-rise .6s var(--ap-ease) 1.25s forwards; }
.is-in .form-success__summary { animation: form-rise .6s var(--ap-ease) 1.35s forwards; }
.is-in .form-success__actions { animation: form-rise .6s var(--ap-ease) 1.45s forwards; }
.is-in .form-success__again { animation: form-rise .6s var(--ap-ease) 1.55s forwards; }
@keyframes form-rise { to { opacity: 1; transform: none; } }

.form-success__title { margin: 0; font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.05; }
.form-success__lead { max-width: 42ch; margin: 0; color: var(--ap-muted); font-size: 1.08rem; line-height: 1.5; }
.form-success__lead span { color: var(--ap-ink); font-weight: 600; }
.form-success__lead strong { color: var(--ap-ink); font-weight: 600; word-break: break-word; }

.form-success__steps { width: 100%; max-width: 520px; margin: 10px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.form-success__steps li { display: grid; justify-items: center; gap: 8px; padding: 14px 8px; background: var(--ap-gray); border-radius: 16px; font-size: .85rem; line-height: 1.3; }
.form-success__steps b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--ap-muted); background: #fff; font-size: .8rem; }
.form-success__steps li.is-done b { color: #fff; background: #1f9a3c; }

.form-success__summary { width: 100%; max-width: 520px; margin: 4px 0 0; padding: 14px 18px; display: grid; gap: 6px; text-align: left; border: 1px solid var(--ap-line); border-radius: 16px; }
.form-success__summary dt { color: var(--ap-muted); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.form-success__summary dd { margin: 0; display: flex; justify-content: space-between; gap: 16px; font-size: .9rem; }
.form-success__summary dd span { color: var(--ap-muted); }
.form-success__summary dd strong { font-weight: 600; text-align: right; }

.form-success__actions { margin-top: 8px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 22px; }
.form-success__wa { color: #1d8a3a; font-weight: 600; text-decoration: none; }
.form-success__wa:hover { text-decoration: underline; }
.form-success__again { margin-top: 2px; padding: 6px 10px; color: var(--ap-link); background: none; border: 0; font: inherit; font-size: .9rem; cursor: pointer; }
.form-success__again:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .form-success__steps { grid-template-columns: 1fr; }
  .form-success__steps li { grid-template-columns: 28px 1fr; justify-items: start; align-items: center; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .form-success, .form-success * { animation-duration: .01s !important; animation-delay: 0s !important; transition-duration: .01s !important; }
  .form-success__nozzle { display: none; }
}

/* --------------------------------------------------------------------------
   Menú superior estilo apple.com
   -------------------------------------------------------------------------- */
html body .site-header,
html body .site-header.is-scrolled {
  height: 54px;
  background: rgba(251, 251, 253, .72) !important;
  border-bottom: 1px solid rgba(0, 0, 0, .07) !important;
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  transition: background-color .45s var(--ap-ease), border-color .45s var(--ap-ease);
}

html body .site-header__inner {
  width: min(1180px, calc(100vw - 40px));
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

html body .brand--poma { min-width: 0; gap: 9px; }
html body .site-header .brand__symbol { width: 28px; height: 28px; }
html body .site-header .brand__wordmark { width: 70px; }

html body .desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

html body .desktop-nav a {
  position: relative;
  padding: 7px 12px;
  color: rgba(0, 0, 0, .78);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 450;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: color .25s var(--ap-ease), background-color .25s var(--ap-ease);
}

html body .desktop-nav a:hover { color: #000; background: rgba(0, 0, 0, .05); }
html body .desktop-nav a.is-active { color: #000; font-weight: 600; }
html body .desktop-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--ap-blue);
  display: block;
}

html body .site-header__actions { display: flex; align-items: center; gap: 10px; }

html body .site-header .poma-language__trigger {
  width: auto;
  height: 30px;
  padding: 0 10px;
  grid-template-columns: 16px auto 7px;
  gap: 6px;
  color: rgba(0, 0, 0, .78);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 11.5px;
}
html body .site-header .poma-language__trigger:hover,
html body .site-header .poma-language.is-open .poma-language__trigger { background: rgba(0, 0, 0, .05); }
html body .site-header .poma-language__flag { width: 16px; height: 11px; border-radius: 2px; }

html body .header-cta {
  min-height: 30px;
  padding: 0 15px;
  font-size: .78rem;
  font-weight: 500;
}

/* Línea de progreso de lectura, con los colores de la marca */
html body .scroll-progress {
  display: block !important;
  position: fixed;
  top: 53px;
  left: 0;
  right: 0;
  z-index: 101;
  height: 2px;
  background: linear-gradient(90deg, #0071e3, #6e4cff 35%, #c23fd0 65%, #f0503f) !important;
  transform-origin: 0 50%;
  box-shadow: none !important;
  pointer-events: none;
}

/* Sobre secciones negras la cabecera pasa a cristal oscuro */
html body.header-on-dark .site-header,
html body.header-on-dark .site-header.is-scrolled {
  background: rgba(22, 22, 23, .72) !important;
  border-bottom-color: rgba(255, 255, 255, .08) !important;
}
html body.header-on-dark .desktop-nav a { color: rgba(245, 245, 247, .8); }
html body.header-on-dark .desktop-nav a:hover,
html body.header-on-dark .desktop-nav a.is-active { color: #fff; background: rgba(255, 255, 255, .08); }
html body.header-on-dark .site-header .brand__symbol,
html body.header-on-dark .site-header .brand__wordmark { filter: invert(1) !important; }
html body.header-on-dark .site-header .poma-language__trigger { color: rgba(245, 245, 247, .85); }
html body.header-on-dark .site-header .poma-language__trigger:hover { background: rgba(255, 255, 255, .1); }
html body.header-on-dark .menu-toggle span { background: #f5f5f7 !important; }

/* Botón de menú: dos líneas que se convierten en una X */
html body .menu-toggle {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  gap: 0;
  padding: 0;
  background: transparent !important;
  border: 0;
  border-radius: 50%;
  position: relative;
}
html body .menu-toggle span {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 1.5px;
  margin: 0;
  border-radius: 2px;
  background: #1d1d1f !important;
  transition: transform .35s var(--ap-ease), top .35s var(--ap-ease);
}
html body .menu-toggle span:first-child { top: 16px; }
html body .menu-toggle span:last-child { top: 23px; }
html body .menu-toggle[aria-expanded="true"] span:first-child { top: 19.5px; transform: rotate(45deg); }
html body .menu-toggle[aria-expanded="true"] span:last-child { top: 19.5px; transform: rotate(-45deg); }

/* Menú móvil a pantalla completa */
html body .mobile-menu {
  position: fixed;
  inset: 54px 0 0;
  z-index: 99;
  display: block;
  padding: 18px 28px 40px;
  background: rgba(251, 251, 253, .96);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .35s var(--ap-ease), transform .35s var(--ap-ease), visibility .35s;
}
html body .mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
html body .mobile-menu nav { display: grid; gap: 0; max-width: 560px; margin: 0 auto; }
html body .mobile-menu__kicker { margin: 10px 0 6px; color: var(--ap-muted); font-size: .8rem; font-weight: 500; }
html body .mobile-menu nav > a:not(.button) {
  padding: 9px 0;
  color: var(--ap-ink);
  border: 0;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.03em;
  text-decoration: none;
}
html body .mobile-menu nav > a.button { margin-top: 26px; min-height: 48px; font-size: 1rem; }
html body .mobile-menu__meta { margin: 26px 0 0; color: var(--ap-muted); font-size: .85rem; line-height: 1.7; }
html body .mobile-menu__wa { color: #1d8a3a; font-weight: 600; text-decoration: none; }
html body .mobile-menu nav > * { opacity: 0; transform: translateY(-6px); }
html body .mobile-menu.is-open nav > * { animation: poma-menu-in .45s var(--ap-ease) both; }
html body .mobile-menu.is-open nav > *:nth-child(2) { animation-delay: .03s; }
html body .mobile-menu.is-open nav > *:nth-child(3) { animation-delay: .06s; }
html body .mobile-menu.is-open nav > *:nth-child(4) { animation-delay: .09s; }
html body .mobile-menu.is-open nav > *:nth-child(5) { animation-delay: .12s; }
html body .mobile-menu.is-open nav > *:nth-child(6) { animation-delay: .15s; }
html body .mobile-menu.is-open nav > *:nth-child(7) { animation-delay: .18s; }
html body .mobile-menu.is-open nav > *:nth-child(8) { animation-delay: .21s; }
html body .mobile-menu.is-open nav > *:nth-child(9) { animation-delay: .24s; }
@keyframes poma-menu-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
html body.menu-open .scroll-progress { opacity: 0; }

@media (max-width: 1020px) {
  html body .desktop-nav { display: none; }
  html body .site-header__inner { grid-template-columns: auto 1fr auto; }
  html body .menu-toggle { display: grid; }
  html body .header-cta { display: none; }
}
@media (min-width: 1021px) {
  html body .mobile-menu { display: none; }
}
@media (max-width: 720px) {
  html body .site-header__inner { width: calc(100vw - 24px); gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  html body .mobile-menu, html body .mobile-menu nav > * { transition: none; animation: none !important; opacity: 1; transform: none; }
}
html body .site-header__actions { grid-column: 3; justify-self: end; }
html body .mobile-menu .mobile-menu__meta a.mobile-menu__wa { padding: 0; border: 0; font-size: .9rem; font-weight: 600; letter-spacing: 0; }
html body .desktop-nav a { font-size: .8rem !important; font-weight: 450; }
html body .desktop-nav a.is-active { font-weight: 600; }
html body:not(.header-on-dark) .desktop-nav a { color: rgba(0, 0, 0, .78) !important; }
html body:not(.header-on-dark) .desktop-nav a:hover,
html body:not(.header-on-dark) .desktop-nav a.is-active { color: #000 !important; }
html body .header-cta { font-size: .78rem !important; min-height: 30px !important; }

/* Información de la tienda (vendedor y documentos legales) */
html body .commerce-legal { padding-block: clamp(64px, 7vw, 100px); background: var(--ap-gray); }
html body .commerce-legal__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(240px, .8fr) minmax(240px, .9fr); gap: clamp(24px, 3vw, 40px); align-items: start; }
html body .commerce-legal .eyebrow { justify-content: flex-start; color: var(--ap-muted); font-size: 1rem; }
html body .commerce-legal h2 { margin: 0; text-align: left; font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 600; line-height: 1.1; letter-spacing: -.03em; }
html body .commerce-legal__grid > div:first-child > p:not(.eyebrow) { margin: 14px 0 0; color: var(--ap-muted); font-size: 1rem; line-height: 1.5; }
html body .commerce-legal__seller { padding: 24px; display: grid; gap: 6px; background: #fff; border: 0; border-radius: 22px; }
html body .commerce-legal__seller > span { color: var(--ap-muted); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
html body .commerce-legal__seller strong { font-size: 1.2rem; font-weight: 600; }
html body .commerce-legal__seller a { color: var(--ap-link); font-size: .95rem; }
html body .commerce-legal__seller small { margin-top: 8px; color: var(--ap-muted); font-size: .82rem; line-height: 1.45; }
html body .commerce-legal__links { display: grid; gap: 0; padding: 8px 20px; background: #fff; border-radius: 22px; }
html body .commerce-legal__links a { padding: 14px 0; display: flex; justify-content: space-between; color: var(--ap-ink); border-bottom: 1px solid var(--ap-line); font-size: .95rem; font-weight: 500; text-decoration: none; }
html body .commerce-legal__links a:last-child { border-bottom: 0; }
html body .commerce-legal__links a:hover { color: var(--ap-link); }
@media (max-width: 900px) { html body .commerce-legal__grid { grid-template-columns: 1fr; } }

/* Información de la tienda: fuera de la página; solo una línea discreta en el pie */
html body #informacion-legal { display: none !important; }
html body .site-footer__info nav#footer-legal-links a { font-size: .68rem; color: #86868b; font-weight: 400; }
html body .site-footer__seller { padding: 0 0 22px; }
html body .site-footer__seller p { margin: 0; color: #a1a1a6; font-size: .64rem; line-height: 1.5; }
html body .site-footer__seller a { color: inherit; text-decoration: none; }
html body .site-footer__seller a:hover { text-decoration: underline; }
