.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroller-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #C4D600;
    cursor: ew-resize;
    z-index: 10;
}

.scroller-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #C4D600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card-vidrio {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border: 0px solid #ccc;
    scale: 80%;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Animación Carousel Marcas */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-infinite-scroll {
    animation: scroll-left 40s linear infinite;
    width: max-content;
}

.slider-container:hover .animate-infinite-scroll {
    animation-play-state: paused;
}