/* =========================================================
   PORTAL EBD
   Referências Bíblicas Inteligentes
   ========================================================= */

/* Referência dentro do conteúdo */
button.ebd-bible-ref {
    display: inline;
    appearance: none;
    -webkit-appearance: none;

    margin: 0 2px;
    padding: 2px 6px;

    border: 0 !important;
    border-radius: 6px;

    background: #eef5ff !important;
    color: #0756b8 !important;

    font-family: inherit;
    font-size: .88em;
    font-weight: 700;
    line-height: 1.35;

    cursor: pointer;
    vertical-align: baseline;
    white-space: nowrap;

    box-shadow: none !important;
    text-decoration: none;

    transition:
        background-color .18s ease,
        color .18s ease,
        box-shadow .18s ease;
}

button.ebd-bible-ref:hover {
    background: #dcecff !important;
    color: #003f91 !important;
    box-shadow: 0 2px 7px rgba(13, 86, 184, .12) !important;
}

button.ebd-bible-ref:focus {
    outline: none;
}

button.ebd-bible-ref:focus-visible {
    outline: 2px solid rgba(13, 110, 253, .35);
    outline-offset: 2px;
}

/* Ícone inserido pelo JS */
button.ebd-bible-ref i,
button.ebd-bible-ref svg {
    margin-right: 3px;
    font-size: .86em;
}


/* =========================================================
   MODAL BÍBLICO
   ========================================================= */

#ebdBibleModal .modal-content {
    overflow: hidden;

    border: 0;
    border-radius: 18px;

    box-shadow:
        0 25px 70px rgba(15, 23, 42, .20);
}

#ebdBibleModal .modal-header {
    padding: 20px 22px;

    border-bottom: 1px solid #e8edf5;

    background:
        linear-gradient(
            135deg,
            #f7faff 0%,
            #edf5ff 100%
        );
}

#ebdBibleModal .modal-title {
    color: #172033;

    font-size: 1.25rem;
    font-weight: 800;
}

#ebdBibleModal .modal-body {
    padding: 22px;

    background: #ffffff;
    color: #26364a;
}


/* =========================================================
   TEXTO BÍBLICO
   ========================================================= */

#ebdBibleModal .ebd-bible-verses {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#ebdBibleModal .ebd-bible-verse {
    margin: 0;

    color: #243247;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.8;
}

#ebdBibleModal .ebd-bible-verse sup {
    margin-right: 5px;

    color: #0d6efd;

    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: .72rem;
    font-weight: 800;
}


/* =========================================================
   CARREGAMENTO
   ========================================================= */

#ebdBibleModal .ebd-bible-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 120px;

    color: #64748b;
    font-weight: 600;
}


/* =========================================================
   ERRO
   ========================================================= */

#ebdBibleModal .ebd-bible-error {
    padding: 15px 17px;

    border: 1px solid #f0cccc;
    border-radius: 12px;

    background: #fff7f7;
    color: #842029;
}


/* =========================================================
   RODAPÉ
   ========================================================= */

#ebdBibleModal .modal-footer {
    padding: 14px 22px;

    border-top: 1px solid #e8edf5;

    background: #f8fafc;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 576px) {

    button.ebd-bible-ref {
        padding: 2px 5px;
        font-size: .86em;
    }

    #ebdBibleModal .modal-header,
    #ebdBibleModal .modal-body,
    #ebdBibleModal .modal-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    #ebdBibleModal .ebd-bible-verse {
        font-size: 1rem;
        line-height: 1.72;
    }
}
