.lightbox,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox[hidden],
.video-modal[hidden] {
  display: none;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 48px);
  margin: 0;
}

.lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 100px);
  object-fit: contain;
}

.lightbox__caption {
  color: var(--white);
  text-align: center;
}

/* ==========================================================================
   Vídeo modal
   ========================================================================== */

.video-modal__video {
  display: block;
  width: 100%;
  max-width: 1200px;
  max-height: calc(100vh - 48px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background-color: #000;
}

/* ==========================================================================
   Botões
   ========================================================================== */

.lightbox__close,
.video-modal__close,
.lightbox__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background-color: #ebebeb;
  cursor: pointer;
}

.lightbox__close,
.video-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  font-size: 24px;
  line-height: 1;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__arrow--prev {
  left: 24px;
}

.lightbox__arrow--next {
  right: 24px;
}

.lightbox__arrow img {
  display: block;
  width: 24px;
  height: 24px;
}

.lightbox__arrow--prev img {
  transform: rotate(180deg);
}

/* ==========================================================================
   Elementos clicáveis
   ========================================================================== */

.carousel__media,
.plant__media {
  cursor: pointer;
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767.98px) {
  .lightbox,
  .video-modal {
    padding: 16px;
  }

  .lightbox__figure {
    max-width: 100%;
  }

  .lightbox__image {
    max-height: calc(100vh - 140px);
  }

  .lightbox__arrow {
    top: auto;
    bottom: 24px;
    transform: none;
  }

  .lightbox__arrow--prev {
    left: 24px;
  }

  .lightbox__arrow--next {
    right: 24px;
  }

  .video-modal__video {
    max-height: calc(100vh - 32px);
  }
}