/* ============================
   COMPONENTES DO SITE
   ============================ */

/* Player */
.audioPlayer {
    max-width:520px;
    margin:15px 0 20px 0;
    padding:12px;
    background:#f3f1eb;
    border-radius:6px;
    box-shadow:0 1px 2px rgba(0,0,0,.25);
}

.audioPlayer .audio-ui {
    display:flex;
    align-items:center;
    gap:12px;
}

.audio-playlist { list-style:none; margin:0; padding:0; }

.audio-btn {
    border:none;
    background:#9D261D;
    color:#fff;
    width:34px;
    height:34px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.audio-progress {
    flex:1;
    display:flex;
    align-items:center;
    gap:6px;
    font-size:0.8em;
}

.audio-track {
    position:relative;
    flex:1;
    height:6px;
    background:#ddd;
    border-radius:3px;
    cursor:pointer;
}

.audio-bar {
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:0;
    background:#9D261D;
    border-radius:3px;
}

.audio-ball {
    position:absolute;
    top:50%;
    left:0;
    width:12px;
    height:12px;
    margin-top:-6px;
    border-radius:50%;
    background:#9D261D;
    transform:translateX(-50%);
}

/* Capítulos */
.textHeader p .chap,
.textHeader p .chapread {
    display:inline-block;
    min-width:28px;
    padding:4px 6px;
    margin:2px 1px;
    text-align:center;
    font-weight:bold;
    border:1px solid #ccc;
    background-color:#f5f4f3;
    color:#333;
}

.textHeader p .chapread {
    background-color:#9D261D;
    color:#fff;
    border-color:#9D261D;
}

.textHeader p .chap:hover {
    background-color:#9D261D;
    color:#fff;
    border-color:#9D261D;
}

/* Botões */
.btn-menu {
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    height:34px;
    padding:0 16px !important;
    margin-right:10px;
    font-size:1.15em !important;
    font-weight:600;
    letter-spacing:0.4px;
    background-color:#AA2023;
    color:#fff !important;
    border-radius:4px;
    text-decoration:none;
    vertical-align:middle;
}

.btn-menu:hover { background-color:#8a1a1d; }
.btn-menu:last-child { margin-right:0; }

/* Conteúdo */
main ul, main ol, main dl {
    margin:0 0 1em 1em;
}

main li {
    margin-left:0.8em;
    line-height:1.5em;
}

/* Topbar */
.topbar {
    position:relative;
    z-index:1;
}
