body fuse-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f7;
    color: #1e293b;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body:not(.fuse-splash-screen-hidden) {
    overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
    visibility: hidden;
    opacity: 0;
}

.splash-content-estetica2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner-estetica2 {
    margin-top: 0;
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efecto de resplandor de fondo (glow) sutil que pulsa */
.spinner-estetica2::before {
    content: '';
    position: absolute;
    width: 84px;
    height: 84px;
    background: radial-gradient(circle, rgba(130, 208, 20, 0.12) 0%, rgba(46, 45, 131, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    animation: fuse-pulse 2s ease-in-out infinite alternate;
}

/* Anillo con degradado cónico perfecto (estilo Apple/Fintech) */
.loader-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 20%, rgba(130, 208, 20, 0.3) 50%, #82D014 75%, #2E2D83 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3.5px), #000 0);
    mask: radial-gradient(farthest-side, transparent calc(100% - 3.5px), #000 0);
    animation: fuse-spin 0.8s cubic-bezier(0.4, 0.15, 0.3, 0.85) infinite;
}

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

@keyframes fuse-pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}
