/* ==========================================================================
Fonte Da Vida - Legal Pages Styles
Description: Shared styles for Privacy Policy and Terms of Service.
========================================================================== */
/* Page Header Adjustments */

.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle at center, var(--accent-soft) 0%, transparent 55%);
    pointer-events: none;
}

.light-mode .page-header::before {
    background: radial-gradient(circle at center, rgba(0, 85, 255, 0.05) 0%, transparent 55%);
}



.page-header > * {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px;
    font-size: 13px; 
    color: var(--text-muted); 
    margin-bottom: 24px;
    font-family: 'JetBrains Mono', monospace; 
    position: relative; 
    z-index: 1;
}

.breadcrumb a { 
    color: var(--text-muted); 
    transition: color 0.3s; 
}

.breadcrumb a:hover { 
    color: var(--text-primary); 
}

.breadcrumb .bc-sep { 
    opacity: 0.4; 
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
}
/* Legal Layout Grid */
.legal-section {
padding: 40px 0 120px;
border-top: 1px solid var(--border-subtle);
}
.legal-grid {
display: grid;
grid-template-columns: 260px 1fr;
gap: 60px;
align-items: start;
}
/* Sidebar Table of Contents */
.legal-sidebar {
position: sticky;
top: 120px;
}
.toc-wrapper {
background: var(--surface-1);
border: 1px solid var(--border-subtle);
border-radius: var(--radius-sm);
padding: 24px;
}
.toc-title {
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--text-primary);
font-weight: 700;
margin-bottom: 16px;
padding-bottom: 12px;
border-bottom: 1px dashed var(--border-subtle);
}
.toc-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}
.toc-list a {
font-size: 13.5px;
color: var(--text-secondary);
font-weight: 500;
transition: all 0.2s ease;
display: block;
line-height: 1.4;
}
.toc-list a:hover {
color: var(--accent-light);
transform: translateX(4px);
}
.toc-list a.active {
color: var(--accent);
font-weight: 700;
}
/* Main Legal Content */
.legal-content {
max-width: 800px;
}
.legal-block {
margin-bottom: 56px;
padding-top: 80px; /* Offset for sticky header scrolling */
margin-top: -80px;
}
.legal-block:last-child {
margin-bottom: 0;
}
.legal-block h2 {
font-size: 24px;
font-weight: 800;
color: var(--text-primary);
margin-bottom: 16px;
letter-spacing: -0.02em;
}
.legal-block p {
font-size: 15.5px;
color: var(--text-secondary);
line-height: 1.75;
margin-bottom: 16px;
}
.legal-block ul {
list-style-type: disc;
padding-left: 24px;
margin-bottom: 16px;
}
.legal-block ul li {
font-size: 15.5px;
color: var(--text-secondary);
line-height: 1.6;
margin-bottom: 12px;
}
.legal-block ul li strong {
color: var(--text-primary);
}
/* Responsive */
@media (max-width: 1024px) {
.legal-grid {
grid-template-columns: 220px 1fr;
gap: 40px;
}
}
@media (max-width: 768px) {
.legal-grid {
grid-template-columns: 1fr;
gap: 32px;
}
.legal-sidebar {
position: relative;
top: 0;
}
.legal-block {
padding-top: 100px;
margin-top: -100px;
}
}