/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    font-size: 16px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.site-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.site-subtitle {
    font-size: 1em;
    color: #6c757d;
    font-weight: normal;
}

/* Disclaimer */
.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.disclaimer-text {
    font-size: 1em;
    color: #856404;
    font-weight: 500;
}

/* Contenido principal */
.main-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.section-title {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

/* Enlaces de Información Legal */
.legal-documents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.legal-document {
    display: block;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

.legal-document:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.document-title {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
}

.document-description {
    font-size: 0.9em;
    color: #6c757d;
    line-height: 1.4;
}

/* Información de contacto */
.contact-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #dee2e6;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.contact-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9em;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    color: #6c757d;
    font-size: 0.9em;
    border-top: 1px solid #dee2e6;
    background: white;
    border-radius: 8px;
}

/* Estilos para páginas de documentos */
.document-page {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.document-header {
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.document-title {
    font-size: 2em;
    color: #495057;
    margin-bottom: 10px;
}

.document-date {
    color: #6c757d;
    font-style: italic;
}

.document-content h2 {
    font-size: 1.4em;
    color: #495057;
    margin: 30px 0 15px 0;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
}

.document-content h3 {
    font-size: 1.2em;
    color: #495057;
    margin: 25px 0 12px 0;
}

.document-content h4 {
    font-size: 1.1em;
    color: #495057;
    margin: 20px 0 10px 0;
}

.document-content p {
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.6;
}

.document-content ul, 
.document-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.document-content li {
    margin-bottom: 8px;
    color: #495057;
}

.document-content strong {
    color: #495057;
    font-weight: 600;
}

.document-content em {
    color: #6c757d;
    font-style: italic;
}

.back-link {
    display: inline-block;
    background: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: background-color 0.2s ease;
}

.back-link:hover {
    background: #0056b3;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
}

.warning-box p {
    margin: 0;
    color: #856404;
}

.url-box {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.url-box p {
    color: #0c5aa6;
    margin-bottom: 10px;
}

.url-box a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

.url-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header, .main-content, .document-page {
        padding: 20px;
    }
    
    .site-title {
        font-size: 1.5em;
    }
    
    .section-title {
        font-size: 1.3em;
    }
    
    .document-title {
        font-size: 1.6em;
    }
    
    .legal-documents {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
} 