.images_container {
  width: 100%; /* Set the width to fill the available space */
  display: flex;
  flex-wrap: wrap; /* Allow flex items to wrap to the next line */
  justify-content: center;
  align-items: center;
  gap: 0.2em; /* Adjust spacing between round_mini divs */
}

.round_mini {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.9em 0.3em;
  border: 1px solid #e97a52;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.round_mini img,
.round_mini video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fullscreen {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 4;

  backdrop-filter: blur(5px); /* desfoca atrás do fullscreen */
  -webkit-backdrop-filter: blur(5px); /* para Safari */
}

.fullscreen_image,
.fullscreen_video {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  cursor: pointer;
  border-radius: 8px;
}

.popup_trigger {
  cursor: pointer;
  transition: cursor 0.3s;
}