/* =============================================================
   EL RINCÓN CAFETERO — styles.css
   1. Tokens  2. Reset  3. Utilities  4. Typography  5. Components
   6. Sections  7. Effects  8. Responsive  9. Reduced motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Warm coffeehouse palette */
  --bg:            #faf6ee;
  --bg-deep:       #241408;
  --bg-deep-2:     #3b2415;
  --surface:       #ffffff;
  --surface-alt:   #f3e8d7;
  --surface-warm:  #fbf1e2;
  --ink:           #2b1810;
  --ink-soft:      #6b5744;
  --ink-faint:     #9c8873;
  --cream:         #f5ede1;
  --accent:        #b5762d;
  --accent-deep:   #8a5a2f;
  --accent-light:  #e8c9a0;
  --gold:          #c9a961;
  --leaf:          #4c7a52;
  --terracotta:    #b3452c;
  --line:          #e6d8c3;
  --line-strong:   #d8c4a5;
  --shadow-sm:     0 2px 10px rgba(43, 24, 16, .08);
  --shadow-md:     0 10px 30px rgba(43, 24, 16, .14);
  --shadow-lg:     0 24px 60px rgba(43, 24, 16, .22);

  --serif: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --sans:  "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
  --container: 1240px;

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

/* =============================================================
   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;
}
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; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 600; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--accent-light); color: var(--bg-deep); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg-deep);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
::view-transition-old(root) { animation-name: fadeOutUp; }
::view-transition-new(root) { animation-name: fadeInUp; }
@keyframes fadeOutUp { to { opacity: 0; transform: translateY(-10px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 840px; margin-inline: auto; padding-inline: var(--gutter); }
.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;
}
.stack > * + * { margin-top: 1rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.section { position: relative; padding-block: clamp(3rem, 7vw, 6rem); }
.section-head { max-width: 640px; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.section-head p { color: var(--ink-soft); margin-top: .7rem; font-size: 1.05rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: 0; }
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .8rem; border-radius: 999px;
  background: var(--surface-alt); color: var(--ink-soft);
  font-size: .82rem; font-weight: 600;
}

/* =============================================================
   4. Typography
   ============================================================= */
.h-display { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: .98; }
.h-xl { font-size: clamp(2.1rem, 4.4vw, 3.1rem); }
.h-lg { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.h-md { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); }
.prose { max-width: 68ch; }
.prose p + p { margin-top: 1.1em; }
.prose h2 { margin-top: 2em; margin-bottom: .6em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.6em; margin-bottom: .5em; font-size: 1.2rem; }
.prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { list-style: disc; padding-left: 1.4em; margin-top: .8em; }
.prose ul li + li, .prose ol li + li { margin-top: .4em; }

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

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--bg-deep); color: var(--cream); }
.btn-dark:hover { background: var(--bg-deep-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn-sm { padding: .55rem 1.1rem; font-size: .86rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* --- Nav --- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(250, 246, 238, .88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(1px)) {
  .site-header { background: var(--bg); }
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .85rem;
}
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 700; font-size: 1.28rem; color: var(--ink); }
.brand svg, .brand-mark { width: 34px; height: 34px; flex: none; color: var(--accent); }
.nav-drawer .brand { font-size: 1.1rem; margin-bottom: .4rem; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a:not(.nav-cta) {
  font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  padding-block: .3rem; border-bottom: 2px solid transparent;
  transition: color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover, .nav-links a:not(.nav-cta).is-active { color: var(--ink); border-color: var(--accent); }
.nav-links a.nav-cta, .nav-links a.nav-cta:hover {
  color: var(--cream); background: var(--accent);
  padding: .55rem 1.1rem; border-radius: 999px; font-weight: 700;
}
.nav-links a.nav-cta:hover { background: var(--accent-deep); }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-drawer { display: none; }

/* --- Cards --- */
.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.4rem; }
.product-card { display: flex; flex-direction: column; height: 100%; position: relative; }
.product-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--surface-alt); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-badges { position: absolute; top: .7rem; left: .7rem; display: flex; flex-direction: column; gap: .4rem; z-index: 2; }
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .03em;
  padding: .3rem .6rem; border-radius: 999px; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.badge-offer { background: var(--terracotta); color: #fff; }
.badge-featured { background: var(--gold); color: var(--bg-deep); }
.badge-sample { background: var(--bg-deep); color: var(--cream); }
.product-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.product-cat { font-size: .76rem; font-weight: 700; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .06em; }
.product-name { font-size: 1.05rem; line-height: 1.25; }
.product-name a { transition: color .2s; }
.product-name a:hover { color: var(--accent-deep); }
.product-rating { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--ink-soft); }
.stars { display: inline-flex; gap: 1px; color: var(--gold); }
.stars svg { width: 14px; height: 14px; }
.product-price { margin-top: auto; display: flex; align-items: baseline; gap: .5rem; padding-top: .3rem; }
.price-now { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.price-before { font-size: .88rem; color: var(--ink-faint); text-decoration: line-through; }
.product-actions { display: flex; gap: .5rem; margin-top: .4rem; }
.product-actions .btn { flex: 1; }
.compare-toggle {
  width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  transition: border-color .2s, background .2s, color .2s;
}
.compare-toggle svg { width: 17px; height: 17px; }
.compare-toggle:hover, .compare-toggle.is-active { border-color: var(--accent); background: var(--accent); color: var(--cream); }

/* --- Category entry cards (home) --- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  color: var(--cream); display: flex; align-items: flex-end; padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s var(--ease-out); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,20,8,.05), rgba(36,20,8,.78)); z-index: 1; }
.cat-card span { position: relative; z-index: 2; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; }
.cat-card:hover img { transform: scale(1.06); }

/* --- Trust strip / how we choose --- */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; }
.trust-item { display: flex; gap: .9rem; align-items: flex-start; }
.trust-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--surface-alt); color: var(--accent-deep); display: flex; align-items: center; justify-content: center; flex: none; }
.trust-ico svg { width: 22px; height: 22px; }
.trust-item h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.trust-item p { color: var(--ink-soft); font-size: .95rem; }

/* --- Ficha (product page) --- */
.ficha { padding-block: clamp(1.6rem, 4vw, 2.6rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .35rem; font-size: .85rem; color: var(--ink-faint); margin-bottom: 1.4rem; }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--accent-deep); }
.ficha-top { display: grid; grid-template-columns: 1fr; gap: 2.2rem; }
.ficha-galeria { border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-alt); box-shadow: var(--shadow-sm); }
.ficha-img-main { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.ficha-thumbs { display: flex; gap: .6rem; padding: .7rem; overflow-x: auto; }
.ficha-thumbs li { flex: none; width: 60px; height: 60px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; }
.ficha-thumbs li.is-active { border-color: var(--accent); }
.ficha-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.ficha-head { display: flex; flex-direction: column; gap: .7rem; }
.ficha-marca { font-weight: 700; color: var(--accent-deep); text-transform: uppercase; font-size: .82rem; letter-spacing: .06em; }
.ficha-nombre { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.ficha-rating { display: flex; align-items: center; gap: .6rem; font-size: .95rem; color: var(--ink-soft); }
.ficha-precio { display: flex; flex-wrap: wrap; align-items: baseline; gap: .7rem; padding: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ficha-precio .precio-actual { font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.ficha-precio .precio-antes { font-size: 1.05rem; color: var(--ink-faint); text-decoration: line-through; }
.ficha-precio .precio-nota { width: 100%; font-size: .82rem; color: var(--ink-faint); }
.btn-comprar { font-size: 1.05rem; padding: 1rem 1.6rem; }
.ficha-sample-note {
  display: flex; gap: .6rem; align-items: flex-start; padding: .8rem 1rem; border-radius: var(--radius-sm);
  background: var(--surface-alt); border: 1px dashed var(--line-strong); font-size: .86rem; color: var(--ink-soft);
}
.ficha-sample-note svg { width: 18px; height: 18px; color: var(--accent-deep); flex: none; margin-top: 2px; }

.ficha-radar { padding-block: clamp(2rem, 5vw, 3rem); }
.radar-wrap { display: grid; grid-template-columns: minmax(0,340px) 1fr; gap: 2rem; align-items: center; }
.radar-figure { aspect-ratio: 1/1; }
.radar-legend { display: flex; flex-direction: column; gap: .5rem; }
.radar-legend-item { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .5rem .8rem; border-radius: var(--radius-sm); background: var(--surface-alt); font-size: .9rem; }
.radar-legend-item strong { color: var(--accent-deep); }

.ficha-specs table { font-size: .93rem; }
.ficha-specs tr { border-bottom: 1px solid var(--line); }
.ficha-specs td { padding: .65rem .4rem; }
.ficha-specs td:first-child { color: var(--ink-soft); width: 45%; }
.ficha-specs td:last-child { font-weight: 600; text-align: right; }
.ficha-specs tbody tr:last-child { border-bottom: 0; }
.specs-extra { margin-top: 1rem; font-size: .9rem; }
.specs-extra summary { cursor: pointer; font-weight: 700; color: var(--accent-deep); padding: .5rem 0; }

.editorial-cuerpo { font-size: 1.02rem; color: var(--ink); }
.editorial-cuerpo p + p { margin-top: 1em; }
.pros-contras { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.4rem; }
.pros, .contras { display: flex; flex-direction: column; gap: .55rem; }
.pros li, .contras li { display: flex; gap: .55rem; align-items: flex-start; font-size: .95rem; }
.pros li svg { color: var(--leaf); }
.contras li svg { color: var(--terracotta); }
.pros li svg, .contras li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.ideal-para { margin-top: 1.2rem; padding: 1rem 1.2rem; background: var(--surface-alt); border-radius: var(--radius-sm); border-left: 3px solid var(--accent); font-size: .95rem; }

.resenas-list { display: flex; flex-direction: column; gap: 1rem; }
.resena-item { padding: 1rem 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.resena-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .4rem; font-size: .9rem; color: var(--ink-soft); }
.resena-item p { font-size: .93rem; }

.similares-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(200px, 240px); gap: 1rem; overflow-x: auto; padding-bottom: .6rem; }

.aviso-afiliados {
  font-size: .86rem; color: var(--ink-faint); padding: 1rem 1.2rem; background: var(--surface-alt);
  border-radius: var(--radius-sm); line-height: 1.55;
}

/* --- Comparator --- */
.comparador-picker { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.comparador-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.comparador-table { min-width: 640px; }
.comparador-table th, .comparador-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); font-size: .92rem; vertical-align: top; }
.comparador-table thead th { background: var(--surface-alt); text-align: left; position: sticky; top: 0; }
.comparador-table td:first-child, .comparador-table th:first-child { position: sticky; left: 0; background: var(--surface); font-weight: 600; color: var(--ink-soft); z-index: 1; }
.comparador-table .best { color: var(--leaf); font-weight: 800; }
.comparador-col-head { display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; }
.comparador-col-head img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; }
.comparador-remove { font-size: .78rem; color: var(--terracotta); font-weight: 700; }
.comparador-empty { padding: 3rem 1.5rem; text-align: center; color: var(--ink-soft); border: 1.5px dashed var(--line-strong); border-radius: var(--radius); }

/* --- Filters bar --- */
.filters-bar { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; padding: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1.6rem; }
.filters-bar label { font-size: .82rem; font-weight: 700; color: var(--ink-soft); display: flex; flex-direction: column; gap: .3rem; }
.filters-bar select {
  font: inherit; padding: .5rem .8rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line-strong);
  background: var(--surface); color: var(--ink); min-width: 160px;
}
.filters-count { margin-left: auto; font-size: .85rem; color: var(--ink-faint); }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--line); padding-block: 1rem; }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 1.02rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); transition: transform .3s var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: .7rem; color: var(--ink-soft); }

/* --- Footer --- */
.site-footer { background: var(--bg-deep); color: var(--cream); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.4rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 700; font-size: 1.2rem; margin-bottom: .8rem; }
.footer-brand svg { width: 28px; height: 28px; color: var(--accent-light); }
.footer-col h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-light); margin-bottom: .9rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { color: rgba(245,237,225,.78); font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(245,237,225,.14); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .82rem; color: rgba(245,237,225,.6); }
.footer-disclosure { font-size: .78rem; color: rgba(245,237,225,.55); max-width: 70ch; margin-top: 1.2rem; line-height: 1.6; }

/* =============================================================
   6. Sections
   ============================================================= */
.hero {
  position: relative; overflow: hidden; color: var(--cream);
  min-height: 100svh; display: flex; align-items: center;
  background: var(--bg-deep);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,20,8,.35) 0%, rgba(36,20,8,.55) 55%, rgba(36,20,8,.92) 100%); }
.hero-content { position: relative; z-index: 1; padding-block: 6rem 4rem; }
.hero-eyebrow { color: var(--accent-light); }
.hero-eyebrow::before { background: var(--accent-light); }
.hero-title { max-width: 16ch; margin-top: 1rem; }
.hero-lede { max-width: 46ch; margin-top: 1.1rem; color: rgba(245,237,225,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.8rem; margin-top: 3rem; }
.hero-stat strong { font-family: var(--serif); font-size: 1.7rem; display: block; }
.hero-stat span { font-size: .82rem; color: rgba(245,237,225,.68); }

.section-alt { background: var(--surface-warm); }
.section-dark { background: var(--bg-deep); color: var(--cream); }
.section-dark .section-head p { color: rgba(245,237,225,.75); }
.section-dark h2, .section-dark h3 { color: var(--cream); }

.offer-strip {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--accent); color: var(--cream); text-align: center;
  padding: .6rem 1rem; font-size: .88rem; font-weight: 700;
}
.offer-strip a { text-decoration: underline; }

.category-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; color: var(--cream); padding: clamp(2.4rem, 6vw, 4rem) var(--gutter); margin-bottom: 2rem; }
.category-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.category-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(36,20,8,.82), rgba(36,20,8,.35)); z-index: 1; }
.category-banner-content { position: relative; z-index: 2; max-width: 60ch; }

.legal-page { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* =============================================================
   7. Effects
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

.steam-decor { position: absolute; pointer-events: none; opacity: .5; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-slow { animation: floatSlow 6s var(--ease-soft) infinite; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .pros-contras { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
  .ficha-top { grid-template-columns: 1fr 1fr; align-items: start; }
  .ficha-galeria { position: sticky; top: 90px; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .radar-wrap { grid-template-columns: 380px 1fr; }
}
@media (max-width: 959px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-drawer.is-open {
    display: block; position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--bg); box-shadow: var(--shadow-lg); z-index: 600; padding: 1.4rem;
    overflow-y: auto;
  }
  .nav-drawer.is-open .nav-links { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: 2.4rem; }
  .nav-scrim.is-open { position: fixed; inset: 0; background: rgba(36,20,8,.4); z-index: 590; }
}
@media (min-width: 1280px) {
  .footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); }
}

/* =============================================================
   9. Reduced motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float-slow { animation: none; }
  .reveal { transition-duration: .01ms; }
}
