body {
    font-family: 'Bahnschrift', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

h1 {
    font-size: 50px;
    text-align: center;
    margin: 5px 0 10px 0; /* REDUZI AQUI */
    color: #003366;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 10px 30px 20px 30px; /* MENOS ESPAÇO ACIMA */
    height: calc(100vh - 160px); /* ajusta a altura útil */
    box-sizing: border-box;
}


.bloco {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    font-size: 36px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

p {
    margin: 15px 0;
    font-size: 36px;
}

.alerta {
    color: #b30000;
    font-weight: bold;
    font-size: 40px;
    margin-top: 30px;
}

footer {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    text-align: center;
}

button.botao-liberar {
    background-color: #d9534f;
    color: white;
    font-size: 48px;
    padding: 30px 50px;
    border: none;
    border-radius: 16px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transition: background-color 0.2s ease-in-out;
}

button.botao-liberar:hover {
    background-color: #c9302c;
}

