/**
 * Legal Pages Styles
 * Estilos para páginas legales (Política de Privacidad, Términos, etc.)
 */

.legal-page-wrapper {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 130px 0 60px 0; /* 70px extra desde header */
}

.legal-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    background: linear-gradient(135deg, #107586, #46B5E5);
    color: white;
    padding: 40px 40px 30px;
    text-align: center;
}

.legal-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: 'Exo 2', sans-serif;
}

.legal-date {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}

.legal-body {
    padding: 40px;
    line-height: 1.7;
    color: #333;
}

.legal-section {
    margin-bottom: 40px;
}

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

.legal-section h2 {
    color: #107586;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #46B5E5;
    font-family: 'Exo 2', sans-serif;
}

.legal-section h3 {
    color: #107586;
    font-size: 18px;
    font-weight: 500;
    margin: 25px 0 15px 0;
    font-family: 'Exo 2', sans-serif;
}

.legal-section p {
    margin: 0 0 15px 0;
    font-size: 15px;
    text-align: justify;
}

.legal-section ul {
    margin: 0 0 20px 0;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 8px;
    font-size: 15px;
}

.legal-section li strong {
    color: #107586;
    font-weight: 600;
}

.legal-section a {
    color: #46B5E5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #107586;
    text-decoration: underline;
}

/* Estilos especiales para secciones destacadas */
.legal-section .highlight-box {
    background: #f0f8ff;
    border-left: 4px solid #46B5E5;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.legal-section .warning-box {
    background: #fff5f5;
    border-left: 4px solid #e53e3e;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.legal-section .info-box {
    background: #f0fff4;
    border-left: 4px solid #38a169;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-page-wrapper {
        padding: 100px 20px 30px 20px;
    }
    
    .legal-header {
        padding: 30px 20px 20px;
    }
    
    .legal-title {
        font-size: 24px;
    }
    
    .legal-body {
        padding: 30px 20px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .legal-page-wrapper {
        padding: 20px 10px;
    }
    
    .legal-header {
        padding: 20px 15px;
    }
    
    .legal-title {
        font-size: 20px;
    }
    
    .legal-body {
        padding: 20px 15px;
    }
    
    .legal-section {
        margin-bottom: 30px;
    }
    
    .legal-section ul {
        padding-left: 20px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 14px;
        text-align: left;
    }
}

/* Print Styles */
@media print {
    .legal-page-wrapper {
        background: white;
        padding: 0;
    }
    
    .legal-content {
        box-shadow: none;
        border-radius: 0;
    }
    
    .legal-header {
        background: none !important;
        color: #333 !important;
        border-bottom: 2px solid #333;
    }
    
    .legal-body {
        padding: 20px 0;
    }
    
    .legal-section a {
        color: #333 !important;
        text-decoration: underline !important;
    }
    
    .legal-section a:after {
        content: " (" attr(href) ")";
        font-size: 12px;
        color: #666;
    }
}