.elementor-1800 .elementor-element.elementor-element-7e13ab7{--display:flex;--margin-top:53px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-7072f73 *//* Estilos gerais */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo */
.logo-container {
  text-align: center;
  margin-bottom: 2px;
}

.logo {
  max-width: 100px !important;
  height: auto;
}

/* Formulário */
.custom-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, height 0.5s ease;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

input, textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #f9f9f9;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
  background-color: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Botão de envio */
.submit-btn {
  position: relative;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  overflow: hidden;
}

.submit-btn:hover {
  background-color: #3a7bc8;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn.loading {
  background-color: #3a7bc8;
}

.btn-text {
  transition: opacity 0.3s ease;
}

.loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Mensagem de sucesso */
.success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: center;
  padding: 30px 0;
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #4caf50;
  border-radius: 50%;
  margin-bottom: 10px;
}

.success-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.success-message p {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
    border-radius: 8px;
  }
  
  .logo {
    max-width: 140px;
  }
  
  input, textarea, .submit-btn {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .success-message p {
    font-size: 18px;
  }
}/* End custom CSS */
/* Start custom CSS *//* Gradient background baseado nas cores da logo */
body, 
.elementor-section.elementor-section-boxed > .elementor-container,
.elementor-page-title,
.elementor-widget-container {
    background: linear-gradient(to bottom, #4169E1, #9370DB, #FF1493) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
}

/* Para garantir que o texto seja legível sobre o gradiente */
body, p, h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

/* Ajuste para links */
a {
    color: #ffffff;
}

a:hover {
    color: #f0f0f0;
}/* End custom CSS */