
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff; /* color de fondo del loader */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 99999;
  }


    #loaderText {
    font-family: sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Barra */
  #progressBarContainer {
    width: 300px;
    height: 15px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
  }

  #progressBar {
    width: 0%;
    height: 100%;
    background: #000;
    transition: width 0.3s ease;
  }

  #progressText {
    margin-top: 10px;
    font-family: sans-serif;
    font-size: 18px;
    color: #333;
  }

  /* Ocultar loader con fade */
  body.loaded #preloader {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
  }