/* ============================================================
   MUJER ARTESANA — Política de Privacidad
   privacidad.css  ·  Complementa style.css
   ============================================================ */

/* ── Ajuste de body para esta página ── */
.pp-body {
  background: #f8f7ff;
}
.pp-body nav {
  padding: 14px 5%;
}

/* ── Hero ── */
.pp-hero {
  background: linear-gradient(135deg, #1e1040 0%, #2d1060 50%, #0d1a3a 100%);
  padding: 120px 5% 70px;
  position: relative; overflow: hidden;
}
.pp-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,85,154,.2) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.pp-hero-inner {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto; text-align: center;
}
.pp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,85,154,.2); border: 1px solid rgba(232,85,154,.4);
  color: #F5A8CE; font-size: .8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 50px; margin-bottom: 22px;
}
.pp-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.pp-hero-title em { color: #E8559A; font-style: italic; }
.pp-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  max-width: 600px; margin: 0 auto 20px; line-height: 1.7;
}
.pp-meta {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 16px;
  font-size: .82rem; color: rgba(255,255,255,.5);
}

/* ── Contenedor principal ── */
.pp-container {
  max-width: 1060px; margin: 0 auto;
  padding: 60px 5% 80px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Tabla de contenido ── */
.pp-toc {
  position: sticky; top: 90px;
  background: #fff;
  border: 1px solid rgba(124,58,237,.15);
  border-radius: 20px; padding: 24px 22px;
  box-shadow: 0 4px 20px rgba(124,58,237,.08);
}
.pp-toc-title {
  font-size: .8rem; font-weight: 700; color: #7C3AED;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px;
}
.pp-toc-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
  counter-reset: toc;
}
.pp-toc-list li { counter-increment: toc; }
.pp-toc-list a {
  display: flex; align-items: baseline; gap: 8px;
  font-size: .82rem; color: #4a3570; text-decoration: none;
  padding: 6px 10px; border-radius: 8px;
  transition: background .2s, color .2s;
  line-height: 1.4;
}
.pp-toc-list a::before {
  content: counter(toc) ".";
  font-weight: 700; color: #E8559A; font-size: .75rem; flex-shrink: 0;
}
.pp-toc-list a:hover { background: #fce4f1; color: #7C3AED; }

/* ── Secciones ── */
.pp-content { min-width: 0; }

.pp-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(124,58,237,.1);
}
.pp-section:last-child { border-bottom: none; margin-bottom: 0; }

.pp-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem; font-weight: 900; color: #1E1040;
  margin-bottom: 18px; display: flex; align-items: center; gap: 14px;
}
.pp-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #E8559A, #7C3AED);
  color: #fff; font-size: .9rem; font-weight: 900;
  font-family: 'Poppins', system-ui, sans-serif;
  flex-shrink: 0;
}
.pp-section p {
  font-size: .97rem; color: #3a2a60; line-height: 1.8; margin-bottom: 14px;
}
.pp-section a { color: #7C3AED; }
.pp-section a:hover { color: #E8559A; }

.pp-sub-title {
  font-size: 1.05rem; font-weight: 700; color: #1E1040; margin: 22px 0 10px;
}

/* ── Listas ── */
.pp-list {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 16px;
}
.pp-list li {
  font-size: .97rem; color: #3a2a60; line-height: 1.7;
  padding-left: 22px; position: relative;
}
.pp-list li::before {
  content: '✦';
  position: absolute; left: 0; color: #E8559A; font-size: .7rem; top: 5px;
}
.pp-list--ordered {
  counter-reset: ol-list;
}
.pp-list--ordered li {
  counter-increment: ol-list;
}
.pp-list--ordered li::before {
  content: counter(ol-list) ".";
  font-weight: 700; color: #7C3AED; font-size: .85rem; top: 2px;
}

/* ── Card / Tabla ── */
.pp-card {
  background: #fff; border: 1px solid rgba(124,58,237,.15);
  border-radius: 16px; overflow: hidden; margin-bottom: 18px;
}
.pp-table-wrap { overflow-x: auto; margin-bottom: 16px; border-radius: 16px; }
.pp-table {
  width: 100%; border-collapse: collapse; font-size: .9rem;
  background: #fff; border-radius: 16px; overflow: hidden;
}
.pp-table th, .pp-table td {
  padding: 13px 18px; text-align: left;
  border-bottom: 1px solid rgba(124,58,237,.1);
}
.pp-table th {
  background: #f3eaff; color: #5B21B6; font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .5px; white-space: nowrap;
}
.pp-table td { color: #3a2a60; line-height: 1.55; }
.pp-table tr:last-child td, .pp-table tr:last-child th { border-bottom: none; }
.pp-table--full { width: 100%; }

/* ── Notices ── */
.pp-notice {
  display: flex; gap: 14px; align-items: flex-start;
  border-radius: 14px; padding: 18px 20px; margin: 18px 0;
  font-size: .92rem; line-height: 1.65;
}
.pp-notice span:first-child { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pp-notice p, .pp-notice div { margin: 0; color: inherit; }
.pp-notice--info  { background: #dbeafe; color: #1e3a8a; border: 1px solid #93c5fd; }
.pp-notice--ok    { background: #dcfce7; color: #14532d; border: 1px solid #86efac; }
.pp-notice--warn  { background: #fef9c3; color: #713f12; border: 1px solid #fde047; }
.pp-notice a      { color: inherit; font-weight: 600; }

/* ── Grid de derechos ── */
.pp-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 20px 0;
}
.pp-right-card {
  background: #fff; border: 1px solid rgba(124,58,237,.15);
  border-radius: 16px; padding: 22px 18px; text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.pp-right-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(124,58,237,.12); }
.pp-right-icon { font-size: 1.8rem; margin-bottom: 10px; }
.pp-right-card h3 { font-size: .95rem; font-weight: 700; color: #1E1040; margin-bottom: 8px; }
.pp-right-card p  { font-size: .82rem; color: #4a3570; line-height: 1.55; }

/* ── Botones de canal ── */
.pp-channels {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 20px 0;
}
.pp-channel-btn {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 24px; border-radius: 16px; text-decoration: none;
  border: 1.5px solid rgba(124,58,237,.3);
  background: #fff; transition: all .25s; min-width: 200px;
}
.pp-channel-btn span:first-child { font-size: 1.5rem; }
.pp-channel-btn strong { font-size: .95rem; color: #1E1040; }
.pp-channel-btn span:last-child { font-size: .8rem; color: #7C3AED; }
.pp-channel-btn:hover { background: #f3eaff; border-color: #7C3AED; transform: translateY(-2px); }

.pp-channel-wa {
  border-color: rgba(37,211,102,.4); background: #f0fdf4;
}
.pp-channel-wa strong { color: #14532d; }
.pp-channel-wa span:last-child { color: #16a34a; }
.pp-channel-wa:hover { background: #dcfce7; border-color: #25D366; }

/* ── Footer mínimo ── */
.pp-footer {
  background: #0f0826; padding: 30px 5%;
}
.pp-footer-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.pp-footer-inner p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.pp-footer-inner a { color: rgba(255,255,255,.5); text-decoration: none; }
.pp-footer-inner a:hover { color: #F5A8CE; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .pp-container {
    grid-template-columns: 1fr;
  }
  .pp-toc {
    position: static;
    display: grid; grid-template-columns: auto 1fr;
    align-items: start; gap: 0 20px;
  }
  .pp-toc-title { grid-column: span 2; }
  .pp-toc-list  { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
  .pp-rights-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .pp-hero { padding: 100px 5% 50px; }
  .pp-toc-list { grid-template-columns: 1fr; }
  .pp-rights-grid { grid-template-columns: 1fr; }
  .pp-channels { flex-direction: column; }
  .pp-channel-btn { min-width: unset; }
  .pp-footer-inner { flex-direction: column; text-align: center; }
}
