/* =====================================================================
   PAGE MODULE — en-privacy
   Extracted verbatim from inline <style> of: privacidad.html, en/privacy.html
   Design unchanged; loaded via `pageCss` front-matter.
   ===================================================================== */

/* ===========================
   PRIVACY POLICY PAGE STYLES
   =========================== */

/* Hero Section */
.legal-hero {
    background: linear-gradient(135deg, 
        var(--primary-navy) 0%, 
        var(--primary-magenta) 50%, 
        var(--secondary-purple) 100%);
    color: var(--white);
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.legal-hero .container {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: 'Mirza', Georgia, serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.legal-hero .last-updated {
    font-size: 1rem;
    opacity: 0.9;
    font-family: 'Quattrocento Sans', sans-serif;
    margin-bottom: 1rem;
}

.legal-hero .intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-top: 2rem;
}

/* Content Section */
.legal-content {
    background: var(--white);
    padding: 6rem 2rem;
}

.legal-content .container {
    max-width: 850px;
}

/* Typography for Legal Content */
.legal-content h2 {
    font-family: 'Mirza', Georgia, serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary-navy);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--secondary-teal);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Mirza', Georgia, serif;
    font-weight: 500;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    color: var(--primary-magenta);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.legal-content strong {
    font-weight: 700;
    color: var(--primary-navy);
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0 2rem 2rem;
    line-height: 1.85;
}

.legal-content li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-content li strong {
    color: var(--primary-magenta);
}

/* Highlight Boxes */
.info-box {
    background: linear-gradient(135deg, #f0f9fa 0%, #e8f4f8 100%);
    border-left: 4px solid var(--secondary-teal);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.info-box h4 {
    font-family: 'Quattrocento Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--secondary-dark-teal);
    margin-bottom: 1rem;
}

.info-box p {
    margin-bottom: 0.75rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.warning-box {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-left: 4px solid var(--secondary-orange);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.warning-box h4 {
    font-family: 'Quattrocento Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #c77700;
    margin-bottom: 1rem;
}

/* Table Styling */
.data-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.data-table thead {
    background: var(--primary-navy);
    color: var(--white);
}

.data-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
}

.data-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background: #f8f9fa;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--secondary-teal) 0%, var(--secondary-dark-teal) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.contact-cta h2 {
    font-family: 'Mirza', Georgia, serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    border: none;
    padding: 0;
}

.contact-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn-primary {
    padding: 1.2rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Quattrocento Sans', sans-serif;
    background: var(--white);
    color: var(--secondary-dark-teal);
    border: 2px solid var(--white);
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-hero {
        padding: 6rem 1.5rem 4rem;
    }

    .legal-content {
        padding: 4rem 1.5rem;
    }

    .legal-content ul,
    .legal-content ol {
        margin-left: 1.25rem;
    }

    .info-box,
    .warning-box {
        padding: 1.5rem;
    }

    .data-table {
        font-size: 0.9rem;
    }

    .data-table th,
    .data-table td {
        padding: 1rem;
    }

    .contact-cta {
        padding: 4rem 1.5rem;
    }
}

/* Print Styles */
@media print {
    .legal-hero {
        background: white;
        color: black;
        padding: 2rem 0;
    }

    .legal-hero h1 {
        color: black;
    }

    .contact-cta {
        display: none;
    }
}
