/* =============================================================
   Villa Carriedo – Sección Presentación
   Shortcode [habitaciones_presentacion]
   ============================================================= */

/* --- Contenedor principal --- */
.vch-presentacion {
	display: flex;
	align-items: stretch;
	margin: 0 auto;
	background: #FAFAF5;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
	min-height: 320px;
}

/* ================================================================
   CARRUSEL (mitad izquierda)
   ================================================================ */

.vch-pres-carousel {
	position: relative;
	flex: 0 0 40%;
	overflow: hidden;
	background: #e8e6e0;
}

.vch-pres-carousel-inner {
	display: flex;
	height: 100%;
	transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.vch-pres-carousel-slide {
	min-width: 100%;
	height: 100%;
}

.vch-pres-carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* --- Placeholder sin imágenes --- */
.vch-pres-carousel-placeholder {
	width: 100%;
	height: 100%;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8e6e0;
}

/* --- Botones de navegación --- */
.vch-pres-carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.82);
	border: none;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	transition: background 0.2s;
	color: #3c5e4d;
	padding: 0;
}

.vch-pres-carousel-btn:hover {
	background: #fff;
}

.vch-pres-prev { left: 12px; }
.vch-pres-next { right: 12px; }

/* --- Indicadores (dots) --- */
.vch-pres-dots {
	position: absolute;
	bottom: 12px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 7px;
}

.vch-pres-dot {
	width: 9px;
	height: 9px;
	background: rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
	transition: background 0.22s;
}

.vch-pres-dot--active {
	background: #fff;
}

/* ================================================================
   CONTENIDO DE TEXTO (mitad derecha)
   ================================================================ */

.vch-presentacion__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 44px 52px;
	background: #FAFAF5;
}

.vch-presentacion__texto p {
	font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
	margin: 0 0 18px;
	font-size: 1rem;
	color: #3c5e4d;
	font-weight: 400;
	line-height: 1.65;
}

.vch-presentacion__texto p:last-child {
	margin-bottom: 0;
}

/* --- Botón CTA --- */
.vch-presentacion__btn {
	display: inline-block;
	margin-top: 28px;
	padding: 12px 30px;
	background: #3c5e4d;
	color: #fff !important;
	border-radius: 4px;
	text-decoration: none !important;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: background 0.2s;
	align-self: flex-start;
	border: none;
	cursor: pointer;
}

.vch-presentacion__btn:hover,
.vch-presentacion__btn:focus {
	background: #2e4a3c;
	color: #fff !important;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 820px) {
	.vch-presentacion {
		flex-direction: column;
	}

	.vch-pres-carousel {
		flex: 0 0 auto;
		aspect-ratio: 16 / 9;
		min-height: unset;
	}

	.vch-presentacion__content {
		padding: 32px 28px;
	}
}

@media (max-width: 480px) {
	.vch-presentacion__content {
		padding: 24px 20px;
	}

	.vch-presentacion__btn {
		align-self: stretch;
		text-align: center;
	}
}
