/* ── Project Page ── */

.projeto-status {
	display: inline-block;
	background-color: #00352D;
	color: #ffffff;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: small;
	padding: 0.8vh 1.5vw;
	border-radius: 2vh;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.projeto-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5vw;
	margin: 0 0 3vh 0;
}

.projeto-header .title {
	margin: 0 0 0 0;
}

/* ── Gallery ── */

.projeto-gallery {
	margin: 0 0 6vh 0;
}

.projeto-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1vw;
  margin: 0 0 0 0;
}

.projeto-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.portfolio-item:hover {
	scale: 1.05;
}

.projeto-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.projeto-gallery-item:hover img {
	scale: 1.05;
}

/* ── Lightbox ── */

.projeto-lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.85);
	z-index: 200;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.projeto-lightbox.active {
	display: flex;
}

.projeto-lightbox img {
	max-width: 85vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 0.5vh;
}
