.photo-masonry-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.photo-masonry-grid {
  column-count: 4;
  column-gap: 12px;
}

.photo-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 12px;
  position: relative;
  transition: all 0.3s ease;
}

.photo-item img {
  width: 100%;
  height: auto;
  border-radius: 12px !important;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

.photo-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.photo-load-more {
  background: #F83962;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.photo-load-more:hover {
  background: #c72e52;
}

/* Responsivo */
@media (max-width: 1024px) {
  .photo-masonry-grid { column-count: 3; }
}
@media (max-width: 768px) {
  .photo-masonry-grid { column-count: 2; }
}
@media (max-width: 480px) {
  .photo-masonry-grid { column-count: 1; }
}
