 .loader-caixa {
    background: #222222;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000!important;
  } 
  
  .loader-container {
    position: relative;
    width: 150px;
    height: 150px;
    aspect-ratio: 1;
  }
  
  .circle-loader {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.05);
    position: relative;
    aspect-ratio: 1;
  }
  
  .circle-loader::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #cfcfcf;
    animation: spin 2s linear infinite;
    aspect-ratio: 1;
    top: -2px;
    left: -2px;
  }
  
  .mountain-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 5%);
    width: 60%;
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
    z-index: 50;
    fill: #444444;
  }

  .icone
  {
    width: 80%;
    position: absolute;
    top: 38%;
    left: 50%;
    transform-origin: center;
    transform: translateX(0%) translateY(0); 
    z-index: 1;
  }
  
  .sun
  {
     animation: riseBehindMountains 3.5s ease-in-out infinite; 
  }

  .moon
  {
    opacity: 0;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.4; }
  }
  
  @keyframes riseBehindMountains {
    0% {
      transform: translateX(-50%) translateY(50%) rotate(0deg);
      opacity: 0;
      z-index: 1;
    }
    25% {
      transform: translateX(-50%) translateY(50%);
      z-index: 0.5;
      opacity: 0;
    }
    75% {
      transform: translateX(-50%) translateY(-8px);
      opacity: 1;
      z-index: 0;
    }
    90%{
        opacity: 0;
    }
    100% {
      transform: translateX(-50%) translateY(30%) rotate(360deg);
      opacity: 0;
      z-index: 1;
    }
  }
  