body{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

/* =======================
   HERO / BANNER
======================= */
.secao-fale-conosco {
  position: relative;
  background-image: url('../imag/escritorio_banner1.webp');
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.secao-fale-conosco::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 0;
}

.secao-fale-conosco h1{
  color: white;
  font-size: 44px;
  font-weight: bold;
  z-index: 1;
}

/* =======================
   CONTAINER GERAL
======================= */
.orcamento-container {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  margin: 40px auto;
  max-width: 1200px;
}

/* =======================
   LADO ESQUERDO
======================= */
.orcamento-esquerda {
  flex: 1;
  min-width: 300px;
  padding: 40px 30px;
  background-color: #f9f9f9;
}

.contato-info p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.contato-info i {
  margin-right: 8px;
  color: #0611a3;
}

.redes-sociais {
  margin: 20px 0;
}

.redes-sociais a {
  margin-right: 15px;
  font-size: 20px;
  color: #111;
  transition: color 0.3s;
}

.redes-sociais a:hover {
  color: #e0a700;
}

/* =======================
   LADO DIREITO / FORM
======================= */
.orcamento-direita {
  flex: 1;
  min-width: 300px;
  padding: 40px 30px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
}

/* INPUTS EM LINHA (DESKTOP) */
.linha-dupla {
  display: flex;
  gap: 10px;
}

/* INPUTS */
form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

/* TEXTAREA */
form textarea {
  resize: vertical;
  min-height: 120px;
}

/* BOTÃO */
form button {
  background: linear-gradient(to right, #040a64, #0599DB);
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* =======================
   WHATSAPP + REDES
======================= */
.btn-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.redes-sociais a {
  font-size: 20px;
  margin-right: 10px;
}

/* =======================
   RESPONSIVO TABLET
======================= */
@media (max-width: 992px) {
  .secao-fale-conosco h1 {
    font-size: 32px;
  }

  .orcamento-container {
    flex-direction: column;
  }
}

/* =======================
   RESPONSIVO MOBILE
======================= */
@media (max-width: 768px) {

  .secao-fale-conosco {
    height: 220px;
  }

  .secao-fale-conosco h1 {
    font-size: 24px;
  }

  /* FORMULÁRIO EM COLUNA */
  .linha-dupla {
    flex-direction: column;
  }

  .orcamento-esquerda,
  .orcamento-direita {
    padding: 25px 20px;
  }

  form button {
    width: 100%;
  }
}

/* =======================
   MOBILE PEQUENO
======================= */
@media (max-width: 480px) {
  .secao-fale-conosco h1 {
    font-size: 20px;
  }

  .orcamento-container {
    margin: 20px 10px;
  }
}