.slides {position: relative; width: 100%;}
.setas {display: flex; flex-direction: row; justify-content: space-between; align-items: center; position: absolute; height: 100%; width: 100%; margin-bottom: 50px; }
.setas .seta {width: 52px; height: 52px; display: grid; place-content: center; place-items: center; background: var(--laranja); position: relative; z-index: 100; padding: 20px 17px; border-radius: 100px; transition: 0.3s; border: none;}
.setas .seta.esquerda.limit, .setas .seta.direita.limit {opacity: 1;}
.setas .seta:hover {opacity: 0.8; cursor: pointer;}
.setas .seta svg {width: 100%; height: 100%;}
.setas .seta.esquerda {transform: rotate(180deg);}

@media (max-width: 990px){
     .setas .seta {padding: 9px; width: 32px; height: 32px;}
}