body{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.secao-fale-conosco {
  position: relative;
  background-image: url('../imag/quem-somos.webp'); /* Substitua pelo caminho da sua imagem */
  background-size: cover;
  background-position: center;
  height: 290px; /* Altura ajustável conforme necessidade */
  display: flex;
  align-items: center;
  justify-content: center;

}

.secao-fale-conosco .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(56, 2, 2, 0.5); /* Cor escura com transparência */
  display: flex;
  align-items: center;
  justify-content: center;
}

.secao-fale-conosco h2{
  color: white;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 1;
  font-family: 'Barlow', sans-serif;
}

/* Responsivo */
@media (max-width: 768px) {
  .secao-fale-conosco h1 {
    font-size: 24px;
  }
}

.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;
    padding: 40px 30px;
    background-color: #f9f9f9;
  }
  
  .orcamento-esquerda h2 {
    color: #111;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .orcamento-esquerda h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .contato-info p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
  }
  
  .contato-info i {
    margin-right: 8px;
    color: #8B0000;
  }
  
  .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;
  }
  
  .btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
  }
  
  .btn-whatsapp i {
    margin-right: 8px;
  }
  
  .btn-whatsapp:hover {
    background-color: #1ebe57;
  }
  
  /* Lado direito */
  .orcamento-direita {
    flex: 1;
    padding: 40px 30px;
    background-color: #fff;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  .linha-dupla {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .linha-dupla input {
    flex: 1;
  }
  
  form input,
  form select,
  form textarea {
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
  }
  
  form textarea {
    resize: vertical;
  }
  
  form button {
    background-color: #8B0000;
    color: #fdf6f6;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  form button:hover {
    background-color: #c89c00;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .orcamento-container {
      flex-direction: column;
    }
  
    .linha-dupla {
      flex-direction: column;
    }
  }
  .map-container {
    margin: 20px 0; /* Espaçamento acima e abaixo do mapa */
    display: flex;
    justify-content: center; /* Centraliza o mapa */
}

.map-container img {
    width: 100%; /* Largura total para responsividade */
    height: 1000px; /* Altura automática para manter a proporção */
    max-width: 1200px; /* Largura máxima do mapa */
    border: none; /* Sem borda */
    border-radius: 5px; /* Bordas arredondadas, opcional */
}
  