/* Estilos para o botão da Bíblia */
.sidebar-biblia {
    padding: 0 var(--space-md) var(--space-md);
    margin-top: auto;
    /* Empurra para o fundo se houver espaço */
}

.btn-biblia {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: #fff;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .btn-biblia {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-color: var(--border);
}

.btn-biblia:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.biblia-icon {
    font-size: 1.5rem;
}

.btn-biblia span:not(.biblia-icon):not(.biblia-tag) {
    font-weight: 600;
    font-size: var(--font-size-sm);
    flex: 1;
    text-align: left;
}

.biblia-tag {
    font-size: 0.65rem;
    background: var(--accent);
    color: #fff;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
}

/* ============================================
   STANDARD METHODS BIBLE PROGRESS CARD
   ============================================ */
.sidebar-bible-card {
    margin: 0 var(--space-md) var(--space-md);
    padding: var(--space-md);
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .sidebar-bible-card {
    background: linear-gradient(135deg, #0f2744 0%, #1a3a5c 100%);
}

.bible-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.bible-card-header .bible-icon {
    font-size: 1.8rem;
}

.bible-card-header h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.bible-card-header small {
    font-size: 0.65rem;
    opacity: 0.7;
}

.bible-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.bible-stat {
    text-align: center;
}

.bible-stat-value {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 700;
    line-height: 1;
}

.bible-stat-ok {
    color: #55efc4;
}

.bible-stat-warn {
    color: #fdcb6e;
}

.bible-stat-label {
    font-size: 0.6rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bible-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}

.bible-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #55efc4, #00b894);
    border-radius: 4px;
    transition: width 1s ease;
    width: 0%;
}

.bible-progress-text {
    text-align: right;
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.9;
}