/* ========== RESET BÁSICO ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #4CAF50; /* fundo verde */
    color: #333;
}

/* ========== CARTÕES (MENU, FORMULÁRIOS) ========== */
.menu-card, .form-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    margin: 80px auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* ========== TÍTULOS ========== */
.menu-card h1,
.form-card h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #222;
}

/* ========== BOTÕES DO MENU EM GRID ========== */
.menu-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.menu-btn {
    display: block;
    padding: 14px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #388e3c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

.menu-btn:hover {
    background-color: #2e7d32;
    transform: scale(1.03);
}

/* ========== FORMULÁRIOS ========== */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

label {
    font-weight: bold;
    text-align: left;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="datetime-local"],
textarea,
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========== BOTÃO DE ENVIO DE FORMULÁRIOS ========== */
.submit-btn {
    padding: 14px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #388e3c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #2e7d32;
    transform: scale(1.03);
}

/* ========== FOOTER ========== */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: white;
}
