/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 08 2026 | 03:15:27 */
/* Galeria - Nossa Estrutura */
.mfp-title {
	display: none;
}
/* Galeria - Nossa Estrutura */
.et_pb_gallery_0 .et_pb_gallery_items {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.et_pb_gallery_0 .et_pb_gallery_item {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
}

.et_pb_gallery_0 .et_pb_gallery_image,
.et_pb_gallery_0 .et_pb_gallery_image a {
  display: block;
  width: 100%;
  overflow: hidden;
}

.et_pb_gallery_0 .et_pb_gallery_image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Zoom leve no hover */
.et_pb_gallery_0 .et_pb_gallery_image:hover img {
  transform: scale(1.06);
  filter: brightness(0.92);
}

/* Tablet: 2 colunas */
@media (max-width: 980px) {
  .et_pb_gallery_0 .et_pb_gallery_items {
    grid-template-columns: repeat(2, 1fr);
  }

  .et_pb_gallery_0 .et_pb_gallery_image img {
    height: 240px;
  }
}

/* Mobile: 1 coluna */
@media (max-width: 600px) {
  .et_pb_gallery_0 .et_pb_gallery_items {
    grid-template-columns: 1fr;
  }

  .et_pb_gallery_0 .et_pb_gallery_image img {
    height: 260px;
  }
}

