/* ================================================
   politica-privacidad.css
   Estilos propios de la página Política de Privacidad
   ================================================ */

:root {
    --gold: #c89520;
    --gold-light: #e8a020;
    --dark: #1a1a1a;
    --dark2: #111111;
    --text: #444444;
    --bg: #f5f5f5;
    --white: #ffffff;
    --border: #e0e0e0;
}

/* PAGE TITLE — reutiliza .page-title del tema pero añade sub-label */
.page-title .sub-label {
    display: inline-block;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    padding: 4px 16px;
    border: 1px solid rgba(200, 149, 32, 0.4);
    border-radius: 2px;
}

/* LEGAL SECTION */
.legal-section {
    padding: 75px 0;
}

.sec-intro {
    text-align: center;
    margin-bottom: 50px;
}

.sec-intro .sub-title {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
    padding: 0 26px;
}

.sec-intro .sub-title::before,
.sec-intro .sub-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 18px;
    height: 1px;
    background: var(--gold);
}

.sec-intro .sub-title::before { left: 0; }
.sec-intro .sub-title::after  { right: 0; }

.sec-intro h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* DATOS BOX */
.datos-box {
    background: var(--dark);
    border-radius: 3px;
    padding: 30px 34px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.datos-box::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--gold);
}

.datos-box h3 {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.datos-box ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.datos-box ul li {
    color: #bbb;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.datos-box ul li::before {
    content: '▸';
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.datos-box ul li strong { color: #fff; font-weight: 600; }
.datos-box ul li a     { color: var(--gold-light); }
.datos-box ul li a:hover { text-decoration: underline; }

/* LEGAL BLOCKS */
.legal-block {
    margin-bottom: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 0 3px 3px 0;
    padding: 26px 30px;
    transition: box-shadow .2s;
}

.legal-block:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.legal-block h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-block h3 .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 2px;
    flex-shrink: 0;
}

.legal-block p {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 10px;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block a { color: var(--gold); }
.legal-block a:hover { text-decoration: underline; }

.legal-block ul.bullets {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-block ul.bullets li {
    font-size: 14.5px;
    color: var(--text);
    padding-left: 18px;
    position: relative;
    line-height: 1.75;
}

.legal-block ul.bullets li::before {
    content: '•';
    color: var(--gold);
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -1px;
}

.legal-block ol.numbered {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    counter-reset: item;
}

.legal-block ol.numbered li {
    font-size: 14.5px;
    color: var(--text);
    padding-left: 28px;
    position: relative;
    line-height: 1.8;
    counter-increment: item;
}

.legal-block ol.numbered li::before {
    content: counter(item) ".";
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    position: absolute;
    left: 0;
    top: 1px;
}

/* CTA SECTION */
.cta-section {
    background: var(--gold);
    padding: 55px 20px;
    text-align: center;
}

.cta-section h3 {
    color: #fff;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 26px;
}

.cta-section .btn-white {
    display: inline-block;
    background: #fff;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 13px 30px;
    border-radius: 2px;
    transition: all .2s;
    text-decoration: none;
}

.cta-section .btn-white:hover {
    background: var(--dark);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 580px) {
    .legal-block  { padding: 18px 16px; }
    .datos-box    { padding: 20px 16px; }
}