/* ═══════════════════════════════════════════════
   POLÍTICA DE PRIVACIDAD — LABRIEGO
═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0A0A0A;
  --surface:   #111116;
  --white:     #ffffff;
  --white-60:  rgba(255,255,255,.60);
  --white-35:  rgba(255,255,255,.35);
  --white-15:  rgba(255,255,255,.15);
  --white-07:  rgba(255,255,255,.07);
  --coral:     #E8593C;
  --font:      'Space Grotesk', sans-serif;
  --max-w:     760px;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
}

/* ── Header mínimo ── */
.pp-header {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--white-07);
}

.pp-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  opacity: .85;
  transition: opacity .25s;
}
.pp-logo:hover { opacity: 1; }

.pp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white-35);
  text-decoration: none;
  transition: color .25s;
}
.pp-back:hover { color: var(--white-60); }

/* ── Contenido principal ── */
.pp-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 32px 120px;
}

/* ── Eyebrow ── */
.pp-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

/* ── Título ── */
.pp-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}

/* ── Fecha de actualización ── */
.pp-updated {
  font-size: 12px;
  color: var(--white-35);
  letter-spacing: .5px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--white-07);
}

/* ── Secciones ── */
.pp-section {
  margin-bottom: 48px;
}

.pp-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.pp-section p {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 14px;
}
.pp-section p:last-child { margin-bottom: 0; }

.pp-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-section ul li {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.pp-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

.pp-section a {
  color: var(--white-60);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.pp-section a:hover { color: var(--white); }

/* ── Recuadro de aviso ── */
.pp-callout {
  background: var(--surface);
  border: 1px solid var(--white-07);
  border-left: 3px solid var(--coral);
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 14px;
}
.pp-callout p {
  margin-bottom: 0 !important;
  color: var(--white-60);
}

/* ── Divisor ── */
.pp-divider {
  border: none;
  border-top: 1px solid var(--white-07);
  margin: 56px 0;
}

/* ── Footer mínimo ── */
.pp-footer {
  text-align: center;
  padding: 32px 24px 48px;
  border-top: 1px solid var(--white-07);
}

.pp-footer p {
  font-size: 11px;
  color: var(--white-35);
  letter-spacing: .5px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

@media (max-width: 600px) {
  .pp-header {
    padding: 20px 20px;
  }

  .pp-main {
    padding: 48px 20px 80px;
  }
}
