/* =====================================================================
   SVEON — Hoja de estilos unificada V2
   Estilo UGREEN. Fuente Manrope. Acento naranja #D85A0A.
   Estructura:
     1.  Variables (tokens V2)
     2.  Reset / normalizado
     3.  Base (body, tipografía, enlaces, imágenes)
     4.  Layout (.container, skip-link, .sr-only)
     5.  Botones (.btn, .btn--primary, .btn--ghost, .btn--link)
     6.  Header (.header, .header__nav, .has-dropdown, .dropdown, .search-bar)
     7.  Hero base + Hero slider
     8.  Secciones (.section, .section__head, .section__eyebrow, .section__title)
     9.  Categories grid (.cats, .cat)
    10.  Products grid (.products, .product)
    11.  Products scroll (.products-scroll)
    12.  Breadcrumb (.crumb)
    13.  Cat-hero (página categoría)
    14.  Compare table (.compare)
    15.  Guide (.guide, .guide-card)
    16.  SEO + FAQs (.seo, .faq)
    17.  CTA strip (.cta-strip)
    18.  Product page: phero, gallery, pinfo, buy, trust-bar
    19.  Specs table (.specs-table, .spec-row)
    20.  Desc blocks (.desc-blocks, .desc-block)
    21.  Related (.related)
    22.  DNIe focus (.dnie-block)
    23.  Story (.story)
    24.  Support cards (.support, .sup)
    25.  Retailers (.retailers, .retailer)
    26.  Footer (.footer)
    27.  Formularios (.form)
    28.  Utilidades
    29.  Media queries
    30.  Preferencias usuario
   ===================================================================== */

/* =====================================================================
   1. VARIABLES (tokens V2 UGREEN)
   ===================================================================== */
:root {
  --orange: #D85A0A;
  --orange-h: #BC4F09;
  --orange-l: #FFF1E8;
  --black: #1A1A1A;
  --ink: #0F1115;
  --gray-7: #3D3D3D;
  --gray-6: #6E6E73;
  --gray-5: #86868B;
  --gray-3: #D2D2D7;
  --gray-2: #E5E5E7;
  --gray-1: #F5F5F7;
  --gray-05: #FAFAFA;
  /* aliases para compatibilidad con componentes legacy */
  --color-accent: var(--orange);
  --color-accent-hover: var(--orange-h);
  --color-dark: var(--black);
  --color-text: var(--gray-7);
  --color-secondary: var(--gray-6);
  --color-bg: #FFFFFF;
  --color-bg-alt: var(--gray-1);
  --color-border: var(--gray-2);
  --color-border-strong: var(--gray-3);
  --color-error: #B3261E;
  --color-focus: #2563EB;
  --font-base: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --font-size-body: 16px;
  --font-size-small: 14px;
  --font-size-xs: 12px;
  --font-weight-normal: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  --line-height-body: 1.65;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;
  --max-width: 1200px;
  --header-height: 80px;
  --z-dropdown: 60;
  --z-header: 50;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --transition-fast: 0.2s;
  --transition-base: 0.25s;
}

/* =====================================================================
   2. RESET / NORMALIZADO
   ===================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
input, textarea, select {
  font: inherit;
  color: inherit;
}
table {
  border-collapse: collapse;
  width: 100%;
}

/* =====================================================================
   3. BASE
   ===================================================================== */
body {
  font-family: var(--font-base);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--ink);
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-base);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.025em;
}
p { margin-bottom: var(--spacing-sm); }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}
img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}
strong, b { font-weight: 700; }
small { font-size: var(--font-size-small); }
hr { border: 0; border-top: 1px solid var(--gray-2); margin: var(--spacing-md) 0; }

/* =====================================================================
   4. LAYOUT
   ===================================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  z-index: 400;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================================
   5. BOTONES
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
}
.btn--primary:hover { background: var(--orange-h); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--gray-3);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--link {
  color: var(--orange);
  font-weight: 600;
  height: auto;
  padding: 0;
}
.btn--link::after { content: " →"; transition: var(--transition-fast); }
.btn--link:hover::after { margin-left: 4px; }
/* Legacy aliases */
.btn-primary { background: var(--orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 22px; font-size: 14px; font-weight: 600; transition: var(--transition-fast); }
.btn-primary:hover { background: var(--orange-h); }
.btn-secondary { background: transparent; color: var(--orange); border: 2px solid var(--orange); display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 22px; font-size: 14px; font-weight: 600; transition: var(--transition-fast); }
.btn-secondary:hover { background: var(--orange); color: #fff; }

/* =====================================================================
   6. HEADER
   ===================================================================== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--gray-2);
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  backdrop-filter: blur(8px);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-height);
}
.header__logo img {
  height: 32px;
  width: auto;
}
.header__nav {
  display: none;
  flex: 0 0 auto;
}
.header__nav > ul {
  display: flex;
  gap: 4px;
}
.header__nav a {
  display: block;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-7);
  transition: var(--transition-fast);
}
.header__nav a:hover,
.header__nav a.is-active,
.header__nav a[aria-current="page"] {
  color: var(--orange);
}
.has-dropdown { position: relative; }
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.caret {
  font-size: 10px;
  transition: var(--transition-fast);
}
.has-dropdown:hover > a,
.has-dropdown:focus-within > a {
  color: var(--orange);
}
.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret {
  transform: rotate(180deg);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--gray-2);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: var(--transition-fast);
  z-index: var(--z-dropdown);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-7);
}
.dropdown a:hover {
  background: var(--orange-l);
  color: var(--orange);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex: 1;
  justify-content: flex-end;
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-7);
  font-size: 18px;
}
.icon-btn:hover { color: var(--orange); }
.header__menu { display: inline-flex; }

/* ─── Menú hamburguesa: estado abierto en mobile (<900px) ─── */
@media (max-width: 899px) {
  .header { position: sticky; }
  .header.is-nav-open .header__nav {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--gray-2);
    box-shadow: 0 12px 32px rgba(0,0,0,.10);
    padding: 8px 0 16px;
    z-index: 50;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .header.is-nav-open .header__nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header.is-nav-open .header__nav > ul > li > a {
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid var(--gray-1);
  }
  .header.is-nav-open .has-dropdown .caret {
    transform: rotate(0deg);
    transition: transform .2s ease;
  }
  .header.is-nav-open .has-dropdown.is-open .caret {
    transform: rotate(180deg);
  }
  /* Dropdown plegado dentro del panel mobile */
  .header.is-nav-open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    background: var(--gray-1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .header.is-nav-open .has-dropdown.is-open .dropdown {
    max-height: 500px;
  }
  .header.is-nav-open .dropdown a {
    padding: 12px 32px;
    font-size: 15px;
  }
}

/* Buscador */
.search-bar {
  position: relative;
  display: none;
  width: 280px;
  max-width: 100%;
}
.search-bar__input {
  width: 100%;
  height: 40px;
  padding: 0 36px 0 14px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--gray-1);
  border: 1px solid transparent;
  outline: none;
  transition: var(--transition-fast);
}
.search-bar__input::placeholder { color: var(--gray-5); }
.search-bar__input:focus {
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-l);
}
.search-bar__icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-5);
  font-size: 16px;
  pointer-events: none;
}
.search-bar__results {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 340px;
  max-width: 90vw;
  background: #fff;
  border: 1px solid var(--gray-2);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  max-height: 420px;
  overflow-y: auto;
  z-index: var(--z-dropdown);
}
.search-bar__results:empty,
.search-bar__results[hidden] { display: none; }
.search-bar__result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-1);
  transition: 0.15s;
}
.search-bar__result:last-child { border-bottom: none; }
.search-bar__result:hover,
.search-bar__result.is-active { background: var(--orange-l); }
.search-bar__result-thumb {
  flex: 0 0 36px;
  height: 36px;
  background: var(--gray-1);
}
.search-bar__result-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.search-bar__result-ref {
  display: block;
  font-size: 12px;
  color: var(--gray-6);
}
.search-bar__empty {
  padding: 14px;
  font-size: 13px;
  color: var(--gray-6);
  text-align: center;
}

/* =====================================================================
   7. HERO BASE + HERO SLIDER
   ===================================================================== */
.hero {
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-l);
  padding: 6px 14px;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.hero__title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 18px;
  color: var(--gray-6);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.6;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__visual { position: relative; }
.hero__main-img {
  background: linear-gradient(135deg, #F5F5F7 0%, #E8E8EB 100%);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero__main-img picture { display: block; width: 100%; height: 100%; }
.hero__main-img picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__floating {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #fff;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__floating-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--orange);
  font-weight: 800;
}
.hero__floating-txt strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero__floating-txt span { font-size: 12px; color: var(--gray-6); }

/* HERO SLIDER */
.hero--slider { padding: 0; overflow: hidden; position: relative; }
.hero--slider .hero__inner { padding: 64px 0 80px; }
.slider { position: relative; }
.slider__track { position: relative; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.slider__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--gray-2);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  cursor: pointer;
  transition: var(--transition-fast);
}
.slider__nav:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.slider__nav:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.slider__nav--prev { left: max(8px, calc(50% - 640px)); }
.slider__nav--next { right: max(8px, calc(50% - 640px)); }

/* =====================================================================
   8. SECCIONES
   ===================================================================== */
.section { padding: 80px 0; }
.section--alt { background: var(--gray-05); }
.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section__title {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section__sub {
  font-size: 17px;
  color: var(--gray-6);
  line-height: 1.6;
}

/* =====================================================================
   9. CATEGORIES GRID
   ===================================================================== */
.cats {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.cat {
  background: #fff;
  border: 1px solid var(--gray-2);
  padding: 28px 22px;
  text-align: left;
  display: block;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.cat::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: 0.3s;
}
.cat:hover {
  border-color: var(--gray-3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
}
.cat:hover::after { transform: scaleY(1); }
.cat__icon {
  width: 48px;
  height: 48px;
  background: var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-7);
  margin-bottom: 16px;
  transition: var(--transition-base);
}
.cat:hover .cat__icon { background: var(--orange); color: #fff; }
.cat__name { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.cat__count { font-size: 13px; color: var(--gray-6); margin-bottom: 12px; }
.cat__link { font-size: 13px; font-weight: 600; color: var(--orange); }
.cat__link::after { content: " →"; }

/* =====================================================================
   10. PRODUCTS GRID
   ===================================================================== */
.products {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.product {
  background: #fff;
  border: 1px solid var(--gray-2);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  position: relative;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  border-color: var(--gray-3);
}
.product:hover .product__name { color: var(--orange); }
.product:hover .btn--link::after { margin-left: 4px; }
.product__media {
  background: #fff;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform var(--transition-base);
}
.product:hover .product__media img { transform: scale(1.03); }
.product__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border: 1px solid var(--orange-l);
}
.product__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product__cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-5);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.product__name {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--ink);
}
.product__desc {
  font-size: 14px;
  color: var(--gray-6);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.product__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.product__features span {
  font-size: 11px;
  font-weight: 600;
  background: var(--gray-1);
  color: var(--gray-7);
  padding: 5px 10px;
}
.product__cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--gray-2);
}
.product__price { font-size: 13px; color: var(--gray-6); }

/* =====================================================================
   11. PRODUCTS SCROLL (carrusel horizontal)
   ===================================================================== */
.products-scroll { position: relative; }
.products-scroll__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-3) transparent;
  padding-bottom: 12px;
}
.products-scroll__viewport::-webkit-scrollbar { height: 6px; }
.products-scroll__viewport::-webkit-scrollbar-track { background: transparent; }
.products-scroll__viewport::-webkit-scrollbar-thumb { background: var(--gray-3); border-radius: 3px; }
.products-scroll__viewport::-webkit-scrollbar-thumb:hover { background: var(--gray-5); }
.products-scroll__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 80%;
  gap: 16px;
  padding: 8px 0;
}
.products-scroll__track > .product {
  scroll-snap-align: start;
  min-width: 0;
}
.products-scroll__nav {
  display: none;
  position: absolute;
  top: 140px;
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--gray-2);
  font-size: 20px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-fast);
}
.products-scroll__nav:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.products-scroll__nav--prev { left: -22px; }
.products-scroll__nav--next { right: -22px; }

/* =====================================================================
   12. BREADCRUMB / CRUMB
   ===================================================================== */
.crumb {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-2);
  font-size: 13px;
  color: var(--gray-6);
}
.crumb a:hover { color: var(--orange); }
.crumb__sep { margin: 0 8px; color: var(--gray-3); }
.crumb__cur { color: var(--ink); font-weight: 600; }
/* Legacy .breadcrumb */
.breadcrumb { font-size: 14px; padding-block: var(--spacing-sm); color: var(--gray-6); }
.breadcrumb__list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.breadcrumb__item:not(:last-child)::after { content: "›"; margin-left: 8px; color: var(--gray-3); }
.breadcrumb a { color: var(--gray-6); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* =====================================================================
   13. CAT-HERO (página categoría)
   ===================================================================== */
.cat-hero {
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
  padding: 64px 0 48px;
}
.cat-hero__inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
.cat-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-l);
  padding: 6px 14px;
  margin-bottom: 24px;
}
.cat-hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.cat-hero h1 {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.cat-hero p {
  font-size: 17px;
  color: var(--gray-6);
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 640px;
}
.cat-hero__media {
  background: linear-gradient(135deg, #F5F5F7 0%, #E8E8EB 100%);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cat-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.cat-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================================
   14. COMPARE TABLE
   ===================================================================== */
.compare {
  padding: 80px 0;
  background: var(--gray-05);
  border-top: 1px solid var(--gray-2);
}
.compare__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.compare__head h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.compare__head p { font-size: 17px; color: var(--gray-6); }
.compare__table {
  background: #fff;
  border: 1px solid var(--gray-2);
  overflow-x: auto;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--gray-2);
  font-size: 14px;
}
.compare__row:last-child { border-bottom: none; }
.compare__row.is-head {
  background: var(--gray-05);
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare__row > div {
  padding: 16px 14px;
  border-right: 1px solid var(--gray-2);
}
.compare__row > div:last-child { border-right: none; }
.compare__row strong { display: block; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.compare__row em { font-style: normal; font-size: 12px; color: var(--gray-6); font-weight: 500; }
.compare__check { color: var(--orange); font-weight: 800; }

/* =====================================================================
   15. GUIDE
   ===================================================================== */
.guide { padding: 80px 0; }
.guide__inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.guide-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--gray-2);
  transition: var(--transition-base);
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
}
.guide-card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-l);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}
.guide-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.guide-card p { font-size: 14px; color: var(--gray-6); line-height: 1.6; margin-bottom: 16px; }

/* =====================================================================
   16. SEO + FAQs
   ===================================================================== */
.seo {
  padding: 80px 0;
  background: var(--gray-05);
  border-top: 1px solid var(--gray-2);
}
.seo__inner { max-width: 880px; margin: 0 auto; }
.seo__head { margin-bottom: 32px; }
.seo__head h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}
.seo__lead { font-size: 17px; color: var(--gray-6); line-height: 1.7; }
.seo__body { color: var(--gray-7); font-size: 16px; line-height: 1.75; }
.seo__body p { margin-bottom: 18px; }
.seo__body strong { color: var(--ink); font-weight: 600; }
.seo__body em { font-style: italic; color: var(--gray-7); }
.seo__body a,
.seo__faqs a,
.faq p a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color .15s ease;
}
.seo__body a:hover,
.seo__faqs a:hover,
.faq p a:hover { color: var(--orange-h); }
.seo__lead strong { color: var(--ink); font-weight: 600; }
.seo__lead em { font-style: italic; }
.seo__body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
}
.seo__body ul { padding-left: 22px; margin-bottom: 18px; }
.seo__body li { margin-bottom: 8px; }
.seo__faqs {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-2);
}
.seo__faqs h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
/* FAQ (usado en seo__faqs y en .faqs de ficha) */
.faq { border-bottom: 1px solid var(--gray-2); }
.faq summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--orange);
  font-weight: 300;
  line-height: 1;
  transition: var(--transition-fast);
}
.faq[open] summary::after { content: "−"; }
.faq[open] summary { color: var(--orange); }
.faq p { padding: 0 0 20px; font-size: 15px; color: var(--gray-6); line-height: 1.7; }
.faq p + p { padding-top: 8px; }
.faq code {
  background: var(--gray-1);
  padding: 2px 8px;
  font-size: 13px;
  font-family: ui-monospace, Menlo, Consolas, monospace;
}

/* =====================================================================
   17. CTA STRIP
   ===================================================================== */
.cta-strip {
  background: linear-gradient(135deg, #FFF1E8 0%, #FFFFFF 100%);
  padding: 80px 0;
}
.cta-strip__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-strip h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-strip p { font-size: 17px; color: var(--gray-6); margin-bottom: 28px; }
.cta-strip__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =====================================================================
   18. PRODUCT PAGE: PHERO, GALLERY, PINFO, BUY, TRUST-BAR
   ===================================================================== */

/* PHERO */
.phero { padding: 48px 0 64px; }
.phero__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: start;
}

/* GALLERY */
.gallery { display: grid; gap: 12px; grid-template-columns: 1fr; }
.gallery__main {
  background: #fff;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.gallery__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border: 1px solid var(--orange-l);
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery__thumb {
  background: #fff;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid transparent;
  overflow: hidden;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.gallery__thumb.is-active { border-color: var(--orange); }
.gallery__thumb:hover { border-color: var(--gray-3); }

/* PINFO */
.pinfo__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-l);
  padding: 6px 14px;
  margin-bottom: 16px;
}
.pinfo__cat::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.pinfo__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.pinfo__ref { font-size: 14px; color: var(--gray-6); margin-bottom: 24px; }
.pinfo__desc { font-size: 17px; color: var(--gray-7); margin-bottom: 28px; line-height: 1.7; }
.pinfo__highlights { display: grid; gap: 14px; margin-bottom: 32px; }
.highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--gray-7);
  line-height: 1.6;
}
.highlight::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: var(--orange-l);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}

/* BUY */
.buy {
  padding: 24px;
  background: var(--gray-05);
  border: 1px solid var(--gray-2);
  margin-bottom: 24px;
}
.buy__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.buy__row { display: grid; gap: 10px; }
.buy__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 22px;
  background: #fff;
  border: 1.5px solid var(--gray-2);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
  text-decoration: none;
  color: var(--ink);
}
.buy__btn:hover { border-color: var(--ink); }
.buy__btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.buy__btn--primary:hover { background: var(--orange-h); border-color: var(--orange-h); }
.buy__btn span { font-size: 12px; color: var(--gray-6); font-weight: 500; }
.buy__btn--primary span { color: #FFD8C0; }
.buy__btn::after { content: "→"; font-size: 18px; }

/* TRUST BAR */
.trust-bar {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  font-size: 13px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-7);
}
.trust-bar__icon {
  width: 32px;
  height: 32px;
  background: var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--orange);
  font-size: 13px;
  flex: 0 0 32px;
}

/* =====================================================================
   19. SPECS TABLE (padding 18px 24px + centrado vertical en ≥600px, validado por Jose)
   ===================================================================== */
.specs-table {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gray-2);
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--gray-2);
}
.spec-row:last-child { border-bottom: none; }
.spec-row dt,
.spec-row dd { padding: 18px 24px; }
.spec-row dt {
  font-weight: 700;
  color: var(--gray-7);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 4px;
}
.spec-row dd { color: var(--ink); font-size: 15px; }

/* =====================================================================
   20. DESC BLOCKS (3 columnas, estilo Anker)
   ===================================================================== */
.desc-blocks {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.desc-block {
  background: #fff;
  border: 1px solid var(--gray-2);
  padding: 32px 28px;
  transition: var(--transition-base);
}
.desc-block:hover {
  border-color: var(--gray-3);
  box-shadow: 0 12px 32px rgba(0,0,0,.05);
  transform: translateY(-3px);
}
.desc-block h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--ink);
  position: relative;
  padding-top: 18px;
}
.desc-block h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--orange);
}
.desc-block p { font-size: 15px; color: var(--gray-6); line-height: 1.7; margin-bottom: 12px; }
.desc-block p:last-child { margin-bottom: 0; }
.desc-block a { color: var(--orange); font-weight: 600; }

/* =====================================================================
   21. RELATED
   ===================================================================== */
.faqs { max-width: 880px; margin: 0 auto; display: grid; gap: 0; }
.related {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.related__item {
  background: #fff;
  border: 1px solid var(--gray-2);
  transition: var(--transition-base);
}
.related__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  border-color: var(--gray-3);
}
.related__media {
  background: #fff;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-5);
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 600;
  overflow: hidden;
}
.related__media { text-decoration: none; color: inherit; cursor: pointer; transition: var(--transition-base); }
.related__media:hover picture { transform: scale(1.04); }
.related__media picture { display: block; width: 100%; height: 100%; transition: transform .35s ease; }
.related__media img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.related__body { padding: 24px; }
.related__cat { font-size: 12px; font-weight: 600; color: var(--gray-5); }
.related__name { font-size: 18px; font-weight: 700; margin: 6px 0 8px; color: var(--ink); }
.related__desc { font-size: 14px; color: var(--gray-6); margin-bottom: 16px; }

/* =====================================================================
   22. DNIe FOCUS
   ===================================================================== */
.dnie-block {
  background: linear-gradient(135deg, #FFF1E8 0%, #FFFFFF 100%);
  padding: 96px 0;
}
.dnie-block__inner {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
.dnie-block__media {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
  width: 100%;
}
.dnie-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dnie-block h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.dnie-block p { font-size: 17px; color: var(--gray-6); margin-bottom: 24px; line-height: 1.7; }
.dnie-services {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 32px;
}
.dnie-services span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-7);
  background: #fff;
  padding: 10px 14px;
  border: 1px solid var(--gray-2);
}

/* =====================================================================
   23. STORY
   ===================================================================== */
.story { padding: 96px 0; background: #fff; }
.story__inner {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
  align-items: center;
}
.story__media {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
  width: 100%;
}
.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.story p { font-size: 17px; color: var(--gray-6); margin-bottom: 16px; line-height: 1.7; }
.story__pillars {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  grid-template-columns: repeat(2, 1fr);
}
.pillar {
  padding: 20px;
  background: var(--gray-05);
  border-left: 3px solid var(--orange);
}
.pillar strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.pillar span { font-size: 13px; color: var(--gray-6); font-weight: 500; }

/* =====================================================================
   24. SUPPORT CARDS
   ===================================================================== */
.support {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.sup {
  background: #fff;
  border: 1px solid var(--gray-2);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-base);
}
.sup:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
  border-color: var(--gray-3);
}
.sup__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--orange-l);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
}
.sup h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.sup p { font-size: 14px; color: var(--gray-6); margin-bottom: 16px; line-height: 1.6; }

/* =====================================================================
   25. RETAILERS
   ===================================================================== */
.retailers {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.retailer {
  background: #fff;
  border: 1px solid var(--gray-2);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-base);
}
.retailer:hover { border-color: var(--orange); transform: translateY(-2px); }
.retailer__logo {
  flex: 0 0 56px;
  height: 56px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-5);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px;
}
.retailer__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* Tamaños calibrados por marca para equilibrar peso visual */
.retailer__logo--eci img    { max-height: 36px; }
.retailer__logo--amazon img { max-height: 22px; }
.retailer__logo--pcc img    { max-height: 44px; }
.retailer__logo--more { background: var(--gray-1); font-size: 22px; color: var(--gray-5); }
.retailer__txt strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.retailer__txt span { font-size: 12px; color: var(--gray-6); }

/* Mobile <=599px: apilar logo sobre texto dentro de cada tarjeta */
@media (max-width: 599px) {
  .retailers { gap: 10px; }
  .retailer {
    flex-direction: column;
    text-align: center;
    padding: 16px 10px;
    gap: 10px;
  }
  .retailer__logo {
    flex: 0 0 auto;
    height: 40px;
    width: 100%;
    padding: 0;
  }
  .retailer__logo--eci img    { max-height: 26px; }
  .retailer__logo--amazon img { max-height: 18px; }
  .retailer__logo--pcc img    { max-height: 32px; }
  .retailer__logo--more       { font-size: 22px; height: 40px; width: 40px; margin: 0 auto; }
  .retailer__txt { width: 100%; }
  .retailer__txt strong { font-size: 13px; line-height: 1.25; }
  .retailer__txt span   { font-size: 11px; line-height: 1.3; }
}
/* Legacy .retailer-card */
.retailer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--spacing-md); }
.retailer-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: var(--spacing-md); background: #fff; border: 1px solid var(--gray-2); gap: var(--spacing-sm); }
.retailer-card__logo { height: 60px; width: auto; max-width: 180px; object-fit: contain; }
.retailer-card__name { font-weight: 700; color: var(--ink); }

/* =====================================================================
   26. FOOTER
   ===================================================================== */
.footer {
  background: var(--gray-05);
  color: var(--gray-7);
  padding: 80px 0 32px;
  border-top: 1px solid var(--gray-2);
}
.footer__top {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}
.footer__brand img { height: 36px; margin-bottom: 20px; }
.footer__brand p { font-size: 14px; color: var(--gray-6); max-width: 320px; line-height: 1.6; }
.footer__cols {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}
.footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--gray-6); transition: 0.15s; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-2);
  font-size: 13px;
  color: var(--gray-6);
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { color: var(--gray-6); transition: 0.15s; }
.footer__legal a:hover { color: var(--orange); }

/* =====================================================================
   27. FORMULARIOS
   ===================================================================== */
.form { display: flex; flex-direction: column; gap: var(--spacing-sm); }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-weight: 600; font-size: 14px; color: var(--ink); }
.form__label .form__required { color: var(--color-error); margin-left: 2px; }
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-3);
  background: #fff;
  font-size: 16px;
  min-height: 44px;
}
.form__textarea { min-height: 140px; resize: vertical; }
.form__input:focus, .form__textarea:focus, .form__select:focus { border-color: var(--ink); outline: none; }
.form__error { color: var(--color-error); font-size: 14px; }
.form__hint { color: var(--gray-6); font-size: 14px; }

/* =====================================================================
   28. DESCARGAS (legacy — download-row)
   ===================================================================== */
.download-list { display: flex; flex-direction: column; border-top: 1px solid var(--gray-2); }
.download-row { display: flex; align-items: center; gap: 16px; padding: 16px; border-bottom: 1px solid var(--gray-2); flex-wrap: wrap; }
.download-row__icon { width: 40px; height: 40px; background: var(--gray-1); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--gray-6); text-transform: uppercase; }
.download-row__body { flex-grow: 1; min-width: 200px; }
.download-row__name { font-weight: 600; color: var(--ink); display: block; }
.download-row__meta { font-size: 12px; color: var(--gray-6); display: block; }
.download-row__cta { flex-shrink: 0; }

/* =====================================================================
   28b. DÓNDE COMPRAR (landing canales: hero, trust, channels, compare, note)
   ===================================================================== */

/* Hero */
.wb-hero {
  background: linear-gradient(135deg, #FFF1E8 0%, #FFFFFF 60%, #FAFAFA 100%);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.wb-hero__grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wb-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.wb-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-2px);
}
.wb-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.wb-hero p.lead {
  font-size: 18px;
  color: var(--gray-6);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 0;
}
.wb-hero__visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: center;
}
.wb-hero__logo {
  background: #fff;
  border: 1px solid var(--gray-2);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  transition: var(--transition-base);
}
.wb-hero__logo:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.wb-hero__logo img,
.wb-hero__logo svg {
  height: auto;
  width: auto;
  object-fit: contain;
}
/* Tamaños calibrados por marca para equilibrar peso visual */
.wb-hero__logo--eci img    { max-height: 78px;  max-width: 220px; }
.wb-hero__logo--amazon img { max-height: 44px;  max-width: 220px; }
.wb-hero__logo--pcc img    { max-height: 123px; max-width: 220px; }

/* Trust bar */
.wb-trust {
  background: #fff;
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  padding: 22px 0;
}
.wb-trust__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
.wb-trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--gray-7);
  line-height: 1.4;
}
.wb-trust__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: var(--orange-l);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.wb-trust__item strong { display: block; color: var(--ink); font-weight: 700; }
.wb-trust__item span { color: var(--gray-6); font-size: 13px; }

/* Channel cards */
.wb-channels {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.wb-channel {
  background: #fff;
  border: 1px solid var(--gray-2);
  display: grid;
  grid-template-columns: 1fr;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.wb-channel:hover {
  border-color: var(--gray-3);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,.07);
}
.wb-channel::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s;
}
.wb-channel:hover::before { transform: scaleY(1); }
.wb-channel__logo {
  background: #fff;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-2);
  min-height: 160px;
}
.wb-channel__logo img,
.wb-channel__logo svg {
  height: auto;
  width: auto;
  object-fit: contain;
}
/* Tamaños calibrados por marca para equilibrar peso visual */
.wb-channel__logo--eci img    { max-height: 110px; max-width: 220px; }
.wb-channel__logo--amazon img { max-height: 54px;  max-width: 240px; }
.wb-channel__logo--pcc img    { max-height: 180px; max-width: 220px; }
.wb-channel__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.wb-channel__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-l);
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.wb-channel__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.wb-channel h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.wb-channel__desc {
  font-size: 15px;
  color: var(--gray-6);
  line-height: 1.65;
  margin-bottom: 22px;
}
.wb-channel__feats {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}
.wb-channel__feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-7);
  line-height: 1.5;
}
.wb-channel__feat::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background: var(--orange-l);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}
.wb-channel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 52px;
  padding: 0 22px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  align-self: stretch;
}
.wb-channel__cta:hover { background: var(--orange); }
.wb-channel__cta::after { content: "→"; font-size: 18px; }

/* Compare */
.wb-compare {
  background: #fff;
  border: 1px solid var(--gray-2);
  overflow-x: auto;
}
.wb-compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.wb-compare th,
.wb-compare td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-2);
  font-size: 14px;
  vertical-align: middle;
}
.wb-compare thead th {
  background: var(--gray-05);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--gray-2);
}
.wb-compare th:first-child,
.wb-compare td:first-child {
  font-weight: 700;
  color: var(--ink);
  background: var(--gray-05);
  width: 28%;
}
.wb-compare tr:last-child td { border-bottom: none; }
.wb-compare td { color: var(--gray-7); }
.wb-compare .yes { color: var(--orange); font-weight: 700; }
.wb-compare .no  { color: var(--gray-5); }

/* Note block */
.wb-note {
  background: var(--gray-05);
  border-left: 4px solid var(--orange);
  padding: 28px 32px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  align-items: center;
}
.wb-note__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.wb-note p {
  font-size: 15px;
  color: var(--gray-6);
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 720px) {
  .wb-hero__grid { grid-template-columns: 1.15fr 1fr; }
  .wb-trust__grid { grid-template-columns: repeat(4, 1fr); }
  .wb-channel { grid-template-columns: 320px 1fr; }
  .wb-channel__logo { border-bottom: none; border-right: 1px solid var(--gray-2); min-height: auto; }
  .wb-note { grid-template-columns: auto 1fr; gap: 28px; }
}

/* =====================================================================
   29. UTILIDADES
   ===================================================================== */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.color-accent { color: var(--orange); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* =====================================================================
   30. MEDIA QUERIES — Mobile-first
   ===================================================================== */

/* ≥600px */
@media (min-width: 600px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .products-scroll__track { grid-auto-columns: 48%; gap: 20px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .related { grid-template-columns: repeat(3, 1fr); }
  .support { grid-template-columns: repeat(3, 1fr); }
  .spec-row { grid-template-columns: 0.7fr 1.3fr; align-items: center; }
  .spec-row dt { padding: 18px 24px; border-right: 1px solid var(--gray-2); }
  .spec-row dd { padding: 18px 24px; }
  .desc-blocks { grid-template-columns: repeat(3, 1fr); }
}

/* ≥700px */
@media (min-width: 700px) {
  .desc-blocks { grid-template-columns: repeat(3, 1fr); }
}

/* ≥900px — desktop principal */
@media (min-width: 900px) {
  /* Header */
  .header__nav { display: block; }
  .header__menu { display: none; }
  .search-bar { display: block; }

  /* Hero */
  .hero { padding: 96px 0 120px; }
  .hero__inner { grid-template-columns: 1fr 1.05fr; gap: 80px; }
  .hero__title { font-size: 64px; }
  .hero__main-img { height: 420px; }
  .hero--slider .hero__inner { padding: 56px 0 72px; }
  .slider__nav { display: flex; width: 56px; height: 56px; font-size: 28px; }

  /* Sections */
  .section__title { font-size: 46px; }

  /* Cats */
  .cats { grid-template-columns: repeat(4, 1fr); }

  /* Products */
  .products { grid-template-columns: repeat(4, 1fr); }
  .products-scroll__track { grid-auto-columns: calc((100% - 72px) / 4); gap: 24px; }
  .products-scroll__nav { display: flex; }
  .products-scroll__viewport { padding: 0 4px 16px; }

  /* Cat-hero */
  .cat-hero__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
  .cat-hero h1 { font-size: 54px; }
  .cat-hero__media { height: 440px; }

  /* Guide */
  .guide__inner { grid-template-columns: repeat(3, 1fr); }

  /* Product phero */
  .phero__grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
  .pinfo__title { font-size: 44px; }

  /* Story */
  .story__inner { grid-template-columns: 1fr 1fr; }
  .story h2 { font-size: 46px; }

  /* DNIe */
  .dnie-block__inner { grid-template-columns: 1fr 1fr; }
  .dnie-block h2 { font-size: 46px; }

  /* Retailers */
  .retailers { grid-template-columns: repeat(4, 1fr); }

  /* Footer */
  .footer__top { grid-template-columns: 1.2fr 2.5fr; }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }

  /* CTA strip */
  .cta-strip h2 { font-size: 38px; }
}

/* ≥1100px */
@media (min-width: 1100px) {
  .cats {
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
  }
  .cat { padding: 24px 18px; }
  .cat__icon { width: 44px; height: 44px; font-size: 16px; margin-bottom: 14px; }
  .cat__name { font-size: 15px; }
  .cat__count { font-size: 12px; }
  .header__inner { gap: 40px; }
}

/* ≥1200px */
@media (min-width: 1200px) {
  .container { padding: 0 48px; }
}

/* =====================================================================
   31. PREFERENCIAS DEL USUARIO
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .header, .footer, .slider__nav, .btn, .btn--primary, .btn--ghost { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* ============================================================ */
/* DOWNLOADS / SUPPORT LIST — clases .dl-* (portadas desde V2)    */
/* ============================================================ */

.dl-hero{background:linear-gradient(180deg,#FAFAFA 0%,#FFFFFF 100%);padding:64px 0 56px;border-bottom:1px solid var(--gray-2)}
.dl-hero__eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:var(--orange);background:var(--orange-l);padding:6px 14px;margin-bottom:20px}
.dl-hero__eyebrow::before{content:"";width:6px;height:6px;background:var(--orange);border-radius:50%}
.dl-hero h1{font-size:42px;line-height:1.1;font-weight:800;letter-spacing:-.025em;margin-bottom:16px;color:var(--ink);max-width:720px}
.dl-hero p{font-size:17px;color:var(--gray-6);line-height:1.65;max-width:680px;margin-bottom:28px}
.dl-search{position:relative;max-width:560px}
.dl-search input{width:100%;height:52px;padding:0 48px 0 18px;font:inherit;font-size:15px;color:var(--ink);background:#fff;border:1.5px solid var(--gray-2);outline:none;transition:.2s}
.dl-search input::placeholder{color:var(--gray-5)}
.dl-search input:focus{border-color:var(--orange);box-shadow:0 0 0 3px var(--orange-l)}
.dl-search__icon{position:absolute;right:16px;top:50%;transform:translateY(-50%);color:var(--gray-5);font-size:18px;pointer-events:none}
.dl-hero h1{font-size:54px}
.dl-hero{padding:96px 0 64px}
.dl-filters{padding:24px 0;background:#fff;border-bottom:1px solid var(--gray-2);position:sticky;top:80px;z-index:40}
.dl-filters__inner{display:flex;flex-wrap:wrap;gap:24px;align-items:center}
.dl-filters__group{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.dl-filters__label{font-size:12px;font-weight:700;letter-spacing:.06em;color:var(--gray-5);text-transform:uppercase;margin-right:4px}
.dl-section{padding:64px 0}
.dl-count{font-size:14px;color:var(--gray-6);margin-bottom:32px}
.dl-count strong{color:var(--ink);font-weight:700}
.dl-group{margin-bottom:48px}
.dl-group__head{display:flex;align-items:baseline;justify-content:space-between;gap:16px;padding-bottom:16px;margin-bottom:20px;border-bottom:2px solid var(--ink)}
.dl-group__title{font-size:22px;font-weight:800;letter-spacing:-.015em;color:var(--ink)}
.dl-group__title small{display:block;font-size:12px;font-weight:600;color:var(--orange);text-transform:uppercase;letter-spacing:.08em;margin-bottom:4px}
.dl-group__link{font-size:13px;font-weight:600;color:var(--orange);white-space:nowrap}
.dl-group__link::after{content:" →"}
.dl-list{display:grid;gap:12px;grid-template-columns:1fr}
.dl-item{display:grid;grid-template-columns:auto 1fr auto;gap:16px;align-items:center;padding:18px 20px;background:#fff;border:1px solid var(--gray-2);transition:.2s}
.dl-item:hover{border-color:var(--orange);box-shadow:0 8px 24px rgba(0,0,0,.04)}
.dl-item__type{flex:0 0 auto;width:64px;height:64px;background:var(--gray-1);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:var(--gray-7)}
.dl-item__type strong{display:block;font-size:11px;font-weight:800;letter-spacing:.04em;line-height:1}
.dl-item__type span{display:block;font-size:9px;font-weight:600;color:var(--gray-5);margin-top:4px;letter-spacing:.05em;text-transform:uppercase}
.dl-item.is-driver .dl-item__type{background:var(--orange-l);color:var(--orange)}
.dl-item.is-manual .dl-item__type{background:#E8F4FF;color:#0D5BB8}
.dl-item.is-conformidad .dl-item__type{background:#F1F1F4;color:var(--gray-7)}
.dl-item__body{min-width:0}
.dl-item__cat{display:inline-block;font-size:11px;font-weight:700;color:var(--gray-5);letter-spacing:.06em;text-transform:uppercase;margin-bottom:4px}
.dl-item__title{font-size:15px;font-weight:700;color:var(--ink);line-height:1.35;margin-bottom:4px;overflow-wrap:anywhere}
.dl-item__meta{display:flex;flex-wrap:wrap;gap:14px;font-size:12px;color:var(--gray-6)}
.dl-item__meta span{display:inline-flex;align-items:center;gap:4px}
.dl-item__meta strong{font-weight:700;color:var(--gray-7)}
.dl-item__action{flex:0 0 auto}
.dl-item__btn{display:inline-flex;align-item