.contato {
  width: 100vw;
  height: 100vh;
  background-color: #e6e6e6;

  & p {
    margin-bottom: 5%;
  }
}

.form-contato {
  background-color: #fff;
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  font-size: 1rem;
  color: #333;
  transition: border 0.3s;
}

.form-contato input:focus,
.form-contato textarea:focus {
  border-color: #aaa;
  outline: none;
}

.form-contato textarea {
  resize: vertical;
  min-height: 100px;
}

.form-contato button {
  padding: 0.75rem;
  background-color: rgb(148, 0, 234);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-contato button:hover {
  background-color: #333;
}