/* * Significa TUDO - Resetar os estilos */

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Exo;
    background-color: #f2f5f9;
    color: #22304a;
    max-width: 520px;
    margin: 0 auto;
    padding: 25px;

}

h1 {
    text-align: center;
    font-weight: 800;
}

.Subtitle {
    color: #6b7a94;
    text-align: center;
    font-weight: 600;
    margin: 15px;
}

.caixa-total {
    background-color: #0f766e;
    color: #ffff;
    padding: 10px;
    text-align: center;
    border-radius: 15px;
}

.total-gasto {
    font-size: 15px;
    font-weight: 600;
    color: aquamarine;
    padding: 5px;
}

.valor {
    font-weight: bold;
    font-size: 40px;

}

.comprovantes {
    font-size: 12px;
    padding: 5px;
    color: aquamarine;
}

label {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    font-weight: bold;
    border: 3px dashed #c3cfe0;
    display: block;
    margin: 10px;
    cursor: pointer;

}

label:hover {
    background-color: #dafcf9;
}

input {
    display: none;
}

.comprovante {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
    width: 18;
}

.itens {
    white-space: pre-line;
    font-size: 15px;
    line-height: 1.8;
    color: #4a5b78;
}

.itens strong {
    font-size: 17px;
    color: #22304a;
}

.total-nota {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed #d6dee9;
    padding-top: 12px;
    margin-top: 12px;
    font-size: 20px;
    font-weight: bold;
    color: #6b7a94;
}

.total-nota strong {
    font-size: 20px;
    color: #0f766e;
}