/* Estilo principal da section */
#fale-conosco {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
  /*     border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07); */
  margin: 50px auto;
}

#fale-conosco h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 600;

  /* 
        text-align: center;
    font-size: 40px;
    display: block;
    color: #000000;
    font-weight: 600;
    text-transform: normal;
    line-height: 1.4;
    */
}

/* Estilo do grupo de formulário */
#fale-conosco-form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

#fale-conosco-form label {
  font-size: 16px;
  margin-bottom: 5px;
  color: #017b62;
  display: flex;
  align-items: center;
}

#fale-conosco-form label i {
  margin-right: 8px;
}

#fale-conosco-form input,
#fale-conosco-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

#fale-conosco-form textarea {
  resize: vertical;
  min-height: 100px;
}

#fale-conosco-form input:focus,
#fale-conosco-form textarea:focus {
  border-color: #017b62;
}

/* Área de upload */
#fale-conosco-form .upload-area {
  border: 2px dashed #017b62;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  background-color: #f8f8f8;
  margin-top: 10px;
  cursor: pointer;
}

#fale-conosco-form .upload-area p {
  margin: 5px 0;
  color: #888;
}

#fale-conosco-form .upload-area div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
#fale-conosco-form .upload-area div button {
  border: none;
  background-color: #017b62;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
}

#fale-conosco-form .upload-area div button:hover {
  background-color: #02745d;
}

/* Botão de envio */
#fale-conosco-form .submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #017b62;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
}

#fale-conosco-form .submit-btn:hover {
  background-color: #02745d;
}

/* Estilo do Recaptcha */
#fale-conosco-form .recaptcha {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* Responsividade */
@media (max-width: 600px) {
  #fale-conosco-form {
    padding: 10px;
  }
}

#fale-conosco #loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  z-index: 1000;
}

#fale-conosco .error-message {
  color: red;
  font-size: 0.9em;
  display: none; /* Por padrão, ocultar mensagens de erro */
}

#fale-conosco #file-chosen {
  margin-left: 10px;
  font-size: 14px;
  color: #555;
}

#fale-conosco .radio-group {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-top: 5px;
}

#fale-conosco .radio-group label {
  display: flex;
  color: #212529;
  width: auto;
  gap: 5px;
}

#fale-conosco .radio-group label input {
    display: flex;
    width: auto;
}