.container {
  display: flex;
  width: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: top left;
  background-repeat: repeat;
  box-sizing: border-box;
}

.gallery_zoziox {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  margin-left: 40px;
  margin-bottom: 40px;
  position: relative;
}
.gallery_zoziox img {
  width: 80%;
  height: auto;
}
.gallery_zoziox #zoziox1, .gallery_zoziox #zoziox2, .gallery_zoziox #zoziox3 {
  margin-top: 40px;
}

.sidebar-text {
  font-family: "avenir", sans-serif;
  font-size: 18px;
  width: 300px;
  height: auto;
  margin-top: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 70px;
  margin-right: 55px;
}
.sidebar-text h2 {
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
}
.sidebar-text p {
  margin-top: 30px;
  line-height: 25px;
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-self: center;
  align-self: center;
}

.lightbox-content {
  display: block;
  margin: auto;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Ajusta para centrar verticalmente */
  padding: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  user-select: none;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.prev:hover, .next:hover, .close:hover {
  color: #bbb;
}

@media screen and (max-width: 1600px) {
  .container .sidebar-text {
    width: 240px;
    padding: 60px;
    font-size: 17px;
  }
}
@media screen and (max-width: 1440px) {
  .container .gallery_zoziox {
    grid-template-columns: repeat(2, 1fr);
  }
  .container .gallery_zoziox #zoziox3 {
    margin-top: 0;
  }
  .container .sidebar-text {
    width: 230px;
  }
}
@media screen and (max-width: 1210px) {
  .container .gallery_zoziox {
    grid-template-columns: repeat(1, 1fr);
  }
  .container .gallery_zoziox img {
    display: block;
    margin: 0 auto;
  }
  .container .gallery_zoziox #zoziox2 {
    margin-top: 0;
  }
  .container .sidebar-text {
    font-size: 16px;
    width: 200px;
  }
}
@media screen and (max-width: 770px) {
  .container .sidebar-text {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .gallery_zoziox {
    margin: 0 auto;
  }
  .gallery_zoziox img {
    width: 100%;
  }
}

/*# sourceMappingURL=illustration.output.css.map */
