/* ==========================================
   CARD DE CAPÍTULO
   ========================================== */

.capitulo-card-estilizado {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.capitulo-card-estilizado:hover {
    border-color: #00ffcc;
    background: #111;
    transform: translateX(5px);
}

.cap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cap-nome {
    font-weight: bold;
    color: #fff;
    font-size: 1rem;
}

.cap-stats {
    text-align: right;
}

.cap-stats span:first-child {
    font-size: 0.85rem;
    color: #00ffcc;
    font-weight: bold;
}

.cap-stats span:last-child {
    font-size: 0.65rem;
    color: #888;
}

.cap-progresso-bar {
    width: 100%;
    height: 6px;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

.cap-progresso-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffcc, #00aa88);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 4px;
}