.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.page-loader-spinner {
    position: fixed;
    width: 41px;
    height: 41px;
    border: 4px solid rgba(244, 127, 41, 0.3);
    border-radius: 50%;
    border-top-color: #F47F29;
    animation: spin 1s linear infinite;
    top: 23px;
    right: 23px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-active a:not([data-no-loading]), 
.loading-active button:not([data-no-loading]) {
    pointer-events: none;
    opacity: 0.9;
    cursor: not-allowed;
}

.loading-active .service-card:not([data-no-loading]) {
    pointer-events: none;
    opacity: 0.9;
    cursor: not-allowed;
}

.loading-active .service-card *[onclick]:not([data-no-loading]),
.loading-active #financeiro-link:not([data-no-loading]) {
    pointer-events: none;
    cursor: not-allowed;
} 