.textile-1{
   background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://webandmedias.com/wp-content/uploads/2026/06/textile-1.jpg');
}

.textile-2{
   background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://webandmedias.com/wp-content/uploads/2026/06/textile-2.png');
}

.textile-3{
   background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://webandmedias.com/wp-content/uploads/2026/06/textile-3.jpg');
}

.textile-4{
   background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://webandmedias.com/wp-content/uploads/2026/06/textile-4.jpg');
}

.marques-slider {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

.marques-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquesLoop 38s linear infinite;
}

.marques-slider:hover .marques-track {
    animation-play-state: paused;
}

.marque-item {
    width: 200px;
    height: 200px;
    flex: 0 0 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marque-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

@keyframes marquesLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marque-item {
        width: 200px;
        height: 200px;
        flex: 0 0 200px;
    }

    .marques-track {
        gap: 16px;
        animation-duration: 30s;
    }
}