/* ================================
   PRIVACY PAGE (igual estilo screenshot)
   ================================ */

:root {
    --azul-marino: #0a1628;
    --azul-marino-profundo: #070A14;
    --azul-marino-oscuro: #050810;
    --azul-marino-claro: #1F2233;

    --azul-turquesa: #00d4ff;
    --celeste: #4a9eff;

    --naranja-1: #ff8a00;
    --naranja-2: #ff6a00;
    --orange-text-1: #ffb200;
    --orange-text-2: #ff6a00;

    --morado: #8b5cf6;
    --blanco: #ffffff;

    --font-main: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-heading: "Poppins", var(--font-main);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: var(--font-main);
    color: rgba(255, 255, 255, .92);
    background:
        radial-gradient(circle at 15% 15%, rgba(74, 158, 255, .10), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(139, 92, 246, .12), transparent 45%),
        radial-gradient(circle at center,
            var(--azul-marino-claro) 0%,
            var(--azul-marino-profundo) 55%,
            var(--azul-marino-oscuro) 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit
}

/* ================================
   Fondo estrellas
   ================================ */
.bg-stars {
    position: fixed;
    inset: -140px;
    pointer-events: none;
    opacity: .55;
    z-index: 0;

    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    top: 0;
    left: 0;

    box-shadow:
        6vw 14vh rgba(255, 255, 255, .60),
        14vw 30vh rgba(255, 255, 255, .35),
        22vw 10vh rgba(255, 255, 255, .55),
        28vw 46vh rgba(255, 255, 255, .28),
        36vw 22vh rgba(255, 255, 255, .45),
        44vw 34vh rgba(255, 255, 255, .35),
        58vw 18vh rgba(255, 255, 255, .45),
        66vw 42vh rgba(255, 255, 255, .30),
        78vw 26vh rgba(255, 255, 255, .40),
        90vw 36vh rgba(255, 255, 255, .28),
        12vw 72vh rgba(255, 255, 255, .35),
        34vw 82vh rgba(255, 255, 255, .28),
        70vw 76vh rgba(255, 255, 255, .30),
        92vw 86vh rgba(255, 255, 255, .25);

    animation: starsMoveSmall 80s linear infinite;
}

@keyframes starsMoveSmall {
    from {
        transform: translateX(0) translateY(0);
    }

    to {
        transform: translateX(-220px) translateY(80px);
    }
}

/* ================================
   Header
   ================================ */
.privacy-hero {
    position: relative;
    z-index: 1;
    padding: 4.2rem 1.25rem 2.6rem;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

/* TOP: volver + candado alineados */
.hero-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    margin-bottom: 1.2rem;
}

/* Link volver */
.back-link {
    position: static;
    font-size: .92rem;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.back-link:hover {
    color: var(--orange-text-1);
}

.back-arrow {
    color: var(--orange-text-1);
    font-size: 1.1rem;
}

/* Si usas emoji en vez de imagen */
.lock-emoji {
    font-size: 2.8rem;
    line-height: 1;
    margin-left: .15rem;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .35));
}

/* Ya no usamos el cuadrito anterior */
.hero-icon {
    display: none;
}

/* Título */
.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    line-height: 1.1;
    margin-bottom: .6rem;
    margin-top: .4rem;
}

.accent {
    background-image: linear-gradient(180deg, var(--orange-text-1) 0%, var(--orange-text-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle {
    color: rgba(255, 255, 255, .70);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem .95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 178, 0, .95);
    box-shadow: 0 0 0 4px rgba(255, 178, 0, .12);
}

/* ================================
   Contenedor
   ================================ */
.privacy-wrap {
    position: relative;
    z-index: 1;
    padding: 1.2rem 1.25rem 5rem;
    max-width: 980px;
    margin: 0 auto;
}

/* Card principal */
.card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    padding: 1.4rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

/* ================================
   Bloques
   ================================ */
.block {
    padding: 1.15rem 1.1rem;
    border-radius: 18px;
}

.block+.block {
    margin-top: .5rem;
}

.block-title {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .75rem;
}

.block h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0;
}

.num {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .95rem;
    color: #fff;
}

.num-orange {
    background: linear-gradient(180deg, #ff9b2f 0%, #ff6a00 100%);
}

.num-blue {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}

.num-purple {
    background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
}

.num-green {
    background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
}

.num-pink {
    background: linear-gradient(180deg, #fb7185 0%, #ec4899 100%);
}

.muted {
    color: rgba(255, 255, 255, .70);
    line-height: 1.8;
    font-size: .98rem;
}

/* ================================
   Lista info con bordes color
   ================================ */
.info-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.info-row {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    padding: .9rem 1rem;
}

.left-orange {
    border-left: 4px solid rgba(255, 178, 0, .95);
}

.left-blue {
    border-left: 4px solid rgba(59, 130, 246, .95);
}

.left-purple {
    border-left: 4px solid rgba(139, 92, 246, .95);
}

.left-green {
    border-left: 4px solid rgba(16, 185, 129, .95);
}

.info-head {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .35rem;
}

.info-head h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
}

.mini-ic {
    opacity: .95
}

.info-row p {
    color: rgba(255, 255, 255, .68);
    font-size: .92rem;
    line-height: 1.6;
}

/* ================================
   Grid 2 columnas
   ================================ */
.grid-2 {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.mini-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    padding: 1rem;
}

.mini-card-top {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .45rem;
}

.mini-badge {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
}

.mini-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
}

.mini-card p {
    color: rgba(255, 255, 255, .68);
    font-size: .92rem;
    line-height: 1.6;
}

/* ================================
   Seguridad
   ================================ */
.security-box {
    margin-top: .9rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    padding: 1rem 1rem;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.checklist li {
    position: relative;
    padding-left: 1.55rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
    font-size: .92rem;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .05rem;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, .20);
    border: 1px solid rgba(16, 185, 129, .35);
    color: rgba(80, 255, 200, .95);
    font-weight: 900;
    font-size: 12px;
}

/* ================================
   Nota cookies
   ================================ */
.note {
    margin-top: .9rem;
    background: rgba(236, 72, 153, .10);
    border: 1px solid rgba(236, 72, 153, .22);
    border-radius: 14px;
    padding: .85rem 1rem;
    color: rgba(255, 255, 255, .75);
    font-size: .92rem;
    line-height: 1.6;
}

/* ================================
   CTA final (degradado como referencia + botones)
   ================================ */
.cta {
    margin-top: 1.1rem;
    border-radius: 18px;
    padding: 1.35rem 1.2rem;
    text-align: center;

    background:
        linear-gradient(135deg, rgba(255, 138, 0, .18) 0%, rgba(139, 92, 246, .14) 55%, rgba(74, 158, 255, .10) 100%);
    border: 1px solid rgba(255, 138, 0, .35);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 20%, rgba(255, 138, 0, .14), transparent 55%);
    pointer-events: none;
}

.cta-mail {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin: 0 auto .75rem;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35));
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    margin-bottom: .45rem;
    position: relative;
    z-index: 1;
}

.cta p {
    color: rgba(255, 255, 255, .72);
    font-size: .95rem;
    line-height: 1.7;
    max-width: 68ch;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-btn {
    text-decoration: none;
    font-weight: 800;
    font-size: .92rem;
    padding: .85rem 1.2rem;
    border-radius: 999px;

    background: linear-gradient(180deg, var(--naranja-1) 0%, var(--naranja-2) 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 106, 0, .22);
    border: 1px solid rgba(255, 255, 255, .08);

    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 18px 40px rgba(255, 106, 0, .28);
}

.cta-btn-ghost {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: none;
}

.cta-btn-ghost:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 860px) {
    .privacy-hero {
        padding-top: 5rem;
        /* deja espacio al top */
    }

    .hero-top {
        position: static;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .lock-emoji {
        font-size: 2.3rem;
    }
}

@media (max-width: 720px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1rem;
    }

    .block {
        padding: 1rem;
    }
}