/* ══════════════════════════════════════════
   BÍBLIA STRONG v2.1
   navy #1a2235 | gold #C9A84C | creme #f5f0e8
   ══════════════════════════════════════════ */
:root {
    --navy:   #1a2235;
    --gold:   #C9A84C;
    --gold2:  #a8892e;
    --creme:  #f5f0e8;
    --card:   #faf7f2;
    --border: #e0d8c8;
    --text:   #2c2416;
    --muted:  #7a6e5f;
}

/* ── Layout duas colunas ── */
#bs-app {
    display: flex;
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Georgia, serif;
    align-items: flex-start;
}

/* Texto: ocupa ~68% */
.bs-col-texto {
    flex: 2.2;
    min-width: 0;
    background: var(--creme);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Lateral: ocupa ~32% */
.bs-col-lateral {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 20px;
}

/* ── Header ── */
.bs-header {
    background: var(--navy);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.bs-titulo {
    margin: 0;
    font-size: 1.35em;
    color: var(--gold);
    font-variant: small-caps;
    letter-spacing: 1px;
}
.bs-nav { display: flex; align-items: center; gap: 8px; }
.bs-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 6px 14px;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    font-size: .84em;
    font-weight: bold;
    font-family: Georgia, serif;
    transition: background .2s;
    display: inline-block;
}
.bs-btn:hover { background: var(--gold2); color: #fff; }
.bs-cap-select {
    padding: 5px 10px;
    border: 1px solid var(--gold);
    border-radius: 16px;
    font-size: .84em;
    background: var(--navy);
    color: var(--gold);
    cursor: pointer;
    font-family: Georgia, serif;
}

/* ── Texto bíblico ── */
.bs-texto {
    padding: 22px 28px;
    min-height: 60vh;
    line-height: 2;
    font-size: 1.06em;
    color: var(--text);
}
.bs-para { margin-bottom: 10px; }

.bs-vnum {
    color: var(--gold);
    font-size: .78em;
    font-weight: bold;
    margin-right: 4px;
    vertical-align: super;
    cursor: pointer;
    font-family: Georgia, serif;
}
.bs-vnum:hover { text-decoration: underline; }

/* ── Palavras com Strong ── */
.bs-sw {
    cursor: pointer;
    border-bottom: 1.5px dotted var(--gold);
    padding: 0 1px;
    border-radius: 2px;
    transition: all .15s;
}
.bs-sw:hover {
    background: rgba(201,168,76,.15);
    border-bottom-style: solid;
    color: var(--gold2);
}

/* ══════════════════════════════════════════
   COLUNA LATERAL
   ══════════════════════════════════════════ */

/* ── Vídeo ── */
.bs-video-wrap {
    background: var(--navy);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,.2);
}
.bs-video-label {
    padding: 10px 14px;
    font-size: .78em;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Georgia, serif;
    border-bottom: 1px solid rgba(201,168,76,.15);
}
.bs-video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.bs-video-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Placeholder quando não há vídeo */
.bs-video-placeholder {
    background: var(--navy);
    border-radius: 8px;
    border: 1px dashed rgba(201,168,76,.3);
    padding: 28px 14px;
    text-align: center;
    color: rgba(255,255,255,.3);
}
.bs-video-placeholder span { font-size: 2em; display: block; margin-bottom: 6px; }
.bs-video-placeholder p { font-size: .82em; margin: 0; }

/* ── Afiliados ── */
.bs-afiliados {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.bs-afiliados-label {
    background: var(--navy);
    padding: 10px 14px;
    font-size: .78em;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Georgia, serif;
}
.bs-afiliado-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background .15s;
}
.bs-afiliado-item:last-child { border-bottom: none; }
.bs-afiliado-item:hover { background: var(--creme); }
.bs-afiliado-item img {
    width: 100%;
    max-width: 130px;
    border-radius: 4px;
    border: 1px solid var(--border);
    margin-bottom: 8px;
    transition: transform .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.bs-afiliado-item:hover img { transform: scale(1.03); }
.bs-afiliado-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 5px 14px;
    border-radius: 14px;
    font-size: .78em;
    font-weight: bold;
    font-family: Georgia, serif;
    letter-spacing: .3px;
}

/* ══════════════════════════════════════════
   POPUP
   ══════════════════════════════════════════ */
#bs-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9998;
    backdrop-filter: blur(2px);
}
#bs-popup {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: min(580px, 95vw);
    max-height: 82vh;
    background: var(--creme);
    border-radius: 12px;
    box-shadow: 0 12px 50px rgba(0,0,0,.4);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.bs-popup-head {
    background: var(--navy);
    padding: 14px 20px 0;
    flex-shrink: 0;
    position: relative;
}
.bs-popup-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.bs-popup-num {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--gold);
    font-family: Georgia, serif;
}
.bs-popup-lang {
    background: rgba(201,168,76,.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: .72em;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.bs-popup-close {
    position: absolute;
    top: 12px; right: 14px;
    background: none; border: none;
    font-size: 1.3em; cursor: pointer;
    color: rgba(255,255,255,.5); line-height: 1;
    transition: color .15s;
}
.bs-popup-close:hover { color: #fff; }
.bs-popup-tabs {
    display: flex;
    padding: 0 4px;
}
.bs-tab {
    background: none; border: none;
    padding: 8px 16px; cursor: pointer;
    font-size: .85em;
    color: rgba(255,255,255,.45);
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    font-family: Georgia, serif;
    transition: color .2s;
}
.bs-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.bs-tab:hover { color: rgba(255,255,255,.8); }
.bs-tab-content {
    padding: 18px 22px;
    overflow-y: auto;
    max-height: 55vh;
}

/* ── Léxico ── */
.bs-lex-lemma {
    font-size: 2.2em; color: var(--navy);
    text-align: center; margin: 4px 0 2px;
    font-family: serif;
}
.bs-lex-trans {
    text-align: center; color: var(--muted);
    font-style: italic; font-size: .95em;
    margin-bottom: 14px; letter-spacing: .5px;
}
.bs-lex-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
}
.bs-lex-label {
    font-size: .72em; font-weight: bold;
    color: var(--gold2); letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 5px;
}
.bs-lex-val { color: var(--text); font-size: .96em; line-height: 1.7; }

/* ── Referências e Concordância ── */
.bs-refs-titulo {
    font-size: .82em; font-weight: bold;
    color: var(--gold2); letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.bs-ref-item {
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}
.bs-ref-item:last-child { border-bottom: none; }
a.bs-ref-link {
    display: block;
    font-weight: bold; color: var(--gold2);
    font-size: .87em; font-variant: small-caps;
    text-decoration: none; margin-bottom: 3px;
}
a.bs-ref-link:hover { color: var(--gold); text-decoration: underline; }
.bs-ref-texto {
    color: var(--text); font-size: .94em; line-height: 1.6;
}
.bs-ref-texto::before { content: '"'; }
.bs-ref-texto::after  { content: '"'; }
.bs-loading {
    color: var(--muted); font-style: italic;
    text-align: center; padding: 20px 0;
}

/* ── Mapa popup ── */
#bs-mapa-popup {
    width: 100%; height: 280px;
    border-radius: 6px; overflow: hidden;
}
.bs-mapa-info {
    text-align: center; font-size: .88em;
    color: var(--muted); margin-top: 8px;
}

/* ── Responsivo ── */
@media (max-width: 820px) {
    #bs-app { flex-direction: column; }
    .bs-col-lateral {
        width: 100%;
        max-width: 100%;
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .bs-video-wrap, .bs-video-placeholder { flex: 1; min-width: 260px; }
    .bs-afiliados { flex: 1; min-width: 200px; }
    .bs-texto { padding: 14px; min-height: auto; }
}

/* ══════════════════════════════════════════
   MENU DE LIVROS EM ORDEM BÍBLICA
   ══════════════════════════════════════════ */
.bs-nav-livros {
    max-width: 1200px;
    margin: 0 auto 18px;
    background: var(--navy);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,.2);
}
.bs-nav-secao {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(201,168,76,.1);
}
.bs-nav-secao:last-child { border-bottom: none; }
.bs-nav-label {
    display: block;
    font-size: .65em;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: Georgia, serif;
    margin-bottom: 8px;
    opacity: .8;
}
.bs-nav-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.bs-nav-livro {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: .78em;
    padding: 3px 9px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-family: Georgia, serif;
    transition: all .15s;
    white-space: nowrap;
}
.bs-nav-livro:hover {
    color: var(--gold);
    border-color: rgba(201,168,76,.3);
    background: rgba(201,168,76,.08);
}
.bs-nav-livro.active {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
    font-weight: bold;
}

@media (max-width: 768px) {
    .bs-nav-lista { gap: 3px; }
    .bs-nav-livro { font-size: .72em; padding: 3px 7px; }
}

/* ── Dropdown de livros na barra azul ── */
.bs-livro-select-wrap {
    position: relative;
}
.bs-livro-select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(201,168,76,.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 7px 36px 7px 14px;
    border-radius: 20px;
    font-size: .95em;
    font-family: Georgia, serif;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: .3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    min-width: 160px;
    transition: background .2s;
}
.bs-livro-select:focus { outline: none; border-color: var(--gold); }
.bs-livro-select option { background: var(--navy); color: #fff; }
.bs-livro-select:hover { background-color: rgba(201,168,76,.25); }

/* ── Botão Ver Comentário no popup ── */
.bs-ver-pagina {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--navy);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: .84em;
    font-weight: bold;
    text-decoration: none;
    font-family: Georgia, serif;
    margin: 10px 0 14px;
    transition: background .2s;
}
.bs-ver-pagina:hover {
    background: var(--gold2);
    color: #fff;
}

/* ── Google Ads nas páginas ── */
.bs-ads-livro {
    padding: 10px 0;
    text-align: center;
}
.bs-ads-topo {
    margin-bottom: 16px;
    text-align: center;
}
.bs-ads-rodape {
    margin-top: 20px;
    text-align: center;
}

/* ── Página Strong ── */
.bs-strong-page {
    max-width: 860px;
    margin: 0 auto;
    font-family: Georgia, serif;
}
.bs-strong-nav-bar {
    background: var(--navy);
    padding: 14px 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}
.bs-strong-nav-bar h2 {
    margin: 0;
    font-size: 1em;
    color: rgba(255,255,255,.6);
    font-variant: small-caps;
    letter-spacing: 1px;
}
.bs-strong-nav-links {
    display: flex;
    gap: 10px;
}
.bs-strong-nav-links a {
    background: rgba(255,255,255,.1);
    color: var(--gold);
    padding: 5px 14px;
    border-radius: 16px;
    font-size: .85em;
    text-decoration: none;
    border: 1px solid rgba(201,168,76,.3);
    transition: background .2s;
}
.bs-strong-nav-links a:hover {
    background: var(--gold);
    color: var(--navy);
}
.bs-strong-card {
    background: var(--navy);
    padding: 24px 28px;
    margin-bottom: 2px;
}
.bs-strong-card-num {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--gold);
    font-family: Georgia, serif;
}
.bs-strong-card-lang {
    display: inline-block;
    background: rgba(201,168,76,.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 3px 12px;
    border-radius: 12px;
    font-size: .72em;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 12px;
    vertical-align: middle;
}
.bs-audio-btn {
    display: inline-block;
    background: var(--gold);
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: .82em;
    font-weight: bold;
    color: var(--navy);
    cursor: pointer;
    font-family: Georgia, serif;
    margin-left: 12px;
    vertical-align: middle;
    transition: background .2s;
}
.bs-audio-btn:hover { background: var(--gold2); color: #fff; }
.bs-strong-card-lemma {
    font-size: 2.8em;
    color: #fff;
    margin: 12px 0 4px;
    font-family: serif;
    display: block;
    direction: rtl;
}
.bs-strong-card-trans {
    color: rgba(255,255,255,.55);
    font-style: italic;
    font-size: 1em;
    letter-spacing: 1px;
}
.bs-strong-def-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-bottom: 2px;
}
.bs-strong-def-label {
    font-size: .72em;
    font-weight: bold;
    color: var(--gold2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.bs-strong-def-text {
    color: var(--text);
    line-height: 1.75;
    font-size: .97em;
}
.bs-strong-conc {
    background: var(--creme);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 2px;
}
.bs-strong-conc-titulo {
    font-size: .82em;
    font-weight: bold;
    color: var(--gold2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.bs-strong-conc-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.bs-strong-conc-item:last-child { border-bottom: none; }
.bs-strong-conc-ref {
    display: block;
    font-weight: bold;
    color: var(--gold2);
    font-size: .88em;
    font-variant: small-caps;
    text-decoration: none;
    margin-bottom: 4px;
}
.bs-strong-conc-ref:hover { color: var(--gold); text-decoration: underline; }
.bs-strong-conc-texto {
    color: var(--text);
    font-size: .95em;
    line-height: 1.6;
    font-style: italic;
}

/* Busca inline na barra Strong */
.bs-strong-nav-bar {
    flex-wrap: wrap;
    gap: 10px;
}
.bs-strong-search-inline {
    max-width: 220px;
    flex: 1;
}
@media (max-width: 600px) {
    .bs-strong-search-inline { order: 3; max-width: 100%; }
    .bs-strong-nav-links { order: 2; }
}

/* Comentário Adam Clarke com scroll */
.bs-clarke-scroll {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 6px;
}
.bs-clarke-scroll::-webkit-scrollbar {
    width: 6px;
}
.bs-clarke-scroll::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 3px;
}
.bs-clarke-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ── Versiculo do Dia ── */
.bs-versiculo-dia {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(155deg, var(--navy) 0%, #232d47 100%);
    border-radius: 14px;
    padding: 44px 50px;
    text-align: center;
    font-family: Georgia, serif;
    border: 1px solid rgba(201,168,76,.25);
    box-shadow: 0 8px 30px rgba(26,34,53,.18);
    position: relative;
    overflow: hidden;
}
.bs-versiculo-dia::before,
.bs-versiculo-dia::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(201,168,76,.12);
    border-radius: 50%;
}
.bs-versiculo-dia::before { top: -60px; left: -60px; }
.bs-versiculo-dia::after { bottom: -70px; right: -50px; }
.bs-vd-ornament {
    color: var(--gold);
    font-size: 1.1em;
    margin-bottom: 14px;
    opacity: .8;
    position: relative;
}
.bs-vd-label {
    color: var(--gold);
    font-size: .78em;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: bold;
    position: relative;
}
.bs-vd-texto {
    color: #fff;
    font-size: 1.55em;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 26px;
    position: relative;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.bs-vd-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
}
.bs-vd-ref {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    font-variant: small-caps;
    font-size: 1.15em;
    letter-spacing: 1.5px;
    border-bottom: 1px dotted var(--gold);
    padding-bottom: 3px;
    transition: color .2s;
}
.bs-vd-ref:hover { color: #fff; }
.bs-vd-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: bold;
    padding: 9px 26px;
    border-radius: 22px;
    font-size: .88em;
    letter-spacing: .5px;
    transition: background .2s, color .2s;
}
.bs-vd-btn:hover { background: #fff; color: var(--navy); }

/* ── Plano de Leitura ── */
.bs-plano-wrap {
    max-width: 700px;
    margin: 0 auto;
    font-family: Georgia, serif;
}
.bs-plano-header {
    background: var(--navy);
    border-radius: 8px 8px 0 0;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.bs-plano-header h2 {
    margin: 0;
    color: var(--gold);
    font-size: 1.3em;
    font-variant: small-caps;
    letter-spacing: 1px;
}
.bs-plano-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bs-plano-hoje {
    background: var(--gold);
    color: var(--navy);
    text-align: center;
    padding: 6px;
    margin: 0;
    font-size: .82em;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.bs-plano-leituras {
    background: var(--creme);
    border: 1px solid var(--border);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bs-plano-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
    padding: 12px 18px;
    text-decoration: none;
    transition: background .15s;
}
.bs-plano-item:hover { background: #fff; }
.bs-plano-livro {
    font-weight: bold;
    color: var(--gold2);
    font-variant: small-caps;
    font-size: 1.05em;
}
.bs-plano-cap {
    color: var(--muted);
    font-size: .9em;
}
.bs-plano-progresso {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 10px;
    margin: 0;
    font-size: .85em;
    color: var(--muted);
}

@media (max-width: 600px) {
    .bs-versiculo-dia { padding: 30px 22px; }
    .bs-vd-texto { font-size: 1.2em; }
    .bs-vd-ornament { font-size: 1em; }
    .bs-plano-header { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════
   HEROIS DA FE
   ══════════════════════════════════════════ */
.bs-herois-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Georgia, serif;
}
.bs-heroi-card-front {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.bs-heroi-card-front:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.bs-heroi-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
}
.bs-heroi-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: var(--gold);
}
.bs-heroi-info { padding: 16px; }
.bs-heroi-info h3 {
    margin: 0 0 4px;
    color: var(--navy);
    font-size: 1.15em;
    font-variant: small-caps;
}
.bs-heroi-ref {
    display: inline-block;
    background: rgba(201,168,76,.15);
    color: var(--gold2);
    border: 1px solid rgba(201,168,76,.3);
    padding: 2px 10px;
    border-radius: 10px;
    font-size: .72em;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.bs-heroi-info p {
    color: var(--muted);
    font-size: .9em;
    line-height: 1.6;
    margin: 8px 0 0;
}

/* Modal */
.bs-heroi-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9995;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.bs-heroi-modal-content {
    background: var(--creme);
    border-radius: 12px;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    font-family: Georgia, serif;
}
.bs-heroi-modal-close {
    position: absolute;
    top: 14px; right: 16px;
    background: var(--navy);
    color: var(--gold);
    border: none;
    border-radius: 50%;
    width: 32px; height: 32px;
    cursor: pointer;
    font-size: 1.1em;
    line-height: 1;
}
.bs-heroi-modal-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 16px;
}
.bs-heroi-modal-content h2 {
    color: var(--navy);
    margin: 0 0 6px;
    font-variant: small-caps;
}
.bs-heroi-texto {
    color: var(--text);
    line-height: 1.8;
    margin-top: 14px;
    font-size: .98em;
}
.bs-heroi-texto p { margin: 0 0 12px; }

/* ══════════════════════════════════════════
   LIVROS RECOMENDADOS
   ══════════════════════════════════════════ */
.bs-livros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Georgia, serif;
}
.bs-livro-card-front {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.bs-livro-card-front:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.bs-livro-capa {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}
.bs-livro-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.bs-livro-info h4 {
    margin: 0;
    color: var(--navy);
    font-size: 1em;
    line-height: 1.3;
}
.bs-livro-autor {
    color: var(--gold2);
    font-size: .82em;
    font-style: italic;
}
.bs-livro-info p {
    color: var(--muted);
    font-size: .85em;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.bs-livro-info .bs-afiliado-btn {
    align-self: flex-start;
    margin-top: 6px;
}

@media (max-width: 600px) {
    .bs-herois-grid, .bs-livros-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bs-heroi-img { height: 130px; }
}
