  /* ===============================
     BLOQUEIO DE INTERFERÊNCIAS
     =============================== */
  .yever_hero_site * {
    all: unset;
    display: revert;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }

  /* ===============================
     HERO SECTION
     =============================== */
  .yever_hero_site {
    position: relative;
    background-color: #7246e6;
    overflow: hidden;
    width: 100%;
    z-index: 1;
    margin-top: 90px;
  }

  .yever_hero_inner_site {
    width: 1150px;
    max-width: 90%;
    margin: -30px auto 0 auto;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-image: url('https://encartesparamercados.com.br/imagens/reportar.png');
    background-repeat: no-repeat !important;
    background-size: 560px auto !important;
    background-position: right 40px bottom -30px !important;
    padding: 120px 0 120px !important;
  }

  .yever_hero_text_site {
    max-width: 540px;
    color: #fff;
    z-index: 2;
    margin-left: 2%;
  }

  .yever_hero_text_site small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .yever_hero_text_site h1 {
    font-size: 43px;
    font-weight: 300;
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .yever_hero_text_site p {
    font-size: 16px;
    line-height: 1.6;
    color: #f3f4f6;
    margin-bottom: 22px;
  }

  /* ===============================
     CONTAINER DE FORMULÁRIO
     =============================== */
  .yever_contact_container_site {
    position: relative;
    background: #fff;
    width: 1100px;
    max-width: 90%;
    margin: -100px auto 100px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 60px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    z-index: 2;
  }

  .yever_contact_info_site {
    flex: 1;
    min-width: 300px;
  }

  .yever_contact_info_site h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .yever_contact_info_site p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .yever_form_site {
    flex: 1;
    min-width: 320px;
  }

  .yever_form_site form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .yever_form_site label {
    font-weight: 500;
    font-size: 14px;
    color: #374151;
  }

  .yever_form_site input,
  .yever_form_site textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
  }

  .yever_form_site input:focus,
  .yever_form_site textarea:focus {
    border-color: #7246e6;
    box-shadow: 0 0 0 3px rgba(114, 70, 230, 0.2);
  }

  .yever_form_site textarea {
    resize: vertical;
    min-height: 120px;
  }

  .yever_form_site button {
    background: #7246e6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
  }

  .yever_form_site button:hover {
    background: #5b39be;
  }

  /* ===============================
     MOBILE
     =============================== */
  @media (max-width: 950px) {
      
          .search-box-mobile { display:none !important; }
    .yever_hero_inner_site {
      flex-direction: column;
      align-items: center;
      background-size: 320px auto !important;
      background-position: center bottom;
      padding: 60px 20px 280px !important;
      text-align: center;
    }
    .yever_hero_text_site { margin-left: 0; max-width: 90%; }
    .yever_contact_container_site {
      flex-direction: column;
      padding: 40px 20px;
      margin: -180px auto 80px;
    }
  }


#loaderOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #7245e5;
  font-family: 'Inter', sans-serif;
}
.loader-circle {
  border: 4px solid #ddd;
  border-top: 4px solid #7245e5;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}