.fale_conosco {
  /* position: relative; */
  display: flex;
  /* justify-content: end; */
  /* align-items: center; */
  /* height: 100vh; */
  font-family: "Montserrat", serif;
}

.contact-form {
  margin: 0 20px;
  padding: 20px;
  /* position: absolute; */
  /* right: 90px; */
  background-color: white;
  /* padding: 38px 142px 97px; */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 754px;
}

.contact-form h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.contact-form p {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;

}

textarea {
  resize: none !important;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #ff4d4d;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #e60000;
}

@media (min-width: 640px) {
  .fale_conosco {
    background: url(../images/bg_fale_conosco.png) no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: end;
    align-items: center;
  }

  .contact-form {
    margin: 40px;
    padding: 40px 80px;
    max-width: 600px;
  }
}

@media (min-width: 1440px) {
  .fale_conosco {
    height: 100vh;
  }

  .contact-form {
    max-width: 800px;
    padding: 60px 80px;
  }
}