/* ============================================================
   Want2peak — Páginas de Políticas (estilo compartido)
   ============================================================ */

/* Header */
.pol-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.pol-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 20px;
}
.pol-header-inner .pol-logo img { height: 38px; width: auto; }
.pol-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy);
}
.pol-back svg { transition: transform .2s ease; }
.pol-back:hover svg { transform: translateX(-3px); }

/* Hero band */
.pol-hero {
  background: var(--navy); color: #fff;
  padding: 76px 0 110px; position: relative; overflow: hidden;
}
.pol-hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(229,17,75,0.32), transparent 65%);
  pointer-events: none;
}
.pol-hero .eyebrow { color: #fff; }
.pol-hero .eyebrow::before { background: var(--red); }
.pol-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 5.4vw, 62px); line-height: 1.0;
  letter-spacing: -0.03em; margin: 18px 0 0; max-width: 16ch;
}
.pol-meta {
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 26px;
}
.pol-meta div { display: flex; flex-direction: column; gap: 2px; }
.pol-meta .k {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.pol-meta .v { font-size: 14.5px; font-weight: 600; color: #fff; }

/* Body card */
.pol-wrap {
  margin-top: -64px; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 250px; gap: 28px; align-items: start;
  padding-bottom: 96px;
}
@media (max-width: 880px) { .pol-wrap { grid-template-columns: 1fr; } }

.pol-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  padding: 48px 52px;
}
@media (max-width: 560px) { .pol-card { padding: 32px 24px; } }

/* Prose */
.pol-prose { color: #2a3142; font-size: 16.5px; line-height: 1.72; max-width: 72ch; }
.pol-prose .lead {
  font-size: 18px; color: var(--ink); line-height: 1.65;
  padding-bottom: 26px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
}
.pol-prose h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 23px; letter-spacing: -0.01em; color: var(--navy);
  margin: 40px 0 12px; scroll-margin-top: 90px;
}
.pol-prose h2 .num { color: var(--red); margin-right: 10px; }
.pol-prose h3 { font-family: var(--font-display); font-size: 17px; color: var(--ink); margin: 22px 0 6px; }
.pol-prose p { margin: 0 0 14px; }
.pol-prose ul { list-style: none; padding: 0; margin: 0 0 18px; }
.pol-prose ul li {
  position: relative; padding-left: 26px; margin-bottom: 11px;
}
.pol-prose ul li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--red);
}
.pol-prose strong { color: var(--ink); font-weight: 700; }
.pol-prose .pol-defs dt { font-weight: 700; color: var(--navy); margin-top: 14px; }
.pol-prose .pol-defs dd { margin: 2px 0 0; }
.pol-prose a { color: var(--red); text-decoration: underline; }
.pol-note {
  margin-top: 36px; padding: 18px 22px; background: var(--cream);
  border-radius: 14px; font-size: 13.5px; color: var(--muted); line-height: 1.6;
}

/* Sidebar */
.pol-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 880px) { .pol-aside { position: static; } }
.pol-download {
  display: flex; align-items: center; gap: 13px;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 18px 20px; transition: transform .18s ease, box-shadow .18s ease;
}
.pol-download:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.pol-download .ic {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center; background: var(--red); color: #fff;
}
.pol-download .t { display: flex; flex-direction: column; gap: 1px; }
.pol-download .t b { font-family: var(--font-display); font-size: 15px; }
.pol-download .t span { font-size: 12px; color: rgba(255,255,255,0.7); }

.pol-links {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 8px;
}
.pol-links a {
  display: block; padding: 12px 14px; border-radius: 11px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  transition: background .15s ease;
}
.pol-links a:hover { background: var(--cream); }
.pol-links a.current { background: var(--cream); color: var(--red); }

/* Footer mini */
.pol-foot {
  background: var(--navy-deep); color: rgba(255,255,255,0.6);
  text-align: center; padding: 28px 0; font-size: 13px;
}
.pol-foot a { color: rgba(255,255,255,0.85); text-decoration: underline; }
