#Carregamento{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #F2F6F9;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  .loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
      box-shadow: 0 -1px 0 #EB4B6E;
    }

    50% {
      transform: rotate(180deg);
      box-shadow: 0 -1px 0 #EB4B6E;
    }

    100% {
      transform: rotate(360deg);
      box-shadow: 0 -1px 0 #EB4B6E;
    }
  }
