/* ============================================
   privacy.css — estilos exclusivos de privacy.html
   Reutiliza variables de style.css (:root)
   ============================================ */

/* ===== HERO ===== */
.pr-hero {
    min-height: 55vh;
    padding: 160px 6% 70px;
    background: linear-gradient(135deg, #0A1118 0%, #142230 55%, #1c2e3d 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(197,164,126,.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(197,164,126,.12) 0%, transparent 50%);
    animation: prGlow 8s ease-in-out infinite alternate;
}
@keyframes prGlow { from { opacity:.6; } to { opacity:1; } }
.pr-hero-content { position: relative; z-index: 2; }

.pr-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 6px;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}
.pr-hero h1::after {
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background: #c5a47e;
    margin: 20px auto 0;
}
.pr-hero-sub {
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.7);
    max-width: 440px;
    margin: 18px auto 0;
}

/* ===== TOC ===== */
.pr-toc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 980px;
    margin: -30px auto 0;
    position: relative;
    z-index: 5;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(10,17,24,.12);
    padding: 18px 24px;
}
.pr-toc a {
    text-decoration: none;
    color: #0A1118;
    font-size: 10.5px;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
    border: 1px solid transparent;
}
.pr-toc a span { font-weight: 400; opacity: .8; }
.pr-toc a:hover,
.pr-toc a.active {
    background: #0A1118;
    color: #c5a47e;
    border-color: #0A1118;
}

/* ===== BODY ===== */
.pr-body { background: #F5F5F0; padding: 80px 6% 120px; }
.pr-container { max-width: 820px; margin: 0 auto; }

.pr-intro {
    font-size: 17px;
    line-height: 1.85;
    color: #333;
    text-align: center;
    padding-bottom: 44px;
    margin-bottom: 44px;
    border-bottom: 1px solid rgba(10,17,24,.1);
}

/* ===== BLOQUES ===== */
.pr-block {
    position: relative;
    padding: 0 0 55px 65px;
    border-left: 2px solid rgba(197,164,126,.25);
}
.pr-block:last-of-type { border-left-color: transparent; }

.pr-num {
    position: absolute;
    left: -26px; top: 0;
    width: 50px; height: 50px;
    background: #0A1118;
    color: #c5a47e;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px; font-weight: 700;
    box-shadow: 0 8px 20px rgba(10,17,24,.25);
}

.pr-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    margin-bottom: 16px;
    color: #0A1118;
}
.pr-block p { font-size: 14.5px; line-height: 1.85; color: #444; margin-bottom: 14px; }
.pr-block p strong { color: #0A1118; }

.pr-highlight {
    display: inline-block;
    background: #fff;
    border-left: 3px solid #c5a47e;
    padding: 13px 20px;
    font-size: 12.5px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #0A1118;
    margin: 4px 0 8px;
    box-shadow: 0 8px 20px rgba(10,17,24,.04);
}

.pr-list { list-style: none; margin: 0 0 14px; padding: 0; }
.pr-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14.5px;
    line-height: 1.7;
    color: #444;
}
.pr-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 7px; height: 7px;
    background: #c5a47e;
    border-radius: 2px;
    transform: rotate(45deg);
}
.pr-list li span { color: #777; }

.pr-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 20px; }
.pr-tags span {
    background: #fff;
    border: 1px solid rgba(197,164,126,.4);
    color: #0A1118;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 9px 18px;
    border-radius: 30px;
    transition: .3s;
}
.pr-tags span:hover { background: #0A1118; color: #c5a47e; transform: translateY(-3px); }

.pr-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 32px;
    margin: 22px 0;
    box-shadow: 0 15px 40px rgba(10,17,24,.06);
}

.pr-email {
    display: inline-block;
    color: #c5a47e;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    margin-bottom: 20px;
    transition: .3s;
}
.pr-email:hover { color: #0A1118; }

.pr-note {
    background: rgba(197,164,126,.08);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 13px !important;
}

/* ===== FIRMA ===== */
.pr-signature { text-align: center; padding-top: 28px; margin-top: 28px; }
.pr-sig-line { color: #bbb; margin-bottom: 16px; letter-spacing: 1px; }
.pr-signature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #0A1118;
}
.pr-signature p { font-size: 12px; color: #888; margin-bottom: 8px; }

.pr-back {
    display: inline-block;
    margin-top: 24px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #0A1118;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
    transition: .3s;
}
.pr-back:hover { color: #c5a47e; }

/* ===== Botón subir ===== */
.pr-top {
    position: fixed;
    bottom: 40px; left: 40px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #0A1118;
    color: #c5a47e;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 20px;
    z-index: 998;
    opacity: 0; visibility: hidden;
    transform: translateY(15px);
    transition: .4s;
    box-shadow: 0 10px 25px rgba(10,17,24,.3);
}
.pr-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.pr-top:hover { background: #c5a47e; color: #0A1118; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .pr-toc { margin-top: -22px; gap: 6px; padding: 14px 16px; }
    .pr-toc a { font-size: 10px; padding: 7px 11px; }
}
@media (max-width: 768px) {
    .pr-hero { padding: 130px 6% 55px; }
    .pr-body { padding: 60px 6% 90px; }
    .pr-block { padding-left: 46px; }
    .pr-num { width: 40px; height: 40px; font-size: 12px; left: -21px; }
    .pr-block h3 { font-size: 1.2rem; }
    .pr-card { padding: 22px 18px; }
    .pr-top { left: 20px; bottom: 90px; }
}
@media (max-width: 480px) {
    .pr-toc { flex-direction: column; align-items: stretch; }
    .pr-toc a { justify-content: center; }
}
