/* PRELOADER STYLES - ENCAPSULADO - APENAS PRETO E BRANCO */
#waspux-preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

#waspux-preloader-wrapper.waspux-preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.waspux-preloader-content {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

/* Progress Bar Phase */
.waspux-preloader-phase {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.waspux-preloader-phase.waspux-active {
    opacity: 1;
    transform: translateY(0);
}

.waspux-preloader-phase.waspux-fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

/* Progress Bar Styles - APENAS PRETO E BRANCO */
.waspux-progress-container {
    width: 100%;
    margin-bottom: 30px;
}

.waspux-progress-counter {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.waspux-progress-bar-wrapper {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.waspux-progress-bar {
    height: 100%;
    background-color: #ffffff;
    width: 0%;
    transition: width 0.05s ease;
    border-radius: 2px;
}

.waspux-progress-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    letter-spacing: 1px;
}

/* Image Phase Styles - APENAS PRETO E BRANCO */
.waspux-image-phase {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.waspux-logo-container {
    width: 120px;
    height: 120px;
    position: relative;
}

.waspux-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1) contrast(1);
    animation: waspux-pulse 1.5s ease-in-out infinite;
}

@keyframes waspux-pulse {

    0%,
    100% {
        transform: scale(5);
    }

    50% {
        transform: scale(9.15);
    }
}

/* Main Content Hidden Initially */
.waspux-main-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in, visibility 0.5s ease-in;
}

.waspux-main-content.waspux-show {
    opacity: 1;
    visibility: visible;
}