/* RESET */
* {margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; box-sizing: border-box;} article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;} body {line-height: 1;} a {text-decoration:none;} ol, ul {list-style: none;} *:active, *:focus {border: none; outline: none;}
/* RESET */

/* GLOBALES */
body {
	width: 100%;
	background-color: #ffffff;
	font-family: 'Merriweather', serif;
	font-size: 16px;
	font-weight: 400;
	color: #302e2e;
	line-height: 1.5;
}
a, 
img {
	display: block;
}
a {
	width: max-content;
	margin: 0 auto;
	color: #302e2e;
}
.container {
	width: min(90vw, 1200px);
	margin: 0 auto;
	position: relative;
}
h2 {
	margin-bottom: 70px;
	font-size: 36px;
	font-weight: 700;
	text-align: center;
}
p {
	line-height: 1.8;
}
p + p {
	margin-top: 7px;
}
form input {
	text-align: center;
}
.section {
	padding: 100px 0;
	position: relative;
}
.section .wrapperTxt {
	width: 100%;
	max-width: 470px;
	margin: 0 auto;
}
.section .wrapperGrid {
	display: grid;
	grid-template-columns: repeat(3, calc(33.33% - 20px));
	column-gap: 30px;
	row-gap: 40px;
}

/* SLIDER MODAL */
.sliderModal {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: -110vh;
	left: 0;
	z-index: 999;
	overflow: hidden;
	background-color: #ffffff;
}
.sliderModal .slider {
	width: 100%;
	height: 100%;
}
.sliderModal .slider .rsOverflow {
	width: 100% !important;
}
.sliderModal .slider .rsImg {
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.btnCloseSliderModal {
	width: 30px;
	height: 30px;
	padding: 20px;
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 9999;
	background: #ffffff url('images/global/close.svg') no-repeat center;
	background-size: 75% auto;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}
.btnCloseSliderModal:hover {
	background-color: #cccccc;
}
.rsBullets {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}
.rsBullets .rsBullet {
	width: 18px;
	height: 18px;
	display: inline-block;
	border: 2px solid #c7c7c7;
	border-radius: 100px;
	cursor: pointer;
}
.rsBullets .rsBullet + .rsBullet {
	margin-left: 10px;
}
.rsBullets .rsBullet.rsNavSelected {
	background-color: #dadada;
}

/* SLIDER MODULOS */
.sliderModulo {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.sliderModulo .slider {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.sliderModulo .slide {
	width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.sliderModulo .rsOverflow {
	width: 100% !important;
	height: 100% !important;
}
.section.sliderFullwidth {
	height: 90vh;
}

/* HEADER */
header {
	width: 100%;
	padding: 20px 15px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}
header::before {
	content: "";
	width: 100%;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: rgba(0,0,0,0.7);
	transition: height 0.3s ease;
}
header[data-scrolled="true"]::before {
	height: 100%;
}
nav {
	width: max-content;
	margin: 0 auto;
}
nav .navItem {
	display: inline-block;
	position: relative;
	color: #ffffff;
	transition: color 0.3s ease;
}
nav .navItem:hover {
	color: rgba(255,255,255,0.7);
}
nav .navItem + .navItem {
	padding-left: 50px;
}
nav .navItem + .navItem::before {
	content: "";
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 25px;
	background-color: #ffffff;
}
.wrapperSocials {
	width: max-content;
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
}
.wrapperSocials a {
	width: 10px;
	display: inline-block;
}
.wrapperSocials a + a {
	width: 20px;
	margin-left: 30px;
}
.wrapperSocials img {
	width: 100%;
}
.btnMenuMobile {
	width: 35px;
	height: 25px;
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	display: none;
	cursor: pointer;
}
.btnMenuMobile div, 
.btnMenuMobile div::after, 
.btnMenuMobile div::before {
	width: 100%;
	height: 3px;
	background-color: #ffffff;
}
.btnMenuMobile div {
	position: absolute;
	top: 50%;
	left: 0;
}
.btnMenuMobile div::after, 
.btnMenuMobile div::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
}
.btnMenuMobile div::after {
	top: unset;
	bottom: -10px;
}

/* HERO SECTION */
.heroSection {
	width: 100%;
	height: 100vh;
	background-image: url('images/home/back-principal.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
.heroSection img {
	width: 100%;
	max-width: 160px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* HABITACIONES */
.section#habitaciones {
	background-image: url('images/habitaciones/trama.svg');
	background-size: 100% auto;
	background-repeat: repeat;
	background-position: 0 0;
}
.section#habitaciones .wrapperGrid .gridItem {
	box-shadow: 4px 4px 14px #e8e8e8;
}
.section#habitaciones .wrapperGrid .gridItem .wrapperImg {
	position: relative;
}
.section#habitaciones .wrapperGrid .gridItem .wrapperImg::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: rgba(255,255,255,0.6);
}
.section#habitaciones .wrapperGrid .gridItem .wrapperImg::after, 
.section#habitaciones .wrapperGrid .gridItem .wrapperImg::before {
	opacity: 0;
	transition: opacity 0.3s ease;
	cursor: pointer;
}
.section#habitaciones .wrapperGrid .gridItem .wrapperImg:hover::after, 
.section#habitaciones .wrapperGrid .gridItem .wrapperImg:hover::before {
	opacity: 1;
}
.section#habitaciones .wrapperGrid .gridItem .wrapperImg::after {
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 15;
	background-image: url('images/habitaciones/camera.svg');
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
}
.section#habitaciones .wrapperGrid .gridItem img {
	width: 100%;
}
.section#habitaciones .wrapperGrid .gridItem .wrapperInfo {
	padding: 25px 15px;
	background-color: #ffffff;
}
.section#habitaciones .wrapperGrid .gridItem .wrapperInfo li {
	padding-left: 30px;
	position: relative;
}
.section#habitaciones .wrapperGrid .gridItem .wrapperInfo li + li {
	margin-top: 8px;
}
.section#habitaciones .wrapperGrid .gridItem .wrapperInfo li::before {
	content: "";
	width: 16px;
	height: 10px;
	position: absolute;
	top: 9px;
	left: 0;
	background: url('images/global/seagull-1.svg');
}
.section#habitaciones .wrapperGrid .gridItem .wrapperInfo li:nth-of-type(2)::before, 
.section#habitaciones .wrapperGrid .gridItem .wrapperInfo li:nth-of-type(3)::before {
	width: 20px;
	height: 13px;
	top: 7px;
	background: url('images/global/seagull-2.svg');
}
.section#habitaciones .wrapperGrid .gridItem .wrapperInfo li:nth-of-type(3)::before {
	background: url('images/global/seagull-3.svg');
}

/* SERVICIOS */
.section#servicios .wrapperGrid .gridItem {
	text-align: center;
}
.section#servicios .wrapperGrid .gridItem img {
	max-width: 70px;
	margin: 0 auto 20px;
}
.section#servicios .btnGaleria {
	width: max-content;
	padding: 8px 15px;
	margin: 70px auto 0;
	color: #ffffff;
	background-color: #aaaaaa;
	border-radius: 6px;
	cursor: pointer;
}

/* RESTO */
.section#resto h2, 
.section#resto p {
	color: #ffffff;
}
.section#resto .wrapperInfo {
	width: min(600px, 100%);
	margin: 0 auto;
}
.section#resto .wrapperInfo p {
	text-align: center;
	line-height: 1.8;
}
.section#resto .wrapperInfo p + p {
	margin-top: 7px;
}
.section#resto .sliderResto .slide::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(0,0,0,0.4);
}

/* WRAPPER CONTACTO FLOTANTE */
.wrapperContactoFlotante {
	width: 45px;
	position: fixed;
	bottom: 20px;
	right: 40px;
	z-index: 9999;
}
.wrapperContactoFlotante > div, 
.wrapperContactoFlotante > div a {
	width: 100%;
	height: 45px;
	display: block;
	margin-bottom: 10px;
}
.wrapperContactoFlotante > div a {
	margin: 0;
	background-color: #FFFFFF;
	border: 2px solid #50bcc0;
	border-radius: 100px;
	transition: unset;
	position: relative;
	box-shadow: 0 19px 38px 0 rgb(34 36 43 / 30%);
}
.noTouch .wrapperContactoFlotante > div.btnTel a::before {
	content: "+54 11 6177-9041";
	width: 25px;
	height: 34px;
	position: absolute;
	top: -1px;
	right: 0;
	padding: 9px 10px 0 0;
	font-family: 'Arial', sans-serif;
	font-size: 16px;
	color: #FFFFFF;
	text-align: left;
	font-weight: bold;
	white-space: nowrap;
	background-color: #27d367;
	border-radius: 100px;
	overflow: hidden;
	z-index: -1;
	overflow: hidden;
	transition: width 0.3s ease;
}
.noTouch .wrapperContactoFlotante > div.btnTel a:hover::before {
	width: 190px;
	padding-top: 11px;
	padding-right: 0;
	padding-left: 15px;
	top: -2px;
	background-color: #000000;
}
.wrapperContactoFlotante > div svg {
	position: relative;
	top: -2px;
	left: -3px;
}
.noTouch .wrapperContactoFlotante > div a:hover {
	border-color: #000000;
}
.noTouch .wrapperContactoFlotante > div a:hover svg path, 
.noTouch .wrapperContactoFlotante > div a:hover svg polygon {
	fill: #000000;
}

/* CONTACTO */
.section#contacto form {
	width: min(570px, 100%);
	margin: 0 auto;
}
.section#contacto form input, 
.section#contacto form textarea {
	width: 100%;
}
.section#contacto form input {
	display: block;
	border: 0;
	border-radius: 0;
	text-align: center;
	background: transparent;
}
.section#contacto form input:not([type="hidden"]):not([type="submit"]) {
	padding: 8px 0;
	margin-bottom: 35px;
	border-top: 1px solid #181818;
	border-bottom: 1px solid #181818;
}
.section#contacto form input:not([type="hidden"]):not([type="submit"]).js-validate-error-field {
	margin-bottom: 5px;
}
.section#contacto form .js-validate-error-label {
	margin-bottom: 25px;
}
.section#contacto form textarea {
	height: 180px;
	border: 0;
	padding: 8px 0;
	background: transparent;
	text-align: center;
	border-top: 1px solid #181818;
	border-bottom: 1px solid #181818;
}
.section#contacto form input[type="submit"] {
	padding: 8px 15px;
	margin: 70px auto 0;
	color: #ffffff;
	background-color: #aaaaaa;
	border-radius: 6px;
	cursor: pointer;
}
.wrapperSubject {
	height: 0;
	overflow: hidden;
}
.msgSend {
	text-align: center;
}

/* FOOTER */
footer {
	padding: 80px 0;
}
footer .iconUbicacion {
	width: 80px;
	margin: 0 auto 25px;
}
footer .wrapperGoogleMap {
	margin-bottom: 45px;
}
footer .wrapperGoogleMap {
	width: 100%;
	max-width: 100%;
}
footer .wrapperGoogleMap iframe {
	background-color: #c4c4c4;
}
footer .wrapperInfo {
	text-align: center;
}
footer .wrapperSubscribeNews {
	margin-top: 45px;
}
footer .wrapperSubscribeNews h2 {
	margin-bottom: 0;
}


@media (max-width: 1080px) {
	:root {
		--header-height-mobile: 100px;
	}
	header {
		height: var(--header-height-mobile);
	}
	header::before, 
	header .container {
		height: 100%;
	}
	nav {
		width: 100%;
		/* height: 0; */
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		background-color: #ffffff;
		transition: all 0.3s ease;
		overflow: hidden;
		z-index: -2;
		display: none;
		opacity: 0;
	}
	/* .menuMobileOpen nav {
		height: 100vh;
	} */
	nav .wrapperNav {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	nav .navItem {
		display: block;
		font-size: 25px;
		color: #181818;
	}
	nav .navItem + .navItem {
		/* margin-top: 50px; */
		margin-top: min(50px, 5vh);
		padding-left: 0;
	}
	nav .navItem + .navItem::before {
		display: none;
	}
	.wrapperSocials {
		left: 50px;
	}
	.btnMenuMobile {
		display: block;
	}
	.menuMobileOpen .btnMenuMobile div, 
	.menuMobileOpen .btnMenuMobile div::after, 
	.menuMobileOpen .btnMenuMobile div::before {
		transition: all 0.3s ease;
	}
	.menuMobileOpen .btnMenuMobile div {
		background-color: transparent;
	}
	.menuMobileOpen .btnMenuMobile div::after, 
	.menuMobileOpen .btnMenuMobile div::before {
		top: 50%;
	}
	.menuMobileOpen .btnMenuMobile div::after {
		transform: rotate(45deg);
	}
	.menuMobileOpen .btnMenuMobile div::before {
		transform: rotate(-45deg);
	}
}
@media (max-width: 920px) {
	.section .wrapperGrid {
		grid-template-columns: repeat(2, calc(50% - 20px));
	}
}
@media (max-width: 680px) {
	.section .wrapperGrid {
		grid-template-columns: 100%;
		column-gap: 0;
	}
}
@media (max-width: 450px) {
	.section.sliderFullwidth {
		height: 55vh;
	}
}