/* Quiz Styles — Branco, Dourado, Preto */

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    min-height: 100vh;
    color: #1A1A1A;
}

/* Progress */
.progress-section {
    background: #F9F9F7;
    padding: 20px;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 100;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    color: #C9A227;
    text-transform: uppercase;
}

.progress-pct {
    font-size: 14px;
    font-weight: 700;
    color: #C9A227;
}

.progress-bar {
    height: 8px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C9A227 0%, #E5C158 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.step-info {
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    color: #6B7280;
}

/* Questions */
.question {
    padding: 40px 20px;
    display: none;
    animation: fadeIn 0.4s ease;
}

.question.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.question h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #1A1A1A;
    line-height: 1.4;
}

/* Options */
.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F9F9F7;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    color: #1A1A1A;
}

.option:hover {
    border-color: #C9A227;
    background: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.option.selected {
    border-color: #C9A227;
    background: rgba(201, 162, 39, 0.1);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

/* Result */
#result {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

#result-content {
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #C9A227 0%, #A88420 100%);
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(201, 162, 39, 0); }
}

/* Mobile */
@media (max-width: 480px) {
    .question h2 { font-size: 1.3rem; }
    .option { font-size: 0.95rem; padding: 14px; }
}