.quiz-wp-container {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.quiz-wp-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* Barra de progresso */
.quiz-wp-progress { margin: 10px auto 25px; max-width: 600px; padding: 0 10px; }
.quiz-wp-progress-bar { height: 6px; background: rgba(0,0,0,.08); border-radius: 10px; overflow: hidden; }
.quiz-wp-progress-fill { display: block; height: 100%; width: 0; transition: width .35s ease; border-radius: 10px; }

.quiz-wp-logo {
    margin-bottom: 30px;
}

.quiz-wp-logo img {
    max-width: 200px;
    height: auto;
}

.quiz-wp-header {
    margin-bottom: 40px;
}

.quiz-wp-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.quiz-wp-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.quiz-wp-question {
    margin-bottom: 40px;
}

.quiz-wp-question h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #626262;
    margin: 0;
    line-height: 1.3;
}

.quiz-wp-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.quiz-wp-option {
    padding: 0 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quiz-wp-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.quiz-wp-option:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsivo */
@media (max-width: 768px) {
    .quiz-wp-container {
        min-height: 100vh;
        padding: 30px 15px 15px;
    }
    
    .quiz-wp-title {
        font-size: 2rem;
    }
    
    .quiz-wp-subtitle {
        font-size: 1.1rem;
    }
    
    .quiz-wp-question h2 {
        font-size: 1.5rem;
    }
    
    .quiz-wp-option {
        padding: 0 25px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .quiz-wp-title {
        font-size: 1.8rem;
    }
    
    .quiz-wp-subtitle {
        font-size: 1rem;
    }
    
    .quiz-wp-question h2 {
        font-size: 1.3rem;
    }
    
    .quiz-wp-option {
        padding: 0 20px;
        height: 50px;
        font-size: 0.95rem;
    }
} 