@charset "UTF-8";

.sec-orcamento {
  margin-top: 80px;
  padding: 5%;
}

.orcamento-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  align-items: center;
}

.orcamento-texto {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
}

.orcamento-texto h1 {
  font-size: 1.9em;
  font-weight: bold;
}

@media (min-width: 1024px) {
  .orcamento-texto {
    align-items: flex-start;
    text-align: left;
  }

  .orcamento-texto h1 {
    font-size: 2.5em;
  }

  .orcamento-texto h2 {
    font-size: 1.5em;
    max-width: 500px;
  }
}

.orcamento-texto h2 {
  font-size: 1.2em;
  font-weight: bold;
  max-width: 350px;
}

.destaque {
  color: #92521D;
  font-weight: 900;
}

.orcamento-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto 0;
  align-items: center;
}

.form-group {
  display: flex;
  width: 100%;
  justify-items: center;
  flex-direction: column;
  gap: 0.25rem;
}

input, select {
  height: 44px;
  width: 338px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0 1rem;
  outline: none;
  font-weight: bold;
}

@media (min-width: 1024px) {
  input, select {
    width: 30vw;
  }

  .orcamento-container{
    gap: 350px;
  }
}

button {
  background-color: black;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
}

button p {
  font-size: 1.1em;
  margin: 0;
}

textarea {
  height: 120px;
  width: 338px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0 1rem;
  outline: none;
  font-weight: bold;
  resize: none; /* impede redimensionamento manual se não quiser permitir */
  padding: 0.75rem 1rem;
}

@media (min-width: 1024px) {
  textarea {
    width: 30vw;
  }
}