/* Quiz Interactivo - Que abeja soy? */



#quizApp {
    padding: 40px 0;
}

.quiz-container {
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container img {
    max-width: 200px;
    height: auto;
}

.quiz-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;

}

.quiz-subtitle {
    /*text-align: center;*/
    margin-bottom: 30px;
}



.quiz-container .form-control:focus {
    background: rgba(60, 60, 60, 0.9);
    border-color: #88b04b;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(136, 176, 75, 0.25);
}

.quiz-container .form-control::placeholder {
    color: #999;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.option-button {
    background: rgba(60, 60, 60, 0.8);
    border: 2px solid #555;
    border-radius: 12px;
    padding: 20px 25px;
    margin: 15px 0;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.option-button:hover {
    background: rgba(80, 80, 80, 0.9);
    border-color: #0071b8;
    transform: translateX(10px);
}

.option-button.selected {
    background: rgb(0 113 184);
    border-color: #0071b8;
}

.option-radio {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-right: 15px;
    accent-color: #0071b8;
}

.btn-primary-custom {
    background: rgb(0 113 184 / var(--tw-bg-opacity, 1));
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s
    ease;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.btn-primary-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px #0071b8;
}

.btn-primary-custom:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary-custom {
    background: rgba(80, 80, 80, 0.8);
    border: 2px solid #666;
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-secondary-custom:hover {
    background: rgba(100, 100, 100, 0.9);
    border-color: #888;
}

.progress-bar-custom {
    background: rgba(60, 60, 60, 0.5);
    height: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #0071b8 0%, #0071b8 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 0.4s ease;
}

.question-counter {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #0071b8;
    font-weight: bold;
}

.alert-custom {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #ff6b6b;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
}

.success-screen {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 5rem;
    color: #0071b8;
    margin-bottom: 20px;
}

.failure-icon {
    font-size: 5rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.score-display {
    font-size: 3rem;
    font-weight: bold;
    color: #0071b8;
    margin: 20px 0;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .quiz-container {
        padding: 20px;
    }

    .quiz-title {
        font-size: 1.8rem;
    }

    .quiz-subtitle {
        font-size: 1.5rem;
    }

    .button-group {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
    }
}

.btn:hover {
    color: #ffffff;
    text-decoration: none;
}
.quiz-container .form-control:focus {
    background: rgba(60, 60, 60, 0.9);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem #007bff38 !important;
}