.comparar-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  overflow: hidden;
  user-select: none;
}

.comparar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-antes {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.img-antes img {
  width: 500px;
  max-width: none;
}

.regua-slider {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: ew-resize;
  margin: 0;
}

.linha-divisora {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #ffffff6f;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 5;
  pointer-events: none;
  transform: translateX(-50%);
}