* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #f5f0eb;
    color: #2d2a24;
    line-height: 1.8;
    font-size: 1.1rem;
}
.container { max-width: 800px; margin: 0 auto; padding: 2rem 1.5rem; }

/* Header */
.header {
    text-align: center;
    padding: 3rem 1rem 2rem;
    border-bottom: 2px solid #d4c9b8;
    margin-bottom: 2rem;
}
.header h1 { font-size: 2rem; color: #4a3728; margin-bottom: 0.5rem; }
.header p { color: #8a7a6a; font-size: 0.95rem; }
.header .draft-badge {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.2rem 1rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Sumário */
.sumario { margin: 2rem 0; }
.parte {
    margin-bottom: 2rem;
    page-break-inside: avoid;
}
.parte h2 {
    font-size: 1.3rem;
    color: #8b6914;
    border-left: 4px solid #c9a84c;
    padding-left: 1rem;
    margin-bottom: 0.8rem;
}
.parte ul { list-style: none; padding-left: 1.5rem; }
.parte li { margin: 0.3rem 0; }
.parte li a {
    color: #4a6fa5;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 0.3rem 0.5rem;
    border-radius: 3px;
}
.parte li a:hover { background: #e8dfd4; }
.parte li a .count {
    color: #a09080;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Página do capítulo */
.capitulo-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d4c9b8;
}
.capitulo-header h1 { font-size: 1.6rem; color: #4a3728; }
.capitulo-header .parte-nome { color: #8b6914; font-size: 0.9rem; }
.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: #4a6fa5;
    text-decoration: none;
    font-size: 0.9rem;
}
.back-link:hover { text-decoration: underline; }

/* Lista de livretos no capítulo */
.livreto-list { list-style: none; }
.livreto-list li {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #e0d6ca;
    transition: background 0.2s;
}
.livreto-list li:hover { background: #ebe3d9; }
.livreto-list li a {
    color: #2d2a24;
    text-decoration: none;
    display: block;
}
.livreto-list li a .pergunta {
    font-size: 1rem;
    color: #4a6fa5;
}
.livreto-list li a .personagem {
    font-size: 0.8rem;
    color: #8a7a6a;
    display: inline-block;
    margin-top: 0.2rem;
}

/* Página do livreto */
.livreto-page .nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.livreto-page .nav-top a { color: #4a6fa5; text-decoration: none; }
.livreto-page .nav-top a:hover { text-decoration: underline; }
.livreto-page h1 {
    font-size: 1.4rem;
    color: #4a3728;
    margin-bottom: 0.3rem;
}
.livreto-page .meta {
    color: #8a7a6a;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.livreto-page .meta .tag {
    display: inline-block;
    background: #e8dfd4;
    color: #5a4a3a;
    padding: 0.1rem 0.6rem;
    border-radius: 3px;
    margin-right: 0.3rem;
}
.livreto-page .narrativa {
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: justify;
}
.livreto-page .narrativa p { margin-bottom: 1rem; }

/* Footer */
.footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #d4c9b8;
    color: #a09080;
    font-size: 0.85rem;
}

/* Responsivo */
@media (max-width: 600px) {
    body { font-size: 1rem; }
    .container { padding: 1rem; }
    .header h1 { font-size: 1.5rem; }
}
