.loading-modal-content {
    border-radius: 1rem;
    border: 1px solid #dbe6f6;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.loading-modal-content .modal-header {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: #fff;
    padding: 1rem 1.15rem .7rem;
}

.loading-modal-content .modal-title {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 700;
}

.loading-modal-content .modal-title i {
    animation: loading-spin 1s linear infinite;
}

.loading-spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid #dbeafe;
    border-top-color: #2563eb;
    animation: loading-spin .9s linear infinite;
}

.loading-spinner-grande {
    width: 78px;
    height: 78px;
    border-width: 5px;
}

.loading-progress {
    height: .7rem;
    border-radius: 999px;
    background: #eaf1ff;
}

.loading-progress .progress-bar {
    background: linear-gradient(90deg, #1d4ed8, #2563eb, #3b82f6);
}

.loading-steps {
    list-style: none;
    padding: 0;
    display: grid;
    gap: .55rem;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .7rem;
    border: 1px solid #dbe6f6;
    border-radius: .65rem;
    background: #f8fbff;
    text-align: left;
    color: #64748b;
    transition: all .2s ease;
}

.loading-step-icone {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    color: #94a3b8;
    background: #fff;
    flex: 0 0 24px;
}

.loading-step-icone i {
    font-size: .85rem;
}

.loading-step-texto {
    font-size: .92rem;
    font-weight: 600;
}

.loading-step.ativo {
    border-color: #93c5fd;
    background: #eff6ff;
    color: #1e3a8a;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .12);
}

.loading-step.ativo .loading-step-icone {
    border-color: #60a5fa;
    color: #2563eb;
}

.loading-step.concluido {
    border-color: #86efac;
    background: #f0fdf4;
    color: #166534;
}

.loading-step.concluido .loading-step-icone {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}

@keyframes loading-spin {
    to {
        transform: rotate(360deg);
    }
}
