/* ============================================================
   SECCIÓN POLÍTICA DE PRIVACIDAD
============================================================ */

.privacy-policy-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 180px 0 160px;
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(0, 179, 159, 0.15) 0%,
            rgba(0, 179, 159, 0.05) 40%,
            transparent 70%
        ),
        linear-gradient(
            180deg,
            #010103 0%,
            #021b18 45%,
            #010103 100%
        );
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.policy-logo {
    width: 100%;
    max-width: 240px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 15px rgba(0, 242, 209, 0.15));
}

.policy-header h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.policy-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00f2d1, #00b39f);
    margin: 0 auto;
    border-radius: 2px;
}

.policy-content-card {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 60px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 242, 209, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.policy-paragraph {
    margin-bottom: 30px;
}

.policy-paragraph:last-child {
    margin-bottom: 0;
}

.policy-paragraph p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.12rem;
    line-height: 1.8;
    text-align: justify;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 130px 0 100px;
    }

    .policy-header h1 {
        font-size: 2.2rem;
    }

    .policy-content-card {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .policy-paragraph p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }
}
