.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 50px);
  width: 50px; /* Tamanho do círculo */
  height: 50px; /* Tamanho do círculo */
  line-height: 50px; /* Tamanho do círculo */
  text-align: center; /* Centralizar o ícone */
  border-radius: 50%; /* Transformar em um círculo */
  background-color: rgba(255, 255, 255, 1.0)!important;
  font-size: 30px !important;
  z-index: 1;
  color: rgba(0, 0, 0, 0.8)!important;
  transition: 0.5s;
  
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background-color: rgba(0, 80, 170, 1)!important;
  color: #FFFFFF!important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.owl-nav .owl-prev {
  left: -50px;
}

.owl-nav .owl-next {
  right: -50px;
}


@media (max-width: 768px){
  .owl-nav .owl-prev {
    left: 20px;
  }
  .owl-nav .owl-next {
    right: 20px;
  }
}

.owl-dots {
  text-align: center;
}
.owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #ccc !important;
  margin-left: 3px;
  margin-right: 3px;
  outline: none;
}
.owl-dots .owl-dot.active {
  background: #00326c!important;
}