.elementor-11 .elementor-element.elementor-element-5b3bc8f{--display:flex;--min-height:100vh;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-11 .elementor-element.elementor-element-5b3bc8f:not(.elementor-motion-effects-element-type-background), .elementor-11 .elementor-element.elementor-element-5b3bc8f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#DEDEDE;}/* Start custom CSS for html, class: .elementor-element-5ad0043 *//* RESET BASE */
#simuladorApp * {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* CONTAINER */
#simuladorApp {
  max-width: 520px;
  margin: 0 auto;
}

/* BLOCOS */
#simuladorApp > div {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* TITULOS */
#simuladorApp h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #111;
}

/* LABEL */
#simuladorApp label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}

/* INPUTS E SELECT */
#simuladorApp input,
#simuladorApp select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* FOCUS */
#simuladorApp input:focus,
#simuladorApp select:focus {
  border-color: #000;
  outline: none;
}

/* BOTÃO PRINCIPAL */
#simuladorApp button {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* HOVER */
#simuladorApp button:hover {
  background: #333;
}

/* RESULTADO */
#resultadoWrapper {
  background: #f8f9fb;
  border: 1px solid #eee;
}

/* RESULTADO TEXTO */
#resultadoConteudo h3 {
  margin-bottom: 12px;
}

#resultadoConteudo p {
  font-size: 14px;
  margin: 6px 0;
  color: #333;
}

/* CTA FINAL */
.btn-contratar {
  display: block;
  margin-top: 16px;
  text-align: center;
  padding: 12px;
  background: #0a7cff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-contratar:hover {
  background: #0666d6;
}

/* FORM GRID (opcional futuro) */
@media (min-width: 600px) {
  #formLead {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  #formLead input,
  #formLead button {
    margin-bottom: 0;
  }

  #formLead button {
    grid-column: span 2;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  #simuladorApp {
    padding: 0 10px;
  }

  #simuladorApp > div {
    padding: 18px;
  }
}/* End custom CSS */