/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 40px 20px;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
}

/* Logo (opcional) */
.logo {
    display: block;
    max-width: 120px;
    margin: 0 auto 30px;
}

/* Botão */
button {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

button:hover {
    background: #ffec73;
}

/* Tela de boas-vindas */
#welcomeScreen h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 12px;
}

#welcomeScreen p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Esconde elementos */
.hidden {
    display: none;
}

/* Barra de progresso superior */
.progress-wrapper {
    margin-bottom: 16px;
}

.progress-bar {
    width: 100%;
    height: 16px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #FFD700, #FFC700);
    color: #000;
    font-size: 12px;
    font-weight: bold;
    text-align: right;
    padding-right: 5px;
    border-radius: 20px 0 0 20px;
    transition: width 0.4s ease;
}

/* Caixa de desconto */
.discount-box {
    border: 2px solid #FFD700;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    margin-bottom: 25px;
    background: #FAF8F1;
    font-size: 14px;
}

.discount-box span {
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

#discountValue {
    background: #000;
    color: #FFD700;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
}

/* Pergunta */
#questionContainer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
}

/* Respostas */
.answers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.answer:hover {
    background: #FFD700;
    border-color: #FFD700;
    color: #000;
    font-weight: bold;
}

/* Emoji alinhado */
.answer::before {
    content: '';
    display: inline-block;
    margin-right: 12px;
}

.answerFoto {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}