/* Popup Exercícios - Bunny CDN */

.fcg-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fcg-popup-overlay.active {
    display: flex;
}

.fcg-popup-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

/* X GRANDE E PRETO */
.fcg-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    background: #000;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
    padding: 0;
}

.fcg-popup-close:hover {
    background: #fff;
    color: #000;
    transform: scale(1.15) rotate(90deg);
}

.fcg-popup-title {
    padding: 20px 80px 20px 30px;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.fcg-popup-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.fcg-popup-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Observações discretas */
.fcg-popup-observations {
    padding: 20px 30px;
    background: #2a2a2a;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.7;
    border-top: 2px solid #667eea;
}

.fcg-popup-observations h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
}

/* Botão exercício */
.fcg-exercise-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.fcg-exercise-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Responsivo */
@media (max-width: 768px) {
    .fcg-popup-container {
        border-radius: 0;
    }
    
    .fcg-popup-close {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .fcg-popup-title {
        font-size: 20px;
        padding: 15px 70px 15px 20px;
    }
}
