/* ============================================================
   About Gallery
   ============================================================ */
.about-gallery {
	position: relative;
	background-color: #fff;
	padding: 4rem 0;
}

.about-gallery-title {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.1;
	margin-bottom: 1rem;
	text-align: center;
	color: var(--color-primary);
}

.about-gallery-text {
	position: relative;
	color: var(--color-text-dark);
	font-size: 1rem;
	font-weight: 200;
	margin-bottom: 2.5rem;
	text-align: center;
}

/* ============================================================
   Masonry Gallery
   ============================================================ */
.about-masonry-gallery {
	/* CSS Columns – zero JS, performance nativa */
	column-count: 1;
	column-gap: 0.75rem;
}

.about-masonry-item {
	position: relative;
	width: 100%;
	margin-bottom: 0.75rem;
	overflow: hidden;
	border-radius: 0.5rem;
	break-inside: avoid; /* evita corte de imagem entre colunas */
	cursor: pointer;
}

.about-masonry-item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Overlay escuro sutil que aparece no hover */
.about-masonry-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 50%,
		rgba(0, 0, 0, 0.45) 100%
	);
	opacity: 0;
	transition: opacity 0.35s ease;
}

/* Hover: zoom suave + overlay */
.about-masonry-item:hover img {
	transform: scale(1.06);
}

.about-masonry-item:hover .about-masonry-overlay {
	opacity: 1;
}

/* ============================================================
   Responsivo
   ============================================================ */
@media screen and (min-width: 576px) {
	.about-masonry-gallery {
		column-count: 2;
		column-gap: 1rem;
	}

	.about-masonry-item {
		margin-bottom: 1rem;
	}
}

@media screen and (min-width: 768px) {
	.about-gallery-title {
		font-size: 3rem;
	}

	.about-gallery-text {
		font-size: 1.25rem;
		margin-bottom: 3rem;
	}

	.about-masonry-gallery {
		column-count: 3;
		column-gap: 1.5rem;
	}
	.about-masonry-item {
		margin-bottom: 1.6rem;
	}
}