/* =========================================================
   Archive Empreendimentos
   ========================================================= */

.empreendimento-archive {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: #fff;
}

/* --- Hero / banner ------------------------------------------------- */
.empreendimento-archive-hero {
	position: relative;
	width: 100%;
	min-height: 260px;
	background-color: #1a1a1a;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.empreendimento-archive-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.empreendimento-archive-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 40px 20px;
}

.empreendimento-archive-hero__title {
	color: #fff;
	font-size: 2.75rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.1;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

@media (max-width: 600px) {
	.empreendimento-archive-hero {
		min-height: 180px;
	}
	.empreendimento-archive-hero__title {
		font-size: 2rem;
	}
}

/* --- Grid --------------------------------------------------------- */
.empreendimento-archive-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 48px 20px 64px;
	box-sizing: border-box;
}

.empreendimento-archive-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 48px;
}

.empreendimento-card {
	margin: 0;
	display: flex;
	flex-direction: column;
}

.empreendimento-card__media {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f2f2f2;
}

.empreendimento-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.empreendimento-card__media:hover img {
	transform: scale(1.03);
}

.empreendimento-card__body {
	padding: 20px 0 0;
}

.empreendimento-card__title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 16px;
	color: #111;
}

.empreendimento-card__title a {
	color: inherit;
	text-decoration: none;
}

.empreendimento-card__title a:hover {
	color: #7cb342;
}

.empreendimento-card__btn {
	display: inline-block;
	background: #7cb342;
	color: #fff;
	padding: 8px 18px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 2px;
	transition: background 0.2s ease, transform 0.1s ease;
}

.empreendimento-card__btn:hover,
.empreendimento-card__btn:focus {
	background: #689f38;
	color: #fff;
	text-decoration: none;
}

.empreendimento-card__btn:active {
	transform: translateY(1px);
}

/* --- Responsivo --------------------------------------------------- */
@media (max-width: 800px) {
	.empreendimento-archive-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.empreendimento-archive-container {
		padding: 32px 16px 48px;
	}

	.empreendimento-card__title {
		font-size: 1.25rem;
	}
}

/* --- Paginação --------------------------------------------------- */
.empreendimento-archive .pagination,
.empreendimento-archive .navigation.pagination {
	margin-top: 48px;
	text-align: center;
}

.empreendimento-archive-empty {
	text-align: center;
	padding: 40px 0;
	color: #666;
}
