.fale-container {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.fale-box {
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.fale-box h1 {
  font-size: 36px;
  color: #003087;
  margin-bottom: 10px;
}

.fale-box p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 12px;
  border: 2px solid #003087;
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
  font-family: inherit;
}

form button {
  background-color: #003087;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #001f5f;
}

#status-mensagem {
  margin-top: 15px;
  color: green;
  font-weight: bold;
}