@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Poppins&family=Roboto&display=swap');
body {
    font-family: 'Poppins',sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #232F3E;
    text-align: center;
}

.content{
    width: 90%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #fff;
}

.header img {
    width: 170px;
    padding: 10px;
}

.subtitle {
    font-size: 18px;
    color: #888;
    margin-left: 10px;
}

.balance {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
    justify-content: space-between; /* Makes sure there's space between the text and value */
    background-color: #6E7C88;
    padding: 10px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 4px 6px 20px 0px rgba(0, 0, 0, 0.12);
}

.balance p {
    font-size: 16px;
    margin: 0; /* Removes excess margin */
    color: #fff;
}

.value {
    display: flex;
    align-items: center; /* Vertically center the value */
}

.value p {
    font-size: 22px;
    padding: 10px 20px; /* Adds more padding for the value box */
    background-color: #3CAB59;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
    box-shadow: 4px 6px 20px 0px rgba(0, 0, 0, 0.12);
    margin: 0; /* Removes excess margin */
}


.message {
    color: #fff;
    margin: 20px 0;
}

.text-primary{
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.text-secondary{
    color: #fff;
    font-size: 1rem;
}


.popup-container {
    display: none;
    flex-direction: column;
    position: fixed; /* Fixado na tela para centralização */
    top: 50%; /* Centro vertical */
    left: 50%; /* Centro horizontal */
    transform: translate(-50%, -50%); /* Centraliza exatamente ao centro */
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    width: 70%; /* Largura responsiva */
    max-width: 400px; /* Limite de largura máxima para grandes telas */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}


.popup-text {
    color: #333;
    margin: 5px 0;
}

.popup-text.destaque {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-top: -5px;
}
.progress-bar {
    width: 30%; /* Altere este valor para simular diferentes níveis de preenchimento */
    height: 100%;
    background-color: #3EA6FF;
}

.congratulations {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    box-shadow: 4px 6px 20px 0px rgba(0, 0, 0, 0.12);
}

.content-text{
    margin-bottom: 20px;
}

.content-text img{
    width: 90%;
    box-shadow: 4px 6px 20px 0px rgba(0, 0, 0, 0.12);
}

.buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px; /* Adds space between the buttons */
}

.buttons button {padding: 12px 19px;font-size: 16px;font-weight: bold;border: none;border-radius: 10px;color: #fff;cursor: pointer;text-decoration: none;}

.correct {
    background-color: #3CAB59; /* Green button */
}

.incorrect {
    background-color: #E74C3C; /* Red button */
}


.footer {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    background-color: #232F3E;
}

.footer img{
    width: 50px;
}

.footer a {
    color: #007BFF;
    text-decoration: none;
    font-size: 12px;
    margin: 5px 0;
    display: block;
}

.footer p {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}
