.dots-container {
    display: none;
    position: fixed; /* clave: no absolute */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    align-items: center;
    justify-content: center;

    /* Fondo translúcido + blur */
    background: rgba(13, 20, 19, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Bloquea todo */
    pointer-events: all;

    z-index: 999999; /* más agresivo */
}

/* Evitar interacción global (opcional pero PRO) */
body.loading {
    overflow: hidden;
}

/* Tus dots (los dejo igual, están bien) */
.dot {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #b3d4fc;
    animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
    margin-right: 0;
}

.dot:nth-child(1) {
    animation-delay: -0.3s;
}

.dot:nth-child(2) {
    animation-delay: -0.1s;
}

.dot:nth-child(3) {
    animation-delay: 0.1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        background-color: #b3d4fc;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }

    50% {
        transform: scale(1.2);
        background-color: #6793fb;
        box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
    }

    100% {
        transform: scale(0.8);
        background-color: #b3d4fc;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
}