.oracoes-list {
    display: grid;
    gap: 16px;
    margin-top: 10px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .oracoes-list {
        grid-template-columns: 1fr 1fr;
    }
}

.oracao-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #fff;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    cursor: pointer;
}

.oracao-card:hover {
    transform: translateY(-2px);
    border-color: #b37a11;
    box-shadow: 0 0 0 4px rgba(179, 122, 17, .25);
}

.oracao-icone {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 22px;
}

.oracao-titulo {
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.oracao-seta {
    margin-left: auto;
    font-size: 18px;
    color: #b37a11;
    opacity: .9;
}

/* Modal */
html,
body {
    height: 100%;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    /* cobre a tela inteira inclusive em mobile */
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.open {
    display: flex;
}

/* Evita a página “rolar por trás” do modal */
body.lock-scroll {
    overflow: hidden;
    touch-action: none;
}

/* Garante que a imagem fique contida e centralizada */
.modal-content {
    position: relative;
    max-width: min(100vw, 900px);
    max-height: 90dvh;
    overflow-y: auto;

    background-color: rgb(230, 230, 230);
    padding: 20px;
}

#modalText * {
    color: black;
}

.modal-content img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #b37a11;
    color: white;
    font-size: 22px;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    cursor: pointer;
    border: 2px solid white;
}

.modal-close:hover {
    background: #f1a800;
}