/* ═══════════════════════════════════════════════════════════════════════
   LABORATORIOS TENDENCIA — PÁGINAS LEGALES
   Privacidad y Términos. Reutiliza la identidad visual del sitio.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    --negro: #0a0a0f;
    --panel: #15151d;
    --panel-borde: #232330;
    --amarillo: #e2ff2e;
    --purpura: #a855f7;
    --cian: #22d3ee;
    --blanco: #f5f5f7;
    --gris: #9a9aa8;

    --font-display: 'Anton', 'Impact', sans-serif;
    --font-texto: 'Inter', -apple-system, sans-serif;
    --transicion: all 0.25s ease;
}

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

body {
    font-family: var(--font-texto);
    background-color: var(--negro);
    color: var(--blanco);
    line-height: 1.7;
}

a {
    color: var(--cian);
    text-decoration: none;
    transition: var(--transicion);
}

a:hover {
    color: var(--amarillo);
}

.legal-page {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}

.glow-purple {
    width: 380px;
    height: 380px;
    background: var(--purpura);
    top: -6%;
    right: 4%;
}

.glow-yellow {
    width: 320px;
    height: 320px;
    background: var(--amarillo);
    top: -4%;
    left: 2%;
}

/* ═════════════════════════════════════════════════════════
   CABECERA
   ═════════════════════════════════════════════════════════ */

.legal-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 820px;
    margin: 0 auto;
    padding: 1.6rem 1.5rem;
}

.legal-logo img {
    height: 52px;
    width: auto;
}

.legal-volver {
    font-size: 0.85rem;
    font-weight: 700;
}

/* ═════════════════════════════════════════════════════════
   CONTENIDO
   ═════════════════════════════════════════════════════════ */

.legal-contenido {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 1rem 1.5rem 4rem;
}

.legal-eyebrow {
    color: var(--amarillo);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.legal-titulo {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.legal-titulo .highlight {
    background: linear-gradient(90deg, var(--amarillo), var(--purpura));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.legal-fecha {
    color: var(--gris);
    font-size: 0.82rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--panel-borde);
    margin-bottom: 2.2rem;
}

.legal-contenido section {
    margin-bottom: 2.4rem;
}

.legal-contenido h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--amarillo);
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
}

.legal-contenido p {
    color: #d4d4dc;
    font-size: 0.94rem;
    margin-bottom: 0.9rem;
}

.legal-contenido p:last-child {
    margin-bottom: 0;
}

.legal-contenido ul {
    list-style: none;
    margin-bottom: 0.9rem;
}

.legal-contenido li {
    position: relative;
    color: #d4d4dc;
    font-size: 0.94rem;
    padding-left: 1.3rem;
    margin-bottom: 0.6rem;
}

.legal-contenido li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purpura);
}

.legal-contenido strong {
    color: var(--blanco);
}

/* Aviso destacado (ej. el estado del sistema de pagos) */
.legal-destacado {
    background: rgba(226, 255, 46, 0.06);
    border: 1px solid rgba(226, 255, 46, 0.3);
    border-radius: 12px;
    padding: 1.4rem 1.5rem;
}

.legal-destacado h2 {
    margin-top: 0;
}

/* ═════════════════════════════════════════════════════════
   CONTACTO
   ═════════════════════════════════════════════════════════ */

.legal-contacto {
    background: var(--panel);
    border: 1px solid var(--panel-borde);
    border-radius: 12px;
    padding: 1.5rem;
}

.legal-contacto-lista li::before {
    display: none;
}

.legal-contacto-lista li {
    padding-left: 0;
}

/* ═════════════════════════════════════════════════════════
   PIE
   ═════════════════════════════════════════════════════════ */

.legal-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    max-width: 820px;
    margin: 0 auto;
    padding: 1.6rem 1.5rem 3rem;
    border-top: 1px solid var(--panel-borde);
    font-size: 0.85rem;
}

.legal-footer span {
    color: var(--gris);
}

@media (max-width: 480px) {
    .legal-header {
        padding: 1.2rem 1.2rem;
    }

    .legal-logo img {
        height: 42px;
    }

    .legal-contenido {
        padding: 0.5rem 1.2rem 3rem;
    }
}