.carousel-container{width:100%;height:180px;overflow:hidden;position:relative}.carousel-track{display:flex;position:absolute;left:0;top:0;height:100%;flex-wrap:nowrap;gap:16px;width:max-content}.carousel-card{flex:0 0 auto;height:100%;display:flex;justify-content:center;align-items:center;transition:scale .2s ease-in-out}.carousel-card:hover{transform:scale(.99)}.carousel-card img{transition:box-shadow .2s ease-in-out}.carousel-card:hover img{box-shadow:0 10px 10px -10px rgba(33,35,38,.1)}@media(max-width:600px){@keyframes slide-mobile{0%{transform:translateX(0)}to{transform:translateX(calc(-100% + 100vw))}}.animacao-mobile{animation:slide-mobile 18s linear infinite;animation-delay:0s}}@media(min-width:601px){@keyframes slide-desktop{0%{transform:translateX(0)}to{transform:translateX(calc(-100% + 100vw))}}.animacao-desktop{animation:slide-desktop 40s linear infinite;animation-delay:0s}}.carousel-container:hover .carousel-track{animation-play-state:paused}