/*
Theme Name: Quiz Pressell Theme
Theme URI: https://topguiadecompras.online/
Author: Seu Nome
Author URI: https://topguiadecompras.online/
Description: Tema minimalista para página de quiz/pressell
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: quiz-pressell
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #ffffff;
    color: #262626;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 42rem;
    animation: fadeIn 0.5s ease-out;
}

.progress-container {
    width: 100%;
    margin-bottom: 2rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #737373;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background-color: #f5f5f5;
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 33%;
    background-color: hsl(168, 100%, 39%);
    transition: width 0.3s ease;
}

.quiz-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    padding: 3rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #262626;
}

.subtitle {
    color: #737373;
    text-align: center;
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 1.5rem;
}

.buttons-container {
    display: grid;
    gap: 1rem;
}

.btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: hsl(168, 100%, 39%);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: hsl(168, 100%, 35%);
    transform: scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(0, 200, 150, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #262626;
    border: 2px solid #e5e5e5;
}

.btn-secondary:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: hsl(168, 100%, 39%, 0.5);
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer {
    font-size: 0.875rem;
    color: #737373;
    text-align: center;
    margin-top: 2rem;
    max-width: 28rem;
}

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

@media (max-width: 640px) {
    .quiz-card {
        padding: 2rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .btn {
        padding: 1.25rem;
        font-size: 1rem;
    }
}
