body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background: #f4ebeb;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 100%;
}

.logo {
    max-width: 100px;
    margin-bottom: 15px;
}

h1 {
    color: #333;
    font-size: 1.5em;
}

p {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
}

button {
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1ebe5b;
}

#mensagem-agradecimento {
    color: #4CAF50;
    font-size: 1em;
    margin-top: 20px;
}

/* Estilo do modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #f0ebeb;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
    width: 90%;
}

.modal-content p {
    color: #333;
    font-size: 1em;
    margin-bottom: 20px;
}

/* Estilo dos botões no modal */
.modal-content button {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.botao-cancelar {
    background-color: #f44336; /* Vermelho para o botão "Tentar mais tarde" */
    color: #fff;
}

.botao-cancelar:hover {
    background-color: #d32f2f;
}
