.retreat-quiz-wrapper {
    max-width: 100%;
    margin: 35px auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.05);*/
    font-family: 'Karla', sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 50px;
}

/* Tipografía */
.quiz-title { font-size: 28px; color: #2C3E50; margin-bottom: 15px; }
.article-body h2.quiz-title{ margin-top: 0; }
.quiz-subtitle { font-size: 16px; color: #7F8C8D; margin-bottom: 30px; line-height: 1.5; }
.quiz-question { font-size: 22px; color: #2C3E50; margin-bottom: 25px; }
.quiz-counter { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #BDC3C7; margin-bottom: 10px; }

/* Barra de progreso */
.quiz-progress-container { width: 100%; background: #F1F2F6; height: 6px; border-radius: 3px; margin-bottom: 30px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: #757437; width: 0%; transition: width 0.4s ease; }

/* Botones y Opciones */
.quiz-options-list { display: flex; flex-direction: column; gap: 12px; }
.quiz-option-btn {
    width: 100%;
    background: #F8F9FA;
    border: 2px solid #E9ECEF;
    padding: 18px 20px;
    border-radius: 8px;
    font-size: 16px;
    color: #2C3E50;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}
.quiz-option-btn:hover, .quiz-option-btn:active {
    background: #fff;
    border-color: #757437;
    transform: translateY(-2px);
}

.quiz-btn.primary-btn {
    background: #cd7c26;
    border: 1px solid #cd7c26;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}
.quiz-btn.primary-btn:hover { background: #fff;color:#cd7c26;border:1px solid #cd7c26 }

/* Formulario Lead */
.form-row { text-align: left; margin-bottom: 15px; }
.form-row label { display: block; font-size: 14px; color: #34495E; margin-bottom: 5px; font-weight: bold; }
.form-row input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #BDC3C7;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}
.form-row input:focus { outline: none; border-color: #757437; }

/* Animaciones */
.quiz-step { animation: fadeIn 0.4s ease-in-out; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Spinner */
.spinner {
    border: 4px solid #f3f3f3; border-top: 4px solid #757437;
    border-radius: 50%; width: 40px; height: 40px;
    animation: spin 1s linear infinite; margin: 0 auto 15px auto;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }