/* =============================================================
   CICLOWATT — hoja de estilos unica
   1. Tokens · 2. Reset · 3. Utilidades · 4. Tipografia
   5. Componentes · 6. Secciones · 7. Efectos · 8. Responsive
   9. Reduced motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  color-scheme: dark;
  --bg:          #0a0c0b;
  --bg-2:        #0f1211;
  --surface:     #141817;
  --surface-2:   #1a201e;
  --line:        rgba(255, 255, 255, .085);
  --line-strong: rgba(255, 255, 255, .16);
  --ink:         #eef2ee;
  --ink-2:       #c3ccc5;
  --muted:       #8b968e;
  --accent:      #c9f75a;
  --accent-dim:  #9ec93f;
  --accent-ink:  #0a0c0b;
  --accent-soft: rgba(201, 247, 90, .12);
  --warm:        #ff9f45;
  --danger:      #ff6b6b;

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Archivo", "Inter", system-ui, sans-serif;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;

  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --maxw: 1240px;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow:    0 1px 2px rgba(0,0,0,.5), 0 12px 32px -12px rgba(0,0,0,.7);
  --shadow-lg: 0 2px 4px rgba(0,0,0,.4), 0 32px 64px -24px rgba(0,0,0,.85);

  --nav-h: 66px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.025em; font-family: var(--display); font-weight: 600; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* =============================================================
   3. Utilidades
   ============================================================= */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--accent); color: var(--accent-ink);
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.stack > * + * { margin-top: 1rem; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }
.center { text-align: center; }

/* =============================================================
   4. Tipografia
   ============================================================= */
.kicker {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: .5rem;
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--accent); opacity: .7;
}
.h-xl { font-size: clamp(2.3rem, 6.4vw, 4.4rem); line-height: .98; }
.h-lg { font-size: clamp(1.75rem, 4vw, 2.7rem); }
.h-md { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--ink-2); max-width: 62ch; }
.prose p { color: var(--ink-2); margin-bottom: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }

/* =============================================================
   5. Componentes
   ============================================================= */

/* --- Botones --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .78rem 1.3rem; border-radius: 999px; font-weight: 600; font-size: .94rem;
  letter-spacing: -.01em; line-height: 1;
  transition: transform .3s var(--ease-out), background-color .3s var(--ease-out),
              border-color .3s var(--ease-out), color .3s var(--ease-out), box-shadow .3s var(--ease-out);
  border: 1px solid transparent; text-align: center;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #d8ff72; transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(201,247,90,.6); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: .55rem .95rem; font-size: .84rem; }
.btn-block { width: 100%; }
.btn-buy { background: var(--accent); color: var(--accent-ink); }
.btn-buy:hover { background: #d8ff72; transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(201,247,90,.65); }

/* --- Nav --- */
.nav {
  position: sticky; top: 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10,12,11,.82);
  border-bottom: 1px solid var(--line);
}
@supports (backdrop-filter: blur(18px)) {
  .nav { background: rgba(10,12,11,.6); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); }
}
.nav-inner { display: flex; align-items: center; gap: 1.2rem; width: 100%; }
.logo { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 700; font-size: 1.16rem; letter-spacing: -.03em; }
.logo-mark {
  width: 28px; height: 28px; border-radius: 8px; background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; flex: none;
}
.logo-mark svg { width: 17px; height: 17px; }
.logo-word { display: inline-flex; }
.logo b { color: var(--accent); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav-links a {
  padding: .5rem .72rem; border-radius: 999px; font-size: .89rem; color: var(--ink-2);
  transition: color .25s var(--ease-out), background-color .25s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.nav-links a.is-active { color: var(--accent); }
/* E.2 — el boton dentro del nav re-afirma su color con la misma especificidad */
.nav-links a.nav-cta,
.nav-links a.nav-cta:hover {
  background: var(--accent); color: var(--accent-ink); font-weight: 600; padding: .5rem .95rem;
}
.nav-links a.nav-cta:hover { background: #d8ff72; }
.nav-cta .cmp-count {
  display: inline-grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: var(--accent-ink); color: var(--accent);
  font-size: .68rem; font-weight: 700; margin-left: .4rem;
}
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-strong); margin-left: auto; }
.nav-toggle svg { width: 18px; height: 18px; margin-inline: auto; }

/* --- Cards de producto --- */
.grid-cards {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 285px), 1fr));
}
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .45s var(--ease-out), border-color .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-lg); }
.card-media {
  position: relative; aspect-ratio: 4 / 3; background: #fff; overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .6s var(--ease-out); }
.card:hover .card-media img { transform: scale(1.045); }
.card-badges { position: absolute; top: .7rem; left: .7rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .28rem .58rem; border-radius: 999px; font-size: .7rem; font-weight: 700;
  letter-spacing: .02em; background: var(--accent); color: var(--accent-ink);
}
.badge-off { background: var(--warm); color: #221200; }
.badge-dark { background: rgba(10,12,11,.86); color: var(--ink); border: 1px solid var(--line-strong); }
.card-body { padding: 1.05rem 1.1rem 1.15rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card-brand { font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.card-title { font-size: 1.06rem; line-height: 1.25; }
.card-title a:hover { color: var(--accent); }
.card-rating { display: flex; align-items: center; gap: .35rem; font-size: .82rem; color: var(--ink-2); }
.card-rating svg { width: 14px; height: 14px; flex: none; color: var(--accent); }
.card-specs { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .1rem; }
.card-spec {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .26rem .55rem; border-radius: 8px; background: var(--surface-2);
  border: 1px solid var(--line); font-size: .745rem; color: var(--ink-2); font-weight: 500;
}
.card-spec svg { width: 12px; height: 12px; flex: none; color: var(--accent); }
.card-price { margin-top: auto; padding-top: .55rem; display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.price-now { font-family: var(--display); font-size: 1.34rem; font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.price-was { font-size: .85rem; color: var(--muted); text-decoration: line-through; }
.card-actions { display: flex; gap: .5rem; margin-top: .3rem; }
.card-actions .btn { flex: 1 1 auto; min-width: 0; }
.card-cmp {
  flex: 0 0 auto; width: 40px; padding: 0; display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ink-2);
  transition: all .3s var(--ease-out);
}
.card-cmp svg { width: 16px; height: 16px; }
.card-cmp:hover { border-color: var(--accent); color: var(--accent); }
.card-cmp.is-on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

/* --- Tabla de specs --- */
.spec-group + .spec-group { margin-top: 1.6rem; }
.spec-group h3 {
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent);
  margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem;
}
.spec-group h3 svg { width: 1.05em; height: 1.05em; flex: none; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table th {
  text-align: left; font-weight: 500; color: var(--muted); padding: .62rem .8rem .62rem 0;
  width: 48%; vertical-align: top;
}
.spec-table td { padding: .62rem 0; color: var(--ink); font-weight: 500; vertical-align: top; font-variant-numeric: tabular-nums; }
.spec-table tr:nth-child(odd) { background: rgba(255,255,255,.014); }

/* --- Panel / caja --- */
.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.1rem, 3vw, 1.8rem);
}
.panel-flat { background: var(--bg-2); }

/* --- Radar --- */
.radar-wrap { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.radar { width: 100%; max-width: 380px; height: auto; overflow: visible; }
.radar-legend { display: flex; flex-wrap: wrap; gap: .55rem 1rem; justify-content: center; font-size: .8rem; }
.radar-legend span { display: inline-flex; align-items: center; gap: .4rem; color: var(--ink-2); }
.radar-legend i { width: 10px; height: 10px; border-radius: 3px; flex: none; }

/* --- Galeria --- */
.gallery { display: flex; flex-direction: column; gap: .6rem; }
.gallery-main {
  position: relative; aspect-ratio: 1 / 1; background: #fff; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--line);
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: .5rem; flex-wrap: wrap; }
.gallery-thumbs button {
  width: 68px; height: 68px; border-radius: 12px; overflow: hidden; background: #fff;
  border: 2px solid var(--line); transition: border-color .3s var(--ease-out), transform .3s var(--ease-out);
  padding: 0;
}
.gallery-thumbs button:hover { transform: translateY(-2px); }
.gallery-thumbs button.is-active { border-color: var(--accent); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }

/* --- Pros / contras --- */
.proscons { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.pc-col { border-radius: var(--r); padding: 1.1rem 1.2rem; border: 1px solid var(--line); background: var(--bg-2); }
.pc-col h3 { font-size: .95rem; display: flex; align-items: center; gap: .45rem; margin-bottom: .7rem; }
/* E.1 — todo svg en linea lleva tamano explicito */
.pc-col h3 svg { width: 1.15em; height: 1.15em; flex: none; }
.pc-col.pros h3 { color: var(--accent); }
.pc-col.contras h3 { color: var(--warm); }
.pc-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.pc-col li { display: flex; gap: .55rem; font-size: .9rem; color: var(--ink-2); line-height: 1.5; }
.pc-col li svg { width: 1.05em; height: 1.05em; flex: none; margin-top: .28em; }
.pc-col.pros li svg { color: var(--accent); }
.pc-col.contras li svg { color: var(--warm); }

/* --- Opiniones --- */
.reviews { display: grid; gap: .8rem; grid-template-columns: 1fr; }
.review {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1rem 1.1rem; font-size: .89rem; color: var(--ink-2);
}
.review-head { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; font-size: .78rem; color: var(--muted); }
.review-stars { display: inline-flex; gap: 1px; color: var(--accent); }
.review-stars svg { width: 13px; height: 13px; flex: none; }

/* --- Aviso de precio --- */
.price-note {
  display: inline-flex; align-items: flex-start; gap: .45rem; font-size: .76rem; color: var(--muted);
  line-height: 1.45;
}
.price-note svg { width: 1.05em; height: 1.05em; flex: none; margin-top: .18em; }

/* --- Comparador --- */
.cmp-bar {
  position: sticky; bottom: 0; z-index: 150;
  background: rgba(15,18,17,.94); border-top: 1px solid var(--line-strong);
  padding: .8rem 0; margin-top: 2rem;
}
@supports (backdrop-filter: blur(16px)) {
  .cmp-bar { background: rgba(15,18,17,.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
}
.cmp-bar[hidden] { display: none !important; }
.cmp-bar-inner { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
/* E.3 — el wrapper del slot NO recorta, el recorte vive solo en .thumb */
.cmp-slots { display: flex; gap: .7rem; overflow: visible; padding: .35rem .5rem .35rem 0; flex: 1; min-width: 0; flex-wrap: wrap; }
.slot-wrap { position: relative; overflow: visible; }
.slot-wrap .thumb {
  width: 56px; height: 56px; border-radius: 12px; overflow: hidden; background: #fff;
  border: 1px solid var(--line-strong);
}
.slot-wrap .thumb img { width: 100%; height: 100%; object-fit: contain; }
.remove-badge {
  position: absolute; top: -7px; right: -7px; width: 20px; height: 20px; border-radius: 999px;
  background: var(--ink); color: var(--bg); display: grid; place-items: center;
  font-size: .7rem; font-weight: 700; line-height: 1; border: 2px solid var(--bg-2);
}
.remove-badge:hover { background: var(--danger); color: #fff; }

.cmp-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.cmp-table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 620px; }
.cmp-table td { font-variant-numeric: tabular-nums; }
.cmp-table th, .cmp-table td { padding: .7rem .85rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cmp-table thead th { background: var(--surface-2); font-weight: 600; vertical-align: bottom; position: sticky; top: 0; }
.cmp-table tbody th { color: var(--muted); font-weight: 500; width: 190px; }
.cmp-table tr:last-child td, .cmp-table tr:last-child th { border-bottom: 0; }
.cmp-table td.best { color: var(--accent); font-weight: 700; }
.cmp-table td.best::after { content: " ★"; font-size: .75em; }
.cmp-head-card { display: flex; flex-direction: column; gap: .5rem; min-width: 150px; }
.cmp-head-card .thumb { width: 100%; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; background: #fff; }
.cmp-head-card .thumb img { width: 100%; height: 100%; object-fit: contain; }
.cmp-head-card .nm { font-size: .86rem; font-weight: 600; line-height: 1.25; }
.cmp-search { position: relative; }
.cmp-search input {
  width: 100%; padding: .75rem 1rem; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--line-strong); color: var(--ink);
}
.cmp-search input::placeholder { color: var(--muted); }
.cmp-results { display: grid; gap: .5rem; margin-top: .7rem; }
.cmp-result {
  display: flex; align-items: center; gap: .7rem; padding: .5rem .7rem; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--line); text-align: left; width: 100%;
  transition: border-color .25s var(--ease-out);
}
.cmp-result:hover { border-color: var(--accent); }
.cmp-result .thumb { width: 42px; height: 42px; border-radius: 8px; overflow: hidden; background: #fff; flex: none; }
.cmp-result .thumb img { width: 100%; height: 100%; object-fit: contain; }
.cmp-result .meta { flex: 1; min-width: 0; }
.cmp-result .meta b { display: block; font-size: .87rem; font-weight: 600; }
.cmp-result .meta span { font-size: .76rem; color: var(--muted); }
.cmp-empty {
  border: 1px dashed var(--line-strong); border-radius: var(--r-lg); padding: 2.4rem 1.4rem;
  text-align: center; color: var(--muted);
}
.cmp-empty svg { width: 34px; height: 34px; margin: 0 auto .8rem; color: var(--accent); opacity: .8; }

/* --- Filtros --- */
.filters { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.filters select {
  padding: .55rem .9rem; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--line-strong); font-size: .85rem;
}
.chip {
  padding: .45rem .9rem; border-radius: 999px; border: 1px solid var(--line-strong);
  font-size: .84rem; color: var(--ink-2); transition: all .3s var(--ease-out);
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.is-on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); font-weight: 600; }

/* --- Aviso afiliados --- */
.aff-note {
  display: flex; gap: .6rem; align-items: flex-start;
  background: var(--accent-soft); border: 1px solid rgba(201,247,90,.22);
  border-radius: var(--r); padding: .75rem .95rem; font-size: .8rem; color: var(--ink-2); line-height: 1.5;
}
.aff-note svg { width: 1.1em; height: 1.1em; flex: none; color: var(--accent); margin-top: .18em; }

/* --- Footer --- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); margin-top: 4rem; padding: 2.6rem 0 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer h4 { font-size: .76rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: .8rem; }
.footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.footer a { font-size: .88rem; color: var(--ink-2); transition: color .25s var(--ease-out); }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  font-size: .78rem; color: var(--muted); display: flex; gap: 1rem; flex-wrap: wrap; justify-content: space-between;
}

/* =============================================================
   6. Secciones
   ============================================================= */
.section { padding: clamp(2.6rem, 6vw, 4.6rem) 0; }
.section-sm { padding: clamp(1.8rem, 4vw, 3rem) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.7rem; }
.section-head .titles { display: flex; flex-direction: column; gap: .55rem; }

/* --- Hero --- */
.hero { position: relative; padding: clamp(2.6rem, 7vw, 5.4rem) 0 clamp(2rem, 5vw, 3.4rem); overflow: hidden; }
.hero-halo {
  position: absolute; inset: -60% -10% 10% -10%; pointer-events: none; z-index: 0;
  background: radial-gradient(46% 40% at 62% 44%, rgba(201,247,90,.16), transparent 72%);
  filter: blur(90px);
}
.hero-inner { position: relative; z-index: 1; display: grid; gap: 2.2rem; align-items: center; }
.hero-title { font-size: clamp(2.35rem, 6.6vw, 4.3rem); line-height: .98; max-width: 15ch; }
.hero-title em { font-style: normal; color: var(--accent); }
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .3rem; }
.hero-stats { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.hero-stat b { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.hero-stat span { font-size: .78rem; color: var(--muted); }
.hero-visual { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; aspect-ratio: 1/1; }
.hero-visual img { width: 100%; height: 100%; object-fit: contain; }
.hero-tag {
  position: absolute; left: .9rem; bottom: .9rem; right: .9rem;
  background: rgba(10,12,11,.9); border: 1px solid var(--line-strong); border-radius: var(--r);
  padding: .7rem .9rem; display: flex; align-items: center; gap: .7rem;
}
@supports (backdrop-filter: blur(10px)) { .hero-tag { background: rgba(10,12,11,.7); backdrop-filter: blur(10px); } }
.hero-tag .t { flex: 1; min-width: 0; }
.hero-tag b { display: block; font-size: .88rem; }
.hero-tag span { font-size: .74rem; color: var(--muted); }

/* --- Categorias --- */
.cat-grid { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.cat-card {
  position: relative; display: flex; flex-direction: column; gap: .4rem; justify-content: flex-end;
  min-height: 148px; padding: 1.1rem; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out), background-color .4s var(--ease-out);
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--accent); background: var(--surface-2); }
.cat-card .ico { width: 34px; height: 34px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: auto; }
.cat-card .ico svg { width: 18px; height: 18px; }
.cat-card b { font-family: var(--display); font-size: 1.05rem; font-weight: 600; }
.cat-card span { font-size: .8rem; color: var(--muted); }

/* --- Como elegimos / metodo --- */
.method-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.method-item { padding: 1.2rem; border-radius: var(--r); background: var(--bg-2); border: 1px solid var(--line); }
.method-item .n { font-family: var(--display); font-size: .8rem; color: var(--accent); font-weight: 700; letter-spacing: .1em; }
.method-item h3 { font-size: 1rem; margin: .45rem 0 .4rem; }
.method-item p { font-size: .86rem; color: var(--muted); line-height: 1.55; }

/* --- Ficha --- */
.ficha-top { display: grid; gap: 1.8rem; align-items: start; }
.ficha-head { display: flex; flex-direction: column; gap: .8rem; }
.ficha-title { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
.ficha-meta { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; font-size: .86rem; color: var(--ink-2); }
.ficha-price { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.ficha-price .now { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.ficha-price .was { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.ficha-buy { display: flex; gap: .6rem; flex-wrap: wrap; }
.ficha-buy .btn { flex: 1 1 200px; }
.ficha-body { display: grid; gap: 1.8rem; }
.ideal-box {
  border-left: 3px solid var(--accent); background: var(--accent-soft);
  padding: .9rem 1.1rem; border-radius: 0 var(--r) var(--r) 0; font-size: .95rem; color: var(--ink);
}
.ideal-box b { color: var(--accent); display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .3rem; }
.buy-strip {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: space-between;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong); border-radius: var(--r-lg); padding: 1.1rem 1.3rem;
}
.buy-strip .t b { display: block; font-family: var(--display); font-size: 1.05rem; }
.buy-strip .t span { font-size: .82rem; color: var(--muted); }

/* --- Guia / blog --- */
.article { max-width: 76ch; }
.article h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 2.2rem 0 .8rem; }
.article h3 { font-size: 1.12rem; margin: 1.6rem 0 .5rem; }
.article p { color: var(--ink-2); margin-bottom: 1rem; }
.article ul, .article ol { color: var(--ink-2); padding-left: 1.2rem; margin-bottom: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.article a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.toc { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1rem 1.2rem; margin-bottom: 2rem; }
.toc h4 { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.toc ol { margin: 0; padding-left: 1.1rem; gap: .3rem; }
.toc a { color: var(--ink-2); text-decoration: none; }
.toc a:hover { color: var(--accent); }
.faq-item { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 { margin: 0 0 .4rem; font-size: 1rem; }
.faq-item p { margin: 0; font-size: .92rem; }

/* --- Rank list --- */
.rank { display: flex; flex-direction: column; gap: .9rem; }
.rank-item {
  display: grid; gap: 1rem; grid-template-columns: 1fr; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1rem;
}
.rank-item .pos {
  width: 34px; height: 34px; border-radius: 10px; background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; flex: none;
}
.rank-media { width: 100%; aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden; background: #fff; }
.rank-media img { width: 100%; height: 100%; object-fit: contain; }

/* --- Estado vacio --- */
.empty-state {
  border: 1px dashed var(--line-strong); border-radius: var(--r-lg);
  padding: 2.6rem 1.4rem; text-align: center; color: var(--muted);
}
.empty-state b { display: block; color: var(--ink); font-family: var(--display); margin-bottom: .35rem; }

/* =============================================================
   7. Efectos
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
.is-ready [data-reveal] { will-change: opacity, transform; }
@view-transition { navigation: auto; }

/* =============================================================
   8. Responsive (mobile-first)
   ============================================================= */
@media (min-width: 540px) {
  .proscons { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .rank-item { grid-template-columns: 44px 190px 1fr; }
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
  .ficha-top { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .ficha-body { grid-template-columns: 1.6fr 1fr; align-items: start; }
  .ficha-body > .full { grid-column: 1 / -1; }
}
@media (max-width: 899px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: .8rem var(--gutter) 1.2rem;
    gap: .2rem; margin-left: 0; transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
  }
  .nav-links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: .7rem .8rem; }
  .nav-links a.nav-cta { justify-content: center; display: flex; margin-top: .4rem; }
}
@media (min-width: 900px) { .nav-toggle { display: none; } }

/* =============================================================
   9. Reduced motion — solo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-halo { filter: blur(70px); }
  [data-reveal] { transition-duration: .01ms; }
}
