﻿.new-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* fundo semi-transparente */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* fica sobre tudo */
}

.new-loader img {
    width: 190px; /* largura fixa */
    height: 175px; /* altura fixa */
    object-fit: contain; /* mantém a proporção da imagem dentro do tamanho */
}

.new-loader-message {
    margin-top: 10px;
    max-width: 420px;
    text-align: center;
    color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
