/* 
 * CONTENT PAGE STYLE (Docs / Editorial)
 * Used for: Ajuda, Termos de Uso, Política de Privacidade
 * Features: Minimalist, Focus on typography, High readability, Compact
 */

/* Main Wrapper - Now acting as a document card */
.proaqui-content {
    background-color: #fff;
    padding: 50px 60px; /* Spacious internal padding */
    min-height: 60vh;
    max-width: 960px; /* Constrain width for readability */
    margin: 0 auto; /* Center in container */
    
    /* Modern Fine Lines (Borders) */
    border: 1px solid #e2e8f0; /* Slate 200 - Very subtle */
    border-radius: 8px; /* Modern radius */
    
    /* Optional: very subtle lift */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

/* Ensure text is readable and not too wide inside the card */
.proaqui-content .container {
    background: transparent;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    border: none;
    box-shadow: none;
}

/* Global Reset */
.proaqui-content * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    box-sizing: border-box;
}

/* Typography Hierarchy */
.proaqui-content h1 {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #111827 !important; /* Gray 900 */
    letter-spacing: -0.025em !important;
    line-height: 1.2 !important;
    margin-bottom: 1em !important;
    border-bottom: 1px solid #f1f5f9 !important; /* Lighter separator */
    padding-bottom: 0.6em !important;
}

.proaqui-content h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important; /* Gray 800 */
    margin-top: 1.8em !important;
    margin-bottom: 0.8em !important;
    letter-spacing: -0.015em !important;
    position: relative;
    padding-left: 0 !important;
}

/* Remove the blue bar from h2 */
.proaqui-content h2::before {
    display: none !important;
}

.proaqui-content h3 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #374151 !important; /* Gray 700 */
    margin-top: 1.5em !important;
    margin-bottom: 0.6em !important;
}

/* Body Text */
.proaqui-content p {
    font-size: 1.05rem !important;
    line-height: 1.7 !important; /* Improved line height */
    color: #4b5563 !important; /* Gray 600 - slightly softer */
    margin-bottom: 1.2em !important;
    font-weight: 400 !important;
}

/* Lists */
.proaqui-content ul, 
.proaqui-content ol {
    margin-bottom: 1.5em !important;
    padding-left: 1.5em !important;
    color: #4b5563 !important;
}

.proaqui-content li {
    margin-bottom: 0.5em !important;
    line-height: 1.6 !important;
    font-size: 1.05rem !important;
    padding-left: 0.2em !important;
}

.proaqui-content li::marker {
    color: #9ca3af !important; /* Gray 400 */
}

/* Links */
.proaqui-content a {
    color: #2563eb !important; /* Blue 600 */
    text-decoration: none !important;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3) !important;
    transition: all 0.2s ease;
    font-weight: 500 !important;
}

.proaqui-content a:hover {
    background-color: rgba(37, 99, 235, 0.05) !important;
    border-bottom-color: #2563eb !important;
}

/* Tables */
.proaqui-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 2em 0 !important;
    font-size: 0.95rem !important;
    border: 1px solid #e2e8f0 !important; /* Border for table too */
    border-radius: 6px !important;
    overflow: hidden !important;
}

.proaqui-content th {
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 12px 16px !important;
    text-align: left !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    background: #f8fafc !important;
}

.proaqui-content td {
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 12px 16px !important;
    color: #475569 !important;
}

/* Blockquotes */
.proaqui-content blockquote {
    border-left: 4px solid #cbd5e1 !important; /* Slate 300 */
    padding-left: 1.2em !important;
    margin: 1.5em 0 !important;
    font-style: italic !important;
    color: #475569 !important;
    background: #f8fafc !important; /* Very light slate bg */
    padding: 16px 20px !important;
    border-radius: 4px !important;
}

/* Horizontal Rules */
.proaqui-content hr {
    border: 0 !important;
    border-top: 1px solid #e2e8f0 !important; /* Match container border */
    margin: 2em 0 !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .proaqui-content {
        padding: 30px 20px;
        border: none; /* Remove border on mobile to maximize space */
        box-shadow: none;
    }
    
    .proaqui-content .container {
        padding: 0;
    }

    .proaqui-content h1 {
        font-size: 1.8rem !important;
    }
    
    .proaqui-content p {
        font-size: 1rem !important;
    }
}
