#sisgcoe-loading-overlay{
    position:fixed;
    inset:0;
    z-index:9999999;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(15,23,42,.62);
    backdrop-filter:blur(5px);
}

.sisgcoe-loading-box{
    background:var(--bg-surface,#ffffff);
    color:var(--text-main,#1f2937);
    border:1px solid var(--border-soft,#dbe2ea);
    border-radius:24px;
    padding:28px 34px;
    min-width:280px;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.sisgcoe-spinner{
    width:46px;
    height:46px;
    border-radius:50%;
    border:5px solid rgba(148,163,184,.25);
    border-top-color:#3b82f6;
    margin:0 auto 16px;
    animation:sisgcoeSpin .8s linear infinite;
}

.sisgcoe-loading-texto{
    font-size:15px;
    font-weight:800;
}

@keyframes sisgcoeSpin{
    to{
        transform:rotate(360deg);
    }
}