/* ============================================
   PRELOADER PROGRESS BAR STYLES
   ============================================ */

/* Container da barra de progresso */
.preloader-progress-container {
    width: 300px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

/* Barra de progresso */
.preloader-progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.preloader-progress-fill {
    height: 100%;
    background-color: #4caf50;
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Texto de porcentagem */
.preloader-percentage {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    margin-top: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .preloader-progress-container {
        width: 250px;
        margin-top: 20px;
    }
    
    .preloader-percentage {
        font-size: 16px;
    }
}
