#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff; /* Cor de fundo idêntica à do vídeo */
    z-index: 10000;
    display: flex; /* Centraliza o vídeo */
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#loader-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo preencher a tela como um bg */
}
