#ped-loading-screen {
    position: fixed;
    inset: 0;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.25s ease;
}

#ped-loading-screen img {
    width: 64px;
    height: 64px;
    animation: ped-pulso 1.4s ease-in-out infinite;
}

#ped-loading-screen.oculto {
    opacity: 0;
    pointer-events: none;
}

@keyframes ped-pulso {
    0%, 100% { transform: scale(1);   opacity: 0.6; }
    50%      { transform: scale(1.12); opacity: 1;   }
}