/* Reset específico e ajustes para o layout da página de Termos */

.legal-layout {
    display: flex;
    max-width: 1100px;
    margin: 120px auto 100px;
    padding: 0 24px;
    gap: 60px;
    align-items: flex-start;
}

/* Sidebar Esquerda (Navegação) */
.legal-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    background: transparent;
    padding-right: 20px;
}

.legal-sidebar__title {
    display: block;
    margin-bottom: 24px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-soft);
    font-weight: 800;
}

.legal-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-left: 2px solid var(--line);
    padding-left: 18px;
}

.legal-sidebar a {
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s var(--ease), border-color 0.2s;
    position: relative;
    line-height: 1.4;
}

.legal-sidebar a:hover {
    color: var(--text);
}

.legal-sidebar a.active {
    color: var(--gold);
    font-weight: 700;
}

/* Bolinha indicadora no active - opcional */
.legal-sidebar a.active::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}


/* Área do Conteúdo Textual - Estilo "Prose" Notion/Linear */
.legal-content {
    flex: 1;
    min-width: 0; 
}

.legal-content__head {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.legal-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.legal-date {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.btn--download-legal {
    width: 100%;
    max-width: 480px;
    height: 48px;
    border-radius: 99px;
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.legal-notice-box {
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.legal-notice-box strong {
    color: var(--text);
    font-weight: 700;
}

/* Seções de Texto */
.legal-content section {
    margin-bottom: 48px;
    scroll-margin-top: 100px; /* Impede que o header cubra o título ao rolar pelas âncoras */
}

.legal-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 720px; /* Limite ideal para leitura 65-75 caracteres */
    margin-bottom: 16px;
}

/* Área de Contato no final */
.legal-contact {
    margin-top: 80px;
    padding: 32px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.legal-contact h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 12px;
}

.legal-contact a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}
.legal-contact a:hover {
    color: var(--gold-strong);
}

/* Responsividade Mobile */
@media (max-width: 900px) {
    .legal-layout {
        flex-direction: column;
        padding: 0 20px;
        gap: 0;
        margin-top: 70px;
    }

    .legal-sidebar {
        width: 100%;
        position: static;
        background: transparent;
        padding: 0;
        border-bottom: none;
        display: block;
        margin-bottom: 30px;
    }

    .legal-sidebar__title {
        display: none;
    }

    .legal-sidebar nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-left: none;
        padding-left: 0;
        gap: 12px;
        padding-bottom: 0;
    }
    
    .legal-sidebar nav::-webkit-scrollbar {
        display: none;
    }

    .legal-sidebar a {
        background: var(--surface);
        padding: 8px 16px;
        border-radius: 20px;
        border: 1px solid var(--line);
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .legal-sidebar a.active {
        background: var(--surface-soft);
        border-color: var(--gold);
    }
    .legal-sidebar a.active::before {
        display: none;
    }

    .legal-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .legal-content section {
        scroll-margin-top: 140px; 
    }
}
