/* LDI Media Manager - Front */
.ldi-gallery {
	display: grid;
	gap: 12px;
	margin: 16px 0;
}

.ldi-gallery.ldi-cols-2 { grid-template-columns: repeat(2, 1fr); }
.ldi-gallery.ldi-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ldi-gallery.ldi-cols-4 { grid-template-columns: repeat(4, 1fr); }
.ldi-gallery.ldi-cols-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 768px) {
	.ldi-gallery.ldi-cols-3,
	.ldi-gallery.ldi-cols-4,
	.ldi-gallery.ldi-cols-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.ldi-gallery { grid-template-columns: 1fr !important; }
}

.ldi-gallery__item {
	overflow: hidden;
	border-radius: 8px;
	background: #f3f4f6;
	aspect-ratio: 4 / 3;
}

.ldi-gallery__item a {
	display: block;
	width: 100%;
	height: 100%;
}

.ldi-gallery__img,
.ldi-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.ldi-gallery__item:hover .ldi-gallery__img { transform: scale(1.04); }

.ldi-gallery__item--video {
	aspect-ratio: 16 / 9;
}

.ldi-gallery__item--video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Imóvel completo */
.ldi-imovel-completo {
	max-width: 1100px;
	margin: 0 auto;
	font-family: inherit;
}

.ldi-imovel__header { margin-bottom: 20px; }

.ldi-imovel__title {
	font-size: 28px;
	margin: 0 0 8px;
	color: #1f2937;
}

.ldi-imovel__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 8px;
}

.ldi-imovel__codigo {
	font-family: monospace;
	background: #f3f4f6;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 13px;
}

.ldi-imovel__local {
	color: #6b7280;
	font-size: 14px;
}

.ldi-imovel__status {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: 0.5px;
}

.ldi-status--disponivel { background: #dcfce7; color: #166534; }
.ldi-status--reservado  { background: #fef3c7; color: #92400e; }
.ldi-status--vendido    { background: #fecaca; color: #991b1b; }
.ldi-status--pausado    { background: #e5e7eb; color: #374151; }

.ldi-imovel__valor {
	font-size: 24px;
	font-weight: 700;
	color: #2c4a47;
	margin-top: 8px;
}

.ldi-imovel__descricao {
	font-size: 16px;
	line-height: 1.6;
	color: #374151;
	margin-bottom: 24px;
}

.ldi-imovel__section {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #e5e7eb;
}

.ldi-imovel__section h3 {
	font-size: 20px;
	margin: 0 0 16px;
	color: #1f2937;
}

.ldi-imovel__cond-grupo { margin-bottom: 24px; }

.ldi-imovel__cond-grupo h4 {
	font-size: 16px;
	margin: 0 0 12px;
	color: #4b5563;
}
