/* PASSO 27: Estilos Corrigidos para o Loading Screen (loading.css) */

/* Variáveis CSS para Cores da Marca */
:root {
    --verde-profundo: #1A5E2E;
    --verde-ativo: #8BC34A;
    --cinza-texto: #333333;
}

/* Container de Sobrecarga - Centralização Perfeita */
#loading-overlay {
    pointer-events: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;

    /* CENTRALIZAÇÃO CORRIGIDA */
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
    font-family: 'Lato', sans-serif;
    overflow: hidden;
}

/* Wrapper para o SVG e o Nome da Marca */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Wrapper do Nome da Marca (CORRIGIDO) */
#brand-name-split {
    margin-top: 20px;
    display: block;
    /* Alterado de flex para block para o text-align funcionar e respeitar o inline-block no JS */
    flex-wrap: nowrap;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 32px;
    letter-spacing: normal;
    /* Removido o letter-spacing que estava causando espaçamento excessivo */
}