#overlayAtualizacaoCadastral {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
  }
  
  #popupAtualizacaoCadastral {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 1000;
    overflow: hidden;
    max-width: 800px;
  }
  
  #popupAtualizacaoCadastral img {
    display: block;
    max-width: 800px;
    height: auto;
  }
  
  #popupAtualizacaoCadastral button.atualizarDados {
    position: absolute;
    bottom: 115px;
    left: 190px;
    padding: 12px 15px;
    background-image: linear-gradient(70deg, #2FCC90, #189D83, #2FCC90);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
  }
  
  #popupAtualizacaoCadastral button.fecharPopup {
    position: absolute;
    bottom: 60px;
    left: 190px;
    padding: 12px 15px;
    background-color: white;
    color: black;
    border: 1px solid black;
    border-color: black;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
  }