.entre-em-contato {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 850px;
}

.cadastro {
  width: 31rem;
  max-width: 31rem;
  height: auto;
  margin: 25px auto;
  padding: 25px 40px;
  border: 1px solid var(--cor-cinza);
  border-radius: 12px;
  background-color: var(--cor-fundo-lista);
  opacity: 0.9;
  font-family: 'Roboto', sans-serif;
}

.texto-cadastro {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cadastro label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.cadastro input,
.cadastro textarea {
  width: 100%;
  padding: 6px;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  resize: none;
}

.cadastro button {
  background-color: var(--cor-laranja-hover);
  color: var(--cor-branca);
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.cadastro button:hover {
  background-color: #b14e0c;
}
