.antes-depois__slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16/9;
  background-color: #E8E8E8;
  user-select: none;
  cursor: col-resize;
  max-width: 800px;
  margin-inline: auto;
}
.antes-depois__before,
.antes-depois__after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.antes-depois__after {
  clip-path: inset(0 50% 0 0);
  background-color: #D8D8D8;
}
.antes-depois__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #888;
}
.antes-depois__placeholder span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
}
.antes-depois__placeholder p { font-size: var(--text-sm); }
.antes-depois__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--color-gold);
  cursor: col-resize;
  transform: translateX(-50%);
}
.antes-depois__handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background-color: var(--color-gold);
  border-radius: 50%;
  border: 3px solid white;
}
.antes-depois__disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: #888;
  margin-top: 1rem;
}
