/* Tela inteira cobrindo o site */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* pode trocar */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Logo animada */
.loading-logo img {
    width: 240px;   /* ajuste livre */
    animation: pulse 1.5s infinite ease-in-out;
}

/* Animação suave */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.12); opacity: 0.65; }
    100% { transform: scale(1); opacity: 1; }
}

/* Transição ao desaparecer */
.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease-out;
    pointer-events: none;
}
