.elementor-183 .elementor-element.elementor-element-49ea451{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-183 .elementor-element.elementor-element-49ea451:not(.elementor-motion-effects-element-type-background), .elementor-183 .elementor-element.elementor-element-49ea451 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-183 .elementor-element.elementor-element-a4cb333{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-f994812 *//* Estilo geral do formulário */
form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: auto;
}

/* Estilo dos labels */
form label {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

/* Estilo dos inputs */
form input,
form select {
  width: 100%;
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  color: #333;
  position: relative;
}

/* Placeholder */
form input::placeholder,
form select::placeholder {
  color: #aaa;
}

/* Ajuste para o select */
form select {
  appearance: none;
  background-color: #fff;
  cursor: pointer;
  padding-right: 40px; /* Espaço para a seta */
}

/* Seta no campo select */
form select {
  background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 5'%3E%3Cpath fill='%23333' d='M0 0l5 5 5-5H0z'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 12px;
}

/* Estilo do botão de envio */
form input[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f26722;
  color: #000; /* Texto preto */
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  margin-top: -20px; /* Adjust the margin-top value to move the button closer */
}

/* Efeito hover no botão */

form input[type="submit"]:hover {
  background-color: #d4561d;
  color: #fff; /* Texto branco */
}

/* Adiciona uma flecha no botão */
form input[type="submit"]::after {
  content: "→"; /* Flecha para frente */
  font-size: 16px;
  color: inherit; /* Cor do texto do botão */
  position: relative;
  top: 1px;
}/* End custom CSS */