/* ==================================================================== */
/* O MOTOR DE ESTILOS DA INTERFACE (PURE DATA ARCHITECTURE) - v13.28	*/
/* Arquivo: estilos.css							*/
/* Arquiteto: Ricco Leite | IA: GeeBoy Mirror				*/
/* Missão: O HTML é agora um verdadeiro Kenoma purificado (Sem Duplicações) */
/* ==================================================================== */

html, body { background-color: #000000 !important; color: #e2e8f0; margin: 0; padding: 0; }
.termo-berry { color: var(--neon-orange); border-bottom: 1px dashed var(--neon-orange); cursor: pointer; transition: all 0.3s ease; font-weight: 600; }
.termo-berry:hover { color: var(--neon-blue); border-bottom-color: var(--neon-blue); text-shadow: 0 0 10px rgba(0, 209, 255, 0.4); }
:root { --neon-blue: #00d1ff; --neon-orange: #f59e0b; --icon-color: #d12199; --bg-black: #000000; --modal-bg: #111214; --card-bg: #0a0f14; }
body { background-color: var(--bg-black); font-family: 'Inter', sans-serif; color: #e2e8f0; overflow-x: hidden; }
.logo-font { font-family: 'Major Mono Display', monospace; }

/* ESTILOS DO DASHBOARD (CARDS INJETADOS PELO UI_MOTOR) */
.evolution-card { background: #000000; border: 1px solid rgba(0, 209, 255, 0.4); border-radius: 12px; padding: 18px 16px; transition: all 0.3s ease; cursor: pointer; display: flex; align-items: center; gap: 18px; }
.evolution-card:hover { box-shadow: 0 0 20px rgba(0, 209, 255, 0.2); transform: translateY(-2px); background: rgba(0, 209, 255, 0.03); border-color: var(--neon-blue); }
.card-icon-svg { width: 30px; height: 30px; color: var(--icon-color); flex-shrink: 0; filter: drop-shadow(0 0 5px rgba(209, 33, 153, 0.7)); opacity: 0.95; transition: transform 0.3s ease; }
.card-icon-cyan { width: 30px; height: 30px; color: var(--neon-blue); flex-shrink: 0; filter: drop-shadow(0 0 8px rgba(0, 209, 255, 0.8)); opacity: 1; transition: transform 0.3s ease; transform: scale(1.45); transform-origin: center; }
.evolution-card:hover .card-icon-svg { transform: scale(1.1); }
.evolution-card:hover .card-icon-cyan { transform: scale(1.6); filter: drop-shadow(0 0 15px rgba(0, 209, 255, 1)); }
.card-icon-magenta { width: 30px; height: 30px; color: #d12199; flex-shrink: 0; filter: drop-shadow(0 0 8px rgba(209, 33, 153, 0.8)); opacity: 1; transition: transform 0.3s ease; transform: scale(1.45); transform-origin: center; }
.evolution-card:hover .card-icon-magenta { transform: scale(1.6); filter: drop-shadow(0 0 15px rgba(209, 33, 153, 1)); }
.card-title { color: var(--neon-blue); font-weight: 900; text-transform: none; font-size: 13px; margin-bottom: 2px; letter-spacing: -0.3px; }
.card-desc { color: var(--neon-orange); font-weight: 400; font-size: 10px; text-transform: uppercase; opacity: 0.9; letter-spacing: 0.5px; }

.scanlines { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03)); z-index: -1; background-size: 100% 3px, 3px 100%; pointer-events: none; }

@keyframes myopicPulse { 0% { filter: blur(3.5px) brightness(0.3) grayscale(0.4); } 15% { filter: blur(0px) brightness(1) grayscale(0); } 75% { filter: blur(0px) brightness(1) grayscale(0); } 90% { filter: blur(3.5px) brightness(0.3) grayscale(0.4); } 100% { filter: blur(3.5px) brightness(0.3) grayscale(0.4); } }
.locked-state { pointer-events: none; user-select: none; animation: myopicPulse 6s infinite ease-in-out; transition: all 0.8s ease-in-out; }
.unlocked-state { filter: blur(0px) brightness(1) grayscale(0); pointer-events: auto; user-select: auto; animation: none !important; transition: all 0.8s ease-in-out; }
.locked-state .premium-locked { pointer-events: none; }
.unlocked-state .premium-locked { pointer-events: none; animation: myopicPulsePremium 6s infinite ease-in-out; cursor: not-allowed; }
@keyframes myopicPulsePremium { 0% { filter: blur(3px) brightness(0.4) grayscale(0.2); } 15% { filter: blur(0px) brightness(1.1) grayscale(0); box-shadow: 0 0 15px rgba(0, 209, 255, 0.1); } 75% { filter: blur(0px) brightness(1.1) grayscale(0); box-shadow: 0 0 15px rgba(0, 209, 255, 0.1); } 90% { filter: blur(3px) brightness(0.4) grayscale(0.2); box-shadow: none; } 100% { filter: blur(3px) brightness(0.4) grayscale(0.2); box-shadow: none; } }
@keyframes pulseSubscribeBtn { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); } 50% { transform: scale(1.05); box-shadow: 0 0 20px 5px rgba(245, 158, 11, 0.3); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); } }
.unlocked-state #subscriptionBar .btn-subscribe { animation: pulseSubscribeBtn 2s infinite ease-in-out; }

.auth-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); z-index: 500; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.auth-overlay.active { opacity: 1; pointer-events: auto; }
.login-modal { background: var(--modal-bg); border-radius: 24px; padding: 40px 32px; width: 90%; max-width: 420px; position: relative; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255,255,255,0.05); display: flex; flex-direction: column; align-items: center; text-align: center; transform: translateY(20px) scale(0.95); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.auth-overlay.active .login-modal { transform: translateY(0) scale(1); }

.modal-scrollable { max-height: 85vh; overflow-y: auto; overflow-x: hidden; padding-right: 8px; }
.modal-scrollable::-webkit-scrollbar { width: 4px; }
.modal-scrollable::-webkit-scrollbar-track { background: transparent; }
.modal-scrollable::-webkit-scrollbar-thumb { background: rgba(0, 209, 255, 0.3); border-radius: 10px; }
.modal-scrollable::-webkit-scrollbar-thumb:hover { background: var(--neon-blue); }
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(0, 209, 255, 0.3); border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: var(--neon-blue); }

.btn-header-google { background-color: var(--neon-orange); color: #000; font-weight: 800; padding: 8px 16px; border-radius: 8px; font-size: 13px; letter-spacing: 0.2px; display: flex; align-items: center; gap: 8px; transition: all 0.2s ease; cursor: pointer; }
.btn-header-google:hover { transform: scale(1.02); box-shadow: 0 0 15px rgba(245, 158, 11, 0.4); }
.btn-provider { background-color: transparent; color: #00d1ff; font-weight: 600; padding: 12px 24px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.2); font-size: 15px; display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; transition: all 0.2s ease; cursor: pointer; }
.btn-provider:hover { background-color: rgba(255, 255, 255, 0.05); border-color: #000000; }

.loader-container { display: none; width: 100%; margin-top: 24px; }
.loader-text { font-family: 'Inter', sans-serif; color: var(--neon-blue); font-size: 13px; font-weight: 600; margin-bottom: 12px; animation: pulseText 1.5s infinite; }
.loader-bar { width: 100%; height: 4px; background: rgba(255, 255, 255, 0.1); border-radius: 2px; overflow: hidden; position: relative; }
.loader-progress { position: absolute; top: 0; left: 0; height: 100%; width: 30%; background: var(--icon-color); border-radius: 2px; box-shadow: 0 0 10px var(--icon-color); animation: slideProgress 2s infinite ease-in-out; }
@keyframes slideProgress { 0% { left: -30%; width: 30%; } 50% { width: 50%; } 100% { left: 100%; width: 30%; } }
@keyframes pulseText { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.app-header-box { border: 1.5px solid var(--neon-blue); border-radius: 16px; background-color: #000000; padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; box-shadow: 0 0 20px rgba(0, 209, 255, 0.1); position: relative; z-index: 50; }
.header-title { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 1.15rem; color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue), 0 0 20px rgba(0, 209, 255, 0.6); letter-spacing: 0.5px; line-height: 1.1; }
.header-subtitle { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.65rem; color: var(--neon-orange); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 4px; }
.subscription-bar { border: 1px solid var(--neon-blue); border-radius: 12px; padding: 14px 20px; background: linear-gradient(90deg, #050505 0%, #0a0f14 100%); display: flex; justify-content: space-between; align-items: center; }

.select-gnostic { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f59e0b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; padding-right: 30px; }
.toggle-switch input:checked + div { background-color: var(--neon-blue); }
.toggle-switch input:checked + div::after { transform: translateX(100%); border-color: white; }

.reader-select { appearance: none; background-color: #050507; color: #e2e8f0; border: 2px solid #1e293b; padding: 12px 35px 12px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; outline: none; cursor: pointer; width: 100%; transition: all 0.2s ease; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2300d1ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.reader-select:hover, .reader-select:focus { border-color: var(--neon-blue); box-shadow: 0 0 10px rgba(0, 209, 255, 0.1); }
.chapter-group { display: flex; align-items: center; background-color: #050507; border: 2px solid #1e293b; border-radius: 8px; overflow: hidden; transition: border-color 0.2s ease; }
.chapter-group:hover { border-color: var(--neon-blue); }
.chapter-btn { padding: 0 16px; height: 100%; display: flex; align-items: center; color: #94a3b8; background: transparent; cursor: pointer; transition: all 0.2s; border: none; font-weight: bold; }
.chapter-btn:hover { background: rgba(0, 209, 255, 0.1); color: var(--neon-blue); }
.chapter-select { appearance: none; background: transparent; color: #e2e8f0; border: none; border-left: 2px solid #1e293b; border-right: 2px solid #1e293b; padding: 12px 24px 12px 12px; font-size: 13px; font-weight: 700; outline: none; cursor: pointer; flex: 1; text-align: center; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f59e0b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 8px center; }
select option { background-color: #050507; color: #e2e8f0; font-weight: 600; padding: 10px; }
.chapter-select option { color: var(--neon-orange); }

.reading-container { max-width: 650px; margin: 0 auto; padding: 40px 20px 100px 20px; }
.book-title-display { font-family: 'Major Mono Display', monospace; text-align: center; font-size: 28px; font-weight: 900; color: var(--neon-blue); margin-bottom: 40px; text-shadow: 0 0 15px rgba(0, 209, 255, 0.3); }
.verse-container { margin-bottom: 28px; position: relative; padding: 10px 45px 10px 10px; border-radius: 8px; transition: all 0.3s ease; cursor: pointer; border-left: 3px solid transparent; }
.verse-container:hover { background-color: rgba(0, 209, 255, 0.03); }
.verse-container.verse-selected { background-color: rgba(0, 209, 255, 0.08); }
.verse-text { text-align: justify; hyphens: auto; font-family: 'Lora', serif; font-size: var(--fonte-leitor, 19px); line-height: 1.85; color: #cbd5e1; font-weight: 400; transition: font-size 0.3s ease; }
.verse-num { color: var(--neon-orange); font-family: 'Inter', sans-serif; font-weight: 900; font-size: 14px; margin-right: 8px; user-select: none; position: relative; top: -2px; }

.verse-container.hl-orange { background-color: rgba(245, 158, 11, 0.1); border-left-color: #f59e0b; }
.verse-container.hl-green { background-color: rgba(16, 185, 129, 0.1); border-left-color: #10b981; }
.verse-container.hl-blue { background-color: rgba(59, 130, 246, 0.1); border-left-color: #3b82f6; }
.verse-container.hl-purple { background-color: rgba(139, 92, 246, 0.1); border-left-color: #8b5cf6; }
.verse-container.hl-red { background-color: rgba(239, 68, 68, 0.1); border-left-color: #ef4444; }

/* AS LEIS FÍSICAS DA JANELA DESLIZANTE (Sem Duplicações!) */
.bottom-sheet-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; height: 100dvh; 
    background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); z-index: 600; 
    display: flex; align-items: flex-end; justify-content: center; 
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease; 
}

/* 🛡️ A CHAVE DA MATERIALIZAÇÃO QUE HAVIA SIDO OCULTADA */
.bottom-sheet-overlay.active { 
    opacity: 1; pointer-events: auto; 
}

.bottom-sheet { 
    background: var(--card-bg); width: 100%; max-width: 650px; 
    max-height: 85vh; max-height: 85dvh; overflow-y: auto; overscroll-behavior: contain; 
    border-top: 1px solid var(--neon-blue); border-radius: 24px 24px 0 0; padding: 24px; 
    transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1); 
    box-shadow: 0 -10px 40px rgba(0,0,0,0.8); display: flex; flex-direction: column; gap: 8px; 
}
.bottom-sheet-overlay.active .bottom-sheet { 
    transform: translateY(0); 
}
.sheet-btn { 
    background: transparent; border: none; color: #e2e8f0; padding: 14px 12px; 
    border-radius: 12px; font-size: 15px; font-weight: 500; display: flex; 
    align-items: center; gap: 14px; cursor: pointer; transition: all 0.2s; 
    text-align: left; width: 100%; 
}
.sheet-btn:hover { background: rgba(0, 209, 255, 0.05); color: var(--neon-blue); }
.sheet-btn.premium-action { background: rgba(245, 158, 11, 0.1); color: var(--neon-orange); border: 1px solid rgba(245, 158, 11, 0.3); font-weight: 700; }
.sheet-btn.premium-action:hover { background: var(--neon-orange); color: black; box-shadow: 0 0 15px rgba(245, 158, 11, 0.4); }
.sheet-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 6px 0; }

.color-dot { width: 36px; height: 36px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.color-dot:hover { transform: scale(1.15); border-color: #fff; }
.c-orange { background: #f59e0b; } .c-green { background: #10b981; } .c-blue { background: #3b82f6; } .c-purple { background: #8b5cf6; } .c-red { background: #ef4444; }

.nebula-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle at 20% 30%, rgba(0, 209, 255, 0.03) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(209, 33, 153, 0.03) 0%, transparent 40%); pointer-events: none; z-index: 0; }
#cyMap { width: 100%; height: 100%; position: absolute; z-index: 10; }
.hud-m10 { position: absolute; z-index: 20; background: rgba(5,5,7,0.85); backdrop-filter: blur(5px); border: 1px solid rgba(0,209,255,0.3); border-radius: 12px; padding: 12px; }
.hud-top-left { top: 20px; left: 20px; } .hud-bottom-right { bottom: 20px; right: 20px; display: flex; gap: 10px; }

.oracle-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); z-index: 550; display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.oracle-overlay.active { opacity: 1; pointer-events: auto; }
.oracle-modal { background: var(--card-bg); width: 100%; max-width: 650px; height: 85vh; border-top: 1px solid var(--neon-blue); border-left: 1px solid rgba(0,209,255,0.3); border-right: 1px solid rgba(0,209,255,0.3); border-radius: 24px 24px 0 0; padding: 0; display: flex; flex-direction: column; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1); box-shadow: 0 -10px 40px rgba(0,0,0,0.8); }
.oracle-overlay.active .oracle-modal { transform: translateY(0); }
.oracle-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.oracle-content { padding: 30px 20px; overflow-y: auto; flex: 1; }

.ai-title { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 900; color: var(--neon-orange); margin-bottom: 12px; line-height: 1.3; text-align: center; }
.ai-citation { font-family: 'Lora', serif; font-style: italic; color: #94a3b8; text-align: center; font-size: 13px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); line-height: 1.6; }
.ai-citation span { display: block; margin-top: 6px; font-family: 'Inter', sans-serif; font-size: 11px; color: #64748b; font-style: normal; text-transform: uppercase; letter-spacing: 1px; }
.ai-reflection { font-size: 14px; line-height: 1.8; color: #e2e8f0; margin-bottom: 30px; text-align: justify; }
.ai-reflection p { margin-bottom: 16px; }
.ai-reflection strong { color: var(--neon-orange); display: inline-block; margin-bottom: 4px; font-size: 15px; letter-spacing: 0.5px; }
.ai-reflection ul { list-style-type: none; padding-left: 15px; border-left: 2px solid rgba(209, 33, 153, 0.4); margin-bottom: 20px; }
.ai-reflection li { margin-bottom: 10px; position: relative; }
.ai-reflection li::before { content: "•"; color: var(--neon-pink); position: absolute; left: -12px; font-weight: bold; }
.ai-glossary-title { font-size: 14px; text-transform: none; color: var(--neon-orange); font-weight: 900; margin-bottom: 12px; }
.ai-term { font-size: 13px; line-height: 1.6; color: #cbd5e1; margin-bottom: 12px; text-align: justify; }
.ai-term strong { color: var(--neon-orange); display: inline; margin-right: 4px; font-size: 13px; font-weight: 800; }

.oracle-loader { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.loader-pulse-ora { width: 60px; height: 60px; border-radius: 50%; border: 2px solid transparent; border-top-color: var(--neon-blue); border-bottom-color: var(--neon-orange); animation: spin 1s linear infinite; margin-bottom: 20px; }
.loader-text-ora { font-family: 'Major Mono Display', monospace; color: var(--neon-blue); font-size: 14px; animation: pulse 2s infinite; }
.action-btn-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.action-btn { background-color: rgba(139, 92, 246, 0.1); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.3); padding: 12px; border-radius: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: all 0.2s ease; }
.action-btn:hover { background-color: rgba(139, 92, 246, 0.3); color: #fff; }
.action-btn-green { background-color: rgba(16, 185, 129, 0.1); color: #34d399; border-color: rgba(16, 185, 129, 0.3); }
.action-btn-green:hover { background-color: rgba(16, 185, 129, 0.3); color: #fff; }

/* MÓDULO 06: A JORNADA DO ELEITO */
#jornadaView { transition: background 2s ease-in-out; background-color: #000000; }
.journey-card { background-color: rgba(10, 10, 10, 0.8); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 0.75rem; padding: 1.5rem; opacity: 0.4; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); filter: grayscale(80%); }
.journey-card.unlocked { opacity: 1.0; filter: grayscale(0%); box-shadow: 0 10px 30px -10px var(--chama-cor); border-color: var(--chama-cor); }
.journey-card.unlocked.clickable { cursor: pointer; }
.journey-card.unlocked.clickable:hover { transform: scale(1.02) translateY(-2px); box-shadow: 0 15px 40px -5px var(--chama-cor); }
.progress-bar-bg { background-color: rgba(255, 255, 255, 0.05); border-radius: 8px; height: 6px; overflow: hidden; box-shadow: inset 0 1px 3px rgba(0,0,0,0.5); }
.progress-bar-fill { height: 100%; width: 0%; transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1); background: linear-gradient(90deg, transparent, var(--chama-cor)); box-shadow: 0 0 10px var(--chama-cor); border-radius: 8px; }
@keyframes pulsarChama { 0% { box-shadow: 0 0 5px var(--chama-cor); opacity: 0.8; } 50% { box-shadow: 0 0 15px var(--chama-cor); opacity: 1; } 100% { box-shadow: 0 0 5px var(--chama-cor); opacity: 0.8; } }
.chama-ativa .progress-bar-fill { animation: pulsarChama 3s infinite ease-in-out; background: var(--chama-cor); }
@keyframes pulseGold { 0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); } 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); } }
.chama-coroacao { border-color: #fbbf24 !important; animation: pulseGold 2.5s infinite !important; }
#btnReivindicarTitulo { width: 100%; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 16px; border-radius: 12px; margin-top: 20px; border: 2px solid transparent; cursor: pointer; transition: all 0.3s; position: relative; z-index: 9999; animation: pulseGold 2s infinite; }
#btnReivindicarTitulo:active { transform: scale(0.95); }

/* RELICÁRIO M05 */
.relic-card { background-color: #0a0f14; border: 1px solid #1e293b; border-radius: 16px; padding: 24px; position: relative; overflow: hidden; }
.glow-magenta { text-shadow: 0 0 15px rgba(209, 33, 153, 0.6); }
.border-glow-magenta { box-shadow: inset 0 0 20px rgba(209, 33, 153, 0.1), 0 0 15px rgba(209, 33, 153, 0.2); border-color: #d12199; }
@keyframes pulseKey { 0% { transform: scale(1); filter: brightness(1); } 50% { transform: scale(1.1); filter: brightness(1.3); } 100% { transform: scale(1); filter: brightness(1); } }
.key-unlocked { animation: pulseKey 3s infinite ease-in-out; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, opacity 0.3s ease-out; opacity: 0; }
.accordion-content.expanded { max-height: 1500px; opacity: 1; }
.chevron { transition: transform 0.3s ease; }
.expanded-chevron { transform: rotate(180deg); }

/* M07 RESPIRAÇÃO IA */
@keyframes pulsePneumaIA { 0% { transform: scale(1); opacity: 0.7; box-shadow: 0 0 20px rgba(0, 209, 255, 0.4); } 50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 40px rgba(209, 33, 153, 0.8); } 100% { transform: scale(1); opacity: 0.7; box-shadow: 0 0 20px rgba(0, 209, 255, 0.4); } }
.esfera-pulsante-ia { animation: pulsePneumaIA 8s infinite ease-in-out !important; }