  
            
/* ====================== ABA BENEFÍCIOS - VERSÃO PREMIUM vs FREE ====================== */
#benefits {
    padding: 35px 25px;
    border-radius: 18px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.premium-badge {
    text-align: center;
    margin-bottom: 25px;
}

.premium-badge span {
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
}

.premium-badge .premium {
    background: linear-gradient(45deg, #ffd700, #ffb800);
    color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}

.premium-badge .free {
    background: #e2e8f0;
    color: #64748b;
}

.benefits-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.benefits-list li {
    counter-increment: item;
    padding: 18px 20px 18px 80px;
    margin-bottom: 16px;
    background: white;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    font-size: 17px;
    line-height: 1.6;
}

.benefits-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.benefits-list li::before {
    content: counter(item);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #7c3aed;
    color: white;
    font-weight: 800;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ícones Check/Cross no final */
.check, .cross {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: bold;
    margin: 15px;
}

.check { color: #10b981; }
.cross { color: #ef4444; }

/* Versão FREE - risca os itens bloqueados */
.benefits-list.free li:nth-child(n+4) .benefit-text {
    color: #94a3b8;
    text-decoration: line-through;
    font-style: italic;
}

/* Call to action para upgrade */
.upgrade-cta {
    text-align: center;
    margin-top: 35px;
    padding: 25px;
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    border-radius: 16px;
    color: white;
}

.upgrade-cta p {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.btn-upgrade {
    background: white;
    color: #7c3aed;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: 0 8px 25px rgba(124,58,237,0.4);
    transition: all 0.3s;
}

.btn-upgrade:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(124,58,237,0.5);
}
     .cifra-card {
        background-color: #f8f9fa;
        border-radius: 10px;
        padding: 20px;
        margin: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: transform 0.3s ease;
    }
    .cifra-card:hover {
        transform: translateY(-5px);
    }
    .cifra-info {
        flex-grow: 1;
    }
    .cifra-title {
        font-size: 24px;
        color: #2c3e50;
        margin: 0 0 5px 0;
    }
    .cifra-artist {
        color: #7f8c8d;
        font-size: 18px;
        margin: 0;
    }
    .favorite-count {
        display: inline-block;
        background-color: #3498db;
        color: white;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        margin-left: 10px;
        font-weight: bold;
    }
    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }
    .modal-content {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 16px;
        width: 90%;
        max-width: 800px;
        max-height: 80vh;
        overflow-y: auto;
        padding: 30px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        animation: slideIn 0.3s ease-out;
    }
    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    .modal-header h2 {
        color: #2c3e50;
        font-size: 28px;
        font-weight: 700;
    }
    .close-btn {
        background: none;
        border: none;
        font-size: 24px;
        color: #7f8c8d;
        cursor: pointer;
        transition: color 0.3s ease;
    }
    .close-btn:hover {
        color: #e74c3c;
    }
    .favorite-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .favorite-item {
        background-color: #f1f3f5;
        border-radius: 10px;
        padding: 15px;
        transition: background-color 0.3s ease;
    }
    .favorite-item.expanded {
        background-color: #e0e6ed;
    }
    .favorite-item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    .favorite-item-info {
        flex-grow: 1;
    }
    .favorite-item-title {
        font-size: 20px;
        color: #2c3e50;
        font-weight: 600;
    }
    .favorite-item-artist {
        font-size: 16px;
        color: #7f8c8d;
    }
    .expand-icon {
        transition: transform 0.3s ease;
        font-size: 20px;
    }
    .expanded .expand-icon {
        transform: rotate(180deg);
    }
    .favorite-item-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    .favorite-item.expanded .favorite-item-content {
        max-height: 500px;
    }
    .chords-content {
        margin-top: 15px;
        padding: 15px;
        background-color: white;
        border-radius: 8px;
        white-space: pre-line;
        font-family: monospace;
        line-height: 1.5;
    }
   
    .action-buttons {
    position: relative;
    z-index: 10; /* Acima do conteúdo, mas abaixo de modais */
}
@media (max-width: 768px) {
    .chords-section iframe {
        float: none;
        max-width: 100%;
        margin: 0 auto 1rem;
        display: block;
    }
}
.sidebar-tools {
    position: relative;
    z-index: 10; /* Acima do conteúdo, mas abaixo de modais */
}
.view-mode-buttons {
    position: relative;
    z-index: 10; /* Acima do conteúdo, mas abaixo de modais */
}.sidebar {
    position: relative;
    z-index: 15; /* Acima do conteúdo principal, abaixo de modais */
}
    .action-buttons {
        display: flex;
        gap: 10px;
        margin-top: 15px;
        justify-content: flex-end;
    }
    .view-full-btn, .remove-btn {
        padding: 8px 16px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 14px;
        transition: background-color 0.3s ease;
        border: none;
    }
    .view-full-btn {
        background-color: #3498db;
        color: white;
    }
    .view-full-btn:hover {
        background-color: #2980b9;
    }
    .remove-btn {
        background-color: #e74c3c;
        color: white;
    }
    .remove-btn:hover {
        background-color: #c0392b;
    }
    @keyframes slideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }

	}