.page-gallery-wrapper {
	margin: -15px;
}

.page-gallery-wrapper .col-lg-3 {
	padding: 15px;
}

.gallery-item {
	position: relative;
	display: block;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.gallery-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: all 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

/* Estilos responsivos */
@media (max-width: 991px) {
	.gallery-item img {
		height: 180px;
	}
}

@media (max-width: 767px) {
	.gallery-item img {
		height: 160px;
	}
}

@media (max-width: 575px) {
	.gallery-item img {
		height: 140px;
	}
}
