/* Estilos para a tela de carregamento */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
  }

  .loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
  }

  .loading-screen img {
    max-width: 100px; /* Ajuste o tamanho máximo do GIF conforme necessário */
    max-height: 100px; /* Ajuste a altura máxima do GIF conforme necessário */
    width: auto;
    height: auto;
  }

  .loading-screen p {
    margin-top: 10px; /* Espaçamento entre o GIF e a mensagem */
    font-size: 16px; /* Ajuste o tamanho da fonte conforme necessário */
    color: #000; /* Cor do texto */
  }