/* =========================================
   INTERFACES DE MISSÃO E DIÁLOGO RPG
   ========================================= */

/* Botão Flutuante do Diário (Pergaminho) */
#btn-quest-log {
    position: fixed; bottom: 85px; right: 15px; 
    width: 45px; height: 45px; 
    background: rgba(15, 23, 42, 0.9); 
    border: 2px solid #ca8a04; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    cursor: pointer; z-index: 10; 
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

#quest-badge {
    position: absolute; top: -2px; right: -2px; 
    background: #ef4444; width: 12px; height: 12px; 
    border-radius: 50%; border: 2px solid #fff;
}

/* Modal do Diário de Aventuras */
#modal-diario-quests {
    display: none; position: fixed; 
    top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.8); 
    justify-content: center; align-items: center; 
    backdrop-filter: blur(4px); z-index: 10003;
}

.diario-container {
    max-width: 320px; width: 90%; 
    background: linear-gradient(145deg, #0f172a, #1e293b); 
    border: 2px solid #ca8a04; border-radius: 16px; 
    padding: 20px; position: relative;
}

/* Caixa de Diálogo RPG (A que sai do NPC) */
#rpg-dialogo-container {
    position: fixed; bottom: 20px; left: 50%; 
    transform: translateX(-50%);
    width: 90%; max-width: 600px; 
    z-index: 10000; display: none; cursor: pointer;
}

#rpg-dialogo-box {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(10, 15, 25, 0.95));
    border: 3px solid #ca8a04; border-radius: 12px; 
    padding: 25px 15px 15px 15px;
    box-shadow: 0 5px 25px #000;
    color: #ecf0f1; position: relative;
}

#rpg-dialogo-nome {
    position: absolute; top: -16px; left: 20px;
    background: linear-gradient(180deg, #facc15 0%, #ca8a04 100%);
    color: #000; padding: 4px 15px; border-radius: 6px;
    font-family: 'Cinzel', serif; font-weight: bold;
    border: 2px solid #fff;
}

#rpg-dialogo-texto { font-size: 1em; line-height: 1.5; min-height: 50px; }

#rpg-dialogo-seta {
    position: absolute; bottom: 8px; right: 15px;
    color: #facc15; animation: piscar_seta 1s infinite;
}

@keyframes piscar_seta { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }