﻿.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Fondo completamente blanco */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
}

    .loader .circle {
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        animation: pulse 1.2s infinite ease-in-out;
    }

        /* Ajustando colores a rojo tirando a vinotinto */
        .loader .circle:nth-child(1) {
            top: 0;
            left: 30px;
            background-image: linear-gradient(43deg, #8B0000 0%, #B22222 50%, #800000 100%);
        }

        .loader .circle:nth-child(2) {
            top: 30px;
            left: 60px;
            background-image: linear-gradient(160deg, #8B0000 0%, #B22222 100%);
            animation-delay: 0.4s;
        }

        .loader .circle:nth-child(3) {
            top: 60px;
            left: 30px;
            background-image: linear-gradient(90deg, #800000 0%, #B22222 100%);
            animation-delay: 0.8s;
        }

        .loader .circle:nth-child(4) {
            top: 30px;
            left: 0;
            background-image: linear-gradient(19deg, #8B0000 0%, #800000 100%);
            animation-delay: 1.2s;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
    }
}