.relatorio-resultado__foto {
  cursor: zoom-in;
}
.relatorio-resultado__foto img {
  cursor: zoom-in;
  transition: opacity .15s ease;
}
.relatorio-resultado__foto:hover img {
  opacity: .92;
}

.foto-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, .88);
  padding: 28px 20px 40px;
  box-sizing: border-box;
}
.foto-lightbox.is-open {
  display: flex;
}
.foto-lightbox__figure {
  margin: 0;
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.foto-lightbox__figure img {
  display: block;
  max-width: min(96vw, 1400px);
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
  background: #111;
}
.foto-lightbox__caption {
  color: #f5f5f5;
  font-size: .9rem;
  letter-spacing: .04em;
  text-align: center;
}
.foto-lightbox__hint {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, .65);
  font-size: .75rem;
  pointer-events: none;
}
.foto-lightbox__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.foto-lightbox__close:hover {
  background: rgba(255, 255, 255, .22);
}

body.foto-lightbox-open {
  overflow: hidden;
}
