/* Lightbox – galeria de Infraestrutura */
.lb2-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  z-index: 60;
}

.lb2-backdrop.is-open {
  display: flex;
}

.lb2-dialog {
  position: relative;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lb2-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb2-img-wrap img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 0.75rem;
}

.lb2-caption {
  font-size: 0.75rem;
  color: #e5e7eb;
  line-height: 1.4;
}

.lb2-close,
.lb2-prev,
.lb2-next {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.7);
  border-radius: 9999px;
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.lb2-prev,
.lb2-next {
  top: 50%;
  transform: translateY(-50%);
}

.lb2-prev {
  left: 0.5rem;
}

.lb2-next {
  right: 0.5rem;
}

.lb2-close {
  top: 0.75rem;
  right: 0.75rem;
  transform: none;
}

@media (max-width: 640px) {
  .lb2-dialog {
    padding: 0.85rem;
  }

  .lb2-img-wrap img {
    max-height: 60vh;
  }
}
/* CSS complementar da landing Eucalipto Cloeziana */
