/* Overlay */
.app-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}

/* Ativo */

.app-loader-overlay.is-active {
    opacity: 1;
}

/* Conteúdo */
.loader-content {
    text-align: center;
}

/* Logo */

.loader-logo {
    margin-bottom: 25px;
}

/* Barras animadas */

.loader-bars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.loader-bars span {
    width: 6px;
    height: 28px;
    background: #2E7D32;
    display: inline-block;
    animation: loaderBounce 1s infinite ease-in-out;

}

/* Delay progressivo */
.loader-bars span:nth-child(2) {
    animation-delay: .1s;
}

.loader-bars span:nth-child(3) {
    animation-delay: .2s;
}

.loader-bars span:nth-child(4) {
    animation-delay: .3s;
}

.loader-bars span:nth-child(5) {
    animation-delay: .4s;
}

/* Animação */

@keyframes loaderBounce {

    0%, 40%, 100% {
        transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
    }

}

/* Mensagem */
.loader-message {
    font-size: 14px;
    color: #666;
}
