/* ManualPro Preloader - mobile only */

#mp-preloader {
    display: none; /* JS ativa se for mobile */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

#mp-preloader.mp-active {
    display: flex;
}

#mp-preloader.mp-fade-out {
    opacity: 0;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
}

.mp-preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Spinner igual ao do concorrente — conic-gradient */
.mp-spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background:
        radial-gradient(farthest-side, #000 94%, transparent) top/9px 9px no-repeat,
        conic-gradient(transparent 30%, #000);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 0);
    mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 0);
    animation: mp-spin 1s infinite linear;
}

@keyframes mp-spin {
    to { transform: rotate(360deg); }
}
