.elementor-5573 .elementor-element.elementor-element-55cad216{--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-5573 .elementor-element.elementor-element-387ec6be > .elementor-widget-container{margin:72px 0px 0px 0px;}.elementor-5573 .elementor-element.elementor-element-387ec6be{text-align:center;}.elementor-5573 .elementor-element.elementor-element-387ec6be .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:40px;font-weight:700;color:var( --e-global-color-secondary );}.elementor-5573 .elementor-element.elementor-element-535f3a22{--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;--margin-top:40px;--margin-bottom:230px;--margin-left:0px;--margin-right:0px;}@media(max-width:767px){.elementor-5573 .elementor-element.elementor-element-55cad216{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5573 .elementor-element.elementor-element-387ec6be{width:100%;max-width:100%;}.elementor-5573 .elementor-element.elementor-element-387ec6be > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-5573 .elementor-element.elementor-element-387ec6be .elementor-heading-title{font-size:28px;}.elementor-5573 .elementor-element.elementor-element-535f3a22{--margin-top:20px;--margin-bottom:40px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for html, class: .elementor-element-61cc2eb3 *//* Estilo do formulário */
#emailForm {
  max-width: 500px;
  margin: 0 auto;
  padding: 32px;
  background-color: #002959;
  border-radius: 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
}

/* Estilo da label */
#emailForm label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}

/* Estilo dos inputs */
#emailForm input[type="email"],
#emailForm input[type="text"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 32px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

/* Foco no input */
#emailForm input[type="email"]:focus,
#emailForm input[type="text"]:focus {
  border-color: #226F54;
  outline: none;
}

/* Estilo do botão */
#emailForm button {
  width: 100%;
  padding: 12px;
  background-color: #55ECE4;
  color: #002959;
  border: none;
  border-radius: 32px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex; /* Centraliza o conteúdo */
  justify-content: center;
  align-items: center;
  gap: 10px; /* Espaço entre o texto e o ícone */
  font-weight: bold;
  position: relative;
}

/* Efeito hover do botão */
#emailForm button:hover {
  background-color: #4ab8c6;
}

/* Estilo do spinner */
#loadingSpinner {
  width: 20px;
  height: 20px;
  display: none; /* Mantém oculto até ser ativado */
  animation: spin 1s linear infinite;
}

/* Animação de rotação */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Estilo da mensagem de resposta */
#responseMessage {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  color: #f4f4f4;
  font-family: 'Poppins', sans-serif;
}/* End custom CSS */