
.section-form {
    text-align: center;
    padding: 40px 20px;
  }
  
  .section-form h2 {
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: bold;
  }
  
  .section-description {
    max-width: 600px;
    margin: 15px auto;
    font-size: 1rem;
    color: #555;
  }
  .section-form p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #555;
    font-weight: bold;
  }


.form-container {
    max-width: 100%;
    margin: 30px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(236, 68, 1, 0.1);
  }
  
  .label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-weight: bold;
  }
  
  .input-field {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .btn-pesquisa {
    background-color: var(--cor-menu); 
    box-shadow: 4px 4px 8px #411a0b;
    transition: all 0.3s ease;
    font-weight: bold;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
  }
  .btn-pesquisa:hover {
    transform: translateY(-2px);
    color: var(--cor-menu);
    background-color: white;
    border: 1px solid var(--cor-menu);
  }

  .mensagem-sucesso {
    display: none; /* Mostrar dinamicamente via JavaScript após envio */
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--cor-menu);
    color: white;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
  }
  
  