/* ==========================================================================
   Privacy Policy Page Stylesheet (politica-privacidad.css)
   ========================================================================== */

/* Hero Section */
.privacy-hero {
    position: relative;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 120px;
    background-color: #060913;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.privacy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(0, 76, 255, 0.15) 0%, rgba(6, 9, 19, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.privacy-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 76, 255, 0.2) 0%, rgba(0, 76, 255, 0.02) 60%, rgba(0, 76, 255, 0) 80%);
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

.privacy-hero-container {
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.privacy-hero-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 3.25rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.privacy-hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Wave Bottom */
.privacy-wave-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 3;
    pointer-events: none;
}

.privacy-wave-bottom svg {
    width: 100%;
    height: 100%;
}

/* Content Area */
.privacy-content-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
}

.privacy-container {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.privacy-text-block {
    color: #374151; /* Gray-700 for maximum readability */
    font-size: 1.05rem;
    line-height: 1.75;
}

.privacy-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 40px;
}

.privacy-text-block h2 {
    font-family: 'VinilaTest', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #060913;
    margin-top: 45px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.privacy-text-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.privacy-text-block p {
    margin-bottom: 20px;
}

.privacy-text-block ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.privacy-text-block li {
    margin-bottom: 10px;
    list-style-type: disc;
    padding-left: 5px;
}

.privacy-text-block a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.privacy-text-block a:hover {
    color: #0324a6;
}

.privacy-contact-email {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Footer Bottom Updates */
.footer-privacy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-privacy-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsiveness */
@media (max-width: 768px) {
    .privacy-hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-content-section {
        padding: 50px 0 70px;
    }
    
    .privacy-text-block h2 {
        font-size: 1.4rem;
        margin-top: 35px;
    }
    
    .privacy-intro {
        font-size: 1.05rem;
    }
}
