html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #202322;
}

.app-pagina {
    min-height: 100vh;

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

    padding: 25px;
    box-sizing: border-box;

    background:
        linear-gradient(135deg, #171918 0%, #292d2b 100%);
}

.app-card {
    width: 100%;
    max-width: 440px;

    padding: 35px 35px 30px;

    box-sizing: border-box;

    background: #ffffff;

    border-top: 4px solid #b52b2b;
    border-radius: 10px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .30);

    text-align: center;
}

.app-logo {
    width: 180px;
    max-width: 75%;
    margin-bottom: 15px;
}

.app-card h1 {
    margin: 5px 0;

    color: #292929;

    font-size: 24px;
    font-weight: 700;
}

.app-subtitulo {
    margin: 8px 0 5px;

    color: #a62a2a;

    font-size: 14px;
    font-weight: 600;
}

.app-descricao {
    margin: 15px auto 25px;

    max-width: 340px;

    color: #707070;

    font-size: 12px;
    line-height: 1.5;
}

.app-lojas {
    display: flex;
    gap: 12px;

    justify-content: center;
}

.app-botao {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 11px 18px;

    box-sizing: border-box;

    background: #242424;

    border: 1px solid #111111;
    border-radius: 6px;

    color: #ffffff !important;
    text-decoration: none !important;

    transition:
        background-color .15s ease,
        transform .15s ease;
}

.app-botao:hover {
    background: #a72828;

    transform: translateY(-1px);
}

.app-botao span {
    color: #cccccc;
    font-size: 8px;
}

.app-botao strong {
    margin-top: 2px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 500px) {

    .app-pagina {
        padding: 15px;
    }

    .app-card {
        padding: 28px 20px;
    }

    .app-lojas {
        flex-direction: column;
    }

    .app-botao {
        align-items: center;
    }
}

/* =========================================================
   QR CODE
   ========================================================= */

.app-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 28px;

    text-align: center;
}

.app-qrcode-separador {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
    margin-bottom: 20px;

    color: #8b949b;

    font-size: 12px;
}

.app-qrcode-separador::before,
.app-qrcode-separador::after {
    content: "";

    flex: 1;

    height: 1px;

    background: #e1e6e9;
}

.app-qrcode-titulo {
    margin: 0 0 5px;

    color: #18354d;

    font-size: 16px;
    font-weight: 700;
}

.app-qrcode-texto {
    max-width: 330px;

    margin: 0 0 14px;

    color: #687781;

    font-size: 12px;
    line-height: 1.5;
}

.app-qrcode-imagem {
    display: block;

    width: 150px;
    height: 150px;

    padding: 7px;

    background: #ffffff;

    border: 1px solid #dfe5e8;
    border-radius: 9px;

    box-sizing: border-box;
}

.app-qrcode-legenda {
    margin-top: 9px;

    color: #7b878e;

    font-size: 10px;
}
