.lancamento-card__image-button {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 15px;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.lancamento-card__image-button img {
  margin-bottom: 0;
  transition: transform 0.2s ease;
}

.lancamento-card__image-button:hover img {
  transform: scale(1.03);
}

.launch-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.launch-lightbox.is-open {
  display: block;
}

.launch-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.launch-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  margin: 4vh auto;
  padding: 28px 24px 20px;
}

.launch-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.launch-lightbox__image {
  max-width: 100%;
  max-height: calc(90vh - 90px);
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.launch-lightbox__caption {
  margin: 14px 0 0;
  max-width: 760px;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

body.launch-lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .launch-lightbox__dialog {
    max-width: 94vw;
    padding: 42px 12px 12px;
  }

  .launch-lightbox__close {
    top: 4px;
    right: 4px;
  }

  .launch-lightbox__caption {
    font-size: 14px;
  }
}
