/* Informação legal d'Os Músicos - mesmo sistema visual de /politicaprivacidade.html */
:root {
    --primary: #1a1a2e;
    --accent: #c9a961;
    --bg: #fafafa;
    --text: #1f1f1f;
    --border: #e5e5e5;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    padding: 2rem 1rem;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d45 100%);
    color: white;
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.header-logo {
    max-width: 180px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    position: relative;
    z-index: 2;
}
.header h1 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    z-index: 2;
    position: relative;
}
.header .subtitle {
    font-size: 0.95rem;
    color: rgba(201, 169, 97, 0.95);
    font-weight: 400;
    z-index: 2;
    position: relative;
}
.header .contact-info {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    z-index: 2;
    position: relative;
}
.header .contact-info a { color: rgba(201, 169, 97, 0.95); text-decoration: none; }
.content { padding: 2.5rem 2rem; }
.section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.section:last-child { border-bottom: none; margin-bottom: 0; }
.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}
.section-content p { margin-bottom: 0.75rem; }
.section-content ul { margin: 0.75rem 0 0.75rem 1.5rem; }
.section-content li { margin-bottom: 0.5rem; }
.section-content a { color: #96793d; }
.subsection { margin: 1.25rem 0; }
.subsection-title {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.highlight-box {
    background: #f9fafb;
    border: 1px dashed var(--accent);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}
.highlight-box strong { color: var(--primary); }
.contact-box {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}
.contact-box a { color: var(--accent); text-decoration: none; font-weight: 500; }
.contact-box a:hover { text-decoration: underline; }

/* indice do hub */
.doc-list { list-style: none; margin: 0; padding: 0; }
.doc-list li { margin: 0 0 0.75rem; }
.doc-list a {
    display: block;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s;
}
.doc-list a:hover { border-color: var(--accent); background: rgba(201, 169, 97, 0.05); }
.doc-list .doc-nome {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--primary);
    display: block;
}
.doc-list .doc-desc { font-size: 0.9rem; color: #6b7280; }

table.dados {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.92rem;
}
table.dados th, table.dados td {
    border: 1px solid var(--border);
    padding: 0.6rem 0.75rem;
    text-align: left;
    vertical-align: top;
}
table.dados th {
    background: #f9fafb;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--primary);
}
.tabela-scroll { overflow-x: auto; }

.footer {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 1.5rem 2rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
}
.footer a { color: #96793d; }
@media (max-width: 768px) {
    body { padding: 1rem 0.5rem; }
    .header h1 { font-size: 1.5rem; }
    .header-logo { max-width: 150px; }
    .content { padding: 1.5rem 1rem; }
}
