/* ==========================================================================
   CUSTOM PRODUCT - Pagina de producto (habitacion individual)
   Incluye: intro override, galeria de imagenes, info con amenities, CTA quote
   ========================================================================== */

/* ----------------------------------------------------------------------------
   Estilos base
   ---------------------------------------------------------------------------- */

/* Override del introSec generico para la pagina de producto */
body.product #middle {
	clear: both;
}
body.product #introSec .introBox {
	padding: 0;
	border: none;
}

/* --- Seccion de imagenes del producto --- */

#productsImagesSec {
	position: relative;
	padding-top: 128px;
	padding-bottom: 0;
	overflow: hidden;
}
#productsImagesSec .row {
	display: block;
}
#productsImagesSec .imagesBox {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	position: relative;
	height: 100vh;
}
#productsImagesSec .imagesBox .imagesInner {
	position: relative;
	min-width: 423px;
	min-height: 496px;
	will-change: transform;
}
#productsImagesSec .imagesBox .item picture,
#productsImagesSec .imagesBox .item picture img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#productsImagesSec .imagesBox .item.imgCenter {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#productsImagesSec .imagesBox .item.imgCenter picture {
	width: 100vw;
	height: 100dvh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#productsImagesSec .imagesBox .item.imgLeft {
	width: 310px;
	position: absolute;
	top: 0;
	right: calc(100% + 32px);
}
#productsImagesSec .imagesBox .item.imgRight {
	width: 422px;
	position: absolute;
	bottom: 0;
	left: calc(100% + 32px);
}
#productsImagesSec .imagesBox .item.imgBottom1 {
	width: 366px;
	position: absolute;
	top: calc(100% + 32px);
	right: calc(50% + 16px);
}
#productsImagesSec .imagesBox .item.imgBottom2 {
	width: 366px;
	position: absolute;
	top: calc(100% + 32px);
	left: calc(50% + 16px);
}

/* --- Seccion de info del producto (layout 50/50 con sticky) --- */

#productsIntroSec {
	padding-top: 128px;
	padding-bottom: 0;
}
#productsIntroSec .productsInfoBox {
	display: flex;
}
#productsIntroSec .productsInfoBox .leftCol {
	width: 50%;
	padding: 40px 130px 40px 0;
	border-right: solid 1px #A7A7A7;
}
#productsIntroSec .productsInfoBox .leftCol .leftColBox {
	position: sticky;
	top: 132px;
}
#productsIntroSec .productsInfoBox .leftCol .title {
	margin-bottom: 24px;
	font-family: 'Playfair Display';
	font-size: 4rem;
	color: #00181a;
	font-weight: 400;
	line-height: 5rem;
	text-transform: uppercase;
	text-wrap: balance;
}
#productsIntroSec .productsInfoBox .leftCol p {
	margin-bottom: 24px;
	font-size: 1rem;
	color: #00181a;
	font-weight: 400;
	line-height: 1.5rem;
}
#productsIntroSec .productsInfoBox .leftCol .btnBox {
	display: flex;
	gap: 16px;
	padding-top: 16px;
}
#productsIntroSec .productsInfoBox .leftCol .btnBox .bookBtn {
	border-color: #00A8B5;
	background-color: #00A8B5;
	color: #ffffff;
}
#productsIntroSec .productsInfoBox .leftCol .btnBox .bookBtn:hover {
	border-color: #008691;
	background-color: #008691;
	color: #ffffff;
}
#productsIntroSec .productsInfoBox .leftCol .btnBox a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	border: solid 1px #01464a;
	color: #01464a;
	transition: all 0.3s ease;
}
#productsIntroSec .productsInfoBox .leftCol .btnBox .bookBtn::after {
	display: none;
}
#productsIntroSec .productsInfoBox .leftCol .btnBox a::after {
	content: '';
	width: 11px;
	height: 11px;
	background-image: url('../../images/arrow-right.svg');
	background-size: contain;
	background-repeat: no-repeat;
	transition: all 0.3s ease;
}
#productsIntroSec .productsInfoBox .leftCol .btnBox a:hover {
	border-color: #00a8b5;
	background-color: #00a8b5;
	color: #ffffff;
}
#productsIntroSec .productsInfoBox .leftCol .btnBox a:hover::after {
	filter: brightness(0) invert(1);
}
#productsIntroSec .productsInfoBox .leftCol .btnBox a img.arrow {
	display: none;
}
#productsIntroSec .productsInfoBox .rightCol {
	width: 50%;
	padding-left: 130px;
}
#productsIntroSec .productsInfoBox .rightCol .list {
	width: 100%;
	padding: 40px 0;
	border-bottom: solid 1px #A7A7A7;
}
#productsIntroSec .productsInfoBox .rightCol .list:last-child {
	border: none;
}
#productsIntroSec .productsInfoBox .rightCol .list .title {
	margin-bottom: 24px;
	font-size: 1.1875rem;
	color: #00181a;
	font-weight: 700;
	line-height: 1.7813rem;
}
#productsIntroSec .productsInfoBox .rightCol .list ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 0;
	margin: 0;
	list-style: none;
}
#productsIntroSec .productsInfoBox .rightCol .list ul li.displayItem {
	display: none;
}
#productsIntroSec .productsInfoBox .rightCol .list ul li span {
	width: 40px;
	display: inline-block;
}
#productsIntroSec .productsInfoBox .rightCol .list ul li span img {
	width: 100%;
	height: auto;
}
#productsIntroSec .productsInfoBox .rightCol .list ul li p {
	display: inline-block;
	width: calc(100% - 45px);
	padding-left: 16px;
	margin: 0;
	font-size: 1rem;
	color: #00181a;
	font-weight: 400;
	line-height: 1.5rem;
	vertical-align: middle;
}
#productsIntroSec .productsInfoBox .rightCol .list .allAmenities {
	margin-top: 24px;
}
#productsIntroSec .productsInfoBox .rightCol .list.list2 ul {
	flex-wrap: wrap;
	flex-direction: row;
	gap: 16px 40px;
}
#productsIntroSec .productsInfoBox .rightCol .list.list2 ul li {
	width: calc(50% - 20px);
}
#productsIntroSec .productsInfoBox .rightCol .list.list3 ul {
	flex-direction: row;
}
#productsIntroSec .productsInfoBox .rightCol .list.list3 ul li {
	display: block;
}
#productsIntroSec .productsInfoBox .rightCol .list .btnBox {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 24px;
}
#productsIntroSec .productsInfoBox .rightCol .list .btnBox p {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
}
#productsIntroSec .productsInfoBox .rightCol .list .btnBox a,
#productsIntroSec .productsInfoBox .rightCol .list > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	margin: 0;
	padding: 12px 24px;
	border: 1px solid #2A2A2A;
	background-color: transparent;
	border-radius: 2px;
	font-family: "Inter";
	font-size: 0.8125rem;
	color: #00181a;
	font-weight: 700;
	line-height: 1.375rem;
	text-transform: uppercase;
	text-decoration: none;
	transition: .5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#productsIntroSec .productsInfoBox .rightCol .list .btnBox a::after,
#productsIntroSec .productsInfoBox .rightCol .list > a::after {
	content: '';
	width: 11px;
	height: 11px;
	background-image: url('../../images/arrow-right.svg');
	background-size: contain;
	background-repeat: no-repeat;
	transition: .5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#productsIntroSec .productsInfoBox .rightCol .list .btnBox a:hover,
#productsIntroSec .productsInfoBox .rightCol .list > a:hover {
	border-color: #00a8b5;
	background-color: #00a8b5;
	color: #ffffff;
}
#productsIntroSec .productsInfoBox .rightCol .list .btnBox a:hover::after,
#productsIntroSec .productsInfoBox .rightCol .list > a:hover::after {
	filter: brightness(0) invert(1);
}

/* --- Seccion Request Quote (CTA con fondo oscuro) --- */

#requestQuoteSec {
	padding-top: 80px;
	padding-bottom: 128px;
}
#requestQuoteSec .requestInfoBox {
	position: relative;
	padding: 80px 0;
	background-color: #2A2A2A;
	background-image: url("../../images/noise-white-bg.png");
	background-position: center center;
	background-repeat: repeat;
	overflow: hidden;
	z-index: 0;
}

/* Circulos SVG decorativos */
#requestQuoteSec .requestInfoBox .circleFull {
	pointer-events: none;
	width: 814px;
	height: 814px;
	margin: 0 auto 0 0;
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}
#requestQuoteSec .requestInfoBox .circleFull .circleSvg {
	width: 100%;
	height: 100%;
	margin: auto;
	opacity: 0.16;
	position: absolute;
	inset: 0;
}
#requestQuoteSec .requestInfoBox .circleFull .circleSvg:nth-child(2) {
	width: 91%;
	height: 91%;
}
#requestQuoteSec .requestInfoBox .circleFull .circleSvg:nth-child(3) {
	width: 96%;
	height: 96%;
	right: auto;
}
#requestQuoteSec .requestInfoBox .circleFull .circleSvg:nth-child(4) {
	top: -20px;
	right: -40px;
}

/* Animacion de circulos al entrar en viewport */
#requestQuoteSec .requestInfoBox.in-viewport .circleFull .circleSvg .circle {
	stroke-width: 1.2px;
	animation-name: drawCircle;
	animation-duration: 7s;
	animation-fill-mode: forwards;
	animation-timing-function: ease;
	animation-delay: 0s;
}

/* Contenido centrado del CTA */
#requestQuoteSec .requestInfoBox .requestInfoCol {
	width: 100%;
	max-width: 652px;
	margin: 0 auto;
	text-align: center;
}
#requestQuoteSec .requestInfoBox .requestInfoCol .title {
	margin-bottom: 24px;
	font-family: 'Playfair Display';
	font-size: 4rem;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 5rem;
	text-align: center;
	text-transform: uppercase;
	text-wrap: balance;
}
#requestQuoteSec .requestInfoBox .requestInfoCol p {
	margin-bottom: 40px;
	font-size: 1rem;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 1.5rem;
	text-align: center;
}
#requestQuoteSec .requestInfoBox .requestInfoCol .requestQuoteBtn {
	border-color: #ffffff;
	color: #ffffff;
}
#requestQuoteSec .requestInfoBox .requestInfoCol .requestQuoteBtn:hover {
	border-color: #00a8b5;
	background-color: #00a8b5;
	color: #ffffff;
}
#requestQuoteSec .requestInfoBox .requestInfoCol .requestQuoteBtn img.arrow {
	filter: brightness(0) invert(1);
}

/* Accesibilidad: reducir animaciones */
@media (prefers-reduced-motion: reduce) {
	#requestQuoteSec .requestInfoBox.in-viewport .circleFull .circleSvg .circle {
		animation: none;
	}
}

/* ----------------------------------------------------------------------------
   Desktop (992px - 1920px)
   Valores tomados del sub-rango 1366-1500px de la referencia
   ---------------------------------------------------------------------------- */

@media (min-width: 992px) and (max-width: 1920px) {
	#productsImagesSec .imagesBox .imagesInner {
		min-width: 323px;
		min-height: 396px;
	}
	#productsImagesSec .imagesBox .item.imgLeft {
		width: 210px;
	}
	#productsImagesSec .imagesBox .item.imgRight {
		width: 322px;
	}
	#productsImagesSec .imagesBox .item.imgBottom1 {
		width: 266px;
	}
	#productsImagesSec .imagesBox .item.imgBottom2 {
		width: 266px;
	}

	#productsIntroSec .productsInfoBox .leftCol .title {
		font-size: 3.4375rem;
		line-height: 4.0625rem;
	}

	#requestQuoteSec {
		padding-bottom: 100px;
	}
	#requestQuoteSec .requestInfoBox {
		padding: 70px 0;
	}
	#requestQuoteSec .requestInfoBox .circleFull {
		width: 614px;
		height: 614px;
	}
}

@media only screen and (min-width: 1366px) and (max-width: 1500px) {
	#requestQuoteSec .requestInfoBox .requestInfoCol .title {
		font-size: 3.375rem;
		line-height: 4.1875rem;
	}
}

/* Sub-rango intermedio: valores especificos para 961-1365px */
@media (min-width: 992px) and (max-width: 1365px) {
	#productsImagesSec {
		padding-top: 70px;
	}
	#productsImagesSec .imagesBox {
		gap: 16px;
	}
	#productsImagesSec .imagesBox .imagesInner {
		min-width: calc(100vw - 30px - 64vw - 28px);
		min-height: 370px;
	}
	#productsImagesSec .imagesBox .item.imgLeft {
		width: 25vw;
		height: 40%;
		right: calc(100% + 14px);
	}
	#productsImagesSec .imagesBox .item.imgRight {
		width: 25vw;
		height: 40%;
		left: calc(100% + 14px);
	}
	#productsImagesSec .imagesBox .item.imgBottom1 {
		width: calc(32vw - 15px - 7px);
		top: calc(100% + 14px);
		right: calc(50% + 7px);
	}
	#productsImagesSec .imagesBox .item.imgBottom2 {
		width: calc(32vw - 15px - 7px);
		top: calc(100% + 14px);
		left: calc(50% + 7px);
	}

	#productsIntroSec .productsInfoBox .leftCol {
		padding: 40px 50px 40px 0;
	}
	#productsIntroSec .productsInfoBox .rightCol {
		padding-left: 50px;
	}
	#productsIntroSec .productsInfoBox .leftCol .title {
		font-size: 2.8125rem;
		line-height: 3.4375rem;
		margin-bottom: 20px;
	}
	#productsIntroSec .productsInfoBox .rightCol .list.list2 ul {
		gap: 15px;
	}
	#productsIntroSec .productsInfoBox .rightCol .list.list2 ul li {
		width: calc(50% - 8px);
	}

	#requestQuoteSec .requestInfoBox .circleFull {
		width: 514px;
		height: 514px;
	}
	#requestQuoteSec .requestInfoBox .requestInfoCol .title {
		font-size: 3.125rem;
		line-height: 3.4375rem;
	}
}

/* ----------------------------------------------------------------------------
   Desktop Grande (>1920px)
   Sin overrides especificos; los estilos base aplican correctamente
   ---------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------
   Tablet y Movil (<992px)
   ---------------------------------------------------------------------------- */

@media (max-width: 991px) {
	#productsImagesSec {
		padding-top: 70px;
	}
	#productsImagesSec .imagesBox {
		gap: 16px;
	}
	#productsImagesSec .imagesBox .imagesInner {
		min-width: calc(100vw - 30px - 64vw - 28px);
		min-height: 340px;
	}
	#productsImagesSec .imagesBox .item.imgLeft {
		width: 25vw;
		height: 40%;
		right: calc(100% + 14px);
	}
	#productsImagesSec .imagesBox .item.imgRight {
		width: 25vw;
		height: 40%;
		left: calc(100% + 14px);
	}
	#productsImagesSec .imagesBox .item.imgBottom1 {
		width: calc(32vw - 15px - 7px);
		top: calc(100% + 14px);
		right: calc(50% + 7px);
	}
	#productsImagesSec .imagesBox .item.imgBottom2 {
		width: calc(32vw - 15px - 7px);
		top: calc(100% + 14px);
		left: calc(50% + 7px);
	}

	#productsIntroSec .productsInfoBox .leftCol {
		padding: 30px 30px 30px 0;
	}
	#productsIntroSec .productsInfoBox .rightCol {
		padding-left: 30px;
	}
	#productsIntroSec .productsInfoBox .leftCol .title {
		font-size: 2.1875rem;
		line-height: 2.5rem;
		margin-bottom: 20px;
	}
	#productsIntroSec .productsInfoBox .leftCol p {
		margin-bottom: 20px;
	}
	#productsIntroSec .productsInfoBox .rightCol .list .title {
		margin-bottom: 20px;
	}
	#productsIntroSec .productsInfoBox .leftCol .btnBox {
		padding-top: 10px;
	}
	#productsIntroSec .productsInfoBox .rightCol .list {
		padding: 25px 0;
	}
	#productsIntroSec .productsInfoBox .rightCol .list.list3 ul {
		flex-wrap: wrap;
	}
	#productsIntroSec .productsInfoBox .rightCol .list.list2 ul li {
		width: 100%;
	}

	#requestQuoteSec {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	#requestQuoteSec .requestInfoBox {
		padding: 50px 0;
	}
	#requestQuoteSec .requestInfoBox .circleFull {
		width: 414px;
		height: 414px;
	}
	#requestQuoteSec .requestInfoBox .requestInfoCol .title {
		font-size: 2.5rem;
		line-height: 3.5rem;
		margin-bottom: 20px;
	}
	#requestQuoteSec .requestInfoBox .requestInfoCol p {
		margin-bottom: 30px;
	}
}

/* Movil (<768px) — layout vertical, columnas al 100% */
@media (max-width: 767px) {
	#productsImagesSec {
		padding-top: 20px;
	}
	#productsImagesSec .imagesBox {
		gap: 16px;
		height: 75vh;
	}
	#productsImagesSec .imagesBox .imagesInner {
		min-width: calc(100vw - 30px - 40vw - 28px);
		min-height: 270px;
	}
	#productsImagesSec .imagesBox .item.imgLeft {
		width: 20vw;
		height: 30%;
		right: calc(100% + 14px);
	}
	#productsImagesSec .imagesBox .item.imgRight {
		width: 20vw;
		height: 40%;
		left: calc(100% + 14px);
	}
	#productsImagesSec .imagesBox .item.imgBottom1 {
		width: calc(43vw - 15px - 7px);
		top: calc(100% + 14px);
		right: calc(50% + 7px);
	}
	#productsImagesSec .imagesBox .item.imgBottom2 {
		width: calc(43vw - 15px - 7px);
		top: calc(100% + 14px);
		left: calc(50% + 7px);
	}

	#productsIntroSec {
		padding-top: 40px;
	}
	#productsIntroSec .productsInfoBox {
		flex-direction: column;
	}
	#productsIntroSec .productsInfoBox .leftCol {
		width: 100%;
		padding: 40px 0 20px 0;
		border: none;
	}
	#productsIntroSec .productsInfoBox .leftCol .title {
		font-size: 2.1875rem;
		line-height: 2.5rem;
		margin-bottom: 15px;
	}
	#productsIntroSec .productsInfoBox .leftCol p {
		font-size: 0.9rem;
		line-height: 1.4rem;
		margin-bottom: 15px;
	}
	#productsIntroSec .productsInfoBox .leftCol .btnBox {
		padding-top: 10px;
	}
	#productsIntroSec .productsInfoBox .rightCol {
		width: 100%;
		padding: 0;
	}
	#productsIntroSec .productsInfoBox .rightCol .list {
		padding: 25px 0;
	}
	#productsIntroSec .productsInfoBox .rightCol .list .title {
		font-weight: 700;
		font-size: 1.1rem;
		line-height: 1.7rem;
		color: #00181a;
		margin-bottom: 15px;
	}
	#productsIntroSec .productsInfoBox .rightCol .list ul {
		gap: 10px;
	}
	#productsIntroSec .productsInfoBox .rightCol .list ul li p {
		font-size: 0.9rem;
		line-height: 1.4rem;
	}
	#productsIntroSec .productsInfoBox .rightCol .list.list2 ul li {
		width: 100%;
	}
	#productsIntroSec .productsInfoBox .rightCol .list.list3 ul {
		flex-wrap: wrap;
	}

	#requestQuoteSec {
		padding-top: 30px;
		padding-bottom: 50px;
	}
	#requestQuoteSec .requestInfoBox {
		padding: 30px;
	}
	#requestQuoteSec .requestInfoBox .circleFull {
		width: 375px;
		height: 375px;
		margin: 0 auto;
		left: 50%;
		transform: translateX(-50%);
	}
	#requestQuoteSec .requestInfoBox .requestInfoCol .title {
		font-size: 2.1875rem;
		line-height: 2.5rem;
		margin-bottom: 20px;
	}
	#requestQuoteSec .requestInfoBox .requestInfoCol p {
		font-size: 0.9rem;
		line-height: 1.4rem;
		margin-bottom: 30px;
	}
}
