/* Contador de pontos */
.adf-score-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #3f51b5;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Animação de pontos XP */
.adf-xp-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 24px;
    opacity: 0;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.adf-xp-animation-show {
    opacity: 1;
    transform: translate(-50%, -80px);
}

.adf-xp-animation-hide {
    opacity: 0;
    transform: translate(-50%, -120px);
}

/* Resumo do exercício */
.adf-exercise-summary {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.adf-summary-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 30px;
    border-radius: 30px;
}

.adf-summary-header.adf-excellent {
    background-color: #4CAF50;
    color: white;
}

.adf-summary-header.adf-good {
    background-color: #2196F3;
    color: white;
}

.adf-summary-header.adf-keep-trying {
    background-color: #FF9800;
    color: white;
}

.adf-summary-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.adf-score-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.adf-score-value {
    font-size: 48px;
    font-weight: 700;
    color: #3f51b5;
}

.adf-score-label {
    font-size: 16px;
    color: #757575;
}