/* Estilos específicos para páginas internas */

/* Page Hero Wrapper - header transparente sobreposto ao page-header */
.page-hero-wrapper {
	position: relative;
}

/* Page Header */
.page-header {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(213, 144, 86, 0.15) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.page-header h1 {
	font-size: 56px;
	margin-bottom: 16px;
	font-weight: 600;
	letter-spacing: -1px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 1;
}

.page-header p {
	font-size: 19px;
	opacity: 0.9;
}

.project-header {
	padding: 120px 0 80px;
}

.project-header-content {
	text-align: center;
}

.project-status-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 4px;
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--white);
}

.project-status-badge.status-lancamento {
	background: var(--accent-color);
}

.project-status-badge.status-construcao {
	background: var(--primary-color);
}

.project-status-badge.status-entregue {
	background: var(--accent-green);
}

/* About Preview em página interna (sem CTA) */
.about-preview--page .about-preview-cta {
	display: none;
}

.about-preview-lead--page {
	font-size: 26px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 35px;
	max-width: 100%;
}

.about-preview-blocks--full {
	grid-template-columns: 1fr 1fr;
	gap: 35px 50px;
}

/* Pilares: Experiência, Relacionamento, Nova Marca */
.pillars-section {
	padding: 80px 0;
	background: var(--light-color);
}

.pillars-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.pillar-card {
	background: var(--white);
	padding: 45px 35px;
	border-left: 4px solid var(--accent-color);
	transition: var(--transition);
}

.pillar-card:hover {
	box-shadow: var(--shadow-lg);
}

.pillar-title {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent-color);
	margin-bottom: 16px;
}

.pillar-card p {
	color: var(--text-light);
	line-height: 1.8;
	font-size: 15px;
	margin: 0;
}

@media (max-width: 900px) {
	.pillars-grid {
		grid-template-columns: 1fr;
	}
}

/* Values Section - estilo elegante alinhado aos diferenciais */
.values-section {
	padding: 80px 0;
	background: var(--white);
}

.values-section .section-header {
	margin-bottom: 50px;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.value-card {
	background: transparent;
	padding: 45px 35px;
	border-radius: 0;
	text-align: center;
	transition: var(--transition);
	border: 2px solid rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}

.value-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gradient-accent);
	transform: scaleX(0);
	transition: var(--transition);
}

.value-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-color);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.value-card:hover::before {
	transform: scaleX(1);
}

.value-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: transparent;
	border: 2px solid var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	font-size: 32px;
	transition: var(--transition);
}

.value-card:hover .value-icon {
	background: var(--gradient-accent);
	color: var(--white);
	border-color: transparent;
	transform: scale(1.05);
}

.value-card h3 {
	color: var(--primary-color);
	margin-bottom: 18px;
	font-size: 22px;
	font-weight: 600;
}

.value-card p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 15px;
	font-size: 15px;
}

.value-card ul {
	list-style: none;
	text-align: left;
}

.value-card ul li {
	margin-bottom: 10px;
	color: var(--text-light);
	font-size: 15px;
}

.value-card ul li i {
	color: var(--accent-color);
	margin-right: 10px;
}

/* Team Section - elegante com fundo light-color */
.team-section {
	padding: 80px 0;
	background: var(--light-color);
}

.team-section .section-header {
	margin-bottom: 50px;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.team-member {
	text-align: center;
	background: var(--white);
	padding: 35px 25px;
	border-radius: 0;
	transition: var(--transition);
	border: 2px solid transparent;
}

.team-member:hover {
	transform: translateY(-5px);
	border-color: var(--accent-color);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
	width: 180px;
	height: 180px;
	margin: 0 auto 20px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--light-color-alt);
	transition: var(--transition);
}

.team-member:hover .team-image {
	transform: scale(1.03);
	border-color: var(--accent-color);
}

.team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-member h3 {
	color: var(--primary-color);
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 600;
}

.team-role {
	color: var(--accent-color);
	font-weight: 600;
	margin-bottom: 12px;
	font-size: 14px;
}

.team-bio {
	color: var(--text-light);
	font-size: 14px;
	line-height: 1.6;
}

/* Certifications Section - slider horizontal com ícones */
.certifications-section--timeline {
	padding: 120px 0;
	background: var(--gradient-primary);
	color: var(--white);
}

.certifications-timeline {
	max-width: 1200px;
	margin: 0 auto;
}

.certifications-timeline-intro {
	text-align: center;
	margin-bottom: 70px;
}

.certifications-section--timeline .about-preview-label {
	color: var(--accent-color);
	border-left-color: var(--accent-color);
}

.certifications-timeline-title {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--white);
}

.certifications-timeline-subtitle {
	font-size: 17px;
	opacity: 0.9;
	line-height: 1.6;
}

/* Container do slider com setas */
.certifications-slider-container {
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
}

/* Setas do slider */
.certifications-arrow {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition:
		var(--transition),
		opacity 0.2s ease;
}

.certifications-arrow:hover:not(:disabled) {
	background: var(--accent-color);
	border-color: var(--accent-color);
	transform: scale(1.05);
}

.certifications-arrow--next {
	order: 3;
}

/* Wrapper - overflow hidden, sem scroll */
.certifications-slider-wrapper {
	flex: 1;
	overflow: hidden;
}

/* Track com linha conectando os ícones - transição suave */
.certifications-slider {
	display: flex;
	gap: 50px;
	padding: 20px 20px 30px;
	width: max-content;
	position: relative;
	transition: transform 0.4s ease;
}

.certifications-slider::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 56px;
	height: 2px;
	background: rgba(255, 255, 255, 0.35);
	z-index: 0;
}

.certifications-timeline-item {
	flex-shrink: 0;
	width: 280px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.certifications-timeline-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-primary);
	color: var(--accent-color);
	font-size: 28px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
}

.certifications-timeline-content h3 {
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--white);
}

.certifications-timeline-content p {
	font-size: 15px;
	opacity: 0.85;
	line-height: 1.55;
}

/* Sustainability Section - layout elegante */
.sustainability-section {
	padding: 80px 0;
	background: var(--light-color);
}

/* Título e descrição centralizados no topo */
.sustainability-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.sustainability-title {
	font-size: 40px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 24px;
	line-height: 1.25;
}

.sustainability-description {
	font-size: 18px;
	color: var(--text-light);
	line-height: 1.8;
}

.sustainability-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: stretch;
}

.sustainability-items {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.sustainability-item {
	display: flex;
	gap: 24px;
	align-items: center;
	padding: 28px;
	background: var(--white);
	border-left: 3px solid var(--accent-color);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.sustainability-item:hover {
	transform: translateX(8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.sustainability-item i {
	font-size: 32px;
	color: var(--accent-color);
	min-width: 48px;
	text-align: center;
	flex-shrink: 0;
}

.sustainability-item h4 {
	color: var(--primary-color);
	margin-bottom: 6px;
	font-size: 17px;
	font-weight: 600;
}

.sustainability-item p {
	color: var(--text-light);
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

/* Imagem à direita - altura total */
.sustainability-image {
	overflow: hidden;
	position: relative;
	min-height: 100%;
}

.sustainability-image img {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	display: block;
}

/* Filters Section - estilo igual às tags de status dos empreendimentos */
.filters-section {
	padding: 40px 0;
	background: var(--light-color);
}

.filters {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 8px 18px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--white);
	border: none;
	cursor: pointer;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.filter-btn:hover {
	opacity: 0.9;
	transform: scale(1.03);
}

.filter-btn--all {
	background: var(--text-light);
}

.filter-btn--all.active {
	background: var(--primary-color);
}

.filter-btn--lancamento {
	background: var(--accent-color);
}

.filter-btn--lancamento.active {
	background: var(--accent-color);
	opacity: 1;
}

.filter-btn--construcao {
	background: var(--primary-color);
}

.filter-btn--construcao.active {
	background: var(--primary-color);
	opacity: 1;
}

.filter-btn--entregue {
	background: var(--accent-green);
}

.filter-btn--entregue.active {
	background: var(--accent-green);
	opacity: 1;
}

/* Status adicionados pelo cliente (slug diferente dos três padrões) */
.filter-btn--outros {
	background: var(--text-light);
}

.filter-btn--outros.active {
	background: var(--primary-color);
	opacity: 1;
}

/* Estado inativo - versão mais suave */
.filter-btn:not(.active) {
	opacity: 0.65;
}

.filter-btn:not(.active):hover {
	opacity: 0.9;
}

/* Projects Section */
.projects-section {
	padding: 60px 0;
	background: var(--white);
}

/* Listagem - 2 colunas, tipografia reduzida, imagem mais alta, overlay mais escuro */
.projects-grid--listing {
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* Imagem mais alta para ver mais da foto */
.project-card--listing .project-image {
	height: 480px;
	min-height: 480px;
}

/* Overlay gradiente preto forte – mesma leitura da home */
.project-card--listing .project-overlay {
	height: 70%;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.97) 0%,
		rgba(0, 0, 0, 0.85) 25%,
		rgba(0, 0, 0, 0.5) 50%,
		rgba(0, 0, 0, 0.15) 75%,
		transparent 100%
	);
}

/* Espaçamento uniforme (igual à home) */
.project-card--listing .project-content {
	padding: 18px 28px 22px;
}

.project-card--listing .project-content h3 {
	font-size: 22px;
	margin-bottom: 6px;
}

.project-card--listing .project-location {
	font-size: 13px;
	margin-bottom: 6px;
}

.project-card--listing .project-description {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 6px;
	opacity: 0.95;
}

.project-card--listing .project-highlights {
	list-style: none;
	margin: 0 0 6px;
	padding: 0;
}

.project-card--listing .project-highlights li {
	color: rgba(255, 255, 255, 0.92);
	font-size: 12px;
	line-height: 1.45;
	margin-bottom: 5px;
	display: flex;
	align-items: flex-start;
	gap: 6px;
}

.project-card--listing .project-highlights li:last-child {
	margin-bottom: 0;
}

.project-card--listing .project-highlights li i {
	color: var(--accent-color);
	flex-shrink: 0;
	margin-top: 1px;
}

.project-card--listing .project-status {
	top: 14px;
	right: 14px;
	padding: 5px 11px;
	font-size: 10px;
}

.project-card--listing .project-ribbon-venda {
	top: 16px;
	left: 16px;
	padding: 10px 18px;
	font-size: 11px;
	letter-spacing: 0.06em;
}
.project-card--listing .project-ribbon-venda i {
	font-size: 12px;
}

/* Selo flutuante "Disponível para venda" → WhatsApp (página de detalhe do empreendimento) */
@keyframes selo-whatsapp-entrada {
	from {
		opacity: 0;
		transform: translateX(-120%) translateY(-50%);
	}
	to {
		opacity: 1;
		transform: translateX(0) translateY(-50%);
	}
}

.project-selo-whatsapp {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 900;
	text-decoration: none;
	color: var(--white);
	animation: selo-whatsapp-entrada 0.6s cubic-bezier(0.34, 1.56, 0.64, 1)
		forwards;
}
.project-selo-whatsapp:hover {
	color: var(--white);
}
.project-selo-whatsapp:hover .project-selo-whatsapp__badge {
	transform: scale(1.03);
	box-shadow:
		0 12px 32px rgba(37, 122, 62, 0.35),
		0 0 0 1px rgba(255, 255, 255, 0.2);
}

.project-selo-whatsapp__badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 18px 14px 16px;
	background: linear-gradient(160deg, #0d5c1f 0%, #1a7a2e 45%, #25a038 100%);
	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	border-radius: 0 12px 12px 0;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-left: none;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}
.project-selo-whatsapp__badge i {
	font-size: 28px;
	opacity: 0.98;
	line-height: 1;
}
.project-selo-whatsapp__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2;
	text-align: center;
	max-width: 90px;
}
.project-selo-whatsapp__cta {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	opacity: 0.95;
	text-align: center;
}

@media (max-width: 768px) {
	.project-selo-whatsapp__badge {
		padding: 14px 10px 12px;
	}
	.project-selo-whatsapp__badge i {
		font-size: 24px;
	}
	.project-selo-whatsapp__label {
		font-size: 10px;
		max-width: 80px;
	}
	.project-selo-whatsapp__cta {
		font-size: 9px;
	}
}

.project-card--listing .project-info {
	display: flex;
	gap: 14px;
	margin-bottom: 10px;
	margin-top: 0;
	flex-wrap: wrap;
}

.project-card--listing .project-info span {
	color: rgba(255, 255, 255, 0.95);
	font-size: 12px;
}

.project-card--listing .project-info i {
	color: var(--accent-color);
	margin-right: 5px;
}

.project-card--listing .btn-project {
	padding: 10px 24px;
	font-size: 12px;
}

.project-info {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.project-info span {
	color: var(--text-light);
	font-size: 14px;
}

.project-info i {
	color: var(--accent-color);
	margin-right: 5px;
}

/* Gallery Section */
.gallery-section {
	padding: 60px 0;
	background: var(--white);
}

.gallery-section-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 16px;
	margin-top: 0;
}

.gallery-section-title--sub {
	margin-top: 40px;
}

.gallery-main {
	margin-bottom: 30px;
}

.gallery-main-image {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	cursor: pointer;
	min-height: 800px;
	height: 65vh;
	width: 100%;
	position: relative;
}

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

.gallery-thumbnails {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 140px));
	gap: 12px;
	justify-content: flex-start;
	align-items: start;
}

.gallery-item {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	min-height: 92px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: var(--transition);
}

.gallery-item:hover,
.gallery-item.active {
	border-color: var(--primary-color);
}

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

/* Galeria exclusiva do empreendimento */
.project-gallery .project-gallery-main-image {
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.project-gallery .project-gallery-item {
	position: relative;
}

.project-gallery .project-gallery-item.active {
	border-color: var(--accent-color);
	box-shadow: 0 4px 16px rgba(213, 144, 86, 0.28);
}

.project-gallery .project-gallery-item::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid transparent;
	border-radius: 6px;
	transition: var(--transition);
}

.project-gallery .project-gallery-item:hover::after,
.project-gallery .project-gallery-item.active::after {
	border-color: rgba(213, 144, 86, 0.45);
}

/* Lightbox da galeria - aberto ao clicar na imagem principal */
.gallery-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}

.gallery-lightbox-content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-lightbox-content img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gallery-lightbox-close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 48px;
	height: 48px;
	border: none;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	font-size: 32px;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.gallery-lightbox-close:hover {
	background: var(--accent-color);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
	font-size: 24px;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
	background: var(--accent-color);
}

.gallery-lightbox-prev {
	left: 24px;
}

.gallery-lightbox-next {
	right: 24px;
}

/* Project Description Section */
/* Sobre o Empreendimento - formato about-preview (texto lado a lado) */
.project-about-section {
	padding: 80px 0;
	background: var(--light-color);
}

.project-about-section .about-preview-label {
	color: var(--accent-color);
	border-left-color: var(--accent-color);
}

.project-about-title {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--primary-color);
	margin-bottom: 45px;
	max-width: 750px;
}

.project-about-blocks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 45px;
	margin-bottom: 55px;
}

.project-about-block p {
	font-size: 16px;
	line-height: 1.85;
	color: var(--text-light);
}

/* Diferenciais - formato elegante com ícones */
.project-differentials-title {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 28px;
}

.project-differentials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.project-differential-item {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 24px;
	background: var(--white);
	border-left: 3px solid var(--accent-color);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.project-differential-item:hover {
	transform: translateX(6px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.project-differential-item i {
	font-size: 24px;
	color: var(--accent-color);
	flex-shrink: 0;
}

.project-differential-item span {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.5;
}

/* Fallback para description-content em outras páginas */
.description-content {
	max-width: 900px;
	margin: 0 auto;
}

.description-text h2 {
	color: var(--primary-color);
	margin-bottom: 20px;
	font-size: 32px;
}

.description-text h3 {
	color: var(--primary-color);
	margin: 30px 0 15px;
	font-size: 24px;
}

.description-text p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 17px;
}

.features-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
	margin-top: 20px;
}

.features-list li {
	color: var(--text-light);
	padding: 10px 0;
}

.features-list li i {
	color: var(--accent-color);
	margin-right: 10px;
}

/* Andamento da Obra */
.andamento-obra-section {
	padding: 60px 0;
	background: var(--white);
}

.andamento-obra-header {
	margin-bottom: 50px;
}

.andamento-obra-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.andamento-obra-card {
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s ease;
}

.andamento-obra-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.andamento-obra-card__image {
	height: 260px;
	overflow: hidden;
}

.andamento-obra-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.andamento-obra-card__info {
	padding: 20px 24px;
	background: #f8f6f3;
}

.andamento-obra-card__date {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-color);
}

.andamento-obra-card__desc {
	margin: 0;
	color: var(--text-light);
	font-size: 15px;
	line-height: 1.5;
}

.andamento-obra-card__desc p {
	margin: 0 0 8px;
}

.andamento-obra-card__desc p:last-child {
	margin-bottom: 0;
}

.andamento-obra-card__date + .andamento-obra-card__desc {
	margin-top: 8px;
}

article.andamento-obra-card {
	display: block;
}

/* Floor Plans Section - Slider */
.floor-plans-section {
	padding: 60px 0;
	background: var(--white);
}

.floor-plans-slider {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.floor-plans-slides {
	position: relative;
	min-height: 0;
}

.floor-plan-slide {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.4s ease,
		visibility 0.4s ease;
}

.floor-plan-slide.active {
	position: relative;
	opacity: 1;
	visibility: visible;
}

.floor-plan-card {
	background: var(--light-color);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.floor-plan-card:hover {
	box-shadow: var(--shadow-lg);
}

.floor-plan-image {
	overflow: hidden;
	text-align: center;
	background: var(--light-color);
}

.floor-plan-image img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.floor-plan-info {
	padding: 25px;
}

.floor-plan-info h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 24px;
}

.floor-plan-info p {
	color: var(--text-light);
	margin-bottom: 8px;
}

figure.floor-plan-card {
	margin: 0;
}

.floor-plan-info .floor-plan-desc {
	color: var(--text-light);
}

.floor-plan-info .floor-plan-desc p {
	margin: 0 0 8px;
}

.floor-plan-info .floor-plan-desc p:last-child {
	margin-bottom: 0;
}

/* Setas do slider de plantas */
.floor-plans-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 48px;
	height: 48px;
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.08);
	color: var(--primary-color);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.floor-plans-arrow:hover {
	background: var(--accent-color);
	color: var(--white);
	border-color: var(--accent-color);
	box-shadow: 0 6px 20px rgba(213, 144, 86, 0.35);
}

.floor-plans-arrow--prev {
	left: -24px;
}

.floor-plans-arrow--next {
	right: -24px;
}

/* Bolinhas do slider de plantas */
.floor-plans-pagination {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.floor-plans-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid var(--accent-color);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: var(--transition);
}

.floor-plans-dot:hover {
	background: rgba(213, 144, 86, 0.3);
}

.floor-plans-dot.active {
	background: var(--accent-color);
}

/* Technical Sheet Section */
/* Ficha Técnica - layout horizontal com valor em destaque */
.technical-sheet-section {
	padding: 80px 0;
	background: var(--white);
}

.technical-sheet-header {
	margin-bottom: 50px;
}

.technical-sheet-section .about-preview-label {
	color: var(--accent-color);
	border-left-color: var(--accent-color);
}

.technical-sheet-title {
	font-size: 36px;
	font-weight: 600;
	color: var(--primary-color);
	margin-top: 16px;
}

.technical-sheet-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.technical-sheet-item {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 32px 36px;
	border-right: 1px solid rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	transition: background 0.2s ease;
}

.technical-sheet-item:nth-child(3n) {
	border-right: none;
}

.technical-sheet-item:hover {
	background: var(--light-color);
}

.technical-sheet-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--light-color);
	color: var(--accent-color);
	font-size: 22px;
	flex-shrink: 0;
}

.technical-sheet-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.technical-sheet-value {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
}

.technical-sheet-label {
	font-size: 13px;
	color: var(--text-light);
	letter-spacing: 0.02em;
}

/* Construction Progress Section */
.construction-progress-section {
	padding: 60px 0;
	background: var(--white);
}

.progress-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.progress-item {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.progress-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.progress-date {
	padding: 15px;
	background: var(--light-color);
	text-align: center;
	color: var(--text-light);
	font-size: 14px;
}

/* Project Location Section */
.project-location-section {
	padding: 60px 0;
	background: var(--light-color);
}

.project-location-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;
}

.project-location-address {
	background: var(--white);
	padding: 40px 44px;
	border-radius: 0;
	box-shadow: var(--shadow);
	min-height: 400px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.project-location-address p {
	margin-bottom: 12px;
	color: var(--text-color);
	font-size: 17px;
	line-height: 1.5;
}

.project-location-address p:first-of-type {
	font-size: 19px;
	margin-bottom: 16px;
}

.project-location-address i {
	color: var(--accent-color);
	margin-right: 10px;
}

.project-location-address .btn {
	margin-top: 28px;
	padding: 12px 20px;
	font-size: 14px;
	width: auto !important;
	max-width: none !important;
}

.project-location-address .btn i {
	color: var(--white);
}

.project-location-map {
	border-radius: 0;
	overflow: hidden;
	box-shadow: var(--shadow);
	min-height: 400px;
	height: 400px;
}

.project-location-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 400px;
}

@media (max-width: 1080px) {
	.project-location-content {
		grid-template-columns: 1fr;
	}

	.project-location-address {
		min-height: auto;
		padding: 32px 28px;
	}

	.project-location-map {
		min-height: 320px;
		height: 320px;
	}

	.project-location-map iframe {
		min-height: 320px;
	}
}

/* CTA Contact Section */
.cta-contact-section {
	padding: 60px 0;
	background: linear-gradient(135deg, #3d3d3d 0%, #5a5a5a 50%, #6b6b6b 100%);
	color: var(--white);
	text-align: center;
}

.cta-contact-content h2 {
	font-size: 40px;
	margin-bottom: 16px;
}

.cta-contact-content p {
	font-size: 19px;
	margin-bottom: 32px;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Decorated Apartments Section – um item por linha, fundo 100% fora do container */
.decorated-apartments-section {
	padding: 0;
}

.decorated-apartment {
	display: block;
	width: 100%;
	padding: 80px 0;
	box-sizing: border-box;
}

/* Cor de fundo alternada: 100% da largura (fora do container) */
.decorated-apartment:nth-child(odd) {
	background: var(--white);
}

.decorated-apartment:nth-child(even) {
	background: var(--light-color);
}

.apartment-header {
	margin-bottom: 48px;
}

/* Botão "Disponível para venda" → WhatsApp (padrão .btn .btn-primary do site) */
.decorated-apartment-selo-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	max-width: 320px;
	justify-content: center;
}

.decorated-apartment-selo-whatsapp i {
	line-height: 1;
}

.apartment-header .about-preview-label {
	display: block;
	color: var(--accent-color);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.apartment-title {
	color: var(--primary-color);
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.apartment-unit-info {
	color: var(--text-light);
	font-size: 0.95rem;
	margin-bottom: 8px;
}

.apartment-unit-badge {
	display: inline-block;
	padding: 3px 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	border-radius: 2px;
}

.apartment-unit-badge--pronto {
	background: var(--accent-green);
	color: var(--white);
}

.apartment-unit-badge--andamento {
	background: var(--accent-color);
	color: var(--white);
}

.apartment-location {
	color: var(--text-light);
	font-size: 0.95rem;
}

.apartment-location i {
	color: var(--accent-color);
	margin-right: 8px;
}

/* Lista de unidades decoradas (abaixo da planta) – mantido para compatibilidade */
.decorated-units-list {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.decorated-units-list .apartment-details-title {
	margin-bottom: 20px;
}

.decorated-units-items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.decorated-units-items li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.decorated-unit-name {
	font-weight: 600;
	color: var(--primary-color);
	font-size: 16px;
}

.decorated-unit-badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	border-radius: 2px;
}

.decorated-unit-pronto {
	background: var(--accent-green);
	color: var(--white);
}

.decorated-unit-andamento {
	background: var(--accent-color);
	color: var(--white);
}

.decorated-unit-info {
	color: var(--text-light);
	font-size: 14px;
}

.apartment-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.apartment-left {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.apartment-right {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Galeria apartamentos - altura proporcional; miniatura troca principal, principal abre lightbox */
.apartment-gallery .gallery-main-image.apartment-gallery-main {
	min-height: 400px;
	max-height: 500px;
	height: 45vh;
	margin-bottom: 24px;
}

.apartment-gallery .gallery-thumbnails {
	grid-template-columns: repeat(auto-fill, minmax(120px, 120px));
	gap: 10px;
}

/* Ficha técnica apartamentos - 4 por linha, compacta */
.apartment-technical-sheet {
	padding: 0;
}

.apartment-technical-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0 0 16px;
}

.apartment-technical-grid.technical-sheet-grid {
	margin-bottom: 0;
	grid-template-columns: repeat(3, 1fr);
}

.apartment-technical-grid .technical-sheet-item {
	padding: 20px;
	gap: 14px;
	min-height: 72px;
}

.apartment-technical-grid .technical-sheet-item:nth-child(3n) {
	border-right: none;
}

.apartment-technical-grid .technical-sheet-icon {
	width: 40px;
	height: 40px;
	font-size: 16px;
}

.apartment-technical-grid .technical-sheet-value {
	font-size: 0.95rem;
}

.apartment-technical-grid .technical-sheet-label {
	font-size: 0.75rem;
}

/* Coluna direita: descrição, planta, CTA */
.apartment-details-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 16px;
	letter-spacing: 0.02em;
}

.apartment-description-block p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 16px;
	font-size: 0.95rem;
}

.apartment-description-block p:last-child {
	margin-bottom: 0;
}

.apartment-floor-plan-block img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.apartment-cta {
	margin-top: 8px;
}

/* Contact Section - 2 boxes iguais (50/50), mesma altura, apenas cor/fundo diferentes */
.contact-section {
	padding: 60px 0;
	background: #f5f5f4;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
}

.contact-form-wrapper {
	background: var(--white);
	padding: 60px;
}

.contact-info-wrapper {
	display: flex;
}

.contact-info {
	width: 100%;
	min-height: 100%;
	background: var(--light-color);
	padding: 60px;
}

.contact-form-wrapper h2 {
	color: var(--primary-color);
	margin-bottom: 30px;
	font-size: 32px;
}

.contact-info h2 {
	color: var(--primary-color);
	margin-bottom: 30px;
	font-size: 22px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 8px;
	color: var(--text-color);
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px;
	border: 2px solid var(--gray);
	border-radius: 5px;
	font-size: 16px;
	font-family: inherit;
	transition: var(--transition);
	background: var(--white);
	width: 100%;
	max-width: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-item {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 19px;
	flex-shrink: 0;
}

.contact-details h4 {
	color: var(--primary-color);
	margin-bottom: 5px;
}

.contact-details p {
	color: var(--text-light);
	margin: 3px 0;
}

/*
 * Links institucionais (tel/mail): padronização com hierarquia de cor do tema.
 * Nota: a página de contato não usa <main>; o bloco não herdava os hovers globais em main a:not(.btn).
 */
.contact-info .contact-details a {
	display: inline;
	color: var(--accent-color);
	font-weight: 500;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	text-decoration-color: rgba(213, 144, 86, 0.45);
	transition:
		color var(--hover-duration) var(--hover-ease),
		text-decoration-color var(--hover-duration) var(--hover-ease),
		opacity var(--hover-duration) var(--hover-ease);
}

.contact-info .contact-details a:hover {
	color: var(--accent-hover);
	text-decoration-color: var(--accent-hover);
}

.contact-info .contact-details a:focus-visible {
	outline: 2px solid var(--accent-color);
	outline-offset: 3px;
	text-decoration-thickness: 2px;
}

.whatsapp-contact {
	margin-top: 30px;
}

.btn-whatsapp {
	background: #25d366;
	color: var(--white);
	border-color: #25d366;
	width: 100%;
}

.btn-whatsapp:hover {
	background: #20ba5a;
	border-color: #20ba5a;
	transform: translateY(calc(-1 * var(--hover-lift)));
}

.btn-whatsapp--small {
	display: inline-block;
	width: auto;
	padding: 12px 24px;
	font-size: 14px;
}

/* Map Section */
.map-section {
	padding: 60px 0;
	background: var(--light-color);
}

.map-wrapper {
	margin-top: 30px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

@media (max-width: 1366px) {
	.page-header h1 {
		font-size: 48px;
	}

	.page-header p {
		font-size: 18px;
	}

	.gallery-main-image {
		min-height: 620px;
		height: 62vh;
	}

	.project-card--listing .project-image {
		height: 430px;
		min-height: 430px;
	}

	.contact-form-wrapper,
	.contact-info {
		padding: 48px;
	}
}

@media (max-width: 1080px) {
	.values-grid,
	.project-differentials-grid,
	.andamento-obra-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	.projects-grid--listing {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.project-card--listing .project-image {
		height: 420px;
		min-height: 420px;
	}

	.project-card--listing .project-content {
		padding: 18px 24px 22px;
	}

	.gallery-main-image {
		min-height: 520px;
		height: 58vh;
	}

	.gallery-thumbnails {
		grid-template-columns: repeat(auto-fill, minmax(120px, 120px));
	}

	.apartment-gallery .gallery-thumbnails {
		grid-template-columns: repeat(auto-fill, minmax(104px, 104px));
	}

	.project-about-blocks {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-bottom: 40px;
	}

	.project-differential-item {
		padding: 20px;
		gap: 14px;
	}

	.contact-wrapper,
	.apartment-content,
	.sustainability-content {
		grid-template-columns: 1fr;
	}

	.contact-form-wrapper,
	.contact-info {
		padding: 42px 40px;
	}

	.contact-info-wrapper {
		display: block;
	}

	.floor-plans-arrow--prev {
		left: 8px;
	}

	.floor-plans-arrow--next {
		right: 8px;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.page-header h1 {
		font-size: 32px;
	}

	.page-header {
		padding: 104px 0 64px;
	}

	.page-header p {
		font-size: 16px;
	}

	.gallery-main-image {
		min-height: 420px;
		height: 55vh;
	}

	.gallery-thumbnails {
		grid-template-columns: repeat(auto-fill, minmax(112px, 112px));
	}

	.apartment-gallery .gallery-thumbnails {
		grid-template-columns: repeat(auto-fill, minmax(96px, 96px));
	}

	.apartment-gallery .gallery-main-image.apartment-gallery-main {
		min-height: 320px;
		max-height: 420px;
		height: 40vh;
	}

	.project-card--listing .project-content {
		padding: 18px 24px 22px;
	}

	.project-card--listing .project-content h3 {
		font-size: 20px;
	}

	.project-card--listing .project-image {
		height: 380px;
		min-height: 380px;
	}

	.values-grid {
		grid-template-columns: 1fr;
	}

	.team-grid {
		grid-template-columns: 1fr;
	}

	.project-about-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.project-differentials-grid {
		grid-template-columns: 1fr;
	}

	.decorated-apartment {
		padding: 48px 0;
	}

	.apartment-header {
		margin-bottom: 32px;
	}

	.decorated-apartment-selo-whatsapp {
		margin-top: 20px;
	}

	.apartment-title {
		font-size: 1.5rem;
	}

	.sustainability-title {
		font-size: 28px;
	}

	.sustainability-description {
		font-size: 16px;
	}

	.sustainability-header {
		margin-bottom: 45px;
	}

	.sustainability-image img {
		height: auto;
		min-height: 280px;
		object-fit: cover;
	}

	.andamento-obra-card__image {
		height: 220px;
	}

	.floor-plans-arrow--prev {
		left: 12px;
	}
	.floor-plans-arrow--next {
		right: 12px;
	}

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

	.apartment-technical-grid.technical-sheet-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.apartment-technical-grid .technical-sheet-item:nth-child(3n) {
		border-right: 1px solid rgba(0, 0, 0, 0.06);
	}

	.apartment-technical-grid .technical-sheet-item:nth-child(2n) {
		border-right: none;
	}

	.technical-sheet-item:nth-child(3n) {
		border-right: 1px solid rgba(0, 0, 0, 0.06);
	}

	.technical-sheet-item:nth-child(2n) {
		border-right: none;
	}

	.technical-sheet-item:nth-last-child(-n + 3) {
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-buttons .btn,
	.contact-form .btn,
	.whatsapp-contact .btn {
		width: 100%;
	}

	.project-location-address .btn {
		width: auto !important;
		max-width: none !important;
	}
}

@media (max-width: 480px) {
	.page-header {
		padding: 96px 0 56px;
	}

	.page-header h1 {
		font-size: 28px;
	}

	.page-header p {
		font-size: 15px;
	}

	.project-header {
		padding: 104px 0 56px;
	}

	.gallery-main-image {
		min-height: 320px;
		height: 44vh;
	}

	.gallery-thumbnails {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
		justify-content: stretch;
	}

	.apartment-gallery .gallery-thumbnails {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gallery-item {
		min-height: 84px;
	}

	.project-card--listing .project-image {
		height: 320px;
		min-height: 320px;
	}

	.project-card--listing .project-content {
		padding: 16px 18px 18px;
	}

	.project-card--listing .project-content h3 {
		font-size: 18px;
	}

	.project-about-title {
		font-size: 24px;
	}

	.project-differentials-title {
		font-size: 20px;
	}

	.project-differential-item {
		padding: 16px;
	}

	.project-differential-item span {
		font-size: 14px;
	}

	.contact-form-wrapper,
	.contact-info,
	.project-location-address {
		padding: 30px 20px;
	}

	.contact-form-wrapper h2,
	.technical-sheet-title {
		font-size: 26px;
	}

	.contact-info h2 {
		font-size: 20px;
	}

	.contact-item {
		gap: 14px;
		margin-bottom: 24px;
	}

	.contact-icon {
		width: 42px;
		height: 42px;
		font-size: 16px;
	}

	.decorated-apartment {
		padding: 40px 0;
	}

	.apartment-title {
		font-size: 1.35rem;
	}

	.apartment-gallery .gallery-main-image.apartment-gallery-main {
		min-height: 260px;
		max-height: 340px;
		height: 34vh;
	}

	.apartment-floor-plan-block img {
		height: 300px;
	}

	.floor-plans-arrow {
		width: 40px;
		height: 40px;
	}

	.technical-sheet-grid,
	.apartment-technical-grid.technical-sheet-grid {
		grid-template-columns: 1fr;
	}

	.apartment-technical-grid .technical-sheet-item {
		border-right: none !important;
		padding: 10px 15px;
	}

	.apartment-technical-grid .technical-sheet-item:last-child {
		border-bottom: none;
	}

	.apartment-technical-grid .technical-sheet-item,
	.technical-sheet-item {
		border-right: none !important;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	.technical-sheet-item:last-child,
	.apartment-technical-grid .technical-sheet-item:last-child {
		border-bottom: none;
	}
	.contact-form {
		gap: 15px;
	}
}

@media (max-width: 360px) {
	.page-header h1 {
		font-size: 24px;
	}

	.gallery-main-image {
		min-height: 260px;
		height: 38vh;
	}

	.gallery-item {
		min-height: 76px;
	}

	.gallery-thumbnails,
	.apartment-gallery .gallery-thumbnails {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.project-card--listing .project-image {
		height: 280px;
		min-height: 280px;
	}

	.project-card--listing .project-content h3 {
		font-size: 16px;
	}

	.contact-form-wrapper,
	.contact-info,
	.project-location-address {
		padding: 24px 16px;
	}

	.contact-form-wrapper h2,
	.contact-info h2,
	.technical-sheet-title {
		font-size: 22px;
	}

	.apartment-title {
		font-size: 1.2rem;
	}

	.apartment-floor-plan-block img {
		height: 250px;
	}
}

/* Certifications slider responsive */
@media (max-width: 1080px) {
	.certifications-section--timeline {
		padding: 100px 0;
	}

	.certifications-slider {
		gap: 42px;
	}

	.certifications-timeline-item {
		width: 260px;
	}
}

@media (max-width: 768px) {
	.certifications-section--timeline {
		padding: 90px 0;
	}

	.certifications-timeline-intro {
		margin-bottom: 50px;
	}

	.certifications-slider-container {
		gap: 15px;
	}

	.certifications-arrow {
		width: 44px;
		height: 44px;
		font-size: 16px;
	}

	.certifications-slider {
		gap: 40px;
	}

	.certifications-timeline-item {
		width: 250px;
	}

	.certifications-slider::before {
		top: 52px;
	}
}

@media (max-width: 480px) {
	.certifications-section--timeline {
		padding: 80px 0;
	}

	.certifications-timeline-title {
		font-size: 28px;
	}

	.certifications-timeline-intro {
		margin-bottom: 40px;
	}

	.certifications-slider-container {
		gap: 10px;
	}

	.certifications-arrow {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}

	.certifications-slider {
		gap: 45px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.certifications-timeline-item {
		width: 220px;
	}

	.certifications-timeline-icon {
		width: 62px;
		height: 62px;
		font-size: 22px;
		margin-bottom: 20px;
	}

	.certifications-slider::before {
		top: 47px;
	}
}

/* -------------------------------------------------------------------------
   Política de Privacidade — leitura (slug: politica-de-privacidade)
   ------------------------------------------------------------------------- */
.page-politica-de-privacidade .contact-section {
	padding-top: 72px;
	padding-bottom: 96px;
}

.page-politica-de-privacidade .contact-section > .container {
	max-width: min(100%, 42rem);
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 769px) {
	.page-politica-de-privacidade .contact-section > .container {
		max-width: min(100%, 46rem);
	}
}

.page-politica-de-privacidade .page-default-body {
	font-size: 1rem;
	color: var(--text-light);
}

.page-politica-de-privacidade .page-default-body > .entry-content {
	font-size: inherit;
	color: inherit;
}

.page-politica-de-privacidade .page-default-body p,
.page-politica-de-privacidade .page-default-body .entry-content p {
	margin: 0 0 1.25rem;
	line-height: 1.8;
	max-width: 100%;
}

.page-politica-de-privacidade .page-default-body p:last-child,
.page-politica-de-privacidade .page-default-body .entry-content p:last-child {
	margin-bottom: 0;
}

.page-politica-de-privacidade .page-default-body > p:first-of-type em,
.page-politica-de-privacidade
	.page-default-body
	.entry-content
	> p:first-of-type
	em {
	font-style: italic;
	color: var(--text-light);
}

.page-politica-de-privacidade .page-default-body h2,
.page-politica-de-privacidade .page-default-body .entry-content h2 {
	margin: 0 0 0.625rem;
	padding-top: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.35;
	letter-spacing: 0.02em;
}

.page-politica-de-privacidade .page-default-body h2 ~ h2,
.page-politica-de-privacidade .page-default-body .entry-content h2 ~ h2 {
	margin-top: 2.25rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.page-politica-de-privacidade .page-default-body h3,
.page-politica-de-privacidade .page-default-body .entry-content h3 {
	margin: 1.75rem 0 0.5rem;
	font-family: "Montserrat", sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.4;
}

.page-politica-de-privacidade .page-default-body h3:first-child,
.page-politica-de-privacidade .page-default-body .entry-content h3:first-child {
	margin-top: 0;
}

.page-politica-de-privacidade .page-default-body ul,
.page-politica-de-privacidade .page-default-body ol,
.page-politica-de-privacidade .page-default-body .entry-content ul,
.page-politica-de-privacidade .page-default-body .entry-content ol {
	margin: 0 0 1.25rem;
	padding-left: 1.35rem;
	line-height: 1.75;
}

.page-politica-de-privacidade .page-default-body ul:last-child,
.page-politica-de-privacidade .page-default-body ol:last-child,
.page-politica-de-privacidade .page-default-body .entry-content ul:last-child,
.page-politica-de-privacidade .page-default-body .entry-content ol:last-child {
	margin-bottom: 0;
}

.page-politica-de-privacidade .page-default-body li + li,
.page-politica-de-privacidade .page-default-body .entry-content li + li {
	margin-top: 0.45rem;
}

.page-politica-de-privacidade .page-default-body a,
.page-politica-de-privacidade .page-default-body .entry-content a {
	color: var(--accent-color);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color var(--hover-duration) var(--hover-ease);
}

.page-politica-de-privacidade .page-default-body a:hover,
.page-politica-de-privacidade .page-default-body .entry-content a:hover {
	color: var(--accent-hover);
}

.page-politica-de-privacidade .page-default-body strong,
.page-politica-de-privacidade .page-default-body .entry-content strong {
	color: var(--text-color);
	font-weight: 600;
}

.page-politica-de-privacidade .page-header .container p {
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.55;
}

@media (max-width: 768px) {
	.page-politica-de-privacidade .contact-section {
		padding-top: 48px;
		padding-bottom: 72px;
	}

	.page-politica-de-privacidade .page-default-body h2 ~ h2,
	.page-politica-de-privacidade .page-default-body .entry-content h2 ~ h2 {
		margin-top: 1.75rem;
		padding-top: 1.5rem;
	}
}

/* Banner LGPD / cookies — alinhado à paleta e componentes Fronchetti */
#footer-lgpd {
	position: fixed;
	z-index: 9999;
	left: 50%;
	bottom: clamp(16px, 4vw, 28px);
	width: min(1080px, calc(100% - 24px));
	margin: 0;
	padding: clamp(16px, 3vw, 22px) clamp(18px, 3vw, 28px);
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 20px;
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 10px;
	box-shadow: var(--shadow-lg);
	font-family: "Montserrat", sans-serif;
	transform: translate(-50%, 120%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		transform 0.45s var(--hover-ease),
		opacity 0.35s var(--hover-ease),
		visibility 0s linear 0.45s;
}

#footer-lgpd p {
	flex: 1 1 220px;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--text-light);
}

#footer-lgpd #lgpd-accept-link {
	color: var(--accent-color);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 500;
	white-space: nowrap;
	transition: color var(--hover-duration) var(--hover-ease);
}

#footer-lgpd #lgpd-accept-link:hover {
	color: var(--accent-hover);
}

#footer-lgpd #lgpd-accept {
	flex-shrink: 0;
	align-self: center;
	margin: 0;
	padding: 12px 22px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-family: "Montserrat", sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-align: center;
	white-space: nowrap;
	color: var(--white);
	background: var(--gradient-accent);
	box-shadow: 0 4px 15px rgba(213, 144, 86, 0.35);
	transition: var(--transition);
}

#footer-lgpd #lgpd-accept:hover {
	background: linear-gradient(135deg, #b87a45 0%, #d59056 100%);
	transform: translateY(calc(-1 * var(--hover-lift)));
	box-shadow: 0 8px 25px rgba(213, 144, 86, 0.45);
}

#footer-lgpd #lgpd-accept:focus-visible {
	outline: 2px solid var(--accent-color);
	outline-offset: 3px;
}

#footer-lgpd.footer-lgpd-opened {
	transform: translate(-50%, 0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition:
		transform 0.5s var(--hover-ease),
		opacity 0.4s var(--hover-ease),
		visibility 0s;
}

@media (max-width: 576px) {
	#footer-lgpd {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	#footer-lgpd p {
		flex: none;
		text-align: center;
	}

	#footer-lgpd #lgpd-accept-link {
		white-space: normal;
	}

	#footer-lgpd #lgpd-accept {
		width: 100%;
		align-self: stretch;
	}
}
