        /* Barra de loading */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background-color: #0088ff;
            width: 0%;
            z-index: 9999999999;
            transition: width 0.3s ease;
        }

        @media (max-width: 768px) {
            .progress-bar {
               display: none !important;
            }
        }