/* ============================================================
   AhorroRadar — styles.css v9
   Paleta: bg #F8FAFC · surface #FFF · brand #4F46E5 · cyan #06B6D4 · amber #F59E0B
   ============================================================ */

/* ── 1. Variables ── */
:root {
  --bg:        #F8FAFC;
  --surface:   #FFFFFF;
  --border:    #E2E8F0;
  --border-md: #CBD5E1;
  --text:      #0F172A;
  --text-2:    #475569;
  --text-3:    #94A3B8;
  --brand:     #4F46E5;
  --brand-d:   #3730A3;
  --brand-l:   #EEF2FF;
  --cyan:      #06B6D4;
  --cyan-l:    #ECFEFF;
  --amber:     #F59E0B;
  --amber-d:   #D97706;
  --amber-l:   #FFFBEB;
  --green:     #10B981;
  --green-l:   #ECFDF5;
  --red:       #EF4444;
  --red-l:     #FEF2F2;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow:    0 4px 16px rgba(15,23,42,.08), 0 1px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.06);
  --r:         12px;
  --r-lg:      20px;
  --trans:     180ms ease;
}

/* ── 2. Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── 3. Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(15,23,42,.06);
}
.hdr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.hdr-logo-mark { font-size: 1.4rem; line-height: 1; }
.hdr-logo-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -.02em;
}
.hdr-nav {
  display: flex;
  gap: 24px;
}
.hdr-nav a {
  font-size: .875rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--trans);
}
.hdr-nav a:hover { color: var(--brand); text-decoration: none; }
.hdr-admin { font-size: .78rem !important; opacity: .55; border: 1px solid currentColor; border-radius: 5px; padding: 3px 8px !important; }
.hdr-admin:hover { opacity: 1 !important; }
.hdr-spacer { flex: 1; }
.ia-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--green);
  font-weight: 600;
  background: var(--green-l);
  padding: 4px 10px;
  border-radius: 999px;
}
.ia-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

/* ── 4. Hero ── */
.hero {
  background: linear-gradient(135deg, var(--brand-l) 0%, var(--cyan-l) 100%);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
.hero-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.hero-em {
  background: linear-gradient(135deg, var(--brand) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-p {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hstat { display: flex; flex-direction: column; align-items: center; }
.hstat-n { font-size: 1.5rem; font-weight: 800; color: var(--brand); line-height: 1; }
.hstat-l { font-size: .75rem; color: var(--text-3); }
.hstat-sep { width: 1px; height: 32px; background: var(--border-md); }
.hero-visual { display: flex; justify-content: center; }
.hero-card-preview {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  width: 280px;
  transform: rotate(1.5deg);
  position: relative;
}
.hcp-ribbon {
  position: absolute;
  top: -10px; left: 16px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-d) 100%);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(245,158,11,.35);
}
.hcp-img { width: 100%; aspect-ratio: 1; border-radius: 10px; overflow: hidden; margin-bottom: 12px; background: var(--bg); }
.hcp-img img { width: 100%; height: 100%; object-fit: cover; }
.hcp-cat { font-size: .72rem; color: var(--brand); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.hcp-title { font-size: .875rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.score-bar-mini { height: 4px; background: var(--border); border-radius: 2px; flex: 1; overflow: hidden; }
.score-fill-mini { height: 100%; background: linear-gradient(90deg, var(--brand), var(--cyan)); border-radius: 2px; }
.hcp-score { display: flex; align-items: center; gap: 8px; font-size: .72rem; color: var(--text-3); margin-bottom: 8px; }
.hcp-price { font-size: 1.1rem; font-weight: 800; color: var(--amber-d); }

/* ── 5. Searchbar ── */
.searchbar-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 0;
}
.searchbar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.searchbar:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}
.searchbar-ico { width: 18px; height: 18px; color: var(--text-3); flex-shrink: 0; }
#search-input {
  flex: 1;
  border: none;
  outline: none;
  font: inherit;
  font-size: .95rem;
  background: transparent;
  color: var(--text);
}
#search-input::placeholder { color: var(--text-3); }

/* ── 6. Chips ── */
.cats-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 0;
}
.cats-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  font-size: .825rem;
  font-weight: 500;
  transition: all var(--trans);
  cursor: pointer;
}
.chip:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-l); }
.chip.active { border-color: var(--brand); background: var(--brand); color: #fff; }

/* ── 7. Sections ── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.section { margin-top: 40px; }
.section-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.section-h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}
.section-tag {
  font-size: .72rem;
  font-weight: 600;
  background: var(--brand-l);
  color: var(--brand);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ── 8. Grids ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.grid--2 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ── 9. Cards ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: fadeUp .3s ease both;
  animation-delay: calc(var(--i, 0) * 40ms);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card[data-hidden="true"] { display: none; }
.card-img {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg);
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--trans);
}
.card-img:hover img { transform: scale(1.04); }
.card-badges {
  position: absolute;
  top: 8px; left: 8px;
  display: flex; gap: 4px; flex-wrap: wrap;
}
.badge {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
}
.b--cat { background: rgba(255,255,255,.92); color: var(--brand); }
.b--ia  { background: rgba(255,255,255,.92); color: var(--cyan); }
.disc-sm {
  position: absolute;
  top: 8px; right: 8px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(245,158,11,.35);
}
.card-body { padding: 16px; }
.card-h3 { margin-bottom: 8px; }
.card-h3 a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-h3 a:hover { color: var(--brand); }
.card-h3--lg a { font-size: 1rem; -webkit-line-clamp: 3; }
.card-desc {
  font-size: .8rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-price { margin-bottom: 10px; }
.price-actual {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--amber-d);
}
.price-old {
  font-size: .85rem;
  color: var(--text-3);
  text-decoration: line-through;
  margin-left: 6px;
}
.price-disc {
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  margin-left: 6px;
}
.price-na { font-size: .85rem; color: var(--text-3); }
.score-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.score-track {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
  border-radius: 3px;
}
.score-lbl { font-size: .72rem; color: var(--text-3); white-space: nowrap; }
.card-cta { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── 10. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--trans);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--amazon {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-d) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(245,158,11,.35);
}
.btn--amazon:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,158,11,.45);
  text-decoration: none;
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn--outline:hover {
  background: var(--brand-l);
  text-decoration: none;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(79,70,229,.3);
}
.btn--primary:hover { background: var(--brand-d); text-decoration: none; color: #fff; }
.btn--danger {
  background: var(--red);
  color: #fff;
}
.btn--danger:hover { background: #DC2626; text-decoration: none; color: #fff; }
.btn--disabled { opacity: .5; pointer-events: none; }
.btn--block { width: 100%; }
.btn--sm { padding: 7px 14px; font-size: .8rem; }

/* ── 11. Tags ── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
}
.tag--cat { background: var(--brand-l); color: var(--brand); }
.tag--ia  { background: var(--cyan-l); color: var(--cyan); }
.tag--demo { background: var(--amber-l); color: var(--amber-d); }

/* ── 12. Spotlight ── */
.spotlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.spotlight-ribbon {
  position: absolute;
  top: 20px; left: -32px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(245,158,11,.4);
  z-index: 2;
}
.spotlight-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 360px;
}
.spotlight-img-col {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.spotlight-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--trans);
}
.spotlight-img-col:hover img { transform: scale(1.03); }
.disc-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.spotlight-info { padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.spotlight-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.spotlight-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -.02em;
}
.spotlight-title a { color: inherit; text-decoration: none; }
.spotlight-title a:hover { color: var(--brand); }
.spotlight-desc { font-size: .95rem; color: var(--text-2); line-height: 1.6; }
.spotlight-price {
  display: flex; align-items: baseline; gap: 10px;
}
.price-big { font-size: 1.8rem; font-weight: 800; color: var(--amber-d); }
.spotlight-score {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--r);
}
.score-meta { display: flex; flex-direction: column; }
.score-meta strong { font-size: .875rem; color: var(--text); }
.score-meta span { font-size: .8rem; color: var(--text-3); }
.spotlight-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.aff-note { font-size: .75rem; color: var(--text-3); }

/* ── 13. Score Donut ── */
.score-donut {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: conic-gradient(
    var(--brand) 0% calc(var(--pct) * 1%),
    var(--border) calc(var(--pct) * 1%) 100%
  );
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.score-donut::after {
  content: '';
  position: absolute;
  width: 38px; height: 38px;
  background: var(--surface);
  border-radius: 50%;
}
.score-donut span {
  position: relative;
  z-index: 1;
  font-size: .75rem;
  font-weight: 700;
  color: var(--brand);
}

/* ── 14. Promo block ── */
.promo-block {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-d) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.promo-left {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.promo-icon { font-size: 2.5rem; flex-shrink: 0; }
.promo-left h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.promo-left p { font-size: .9rem; opacity: .85; line-height: 1.6; }
.promo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.promo-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  background: rgba(255,255,255,.1);
  padding: 8px 12px;
  border-radius: 8px;
}
.promo-list li span { font-size: 1.1rem; }

/* ── 15. Placeholder ── */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--brand-l);
  border: 1.5px dashed var(--border-md);
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  aspect-ratio: 1;
  gap: 8px;
}
.ph svg { width: 64px; height: 64px; opacity: .7; }
.ph--lg { width: 100%; aspect-ratio: 4/3; }
.ph--xl { aspect-ratio: 1; border-radius: 12px; }
.ph-label { font-size: .8rem; font-weight: 600; color: var(--brand); text-align: center; }
.ph-sub   { font-size: .72rem; color: var(--text-3); text-align: center; }

/* ── 16. Empty state ── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-2);
}
.empty-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.empty-state h2 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.empty-state p { font-size: .95rem; }

/* ── 17. Footer ── */
.site-footer {
  background: var(--text);
  color: #94A3B8;
  margin-top: 64px;
}
.ftr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}
.ftr-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ftr-logo { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ftr-sub  { font-size: .85rem; opacity: .7; }
.ftr-nav  { display: flex; gap: 20px; flex-wrap: wrap; }
.ftr-nav a { color: #94A3B8; font-size: .875rem; text-decoration: none; }
.ftr-nav a:hover { color: #fff; text-decoration: none; }
.ftr-hr { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 20px; }
.ftr-aff { font-size: .8rem; line-height: 1.6; margin-bottom: 12px; opacity: .7; }
.ftr-copy { font-size: .8rem; opacity: .5; }
/* .ftr-admin eliminado — enlace Admin movido al header */

/* ── 18. PDP ── */
.pdp-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: .875rem;
}
.bc-back { color: var(--brand); text-decoration: none; }
.bc-back:hover { text-decoration: underline; }
.bc-sep { color: var(--text-3); }
.bc-cat { color: var(--text-2); }
.pdp-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.pdp-img-col {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.pdp-img-col img { width: 100%; height: 100%; object-fit: cover; }
.disc-pill {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.pdp-info { padding: 32px 32px 32px 0; display: flex; flex-direction: column; gap: 14px; }
.pdp-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pdp-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -.02em;
}
.pdp-desc { font-size: .95rem; color: var(--text-2); line-height: 1.7; }
.pdp-price-block { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.pdp-price-label { font-size: .78rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; }
.pdp-price-main { font-size: 2rem; font-weight: 800; color: var(--amber-d); }
.pdp-price-was { font-size: 1rem; color: var(--text-3); text-decoration: line-through; }
.price-disclaimer { font-size: .78rem; color: var(--text-3); line-height: 1.5; margin-top: 4px; margin-bottom: 12px; }
.price-note { font-size: .72rem; color: var(--text-3); line-height: 1.4; margin-top: 3px; margin-bottom: 0; }
.price-label-sm { font-size: .72rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .03em; }
.pdp-disc-badge { font-size: .9rem; font-weight: 700; color: var(--green); background: var(--green-l); padding: 2px 10px; border-radius: 999px; }
.pdp-score {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--r);
}
.pdp-score-meta { display: flex; flex-direction: column; }
.pdp-score-meta strong { font-size: .875rem; font-weight: 700; color: var(--text); }
.pdp-score-meta span { font-size: .8rem; color: var(--text-3); line-height: 1.4; }
.pdp-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.pdp-sh {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.analysis-body { font-size: .95rem; color: var(--text-2); line-height: 1.8; }
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-col h3, .cons-col h3 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pros-col h3 { color: var(--green); }
.cons-col h3 { color: var(--red); }
.pros-col ul, .cons-col ul { display: flex; flex-direction: column; gap: 6px; }
.pros-col li, .cons-col li { font-size: .9rem; color: var(--text-2); padding-left: 4px; line-height: 1.5; }
.reco-box {
  background: var(--brand-l);
  border: 1px solid #C7D2FE;
  border-radius: var(--r);
  padding: 16px;
  font-size: .95rem;
  color: var(--brand-d);
  line-height: 1.6;
}
.detect-date { font-size: .8rem; color: var(--text-3); text-align: center; margin-bottom: 20px; }
.pdp-footer-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  box-shadow: 0 -4px 20px rgba(15,23,42,.08);
  z-index: 90;
  display: none;
}
@media (max-width: 680px) {
  .sticky-cta { display: block; }
}

/* ── 19. Páginas legales ── */
.page-shell {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-size: .875rem;
  text-decoration: none;
  margin-bottom: 28px;
}
.back-link:hover { text-decoration: underline; }
.page-hero {
  text-align: center;
  margin-bottom: 40px;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-l);
  color: var(--brand);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.page-hero-h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 12px;
}
.page-hero-date { font-size: .8rem; color: var(--text-3); }
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.legal-section { margin-bottom: 32px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.legal-section p {
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-list li { font-size: .95rem; color: var(--text-2); line-height: 1.6; }
.info-box {
  background: var(--brand-l);
  border: 1px solid #C7D2FE;
  border-radius: var(--r);
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
}
.info-box--amber { background: var(--amber-l); border-color: #FDE68A; }
.info-box--green { background: var(--green-l); border-color: #A7F3D0; }
.info-box--icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.5; }
.info-box p { font-size: .9rem; color: var(--text-2); line-height: 1.6; margin: 0; }
.contact-card {
  background: linear-gradient(135deg, var(--brand-l), var(--cyan-l));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 24px;
}
.contact-card h2 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.contact-card p { color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.contact-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--trans);
  box-shadow: 0 2px 8px rgba(79,70,229,.3);
}
.contact-email-btn:hover {
  background: var(--brand-d);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}
.warn-box {
  background: var(--amber-l);
  border: 1px solid #FDE68A;
  border-radius: var(--r);
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: .9rem;
  color: #92400E;
  line-height: 1.6;
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: .875rem;
}
.cookie-table th, .cookie-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
}
.cookie-table th { background: var(--bg); font-weight: 600; color: var(--text); }
.cookie-table td { color: var(--text-2); }
.aff-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.aff-feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  text-align: center;
}
.aff-feature .aff-icon { font-size: 1.8rem; margin-bottom: 8px; }
.aff-feature strong { display: block; font-size: .875rem; color: var(--text); margin-bottom: 4px; }
.aff-feature p { font-size: .8rem; color: var(--text-3); margin: 0; }

/* ── 20. Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── 21. Responsive ── */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .promo-block { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .spotlight-layout { grid-template-columns: 1fr; }
  .spotlight-img-col { aspect-ratio: 16/9; }
  .spotlight-ribbon { display: none; }
}
@media (max-width: 680px) {
  .pdp-card { grid-template-columns: 1fr; }
  .pdp-img-col { aspect-ratio: 1; max-height: 300px; }
  .pdp-info { padding: 24px; }
  body { padding-bottom: 72px; }
}
@media (max-width: 640px) {
  .promo-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .legal-card { padding: 24px; }
  .hdr-nav { display: none; }
}
@media (max-width: 500px) {
  .pros-cons { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .hstat-sep { width: 32px; height: 1px; }
}
