/* privacidad.css — página standalone de Política de Privacidad */

/* ── Alias de tokens para compatibilidad con el template de privacidad ── */
:root {
  --blue-bright:   var(--cyan);
  --accent:        var(--blue);
  --font-display:  "IBM Plex Sans", system-ui, sans-serif;
  --gray-300:      rgba(255,255,255,.78);
  --gray-400:      rgba(255,255,255,.55);
}

/* ── Base page ── */
.priv-page {
  background: var(--navy-1);
  color: var(--gray-300);
  min-height: 100vh;
}

/* ── Header ── */
.priv-header {
  background: var(--navy-1);
  border-bottom: 1px solid var(--line);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.priv-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.priv-brand-name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.priv-brand-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.priv-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.priv-back:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.priv-back svg {
  width: 15px;
  height: 15px;
}

/* ── Section inner helper ── */
.section-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Neutralizar padding global de <section> dentro del cuerpo ── */
.privacy-body section {
  padding: 0;
  position: static;
}

/* ── Typography in privacy body ── */
.privacy-body p,
.privacy-body li {
  line-height: 1.8;
  font-size: 0.97rem;
  color: var(--gray-300);
}

.privacy-body ul {
  padding-left: 1.25rem;
}

.privacy-body a {
  color: var(--cyan);
  text-underline-offset: 2px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .priv-header { padding: 16px 20px; }
  .priv-brand-tag { display: none; }
}
