/* public/css/campanha.css?v=1767909414154 */

.campaign-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.stage-card {
    background-color: var(--cor-item-lista);
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
}

.stage-card.unlocked {
    border-left: 5px solid var(--cor-titulo-dourado);
}

.stage-card.locked {
    opacity: 0.6;
    filter: grayscale(100%);
    pointer-events: none; /* Não clicável */
    border-left: 5px solid #555;
}

.stage-card.completed {
    border-left: 5px solid var(--cor-botao-sucesso);
}

.stage-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.3);
}

.stage-info h3 {
    margin: 0;
    font-size: 1.1em;
    color: #fff;
}

.stage-info span {
    font-size: 0.8em;
    color: var(--cor-texto-secundario);
}

.stage-body {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stage-rewards {
    font-size: 0.9em;
    color: #ccc;
}

.btn-fight {
    padding: 10px 20px;
    font-size: 1em;
    min-width: 100px;
}

/* Estilos do Modal de Batalha */
.battle-log-box {
    background: #111;
    border: 1px solid #333;
    border-radius: 5px;
    height: 200px;
    overflow-y: auto;
    padding: 10px;
    font-size: 0.9em;
    color: #ddd;
    margin-bottom: 15px;
    font-family: monospace;
}

.rewards-box {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.rewards-box h4 { margin: 0 0 5px 0; color: #28a745; }
