/* Seção Instagram — full width, imagens coladas */
.instagram-feed {
	width: 100%;
	background: #fff;
	/* padding: 60px 0 0; */
	text-align: center;
}

.instagram-feed__titulo {
	margin: 0 0 16px;
	text-transform: uppercase;
	letter-spacing: .02em;
	font-size: 30px;
    font-weight: bold;
}

.instagram-feed__titulo strong {
	font-weight: 800;
}


.instagram-feed__perfil {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 32px;
	font-weight: 700;
	text-decoration: none;
	color: inherit;
}

.instagram-feed__perfil:hover {
	opacity: .75;
}

.instagram-feed__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	/* width: 100%; */
	padding-bottom: 60px;
	line-height: 0;
}
.instagram-feed__grid.container::before{
	content: none!important;
}
.instagram-feed__item {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.instagram-feed__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.instagram-feed__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .35);
	opacity: 0;
	transition: opacity .3s ease;
}

.instagram-feed__item:hover::after {
	opacity: 1;
}

@media (max-width: 991px) {
	.instagram-feed__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.instagram-feed {
		padding-top: 40px;
	}

	.instagram-feed__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
