/* Definições de Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #ffffff;
    width: 100%;
    max-width: 900px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    color: #cc0000; /* Cor vermelha SENAI */
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #cc0000; /* Borda vermelha SENAI */
    border-radius: 4px;
    outline: none;
    transition: all 0.3s;
}

input[type="email"]:focus {
    border-color: #900000; /* Cor mais escura ao focar */
    box-shadow: 0 0 5px #900000;
}

button {
    background-color: #cc0000; /* Cor vermelha SENAI */
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #900000; /* Tom mais escuro no hover */
}

#box-model {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #cc0000; /* Vermelho SENAI */
    color: #ffffff;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: none; /* Esconde o box por padrão */
    z-index: 1000;
    text-align: center;
}

#box-model button {
    background-color: #ffffff;
    color: #cc0000;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

#box-model button:hover {
    background-color: #f4f4f4;
}
