.contatore {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.num-current {
  color: #f5a623;
  font-weight: 600;
}
.num-total {
  color: rgba(255, 255, 255, 0.7);
}

.dots-custom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-custom {
  width: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot-custom.is-active {
  width: 24px;
  background: #f5a623;
}

.arrow-prev,
.arrow-next {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 95, 0.4);
  color: #fff;
  cursor: pointer;
}