.loading-section {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 10000;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.loading-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
}

/* Estilo del logo (puedes cambiar la imagen a tu logo) */
.iso-loading img {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    position: relative;
    animation: logo-bounce 1.2s infinite ease-in-out;
}

/* Sombra */
.iso-shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    animation: shadow-resize 1.2s infinite ease-in-out;
}

/* Animación del logo */
@keyframes logo-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
        /* El logo sube */
    }
}

/* Animación de la sombra */
@keyframes shadow-resize {

    0%,
    100% {
        width: 60px;
        opacity: 0.3;
    }

    50% {
        width: 80px;
        opacity: 0.1;
        /* La sombra se expande y se aclara */
    }
}


@media (max-width: 768px) {

    .loading-background-transparent {

        background: transparent !important;

    }

}