section {
  margin: 2rem auto 1rem auto;
  width: 80%;
  display: flex;
  justify-content: space-around;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
section p {
  font-size: 1.5rem;
}
section a:hover {
  text-decoration: underline;
}

.dirceu-content img {
  border-radius: 3rem;
}
.lightbox-img {
  transition: 0.3s;
}
.lightbox-img:hover {
  cursor: zoom-in;
}

/* Estilos para a visualização em popup */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.lightbox-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
}
.lightbox-image:hover {
  cursor: zoom-out;
}
