/* Loader profesional */
.eg-loader-process {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(255, 255, 255, 0.95);*/
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.eg-loader-process--active {
    opacity: 1;
    pointer-events: all;
}

.eg-loader-process__content {
    text-align: center;
    padding: 50px;
    max-width: 500px;
    width: 90%;
}

.eg-loader-process__logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.eg-loader-process__logo span {
    color: #fdad08;
}

.eg-loader-process__animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
}

.eg-loader-process__spinner {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(253, 173, 8, 0.1);
    border-top: 3px solid #fdad08;
    border-radius: 50%;
    animation: eg-spin 1.5s linear infinite;
}

.eg-loader-process__spinner--inner {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 90px;
    height: 90px;
    border: 2px solid transparent;
    border-right: 2px solid #fdad08;
    border-radius: 50%;
    animation: eg-spin-reverse 1.2s linear infinite;
}

.eg-loader-process__text {
    color: #666;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 300;
}

.eg-loader-process__progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(253, 173, 8, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.eg-loader-process__progress {
    height: 100%;
    width: 0%;
    background: #fdad08;
    border-radius: 2px;
}

.eg-loader-process__dots {
    display: inline-block;
    width: 20px;
    text-align: left;
}

.eg-loader-process__dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fdad08;
    margin: 0 2px;
    animation: eg-dot-pulse 1.5s infinite ease-in-out;
}

.eg-loader-process__dot:nth-child(2) {
    animation-delay: 0.2s;
}

.eg-loader-process__dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Estados */
.eg-content--blurred {
    filter: blur(8px);
}

/* Animaciones */
@keyframes eg-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes eg-spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes eg-dot-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}