#et-preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* Contenedor */
.et-dots {
    display: flex;
    gap: 0.1rem;
}

/* Puntos */
.et-dot img {
    width: 90px;
    height: 90px;
    opacity: 0;
    animation: et-bounce 1.2s infinite;
}

.et-dot:nth-child(2) img {
    animation-delay: 0.2s;
}
.et-dot:nth-child(3) img {
    animation-delay: 0.4s;
}

/* Animación */
@keyframes et-bounce {
    0% { transform: scale(0.7); opacity: 0.2; }
    30% { transform: scale(1); opacity: 1; }
    60% { transform: scale(0.75); opacity: 0.4; }
    100% { transform: scale(0.7); opacity: 0.2; }
}

/* Fade-out al cargar */
body.et-loaded #et-preloader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
