@charset "utf-8";
/* ==========================================================================
   HEADER & HAMBURGER NAV - Cabecera principal y menu de navegacion
   ========================================================================== */

/* ----------------------------------------------------------------------------
   Estilos Base
   ---------------------------------------------------------------------------- */

#header.anim {
	animation: fadeInDown 0.5s both;
	animation-delay: 0.5s;
}
#header {
	float: left;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 20px 64px;
	position: fixed;
	top: 0;
	z-index: 21;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#header .logo {
	position: relative;
	width: 160px;
	z-index: 3;
}
#header .logo img {
	width: 100%;
	height: auto;
}
/* Cross-fade por opacidad entre capa blanca y capa color: el filtro de cada capa
   es fijo, nunca se anima, para evitar el flash negro al interpolar filter */
#header .logo__img--color {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.4s ease;
}
#header .logo__img--white {
	filter: brightness(0) invert(1);
	opacity: 1;
	transition: opacity 0.4s ease;
}
/* Paginas interiores sin scroll: fondo claro, se muestra el logo a color */
#header.header .logo__img--white {
	opacity: 0;
}
#header.header .logo__img--color {
	opacity: 1;
}
/* Paginas interiores con scroll: header con fondo oscuro, vuelve al blanco */
#header.header.headerBg .logo__img--white {
	opacity: 1;
}
#header.header.headerBg .logo__img--color {
	opacity: 0;
}
/* Menu hamburguesa abierto: logo en color en cualquier contexto */
#header.navOpen .logo__img--white {
	opacity: 0 !important;
}
#header.navOpen .logo__img--color {
	opacity: 1 !important;
}
#header .leftNav {
	display: flex;
	align-items: center;
	gap: 32px;
}
#header .rightNav {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* Header - Selector de idioma
   ---------------------------------------------------------------------------- */

#header .languageMenu {
	position: relative;
	z-index: 0;
	animation: fadeIn 0.5s both;
	animation-delay: 0.5s;
}
#header.navOpen .languageMenu {
	animation: fadeOut 0.5s both;
	animation-delay: 0s;
}
#header .languageMenu > a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 75px;
	padding: 12px 12px;
	border: 1px solid #ffffff;
	border-radius: 2px;
	font-size: 1rem;
	color: #ffffff;
	font-weight: 500;
	line-height: 1rem;
	text-transform: uppercase;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#header .languageMenu > a::after {
	content: "";
	width: 12px;
	height: 7px;
	background-image: url("../../images/arrow-language.svg");
	background-position: center center;
	background-repeat: no-repeat;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#header .languageMenu--single > a {
	cursor: default;
}
#header .languageMenu--single > a::after {
	display: none;
}

#header .languageMenu a.open + ul {
	opacity: 1;
	visibility: visible;
}
#header .languageMenu ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 8px 16px;
	list-style-type: none;
	width: 74px;
	background-color: #ffffff;
	border-radius: 2px;
	box-shadow: 0 0 15px 0 rgb(42 42 42 / 10%);
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: calc(100% + 16px);
	left: 0;
	z-index: 1;
	transition: 0.48s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
#header .languageMenu ul li {
	font-size: 13px;
	color: #00181a;
	font-weight: 400;
	line-height: 22px;
	text-transform: uppercase;
}
#header .languageMenu ul li a {
	display: inline-block;
	color: #00181a;
	text-decoration: none;
	transition: 0.48s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
#header .languageMenu ul:has(a:hover) li:not(.current) a:not(:hover) {
	color: #A7A7A7;
}
#header .languageMenu ul li.current > a {
	font-weight: 700;
}

/* Header - Mini menu de Reserva Directa
   ---------------------------------------------------------------------------- */

#header .bookingMenu {
	position: relative;
	z-index: 0;
	animation: fadeIn 0.5s both;
	animation-delay: 0.5s;
}
#header.navOpen .bookingMenu > a,
#header.navOpen .bookingMenu:hover > a,
#header.navOpen .bookingMenu > a.open,
#header.navOpen .bookingMenu > a:focus {
	border-color: #2A2A2A;
	color: #00181a;
}
#header.navOpen .bookingMenu > a::after {
	filter: brightness(0);
}
#header .bookingMenu > a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border: 1px solid #ffffff;
	border-radius: 2px;
	font-size: 1rem;
	color: #ffffff;
	font-weight: 500;
	line-height: 1rem;
	text-transform: uppercase;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
	text-decoration: none;
}
#header .bookingMenu > a::after {
	content: "";
	width: 12px;
	height: 7px;
	background-image: url("../../images/arrow-language.svg");
	background-position: center center;
	background-repeat: no-repeat;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#header .bookingMenu > a.open::after {
	background-image: url("../../images/arrow-language-open.svg");
}
#header .bookingMenu:hover > a,
#header .bookingMenu > a.open {
	color: #ffffff;
}
#header .bookingMenu a.open + ul {
	opacity: 1;
	visibility: visible;
}
#header .bookingMenu ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 12px 20px;
	list-style-type: none;
	width: 100%;
	background-color: #ffffff;
	border-radius: 2px;
	box-shadow: 0 0 15px 0 rgb(42 42 42 / 10%);
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: calc(100% + 16px);
	left: 0;
	z-index: 1;
	transition: 0.48s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
#header .bookingMenu ul li {
	font-size: 13px;
	color: #00181a;
	font-weight: 400;
	line-height: 22px;
	text-transform: uppercase;
	white-space: nowrap;
}
#header .bookingMenu ul li a {
	display: inline-block;
	color: #00181a;
	text-decoration: none;
	transition: 0.48s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
#header .bookingMenu ul:has(a:hover) li a:not(:hover) {
	color: #A7A7A7;
}

/* Header - Navegacion principal
   ---------------------------------------------------------------------------- */

#header .menuNav {
	width: auto;
	z-index: 0;
	animation: fadeIn 0.5s both;
	animation-delay: 0.5s;
}
#header.navOpen .menuNav {
	animation: fadeOut 0.5s both;
	animation-delay: 0s;
}
#header .menuNav ul.menu {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	gap: 32px;
}
#header .menuNav ul.menu > li {
	position: relative;
	font-size: 1rem;
	color: #ffffff;
	font-weight: 400;
	line-height: 1.5rem;
}
#header .menuNav ul.menu > li > a {
	display: inline-block;
	padding: 16px 0;
	color: #ffffff;
	text-decoration: none;
	transition: 0.48s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
#header .menuNav ul.menu:has(li:hover) > li:not(:hover) > a {
	color: rgb(255 255 255 / 70%);
	text-decoration: none;
}
#header .menuNav ul.menu > li.current > a {
	font-weight: 600;
}
#header .menuNav ul.menu > li:has(.sub-menu) > a {
	padding-right: 28px;
}
#header .menuNav ul.menu > li:has(.sub-menu):after {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../../images/menu-dropdown-icon.svg") no-repeat center center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	transition: 0.48s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
#header .menuNav ul.menu:has(li:hover) > li:not(:hover):after {
	opacity: 70%;
}
#header .menuNav ul.menu > li:hover > ul.sub-menu {
	opacity: 1;
	visibility: visible;
}
#header .menuNav ul.menu > li > ul.sub-menu {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 20px 20px;
	list-style-type: none;
	width: 258px;
	background-color: #ffffff;
	border-radius: 2px;
	box-shadow: 0 0 15px 0 rgb(42 42 42 / 10%);
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;
	transition: 0.48s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
#header .menuNav ul.menu > li > ul.sub-menu > li {
	font-size: 1rem;
	color: #00181a;
	font-weight: 400;
	line-height: 1.5rem;
}
#header .menuNav ul.menu > li > ul.sub-menu > li > a {
	display: inline-block;
	color: #00181a;
	text-decoration: none;
	transition: 0.48s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
#header .menuNav ul.menu > li > ul.sub-menu:has(a:hover) > li > a:not(:hover) {
	color: #A7A7A7;
}
#header .menuNav ul.menu > li > ul.sub-menu > li.current > a {
	font-weight: 600;
}

/* Header - Boton de reserva
   ---------------------------------------------------------------------------- */

#header .bookBtn {
	border-color: #FFFFFF;
	font-size: 1rem;
	color: #ffffff;
	line-height: 1rem;
	text-transform: none;
}
#header.navOpen .bookBtn {
	border-color: #2A2A2A;
	color: #00181a;
}
#header .bookBtn:hover {
	border-color: #008691;
	background-color: #008691;
	color: #ffffff;
}
#header .bookBtn + .bookBtn:hover {
	border-color: #7F3946;
	background-color: #7F3946;
	color: #ffffff;
}
#header .bookBtn + .bookBtn + .bookBtn:hover {
	border-color: #B89968;
	background-color: #B89968;
	color: #ffffff;
}

/* Header - Hamburguesa
   ---------------------------------------------------------------------------- */

#header .hamburger {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 11px 11px;
	border: 1px solid #ffffff;
	background-color: transparent;
	border-radius: 2px;
	cursor: pointer;
}
#header .hamburger.open {
	border-color: #2A2A2A;
	background-color: #2A2A2A;
}
#header .hamburger label {
	pointer-events: none;
	margin: 4px 0;
}
#header .hamburger label span {
	position: relative;
	display: block;
	width: 18px;
	height: 1px;
	margin-bottom: 9px;
	background-color: #ffffff;
	border-radius: 10px;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#header .hamburger label span::before {
	content: "";
	width: 18px;
	height: 1px;
	background-color: #ffffff;
	border-radius: 10px;
	position: absolute;
	bottom: -9px;
	left: 0;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#header .hamburger:hover label span,
#header .hamburger:hover label span::before {
	background-color: #ffffff;
}
#header .hamburger.open label span {
	width: 18px;
	margin: 4px 0;
	transform: rotate(-45deg);
}
#header .hamburger.open label span::before {
	width: 18px;
	top: 0;
	transform: rotate(90deg);
}

/* ==========================================================================
   HAMBURGER NAV - Menu desplegable a pantalla completa
   ========================================================================== */

nav.hamburgerNav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100%;
	padding: 0;
	background-color: white;
	background-image: url("../../images/nav-noise-bg.png");
	background-position: center center;
	background-repeat: repeat;
	overflow: hidden;
	overflow-y: auto;
	transform: translateY(100%);
	transition: transform .55s cubic-bezier(.65,.025,.67,.36) .05s;
	transition-delay: 0.3s;
	will-change: transform;
}
nav.hamburgerNav.open {
	transform: translateY(0%);
	transition: transform .7s cubic-bezier(.34,.615,.4,.985) .2s;
}
.hamburgerNav-tagline {
	position: absolute;
	top: 0;
	left: 260px;
	height: 152px;
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: 1.125rem;
	color: #ffffff;
	z-index: 22;
	pointer-events: none;
}
.hamburgerNav-tagline__dot {
	display: flex;
	align-items: center;
	line-height: 0;
	color: #ffffff;
}

/* Hamburger Nav - Panel izquierdo (menu principal)
   ---------------------------------------------------------------------------- */

nav.hamburgerNav .menuLeft {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 64px;
	width: 60%;
	min-height: 100%;
	padding: 32px 64px;
	padding-top: 152px;
	background: linear-gradient(0deg, rgba(0, 17, 18, 0.56) 0%, rgba(0, 17, 18, 0.56) 100%), linear-gradient(0deg, #001112 0%, #001112 100%), url("../../images/menu-bg.jpg") lightgray 50% / cover no-repeat;
	background-blend-mode: multiply, color, normal;
}
nav.hamburgerNav .menuLeft .languageMenu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 12px;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
nav.hamburgerNav .menuLeft .languageMenu ul li {
	position: relative;
	padding-right: 22px;
	font-size: 1rem;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 1.5rem;
}
nav.hamburgerNav .menuLeft .languageMenu ul li:after {
	content: "\2022";
	position: absolute;
	top: 10px;
    right: 8px;
	line-height: 0;
}
nav.hamburgerNav .menuLeft .languageMenu ul li:last-child {
	padding-right: 0;
}
nav.hamburgerNav .menuLeft .languageMenu ul li:last-child:after {
	display: none;
}
nav.hamburgerNav .menuLeft .languageMenu ul li a,
nav.hamburgerNav .menuLeft .languageMenu ul li span {
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	transition: .5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
nav.hamburgerNav .menuLeft .languageMenu ul > li > a:hover {
	color: #FFD375;
	text-decoration: none;
}
nav.hamburgerNav .menuLeft .languageMenu ul > li.current > a,
nav.hamburgerNav .menuLeft .languageMenu ul > li.current > span {
	color: #FFD375;
	font-weight: 600;
	text-decoration: none;
}
@media only screen and (min-width: 993px) {
nav.hamburgerNav .menuLeft .languageMenu {
	display: none;
}
}
nav.hamburgerNav .menuLeft ul.menu {
	flex: 1;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style-type: none;
	overflow: hidden;
	overflow-y: auto;
}
nav.hamburgerNav .menuLeft ul.menu::-webkit-scrollbar {
	width: 2px;
}
nav.hamburgerNav .menuLeft ul.menu::-webkit-scrollbar-track {
	background: rgb(255 255 255 / 32%);
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
nav.hamburgerNav .menuLeft ul.menu::-webkit-scrollbar-thumb {
	min-height: 40px;
	background: rgb(255 255 255 / 72%);
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
nav.hamburgerNav .menuLeft ul.menu > li {
	position: relative;
	margin: 0 0 24px 0;
	font-family: "Playfair Display";
	font-size: 40px;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 48px;
	letter-spacing: 0.04rem;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(3rem);
	transition: opacity .6s cubic-bezier(.65, .025, .67, .36), transform .6s cubic-bezier(.65, .025, .67, .36);
}
nav.hamburgerNav.open .menuLeft ul.menu > li {
	opacity: 1;
	transform: translateY(0);
	transition: opacity .8s cubic-bezier(.34, .615, .4, .985), transform .8s cubic-bezier(.34, .615, .4, .985);
}
nav.hamburgerNav.open .menuLeft ul.menu > li:nth-child(10n+1) {
	transition-delay: .475s;
}
nav.hamburgerNav.open .menuLeft ul.menu > li:nth-child(10n+2) {
	transition-delay: .55s;
}
nav.hamburgerNav.open .menuLeft ul.menu > li:nth-child(10n+3) {
	transition-delay: .625s;
}
nav.hamburgerNav.open .menuLeft ul.menu > li:nth-child(10n+4) {
	transition-delay: .7s;
}
nav.hamburgerNav.open .menuLeft ul.menu > li:nth-child(10n+5) {
	transition-delay: .775s;
}
nav.hamburgerNav.open .menuLeft ul.menu > li:nth-child(10n+6) {
	transition-delay: .85s;
}
nav.hamburgerNav.open .menuLeft ul.menu > li:nth-child(10n+7) {
	transition-delay: .925s;
}
nav.hamburgerNav.open .menuLeft ul.menu > li:nth-child(10n+8) {
	transition-delay: 1s;
}
nav.hamburgerNav.open .menuLeft ul.menu > li:nth-child(10n+9) {
	transition-delay: 1.075s;
}
nav.hamburgerNav.open .menuLeft ul.menu > li:nth-child(10n+10) {
	transition-delay: 1.15s;
}
nav.hamburgerNav .menuLeft ul.menu > li:last-child {
	margin-bottom: 0;
}
nav.hamburgerNav .menuLeft ul.menu > li > a {
	display: inline-block;
	color: #FFFFFF;
	text-decoration: none;
	transition: .5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
nav.hamburgerNav .menuLeft ul.menu > li.current > a {
	color: #FFD375;
	text-decoration: none;
}
nav.hamburgerNav .menuLeft ul.menu > li > a.has-opacity {
	color: #A7A7A7;
}
nav.hamburgerNav .menuLeft ul.menu > li > a.has-opacity + .sub-menu-btn {
	opacity: 0.5;
}
nav.hamburgerNav .menuLeft ul.menu > li:has(.sub-menu) > a {
	max-width: calc(100% - 40px);
}
nav.hamburgerNav .menuLeft ul.menu > li > .sub-menu-btn {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-top: 20px;
	margin-left: 24px;
	background-image: url("../../images/menu-plus.svg");
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	cursor: pointer;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
nav.hamburgerNav .menuLeft ul.menu > li > .sub-menu-btn.open {
	background-image: url("../../images/menu-minus.svg");
}
nav.hamburgerNav .menuLeft ul.menu > li > .sub-menu-btn.open + ul.sub-menu {
	animation: fadeIn 1s both;
	animation-delay: 0.3s;
}
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu {
	display: none;
	border-left: 1px solid #D9D9D9;
	padding: 16px 0 16px 32px;
	margin: 0;
	margin-top: 16px;
	list-style-type: none;
	animation: fadeOut 1s both;
	animation-delay: 0s;
}
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu > li {
	margin: 0 0 8px 0;
	font-family: "Inter";
	font-size: 1.1875rem;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 1.8125rem;
	letter-spacing: 0rem;
	text-transform: none;
}
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu > li:last-child {
	margin-bottom: 0;
}
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu > li > a {
	display: inline-block;
	color: #FFFFFF;
	transition: .25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu > li > a:hover,
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu > li:hover > a,
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu > li.current > a {
	color: #FFFFFF;
	text-decoration: none;
}
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu > li > a.has-opacity {
	color: #A7A7A7;
}

/* Hamburger Nav - Panel derecho (legal, info, social)
   ---------------------------------------------------------------------------- */

nav.hamburgerNav .menuRight {
	display: flex;
	flex-direction: column;
	gap: 64px;
	width: 40%;
	min-height: 100%;
	padding: 32px 64px;
	padding-top: 172px;
}
nav.hamburgerNav .menuRight .inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 64px;
	margin-top: 80px;
	overflow: hidden;
	overflow-y: auto;
}
nav.hamburgerNav .menuRight .inner::-webkit-scrollbar {
	width: 2px;
}
nav.hamburgerNav .menuRight .inner::-webkit-scrollbar-track {
	background: rgb(0 0 0 / 7%);
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
nav.hamburgerNav .menuRight .inner::-webkit-scrollbar-thumb {
	min-height: 40px;
	background: rgb(0 0 0 / 27%);
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
nav.hamburgerNav .menuRight .legal {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	max-width: 100%;
	margin: 0;
}
nav.hamburgerNav .menuRight .legal ul {
	display: flex;
	flex-direction: column;
	gap: 0px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
nav.hamburgerNav .menuRight .legal ul li {
	display: block;
	margin: 0 0 8px 0;
	font-size: 1.1875rem;
	color: #00181a;
	font-weight: 700;
	line-height: 1.8125rem;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(3rem);
	transition: opacity .6s cubic-bezier(.65, .025, .67, .36), transform .6s cubic-bezier(.65, .025, .67, .36);
}
nav.hamburgerNav.open .menuRight .legal ul li {
	opacity: 1;
	transform: translateY(0);
	transition: opacity .8s cubic-bezier(.34, .615, .4, .985), transform .8s cubic-bezier(.34, .615, .4, .985);
}
nav.hamburgerNav .menuRight .legal ul li:nth-child(10n+1) {
	transition-delay: .7s;
}
nav.hamburgerNav .menuRight .legal ul li:nth-child(10n+2) {
	transition-delay: .775s;
}
nav.hamburgerNav .menuRight .legal ul li:nth-child(10n+3) {
	transition-delay: .85s;
}
nav.hamburgerNav .menuRight .legal ul li:nth-child(10n+4) {
	transition-delay: .925s;
}
nav.hamburgerNav .menuRight .legal ul li:nth-child(10n+5) {
	transition-delay: 1s;
}
nav.hamburgerNav .menuRight .legal ul li:nth-child(10n+6) {
	transition-delay: 1.075s;
}
nav.hamburgerNav .menuRight .legal ul li:nth-child(10n+7) {
	transition-delay: 1.15s;
}
nav.hamburgerNav .menuRight .legal ul li:last-child {
	margin-bottom: 0;
}
nav.hamburgerNav .menuRight .legal ul li a {
	display: inline-block;
	background-image: linear-gradient(#2A2A2A, #2A2A2A);
	background-repeat: no-repeat;
	background-size: 0% 1px;
	background-position: left bottom 3px;
	transition: background-size .5s cubic-bezier(0, 0, 0.57, 1);
	color: #00181a;
	text-decoration: none;
}
nav.hamburgerNav .menuRight .legal ul li a:hover {
	background-size: 100% 1px;
	color: #00181a;
	text-decoration: none;
}
nav.hamburgerNav .menuRight .info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	margin: 0;
	opacity: 0;
	transform: translateX(-120%);
	transition: opacity .6s cubic-bezier(.65, .025, .67, .36), transform .6s cubic-bezier(.65, .025, .67, .36);
}
nav.hamburgerNav.open .menuRight .info {
	opacity: 1;
	transform: translateX(0);
	transition: opacity .8s cubic-bezier(.34, .615, .4, .985), transform .8s cubic-bezier(.34, .615, .4, .985);
	transition-delay: .925s;
}
nav.hamburgerNav .menuRight .info .item {
	max-width: 435px;
	font-size: 1rem;
	color: #00181a;
	font-weight: 400;
	line-height: 1.5rem;
	word-break: break-word;
}
nav.hamburgerNav .menuRight .info .item .label {
	display: inline;
	margin: 0 6px 0 0;
	font-size: 1rem;
	color: #00181a;
	font-weight: 700;
	line-height: 1.5rem;
	text-transform: none;
}
nav.hamburgerNav .menuRight .info .item a {
	display: inline;
	background-image: linear-gradient(#2A2A2A, #2A2A2A);
	background-repeat: no-repeat;
	background-size: 0% 1px;
	background-position: left bottom 0px;
	transition: background-size .5s cubic-bezier(0, 0, 0.57, 1);
	color: #00181a;
	text-decoration: none;
}
nav.hamburgerNav .menuRight .info .item a:hover {
	background-size: 100% 1px;
	color: #00181a;
	text-decoration: none;
}
nav.hamburgerNav .menuRight .info .item.social {
	display: flex;
	gap: 24px;
	margin-top: 22px;
}
nav.hamburgerNav .menuRight .info .item.social .icons {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
nav.hamburgerNav .menuRight .info .item.social .icons a {
	background-image: none;
	transition: .3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
nav.hamburgerNav .menuRight .info .item.social .icons:has(a:hover) a:not(:hover) {
	opacity: .5;
}

/* Sticky Header
   ---------------------------------------------------------------------------- */

#header.headerTransform {
	transform: translateY(-101%);
}
#header.headerBg:not(.navOpen) {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.14) 75%, rgba(0, 0, 0, 0.07) 87.5%, rgba(0, 0, 0, 0.035) 93.75%, rgba(0, 0, 0, 0) 100%);
	backdrop-filter: blur(7px);
}

/* ----------------------------------------------------------------------------
   Desktop (1366px - 1500px)
   ---------------------------------------------------------------------------- */

@media only screen and (min-width: 1366px) and (max-width: 1500px) {

#header 											{ padding: 20px 32px; }

}

/* ----------------------------------------------------------------------------
   iPad Pro / Desktop pequeno (961px - 1365px)
   ---------------------------------------------------------------------------- */

@media only screen and (min-width: 961px) and (max-width: 1365px) {

#header												{ padding: 20px 32px; }
#header .menuNav									{ display: none; }
nav.hamburgerNav .menuLeft							{ gap: 32px; width: 50%; padding: 32px 32px; padding-top: 152px; }
nav.hamburgerNav .menuLeft ul.menu > li				{ margin: 0 0 20px 0; font-size: 2.5rem; line-height: 3.125rem; }
nav.hamburgerNav .menuLeft ul.menu > li > .sub-menu-btn { margin-top: 17px; }
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu > li { font-size: 1.125rem; line-height: 1.75rem; }
nav.hamburgerNav .menuRight 						{ gap: 32px; width: 50%; padding: 32px 32px; padding-top: 152px; }
nav.hamburgerNav .menuRight .inner 					{ gap: 32px; margin-top: 60px; }

}

/* ----------------------------------------------------------------------------
   Tablet Portrait (768px - 960px)
   ---------------------------------------------------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 960px) {

#header 											{ padding: 20px 15px; }
#header .menuNav 									{ display: none; }
#header .bookingMenu 								{ display: none; }
nav.hamburgerNav .menuLeft 							{ gap: 32px; width: 50%; padding: 32px 15px; padding-top: 103px; }
nav.hamburgerNav .menuLeft ul.menu > li 			{ margin: 0 0 15px 0; font-size: 2.1875rem; line-height: 2.8125rem; }
nav.hamburgerNav .menuLeft ul.menu > li > .sub-menu-btn { margin-top: 15px; }
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu { padding: 12px 0 12px 20px; }
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu > li { font-size: 1rem; line-height: 1.625rem; }
nav.hamburgerNav .menuRight 						{ gap: 32px; width: 50%; padding: 32px 15px; padding-top: 152px; }
nav.hamburgerNav .menuRight .inner 					{ gap: 32px; margin-top: 0; }

}

/* ----------------------------------------------------------------------------
   Mobile Portrait (max 767px)
   ---------------------------------------------------------------------------- */

@media only screen and (max-width: 767px) {

#header:not(.navOpen)								{ background: linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.14) 75%, rgba(0, 0, 0, 0.07) 87.5%, rgba(0, 0, 0, 0.035) 93.75%, rgba(0, 0, 0, 0) 100%); backdrop-filter: blur(7px); }
#header 											{ padding: 10px 15px; }
#header .logo 										{ width: 120px; }
.hamburgerNav-tagline								{ position: static; height: auto; padding: 0; box-sizing: border-box; flex-wrap: wrap; justify-content: flex-start; text-align: left; }
#header .languageMenu 								{ display: none; }
#header .menuNav 									{ display: none; }
#header .bookingMenu 								{ display: none; }
nav.hamburgerNav 									{ flex-direction: column; height: 100vh; height: 100dvh; overflow: hidden; overflow-y: auto; background: linear-gradient(0deg, rgba(0, 17, 18, 0.56) 0%, rgba(0, 17, 18, 0.56) 100%), linear-gradient(0deg, #001112 0%, #001112 100%), url("../../images/menu-bg.jpg") lightgray 50% / cover no-repeat; background-blend-mode: multiply, color, normal; }
nav.hamburgerNav .menuLeft 							{ gap: 32px; width: 100%; height: auto; min-height: 0; flex-shrink: 0; padding: 32px 15px; padding-top: 103px; background: none; }
nav.hamburgerNav .menuLeft ul.menu 					{ overflow: visible; }
nav.hamburgerNav .menuLeft ul.menu > li 			{ margin: 0 0 15px 0; font-size: 2.1875rem; line-height: 2.8125rem; }
nav.hamburgerNav .menuLeft ul.menu > li > .sub-menu-btn { margin-top: 15px; }
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu { padding: 12px 0 12px 20px; }
nav.hamburgerNav .menuLeft ul.menu > li > ul.sub-menu > li { font-size: 1rem; line-height: 1.625rem; }
nav.hamburgerNav .menuRight 						{ gap: 32px; width: 100%; height: auto; min-height: 0; flex-shrink: 0; padding: 32px 15px; padding-top: 32px; background: none; }
nav.hamburgerNav .menuRight .inner 					{ gap: 32px; margin-top: 0; overflow: visible; }
nav.hamburgerNav .menuRight .legal ul li				{ color: #ffffff; }
nav.hamburgerNav .menuRight .legal ul li a				{ background-image: linear-gradient(#ffffff, #ffffff); color: #ffffff; }
nav.hamburgerNav .menuRight .legal ul li a:hover		{ color: #ffffff; }
nav.hamburgerNav .menuRight .info .item				{ color: #ffffff; }
nav.hamburgerNav .menuRight .info .item .label			{ color: #ffffff; }
nav.hamburgerNav .menuRight .info .item a				{ background-image: linear-gradient(#ffffff, #ffffff); color: #ffffff; }
nav.hamburgerNav .menuRight .info .item a:hover		{ color: #ffffff; }
nav.hamburgerNav .menuRight .info .item.social .icons img { filter: brightness(0) invert(1); }

}
