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

/* BODY */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* HEADER */
.header {
    background-color: #da0029;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #da0029;
}

.header img {
    width: 140px;
    margin: 15px 0;
}

/* TÍTULO */
.titllee {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 20px 10px;
}

.titllee h1 {
    font-size: 22px;
    line-height: 1.3;
}

/* CONTAINER */
.container {
    max-width: 420px;
    margin: 0 auto;
    padding: 15px;
    text-align: center;
}

/* CONTENT */
.content {
    background-color: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

/* TEXTOS */
p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

/* IMAGENS (SEM REMOVER WIDTH DO HTML) */
img {
    max-width: 100%;
    height: auto;
}

/* BOTÕES */
.btn {
    width: 100%;
    background-color: #da0029;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 20px;
    cursor: pointer;
}

/* BOTÃO RESGATE */
.btn-resgate {
    text-decoration: none;
    display: inline-block;
}

/* OPÇÕES */
.options {
    margin-top: 20px;
}

.options button {
    display: block;
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    cursor: pointer;
}

/* CORRETAS / INCORRETAS (JS) */
.options button.correct-selected {
    background-color: #2ecc71;
    color: #fff;
    opacity: 0.8;
}

.options button.incorrect-selected {
    background-color: #e74c3c;
    color: #fff;
    opacity: 0.6;
}

/* DESCONTOS */
.valor-total,
.valor-desconto {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.valor-total p {
    color: green;
    font-weight: 700;
    font-size: 14px;
}

.valor-desconto p {
    color: red;
    font-weight: 700;
}

/* TELAS */
.quiz-screen {
    width: 100%;
}

/* ESCONDER */
.hidden {
    display: none !important;
}

/* POPUP SELECIONE RESPOSTA */
.selecione-resposta {
    background-color: #dfdfdf;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 320px;
    z-index: 9999;
}

.selecione-resposta-p {
    font-weight: 800;
    margin-bottom: 15px;
}

/* POPUPS DE ERRO */
.popUp-dica {
    background-color: #dfdfdf;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 320px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TEXTO ERRO */
.dica-errado {
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

/* OPACITY FUNDO */
.opacity {
    opacity: 0.3;
}

/* FOOTER */
.footer {
    bottom: 0;
    left: 0;
    width: 100%;

    background-color: #da0029;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 50px;
    padding: 0 10px;

    font-size: 12px;
    font-weight: 500;
    color: #e0e0e0;

    text-align: center;
    z-index: 998;
}


/* EVITA ZOOM NO IOS */
button {
    font-size: 16px;
}
