/* Estilo geral da Splash Screen */
#splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Contêiner do Cupom */
.coupon-container {
    text-align: center;
    font-size: 18px;
    animation: fadeIn 0.5s ease forwards;
}

/* Animação de fade-in no texto */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Efeito de brilho branco sutil na escrita */
.glowing-text {
    font-size: 18px;
    color: #ffffff;
    animation: glow 1.5s ease-in-out infinite alternate;
}

/* Animação de brilho branco */
@keyframes glow {
    0% {
        color: #ffffff;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    100% {
        color: #ffffff;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

/* Barra de progresso com efeito moderno */
.loading-bar-container {
    width: 80%;
    background-color: #333333;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 15px;
}

.loading-bar {
    width: 0;
    height: 100%;
    background-color: #ffffff;
    animation: loadingProgress 1s ease-out forwards;
    box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
    will-change: width;
}

/* Animação de carregamento progressivo em 1 segundo */
@keyframes loadingProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Oculta a splash screen com transição */
.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}
