/* Reset e Variáveis */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-dark: #0a0f1c; 
    --gold: #cfaa68;
    --text-ink: #3e2723;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 40%, #1e293b 0%, #020617 80%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-container {
    display: flex; flex-direction: column; align-items: center; width: 100%; padding: 20px 0;
}

/* --- BÍBLIA E TEXTOS --- */
.bible-section { width: 100%; display: flex; justify-content: center; margin-top: 20px; margin-bottom: 40px; }
.bible-wrapper { position: relative; width: 95%; max-width: 950px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)); }
.bible-img { width: 100%; height: auto; display: block; border-radius: 4px; }
.verse-overlay { position: absolute; top: 18%; right: 18%; width: 28%; height: 62%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; z-index: 10; overflow: hidden; padding: 0 10px; }
#verse-container { width: 100%; transition: opacity 0.4s ease-in-out; }
.verse-text { font-family: 'Cinzel', serif; color: var(--text-ink); font-weight: 700; text-shadow: 0 1px 0 rgba(255,255,255,0.4); }
.verse-ref { display: block; margin-top: 10px; font-family: 'Lato', sans-serif; font-weight: 900; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; }

/* --- MOBILE --- */
@media (max-width: 768px) {
    .bible-wrapper { width: 100%; }
    .verse-overlay { top: 20%; right: 17%; width: 32%; height: 55%; padding: 0 2px; }
    .verse-text { font-size: 14px; }
    .verse-ref { font-size: 10px; }
}

/* --- CARDS E FOOTER --- */
.glass-cards { display: flex; justify-content: center; gap: 20px; width: 100%; max-width: 1000px; flex-wrap: wrap; z-index: 50; padding: 0 20px; }
.card { background: rgba(30, 41, 59, 0.7); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 25px; width: 280px; text-align: center; text-decoration: none; color: white; transition: 0.3s; }
.card:hover { transform: translateY(-5px); border-color: var(--gold); }
.icon-box { font-size: 2rem; margin-bottom: 15px; color: var(--gold); }
footer { margin-top: auto; padding: 40px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }

/* --- MODAIS DARK PREMIUM (UNIFICADOS) --- */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 1000; justify-content: center; align-items: center; backdrop-filter: blur(5px); }
.modal-content { background: #1e293b; color: white; padding: 30px; border-radius: 12px; text-align: center; width: 90%; max-width: 420px; position: relative; border: 2px solid var(--gold); }
.close-btn { position: absolute; top: 10px; right: 15px; font-size: 2rem; cursor: pointer; color: #64748b; }

.pix-info-box { background: rgba(207, 170, 104, 0.1); border: 1px solid rgba(207, 170, 104, 0.2); padding: 12px; border-radius: 8px; margin-bottom: 15px; }
.pix-info-box p { color: var(--gold); font-size: 0.85rem; line-height: 1.4; font-style: italic; }

.pix-input { width: 100%; background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(207, 170, 104, 0.3); padding: 12px; margin-bottom: 10px; border-radius: 6px; color: white; font-family: inherit; }
.pix-input:focus { border-color: var(--gold); outline: none; }

.pix-checkbox-area { display: flex; align-items: flex-start; gap: 10px; text-align: left; margin: 10px 0; font-size: 0.8rem; color: #94a3b8; }
.pix-checkbox-area input { margin-top: 3px; accent-color: var(--gold); cursor: pointer; }

/* Avisos e Botões */
.pix-alert-small { color: #facc15; font-size: 0.75rem; margin-top: 10px; font-weight: bold; }
.pix-timer-tag { color: #ff6b6b; font-weight: bold; font-size: 0.8rem; margin-bottom: 15px; }
.copy-btn { background: var(--gold); color: #1e293b; border: none; padding: 14px; border-radius: 6px; cursor: pointer; font-weight: bold; width: 100%; transition: 0.3s; }
.secondary-btn { background: transparent; color: var(--gold); border: 1px solid var(--gold); padding: 10px; border-radius: 6px; cursor: pointer; width: 100%; }
.confirm-pay-btn { background: #10b981; color: white; border: none; padding: 14px; border-radius: 6px; font-weight: bold; width: 100%; cursor: pointer; animation: pulse 2s infinite; }

@keyframes pulse { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }

.pix-key { background: rgba(15, 23, 42, 0.6); padding: 12px; border-radius: 6px; border: 1px dashed var(--gold); font-family: monospace; }
.qr-code-wrapper { background: white; padding: 10px; border-radius: 10px; margin: 15px auto; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; }
.qr-img { width: 100%; height: auto; }

/* ANIMAÇÃO MODAL ORAÇÃO */
#modalOracao .modal-content { animation: subirModal 0.3s ease-out; }
@keyframes subirModal { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }