jQuery(document).ready(function() {
	//marcas-home, marcas-categorias
	var marcas = jQuery('.marcas');
	marcas.slick({
		infinite: true,
		slidesToShow: 6,
		slidesToScroll: 1,
		swipeToSlide: true,
		dots: false,
		autoplay: true,
		autoplaySpeed: 10000,
		responsive: [
		    {
		      breakpoint: 1000,
		      settings: {
		        slidesToShow: 5
		      }
		    },
		    {
		      breakpoint: 800,
		      settings: {
		        slidesToShow: 3
		      }
		    },
		    {
		      breakpoint: 640,
		      settings: {
		        slidesToShow: 2
		      }
		    },
		    {
		      breakpoint: 480,
		      settings: {
		        slidesToShow: 2
		      }
		    }
		  ]
	});
});
