.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/fundo-de-madeira.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    z-index: 1000;
  }
  
  .logo {
    max-width: 26vh;
    max-height: 26vh;
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }