/* Elementor Image Carousel Lightbox - CSS */
.eic-custom-lightbox{
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.92);
  z-index: 999999;
}

.eic-custom-lightbox .eic-img{
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.6);
  outline: none;
}

.eic-custom-lightbox button {
  position: absolute;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
  user-select: none;
}

.eic-custom-lightbox .eic-close {
  top: 18px;
  right: 22px;
  font-size: 40px;
}

.eic-custom-lightbox .eic-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.eic-custom-lightbox .eic-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsivo - diminui botões em telas pequenas */
@media (max-width: 600px) {
  .eic-custom-lightbox button { font-size: 28px; }
}
