/* =============================================================
   CeluCompara MX — styles.css
   1. Tokens  2. Reset  3. Utilities  4. Typography  5. Components
   6. Sections  7. Effects  8. Responsive  9. Reduced-motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #f6f7fb;
  --bg-alt:      #ffffff;
  --ink:         #12151f;
  --ink-soft:    #545b70;
  --ink-faint:   #8890a4;
  --border:      #e4e7f0;
  --border-soft: #edeff5;

  --navy:        #0b0f1c;
  --navy-soft:   #171c2e;
  --navy-ink:    #c9cee0;

  --accent:      #3d5afe;
  --accent-dark: #2c40c9;
  --accent-ink:  #ffffff;
  --accent-soft: #ecefff;

  --good:        #128a5e;
  --good-soft:   #e4f7ef;
  --bad:         #d13a53;
  --bad-soft:    #fbe9ec;
  --offer:       #ff6a3d;
  --offer-ink:   #ffffff;
  --offer-soft:  #fff1eb;
  --star:        #f5a623;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(15, 20, 40, .06);
  --shadow:    0 8px 24px rgba(15, 20, 40, .08);
  --shadow-lg: 0 20px 48px rgba(15, 20, 40, .14);

  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Space Grotesk", var(--sans);

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

  --container: 1240px;
  --nav-h: 72px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--display); text-wrap: balance; line-height: 1.12; letter-spacing: -0.01em; font-weight: 600; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--accent); color: var(--accent-ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-head { max-width: 640px; margin-bottom: 2.25rem; }
.section-head .kicker { display: block; margin-bottom: .5rem; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-head p { color: var(--ink-soft); margin-top: .6rem; font-size: 1.05rem; }

.kicker {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
}

.grid-cards {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
.eyebrow { font-family: var(--sans); font-weight: 700; }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s var(--ease-out), color .2s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 24px rgba(61,90,254,.28); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(61,90,254,.36); }
.btn-ghost { background: var(--bg-alt); color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--navy); transform: translateY(-2px); }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* --- Badges & chips --- */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .65rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
}
.badge-offer { background: var(--offer-soft); color: var(--offer); }
.badge-editorial { background: var(--accent-soft); color: var(--accent); }
.badge-new { background: var(--good-soft); color: var(--good); }

.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem .8rem; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--border);
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
}

/* --- Stars --- */
.stars { display: inline-flex; align-items: center; gap: .3rem; font-size: .9rem; color: var(--ink-soft); }
.stars svg { width: 1em; height: 1em; flex: none; fill: var(--star); }
.stars .stars-empty { color: var(--ink-faint); font-weight: 500; }

/* --- Product card --- */
.card-product {
  display: flex; flex-direction: column;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
  position: relative;
}
.card-product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-product-media {
  position: relative; aspect-ratio: 4 / 3; background: var(--bg);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  overflow: visible;
}
.card-product-media img { max-height: 100%; object-fit: contain; }
.card-product-badges { position: absolute; top: .75rem; left: .75rem; display: flex; flex-direction: column; gap: .4rem; z-index: 2; }
.card-compare-add {
  position: absolute; top: .75rem; right: .75rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; line-height: 1; color: var(--ink-soft);
  transition: background .2s, color .2s, border-color .2s;
}
.card-compare-add svg { width: 1.05em; height: 1.05em; flex: none; }
.card-compare-add:hover, .card-compare-add.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.card-product-body { padding: 1.15rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card-product-brand { font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-faint); }
.card-product-name { font-size: 1.02rem; font-weight: 600; line-height: 1.3; }
.card-product-name a { display: block; }
.card-product-name a:hover { color: var(--accent); }
.card-product-highlight { font-size: .85rem; color: var(--accent); font-weight: 600; }
.card-product-price { margin-top: auto; display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap; }
.price-now { font-size: 1.35rem; font-weight: 700; font-family: var(--display); }
.price-was { font-size: .88rem; color: var(--ink-faint); text-decoration: line-through; }
.price-off { font-size: .78rem; font-weight: 700; color: var(--offer); }
.card-product-foot { display: flex; gap: .6rem; margin-top: .75rem; }
.card-product-foot .btn { flex: 1; }

/* --- Spec table --- */
.spec-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-alt); }
.spec-table { min-width: 100%; }
.spec-table caption {
  text-align: left; padding: .9rem 1.25rem; font-weight: 700;
  background: var(--bg); border-bottom: 1px solid var(--border);
  font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft);
}
.spec-table tr { border-bottom: 1px solid var(--border-soft); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table th, .spec-table td { text-align: left; padding: .75rem 1.25rem; font-size: .92rem; }
.spec-table th { color: var(--ink-soft); font-weight: 500; width: 45%; }
.spec-table td { font-weight: 600; }
.spec-table td.is-empty { color: var(--ink-faint); font-weight: 400; }

/* --- Comparator table --- */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-alt); }
.compare-table { min-width: 640px; }
.compare-table th, .compare-table td { padding: .85rem 1.1rem; border-bottom: 1px solid var(--border-soft); font-size: .9rem; vertical-align: top; }
.compare-table thead th { position: sticky; top: 0; background: var(--bg-alt); z-index: 3; }
.compare-table tbody th { text-align: left; color: var(--ink-soft); font-weight: 500; white-space: nowrap; background: var(--bg-alt); position: sticky; left: 0; z-index: 2; }
.compare-table td { text-align: center; font-weight: 600; }
.compare-table td.is-best { color: var(--good); background: var(--good-soft); border-radius: var(--radius-sm); }
.compare-col-head { min-width: 190px; }
.compare-product-card { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
.compare-product-card img { width: 84px; height: 84px; object-fit: contain; }
.compare-remove {
  width: 26px; height: 26px; border-radius: 999px; background: var(--bad-soft); color: var(--bad);
  display: flex; align-items: center; justify-content: center; font-size: .85rem; align-self: flex-end;
}

/* --- Radar chart --- */
.radar-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.radar-svg { width: 100%; max-width: 360px; height: auto; }
.radar-grid { fill: none; stroke: var(--border); stroke-width: 1; }
.radar-axis { stroke: var(--border); stroke-width: 1; }
.radar-label { font-size: 10px; fill: var(--ink-soft); font-family: var(--sans); font-weight: 600; }
.radar-poly { fill-opacity: .18; stroke-width: 2; }
.radar-legend { display: flex; flex-wrap: wrap; gap: .6rem 1.1rem; justify-content: center; font-size: .85rem; }
.radar-legend-item { display: flex; align-items: center; gap: .45rem; font-weight: 600; }
.radar-legend-dot { width: 10px; height: 10px; border-radius: 999px; flex: none; }

/* --- Pros / cons --- */
.proscons { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.proscons-col { padding: 1.1rem 1.25rem; border-radius: var(--radius); }
.proscons-col.pros { background: var(--good-soft); }
.proscons-col.cons { background: var(--bad-soft); }
.proscons-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .7rem; }
.proscons-col.pros h4 { color: var(--good); }
.proscons-col.cons h4 { color: var(--bad); }
.proscons-col li { display: flex; gap: .5rem; font-size: .92rem; padding-block: .3rem; line-height: 1.45; }
.proscons-col li svg { width: 1.1em; height: 1.1em; flex: none; margin-top: .15em; }
.proscons-col.pros li svg { fill: var(--good); }
.proscons-col.cons li svg { fill: var(--bad); }

/* --- Nav --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,15,28,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@supports not (backdrop-filter: blur(1px)) { .site-header { background: var(--navy); } }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 1rem; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: #fff; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-family: var(--display); flex: none; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a { color: var(--navy-ink); font-weight: 500; font-size: .93rem; transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-links a.nav-cta, .nav-links a.nav-cta:hover {
  background: var(--accent); color: #fff; padding: .6rem 1.15rem; border-radius: 999px; font-weight: 600;
}
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; color: #fff; }
.nav-toggle svg { width: 22px; height: 22px; }

/* --- Footer --- */
.site-footer { background: var(--navy); color: var(--navy-ink); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.4fr repeat(3, 1fr); margin-bottom: 2.5rem; }
.footer-grid h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; font-family: var(--sans); font-weight: 700; }
.footer-grid a { color: var(--navy-ink); font-size: .92rem; transition: color .2s; }
.footer-grid a:hover { color: #fff; }
.footer-grid li + li { margin-top: .6rem; }
.footer-about p { font-size: .9rem; line-height: 1.6; max-width: 320px; }
.footer-disclosure {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  font-size: .82rem; line-height: 1.6; color: #8a90a8;
}
.footer-disclosure strong { color: var(--navy-ink); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; font-size: .8rem; color: #6b7190; }

/* --- Disclosure banner (inline, used on fichas/home) --- */
.disclosure-note {
  display: flex; gap: .6rem; align-items: flex-start;
  background: var(--accent-soft); color: var(--accent-dark);
  border-radius: var(--radius); padding: .85rem 1.1rem; font-size: .85rem; line-height: 1.5;
}
.disclosure-note svg { width: 1.2em; height: 1.2em; flex: none; margin-top: .1em; fill: var(--accent); }

/* --- Filter bar --- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.75rem; }
.filter-btn {
  padding: .55rem 1.05rem; border-radius: 999px; border: 1px solid var(--border);
  background: var(--bg-alt); font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  transition: all .2s var(--ease-out);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero --- */
.hero { background: linear-gradient(180deg, var(--navy) 0%, #131a2e 100%); color: #fff; padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -40% -10% auto -10%; height: 120%;
  background: radial-gradient(50% 50% at 50% 20%, rgba(61,90,254,.35), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero-eyebrow { color: #9aa4ff; margin-bottom: 1rem; }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 em { color: #9aa4ff; font-style: normal; }
.hero p.lead { color: var(--navy-ink); font-size: 1.08rem; max-width: 46ch; margin-bottom: 1.75rem; }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 1.75rem; margin-top: 2.25rem; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--display); font-size: 1.5rem; color: #fff; }
.hero-stat span { font-size: .8rem; color: var(--navy-ink); }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 1.5rem; backdrop-filter: blur(8px);
  width: 100%; max-width: 340px;
}
.hero-visual-card img { margin-inline: auto; max-height: 220px; }

/* --- Trust / cómo elegimos --- */
.trust-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.trust-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.trust-card .trust-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.trust-card .trust-ico svg { width: 22px; height: 22px; }
.trust-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.trust-card p { color: var(--ink-soft); font-size: .92rem; }

/* --- Category strip --- */
.cat-strip { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr); }
.cat-card {
  position: relative; border-radius: var(--radius-lg); padding: 1.6rem;
  background: var(--navy); color: #fff; overflow: hidden; min-height: 150px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: .35rem;
  transition: transform .3s var(--ease-out);
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 100% at 100% 0%, rgba(61,90,254,.55), transparent 60%); }
.cat-card span { position: relative; font-size: .82rem; color: var(--navy-ink); }
.cat-card strong { position: relative; font-family: var(--display); font-size: 1.25rem; }

/* --- Ficha (product page) --- */
.ficha-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.75rem; margin-bottom: 3rem; }
.gallery-main { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-alt); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 2.5rem; overflow: hidden; }
.gallery-main img { max-height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: .6rem; margin-top: .85rem; flex-wrap: wrap; }
.gallery-thumbs button { width: 62px; height: 62px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-alt); padding: .4rem; }
.gallery-thumbs button.is-active { border-color: var(--accent); }
.gallery-thumbs img { max-width: 100%; max-height: 100%; object-fit: contain; margin-inline: auto; }

.ficha-info-top { display: flex; flex-direction: column; gap: .85rem; }
.ficha-brand { color: var(--ink-faint); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .8rem; }
.ficha-title { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.ficha-rating-row { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.ficha-price-block { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .9rem; }
.ficha-price-row { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; }
.ficha-price-row .price-now { font-size: 2.1rem; }
.price-date-note { font-size: .78rem; color: var(--ink-faint); }
.ficha-highlight { font-weight: 600; color: var(--accent); font-size: .95rem; }
.ficha-cta-row { display: flex; gap: .75rem; flex-wrap: wrap; }

.ficha-section { margin-block: 2.75rem; }
.ficha-section h2 { margin-bottom: 1.25rem; }
.ideal-para-box { background: var(--accent-soft); border-radius: var(--radius); padding: 1.25rem 1.5rem; font-weight: 600; color: var(--accent-dark); margin-top: 1.25rem; }
.ideal-para-box span { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; margin-bottom: .35rem; opacity: .8; }

.review-summary-box { background: var(--bg-alt); border: 1px dashed var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; color: var(--ink-soft); font-size: .92rem; }

.similar-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.1rem; }

/* --- Comparator picker --- */
.compare-picker { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 2.5rem; }
.compare-picker-search { position: relative; margin-bottom: 1rem; }
.compare-picker-search input {
  width: 100%; padding: .85rem 1.1rem; border-radius: 999px; border: 1px solid var(--border);
  font-size: .95rem; font-family: var(--sans);
}
.compare-picker-search input:focus { outline: 2px solid var(--accent); border-color: transparent; }
.compare-slots { display: flex; gap: .85rem; flex-wrap: wrap; }
.compare-slot {
  width: 130px; min-height: 130px; border-radius: var(--radius); border: 1.5px dashed var(--border);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: .78rem; color: var(--ink-faint); position: relative; padding: .5rem;
}
.compare-slot.is-filled { border-style: solid; border-color: var(--border); flex-direction: column; gap: .35rem; }
.compare-slot img { max-width: 60px; max-height: 60px; }
.compare-slot .compare-slot-name { font-size: .72rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.compare-slot .compare-remove { position: absolute; top: -8px; right: -8px; }
.compare-suggestions { position: absolute; z-index: 20; margin-top: .5rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; max-width: 420px; max-height: 320px; overflow-y: auto; }
.compare-suggestions button { display: flex; align-items: center; gap: .75rem; width: 100%; padding: .65rem .9rem; text-align: left; }
.compare-suggestions button:hover { background: var(--bg); }
.compare-suggestions img { width: 34px; height: 34px; object-fit: contain; }
.compare-empty { text-align: center; padding: 3rem 1.5rem; color: var(--ink-soft); }

/* --- Ofertas --- */
.offer-hero { background: linear-gradient(135deg, var(--offer) 0%, #ff8f5c 100%); color: #fff; border-radius: var(--radius-lg); padding: 2.25rem; margin-bottom: 2.5rem; }
.offer-hero h1 { color: #fff; }
.offer-hero p { color: #fff2ec; max-width: 50ch; }

/* --- Guide / long-form content --- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: .75rem; }
.prose p { margin-bottom: 1.1rem; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
.prose ul { margin-bottom: 1.1rem; }
.prose li { position: relative; padding-left: 1.4rem; margin-bottom: .5rem; color: var(--ink-soft); line-height: 1.6; }
.prose li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
.prose strong { color: var(--ink); }
.faq-item { border-bottom: 1px solid var(--border); padding-block: 1.25rem; }
.faq-item h3 { font-size: 1.02rem; margin-bottom: .5rem; }
.faq-item p { color: var(--ink-soft); font-size: .95rem; }

/* --- Legal pages --- */
.legal-page .prose h2:first-child { margin-top: 0; }

/* --- Breadcrumb --- */
.breadcrumb { display: flex; gap: .4rem; align-items: center; font-size: .82rem; color: var(--ink-faint); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--accent); }

/* =============================================================
   7. Effects
   ============================================================= */
@keyframes floatSlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-visual-card { animation: floatSlow 6s ease-in-out infinite; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .proscons { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 959px) {
  .nav-links { position: fixed; inset: var(--nav-h) 0 0 0; background: var(--navy); flex-direction: column; align-items: flex-start; padding: 1.5rem 1.25rem; gap: 0; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease-out), transform .25s var(--ease-out); }
  .nav-links a { width: 100%; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a.nav-cta { margin-top: .75rem; text-align: center; }
  .nav-links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .ficha-head { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .cat-strip { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
}
@media (max-width: 639px) {
  .hero-stats { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .compare-table { min-width: 560px; }
}

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-visual-card { animation: none; }
}
