@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	interpolate-size: allow-keywords;
}

html, body {
	min-height: 100%;
	scroll-behavior: smooth;
}
body {
	background: #FFF;
	padding: 0px;
	margin: 0px;
	font-family:'Montserrat', sans-serif;
  	font-size: 14px;
	color: #000;
	font-weight: normal;
	overflow-x: hidden;
}

/* Configurações gerais */
a {
	color: #435666;
	text-decoration: none;
	transition: all 0.5s;
}
a:hover {
	color: #a5b687;
}

h1 {
	font-family: 'Times New Roman', Times, serif;
	font-size: 68px;
	font-weight: 400;
	text-align: left;
}
h2 {
	font-family: 'Times New Roman', Times, serif;
	font-size: 48px;
	font-weight: 400;
	text-align: left;
}
h3 {
	font-family: 'Times New Roman', Times, serif;
	font-size: 42px;
	font-weight: 400;
	text-align: left;
}
h4 {
	font-family: 'Times New Roman', Times, serif;
	font-size: 32px;
	font-weight: 400;
	text-align: left;
}

hr {
	border: none;
	border-bottom: #194141 1px dashed;
	padding: 0px;
	margin: 30px 0;
}
input[type=submit], input[type=reset], input[type=button], button {
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	color: #FFF;
	border-radius: 50px;
	padding: 10px 25px;
	border: #194141 1px solid;
	background: #194141;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
	font-weight: 600;
}
input[type=submit]:hover, input[type=reset]:hover, button:hover {
	background: #FFF;
	color: #194141;
}
input[type=text], input[type=search], input[type=email], input[type=tel], input[type=date], input[type=number], input[type=datetime], input[type=password], textarea, select {
	display: block;
    width: calc(100% - 26px);
    height: 34px;
    padding: 3px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background: #FFF;
    border: 1px solid #CCC;
	border-radius: 4px;
	resize: none;
	margin: 0 0 6px 0;
}
textarea {
	height: auto;
}
input[type=text]:focus-within, input[type=search]:focus-within, input[type=email]:focus-within, input[type=tel]:focus-within, input[type=date]:focus-within, input[type=number]:focus-within, input[type=datetime]:focus-within, input[type=password]:focus-within, textarea:focus-within {
	outline: #a5b687 2px solid;
}
option {
	font-weight: normal;
    display: block;
    white-space: pre;
    min-height: 1.2em;
    padding: 0px 2px 1px;
	font-size: 14px;
    line-height: 1.42857143;
    color: #555;
}

/* Design site */
#titlebar {
	backdrop-filter: blur(10px);	
	font-family: 'Monteserrat', sans-serif;
	position: absolute;
	width: 100vw;
	top: 0px;
	z-index: 99;
}
#titlebar section {
	display: grid;
	grid-template-columns: 150px auto 150px;
	grid-gap: 30px;
	align-items: top;
	justify-items: center;
	padding: 20px 50px 15px 50px;
}
#titlebar section ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	justify-self: start;
}
#titlebar section li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0 5px;
	color: #FFF;
	text-transform: uppercase;
	font-weight: 500;
}
#titlebar section li:first-of-type {
	margin: 0 5px 0 0;
}
#titlebar section li:last-of-type {
	margin: 0 0 0 5px;
}
#titlebar section li a {
	color: rgba(255, 255, 255, 0.3);
}
#titlebar section li a:hover {
	color: #FFF;
}
#titlebar img {
	max-width: 200px;
	height: auto;
}
#titlebar span {
	justify-self: end;
}
#titlebar a.reservar {
	display: inline-block;
	vertical-align: top;
	border: #FFF 1px solid;
	border-radius: 100px;
	padding: 7px 14px;
	color: #FFF;
	font-size: 13px;
	text-transform: uppercase;
}
#titlebar a.reservar label {
	display: inline-block;
	vertical-align: top;
	width: 20px;
	height: 15px;
	mask-image: url('../img/reservar.svg');
	mask-repeat: no-repeat;
	mask-position: right center;
	mask-size: contain;
	background-color: #FFF;
	margin: 0 0 0 3px;
	padding: 0px;
	transition: all 0.5s;
}
#titlebar a.reservar:hover {
	background: #FFF;
	color: #157263;
	mix-blend-mode: screen;
}
#titlebar a.reservar:hover label {
	background-color: #157263;
}

/* Hamburguer */
#hamburguer {
	position: absolute;
	right: 25px;
	top: 30px;
	padding: 7px 0 0 0;
	margin: 0px;
	width: 18px;
	height: 11px;
	cursor: pointer;
	cursor: hand;
	display: none;
	vertical-align: top;
	z-index: 9999;
}
#hamburguer:hover {
	opacity: 0.5;
}
#hamburguer span {
	content: '';
	display: block;
	width: 18px;
	height: 3px;
	background: #FFF;
	border-radius: 4px;
	transition: all 0.22s;
}
#hamburguer span::before {
	content: '';
	position: absolute;
	display: block;
	width: 18px;
	height: 3px;
	background: #FFF;
	border-radius: 4px;
	margin: -7px 0 0 0;
}
#hamburguer span::after {
	content: '';
	position: absolute;
	display: block;
	width: 18px;
	height: 3px;
	background: #FFF;
	border-radius: 4px;
	margin: 7px 0 0 0;
}

#hamburguer.active span {
	transform: rotate(135deg);
}
#hamburguer.active span::before {
	opacity: 0;
	margin: 0px;
}
#hamburguer.active span::after {
	transform: rotate(-90deg);
	margin: 0px;
}

/* Menu */
nav {
	border-top: #FFF 1px solid;
	border-bottom: #FFF 1px solid;
	padding: 7px 50px;
	text-align: center;
	color: #FFF;
	text-transform: uppercase;
	font-size: 14px;
}
nav::-webkit-scrollbar {
	width: 3px;
}
nav::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px #CEEEFB;
	-webkit-box-shadow: inset 0 0 6px #CEEEFB;
} 
nav::-webkit-scrollbar-thumb {
	background-color: #1B2638;
	outline: 1px solid #1B2638;
}
menu {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
menu li {
	display: inline-block;
	vertical-align: top;
	margin: 0 10px;
}
menu li a, menu li label {
	display: inline-block;
	vertical-align: top;
	color: #FFF;
	padding: 7px 15px;
	margin: 0px;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
}
menu li label {
	margin-right: 20px;
}
menu:hover li a, menu:hover li label {
	color: rgba(255, 255, 255, 0.5);
}
menu:hover li label:after {
	border: solid rgba(255, 255, 255, 0.5);
	border-width: 0 2px 2px 0;
}
menu li:hover a, menu li:hover label {
	color: #FFF;
}
nav menu label:after {
	content: '';
	position: absolute;
	display: inline-block;
	vertical-align: top;
	border: solid #FFF;
	border-width: 0 2px 2px 0;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	margin: 3px 0 0 8px;
	transition: all 0.3s;
}
nav menu label:hover:after {
	transform: rotate(-135deg);
	margin-top: 6px;
	border: solid #FFF;
	border-width: 0 2px 2px 0;
}
nav menu li menu {
	position: absolute;
	background: rgba(0,0,0, 0.5);
	border-radius: 4px;
	padding: 6px;
	display: none;
	z-index: 300;
	border-radius: 5px;
	text-align: left;
}
nav menu li:hover > menu {
	display: block;
	animation: fadein 0.3s ease-out, menuin 0.3s ease-out;
}
nav li menu li {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
nav li menu li a {
	font-size: 14px;
	display: block;
	vertical-align: top;
	padding: 4px 20px;
	line-height: 16px;
	border-radius: 4px;
	font-weight: 500;
	color: #FFF;
}
nav li menu li a:hover {
	background: #FFF;
	color: #000;
}

/* Header | Banners */
header {
	background-attachment: fixed;
	align-items: center;
	justify-items: center;
	background: #000;
	color: #FFF;
}
#mainbanner, #slidebanner, .darken {
	background-position: center center;
}
#mainbanner {
	justify-items: center;
	align-items: center;
	text-align: center;
	transform: none;
}
#slidebanner {
	transform: translateX(100vw);
}
.darken {
	display: grid;
	grid-template-columns: auto;
	grid-gap: 0;
	justify-items: center;
	align-items: center;
	text-align: center;
	padding: 0 50px;
	margin: 0px;
	width: calc(100vw - 100px);
	
}
header section {
	max-width: 50vw;
}
header span {
	font-size: 16px;
}
header h3, header h3 * {
	font-family: 'Times New Roman', Times, serif;
	font-size: 72px;
	font-weight: 500;
	margin-bottom: 10px;
	text-align: center;
}
header .button a {
	display: inline-block;
	vertical-align: top;
	color: #FFF;
	text-transform: uppercase;
	padding: 7px 25px;
	border: #FFF 1px solid;
	border-radius: 100px;
}
header .button a:hover {
	color: #000;
	background: #FFF;
}

header.minih {
	max-height: unset;
	height: auto;
	background: url('../img/topo.jpg') no-repeat center bottom;
	background-size: cover;
	text-transform: uppercase;
	text-align: left;
	font-family: 'Times New Roman', Times, serif;
	display: block;
	padding: 200px 100px 100px 100px;
	text-align: center;
	width: calc(100vw - 200px);
}
header.minih h3, header.minih h3 * {
	font-size: 48px;
}

/* Conteudo */
#content {
	padding: 0 100px 100px 100px;
	background: url('../img/bg.png') no-repeat right bottom;
	background-size: 50vw;
}

/* Intro */
#intro {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-gap: 50px;
	max-width: 1100px;
	margin: 0 auto;
}
#intro article {
	columns: 300px;
	column-gap: 30px;
	text-align: justify;
}
#intro article p:nth-of-type(1) {
	margin-top: 0px;
}
#intro img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

/* Barra */
#separador .darken {
	height: auto;
	min-height: auto;
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 0px;
	color: #FFF;
	padding: 0px;
	width: 100vw;
	z-index: 888;
	position: relative;
	background: rgba(0,0,0,0.2);
}
#separador article {
	background: rgba(0,0,0,0.2);
	padding: 0 50px 80px 50px;
	margin: 0px;
	text-align: justify;
	backdrop-filter: blur(10px);
}
#separador h2 {
	font-size: 62px;
}
#separador .button {
	text-align: center;
}
#separador .button a {
	border-color: #FFF;
	color: #fff;
}
#separador .button a:hover {
	color: #000;
	background: #FFF;
}

.fader {
	background: #CCC;
	position: relative;
	display: table;
}
.fader .backfade{
	position: absolute;
	width: 100vw;
	height: 100%;
	z-index: 10;
}
.fader .frontfade{
	position: absolute;
	width: 100vw;
	height: 100%;
	z-index: 20;
	opacity: 0;
}
.fader ul {
	display: none;
}
.newfadein {
	animation: fadein 1.2s ease-in;
}

/* Mais informações */
#infos {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: 'imagem texto';
	grid-gap: 100px;
	max-width: 900px;
	margin: 0 auto;
	padding: 100px;
}
#infos article {
	grid-area: texto;
	text-align: justify;
}
#infos h2 {
	margin-top: 0px;
	padding-top: 0px;
	font-size: 62px;
}
#infos img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	grid-area: imagem;
}
#infos article section {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;
	text-align: center;
	padding-top: 30px;
}
#infos figure {
	display: block;
	width: 70px;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
	border: #000 3px solid;
	padding: 0px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto;
	align-items: center;
	justify-items: center;
	max-width: 100%;
}
#infos div img {
	grid-area: unset;
	border-radius: unset;
	max-height: 40px;
	width: auto;
}
#infos div p {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 12px !important;
}
#infos div label {
	font-size: 12px;
}

/* Barra das casas */
#barra_casas {
	display: flex;
	width: 100vw;
	color: #FFF;
}
#barra_casas figure, #barra_casas img, #barra_casas figcaption {
	height: 500px;
	padding: 0px;
	margin: 0px;
	width: 100%;
}
#barra_casas figure {
	overflow: hidden;
	display: block;
	transition: all 1.5s;
}
#barra_casas img {
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
#barra_casas figcaption {
	transform: translateY(-100%);
	background: rgba(0,0,0,0.5);
	display: grid;
	grid-template-columns: auto;
	align-items: center;
	text-align: center;
	padding: 20px 0;
	transition: all .5s;
}
#barra_casas h3 {
	text-align: center;
}
#barra_casas figure:hover {
	width: 130%;
}
#barra_casas p {
	display: block;
	max-width: calc((100vw / 3) - 120px);
	margin: 0 auto;
	opacity: 0;
}
#barra_casas a {
	display: inline-block;
	vertical-align: top;
	padding: 10px 25px;
	background: rgba(255, 255, 255, 0.3);
	text-transform: uppercase;
	border: #FFF 1px solid;
	border-radius: 100px;
	color: #FFF;
	margin: 0 auto;
	opacity: 0;
}
#barra_casas a:hover {
	background: #FFF;
	color: #000;
}
#barra_casas figure:hover figcaption {
	background: rgba(0,0,0,0.2);
}
#barra_casas figure:hover p {
	animation: frombottom .5s ease-in;
	animation-fill-mode: forwards;
}
#barra_casas figure:hover a {
	animation: frombottom .5s ease-in .2s;
	animation-fill-mode: forwards;
}

#feedback {
	padding: 0px 100px 70px 100px;
	color: #374555;
	margin-top: 60px; 
}
#feedback section {
	width: calc(100vw - 200px);
	height: auto;
	padding: 0px;
	margin: 0px;
	overflow: hidden; 
	white-space: nowrap;
}
#feedback div {
	display: grid;
	grid-template-columns: repeat(0, 100%);
	grid-gap: 0px;
	transition: all .5s;
	perspective: 1px;
}
#feedback section section {
	display: block;
	width: 100%;
	padding: 0 20px 0 20px !important;
	margin: 0px;
	height: auto;
	perspective: 1px;
}
#feedback h2 {
	font-weight: 500;
	padding: 0px;
	margin: 0px;
	text-align: center;
}
#feedback label {
	color: #98734f !important;
	text-align: center;
	display: block;
	margin: 0px;
	padding: 0 0 10px 0;
	font-size: 16px;
	font-weight: 400;
}
#feedback div section * {
	max-width: calc(100% - 40px) !important;
	white-space: pre-wrap;
	text-align: center !important;
	overflow-wrap: break-word;
  	hyphens: auto;
}
#feedback img {
	display: inline-block;
	vertical-align: top;
	align-self: center;
	padding: 0px;
	margin: 0px;
	border-radius: 100%;
}
#feedback h3 {
	text-align: center;
	color: #435666;
	text-transform: none;
	font-size: 32px;
	font-weight: 500;
	margin-bottom: -5px;
}
#feedback label {
	color: #787470;
	font-weight: 600;
}
#feedback span {
	display: inline-block;
	vertical-align: top;
	background: #787470;
	border-radius: 50px;
	height: 10px;
	width: 10px;
	margin: 0 4px;
	cursor: pointer;
	cursor: hand;
}
#feedback span.on {
	background: #435666;
}
#feedback #indice {
	display: block;
	text-align: center;
	padding-top: 30px;
}


#cookies {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	max-width: calc(100vw - 40px);
	padding: 20px;
	margin: 0px;
	background: rgba(255, 255, 255, .9);
	z-index: 9999999;
	box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.5);
}
#cookies input[type=button] {
	display: block;
	margin: 10px auto 0 auto;
	background: #157263;
	color: #FFF;
	padding: 10px 25px;
	border: none;
	cursor: pointer;
	cursor: hand;
	text-transform: uppercase;
	font-weight: bold;
	transition: all .5s;
}
#cookies input[type=button]:hover {
	background: #a5b687;
}

/* Classes gerais */
.button {
	text-align: right;
	padding: 40px 0 0 0;
}
.button a {
	display: inline-block;
	vertical-align: top;
	color: #000;
	text-transform: uppercase;
	padding: 13px 25px;
	border: #000 1px solid;
	border-radius: 100px;
}
.button a:hover {
	color: #FFF;
	background: #000;
}

footer {
	background: #194141 url('../img/bgfooter2.png') no-repeat left top;
	background-size: 630px;
	color: #FFF;
	display: flex;
	column-gap: 50px;
	align-items: start;
}
footer div {
	width: 100%;
	padding: 50px;
}
footer div:nth-of-type(1) {
	background: #112E2E url('../img/bgfooter1.png') no-repeat left top;
	background-size: 630px;
	text-align: center;
	padding: 50px 50px 70px 50px;
}
footer img {
	max-width: 250px;
	height: auto;
	margin-bottom: 50px;
}
footer label {
	display: block;
	margin: 30px auto 0 auto;
	color: #FFF;
	font-size: 38px;
	font-family: 'Times New Roman', Times, serif;
}
footer span {
	font-size: 12px;
}
#redes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;
	padding-top: 40px;
	width: 50%;
	margin: 0 auto;
	background: none;
}
#redes img {
	max-height: 25px;
	width: auto;
	opacity: .5;
	margin: 0px;
	transition: all .5s;
}
#redes img:hover {
	opacity: 1;
	transform: translateY(-5px);
}
footer ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: inline-block !important;
	vertical-align: top;
}
footer li {
	padding-bottom: 4px;
}
footer li a {
	font-size: 22px;
	color: #FFF;
	font-family: 'Times New Roman', Times, serif;
}
footer ul:hover li a {
	color: rgba(255, 255, 255, .5);
}
footer li:hover a {
	color: #FFF !important;
}
footer div:last-of-type h4 {
	font-family: 'Times New Roman', Times, serif;
	font-size: 24px;
	color: #FFF;
	margin-top: 0px;
	padding-top: 0px;
	font-weight: 400;
}
footer div:last-of-type ul {
	margin: 0 0 50px 0;
}
footer div:last-of-type li {
	padding: 0px;
}
footer div:last-of-type a {
	font-size: 14px;
	font-family:'Montserrat', sans-serif;
}
footer div:last-of-type img {
	width: 150px;
	height: auto;
	display: block;
}

/* FAQs */
details {
	background: #f9f5f2;
 	padding: 10px;
 	margin-bottom: 20px;
 	overflow: hidden;
	border-radius: 5px;
	border: #c9c6c3 1px solid;
}
summary {
	font-size: 18px;
	font-weight: 600;
	padding: 0 0 10px 00;
	margin: 0px;
	cursor: pointer;
	cursor: hand;
}
summary::marker {
	color: #157263;
	font-size: 14px;
}

details::details-content {
  	block-size: 0;
  	transition: block-size .5s, content-visibility .5s;
  	transition-behavior: allow-discrete;
}
details:open::details-content {
  	block-size: auto;
}

/* Contactos */
#contactos {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 50px;
}

.buttons {
	text-align: right;
	padding-top: 50px;
}
.buttons a {
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	color: #FFF;
	border-radius: 50px;
	padding: 10px 25px;
	border: #194141 1px solid;
	background: #194141;
	transition: all 0.5s;
	font-weight: 600;
}
.buttons a:hover {
	background: none;
	color: #194141;
}

.textblock {
	text-align: justify;
	padding-bottom: 50px;
}
.review {
	background: #f9f5f2;
	border-radius: 10px;
	padding: 20px;
	display: grid;
	grid-template-columns: auto;
	grid-gap: 30px;
	align-items: start;
	margin-bottom: 30px;
}
.review h3 {
	font-size: 32px;
	margin: 0px;
	padding: 0px;
}

#galleryindex {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
}
#galleryindex article {
	border-radius: 10px;
	padding: 10px;
	height: calc(100% - 20px);
	transition: all .5s;
}
#galleryindex article:hover {
	box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.3);
}
#galleryindex article:hover img {
	transform: scale(1.3);
}
#galleryindex figure {
	width: 100%;
	display: block;
	height: 300px;
	overflow: hidden;
	padding: 0px;
	margin: 0px;
	border-radius: 5px;
}
#galleryindex img {
	width: 100%;
	display: block;
	height: 300px;
	object-fit: cover;
	transition: transform .5s;
}
#galleryindex h3 {
	display: block;
	font-size: 24px;
	margin: 10px 0;
	text-align: center;
}

#galleryphotos {
	columns: 300px;
	column-gap: 10px;
}
#galleryphotos img {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	transition: transform .5s;
}
#galleryphotos figure:hover img {
	transform: scale(1.2);
	transform-origin: center center;
}
#galleryphotos figure {
	overflow: hidden;
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 10px 0;
	padding: 0px;
	position: relative;
}
#galleryphotos figcaption {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0, 0.5);
	display: grid;
	grid-template-columns: auto;
	align-items: center;
	justify-items: center;
	opacity: 0;
	transition: transform .5s;
}
#galleryphotos figure:hover figcaption {
	opacity: 1;
}
#galleryphotos label {
	text-transform: uppercase;
	color: #FFF;
	transform: translateY(50px);
	opacity: 0;
	transition: all .5s;
}
#galleryphotos figure:hover label {
	transform: none;
	opacity: 1;
}

/* Lightbox */
#lightbox {
	margin-top: 20px;
}
body:after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: auto;
  height: auto;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #435666999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* listas de interesses (locais, vinhos, actividades, gastronomia */
#interesting {
	display: grid;
	grid-template-columns: auto;
	grid-gap: 30px;
}
#interesting section {
	background: #f9f5f2;
	border-radius: 10px;
	display: grid;
	grid-template-columns: 150px auto;
	grid-gap: 20px;
	padding: 15px;
	transition: all .5s;
}
#interesting img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 5px;
	transition: all .5s;
}
#interesting figure {
	padding: 0;
	margin: 0;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1 / 1;
}
#interesting section:hover img {
	transform: scale(1.3);
}
#interesting h4 {
	font-size: 20px;
	margin: 0 0 15px 0;
	font-weight: 600;
}
#interesting div {
	text-align: justify;
}
#interesting section:hover {
	background: #c9c6c3;
	color: #435666;
}

#news {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
	align-items: end;
}
#news img {
	margin-top: 50px;
	display: block;
	width: 100%;
	height: auto;
	align-self: start;
}
#news article {
	padding-bottom: 30px;
}

#pages {
	text-align: center;
	padding-top: 70px;
}
#pages * {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
	padding: 5px;
	color: #435666;
	font-weight: 600;
}
#pages a.page {
	border: #c9c6c3 1px solid;
	background: #f9f5f2;
	border-radius: 100px;
	width: 20px;
	height: 20px;
	transition: all .5s;
}
#pages a.page:hover {
	background: #c9c6c3;
}
#pages span.page {
	background: #c9c6c3;
	border: #9f9c98 1px solid;
	border-radius: 100px;
	width: 20px;
	height: 20px;
}

.twocolumns {
	display: grid;
	grid-template-columns: repeat(2, 1fr) !important;
	grid-gap: 20px !important;
}

#bookhouse {
	border-top: #787470 1px dashed;
	margin-top: 100px;
	text-align: center;
}
#bookhouse h3 {
	text-align: center;
}

.round {
	border-radius: 10px;
	padding: 2px;
	outline: #194141 1px solid;
}
.icons {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-items: center;
	grid-gap: 10px;
}
.icons img {
	width: 30px !important;
	height: 30px !important;
	object-fit: contain;
	padding: 8px;
	display: block;
	margin: 0 auto;
	height: auto;
	border: #000 2px solid;
	border-radius: 100%;
}
.icons article {
	text-align: center;
	font-weight: 600;
}

.reservations  {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
	padding-top: 80px;
}
.reservations img {
	max-width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 5px;
	object-fit: cover;
}
.reservations article {
	padding: 10px;
	height: 100%;
	box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.3);
	border-radius: 10px;
}
.reservations article article img {
	border-radius: 100%;
	object-fit: contain;
}
.reservations article article {
	height: auto;
	box-shadow: none;
	padding: 0px;
}
.reservations input[type=button] {
	display: block;
	margin: 30px auto 0 auto;
}
.reservations input[type=button]:hover {
	background: #a5b687;
}
.reservations div {
	text-align: justify;
}
.reservations .icons {
	padding-top: 50px;
	text-align: center;
}
.reservations h3 {
	margin-top: 0px;
	text-align: center;
}

/* Banners */
.link_on {
	cursor: pointer;
	cursor: hand;
}
.banner_in {
	animation: banner_in 1.5s cubic-bezier(.785,.135,.15, .86);
}
.banner_out {
	animation: banner_out 1.7s cubic-bezier(.785,.135,.15, .86);
}

@keyframes banner_in {
	0% {
		background-position: -87vw center;
		transform: translateX(100vw) scale3d(1.3, 1.3, 3);
	}
	100% {
		background-position: center center;
		transform: translateX(0px) scale3d(1, 1, 1);
	}
}

@keyframes banner_out {
	0% {
		transform: translate(0px);
	}
	100% {
		transform: translateX(-20vw) scale3d(1.2, 1.2, 1);
	}
}

@media (max-width: 900px) {
	h1 {
		font-size: 42px;
	}
	h2 {
		font-size: 38px !important;
	}
	/* Barra do logo */
	#titlebar {
		border-bottom: #FFF 1px solid;
	}
	#titlebar section {
		display: grid;
		grid-template-columns: auto 30px;
		grid-gap: 30px;
		align-items: top;
		justify-items: start;
		padding: 20px 25px 15px 25px;
	}
	#titlebar section ul {
		display: none;
	}
	#titlebar img {
		max-width: 120px;
		height: auto;
	}
	#titlebar span {
		display: none;
	}

	#hamburguer {
		display: inline-block;
		vertical-align: top;
	}

	/* Menu */
	nav {
		position: fixed;
		backdrop-filter: blur(100%);
		background: rgba(0,0,0,0.7);
		left: 0px;
		top: 81px;
		width: 100%;
		height: calc(100vh - 65px) !important;
		animation: none;
		z-index: 9999;
		overflow-Y: auto !important;
		transform: translateX(100%);
		transition: all .8s cubic-bezier(0.77, 0, 0.175, 1); 
		padding: 0px;
		text-align: center;
		border-bottom: none;
	}
	nav menu li, nav menu li:last-of-type {
		display: block !important;
		padding: 20px 0;
	}
	nav menu li menu {
		background: none;
		position: relative;
		display: block;
		padding: 0px;
		margin: 0px;
	}
	nav li menu li {
		padding: 20px;
	}
	nav li menu li a {
		font-size: 14px;
		padding: 10px;
	}
	nav menu li:hover menu {
		animation: none;
	}
	nav.active {
		transform: translateX(0%);
	}
	nav menu li menu {
		text-align: center;
	}
	nav li menu li:last-of-type {
		padding: 20px 10px 0px 10px !important;
		display: block;
		border-bottom: none;
	}
	header {
		padding: 0px;
	}
	header h3, header h3 * {
		font-size: 36px;
		font-weight: 500;
		margin-bottom: 10px;
	}
	header section {
		max-width: none;
		width: auto;
	}

	#content, #separador article, #feedback {
		padding-left: 25px;
		padding-right: 25px;
	}
	
	#intro, #separador .darken {
		grid-template-columns: auto;
	}
	#intro label {
		display: none;
	}
	#intro article label {
		display: inline-block;
	}
	#intro img, #infos img {
		justify-self: center;
	}

	#infos {
		padding: 50px 25px 100px 25px;
		grid-template-columns: auto;
		grid-template-areas: unset;
	}
	#infos article, #infos img {
		grid-area: unset;
	}
	#infos article section {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 30px;
	}

	#barra_casas {
		display: block;
	}
	#barra_casas figure:hover {
		width: 100%;
	}
	#barra_casas p {
		max-width: 80vw;
	}

	#feedback h3 {
		font-size: 24px !important;
	}
	footer {
		display: block;
	}
	footer div {
		width: auto;
		text-align: center;
	}
	footer div:last-of-type img {
		margin: 0 auto 50px auto;
	}
	footer label {
		font-size: 32px;
	}
	footer h4 {
		text-align: center;
	}

	#contactos {
		grid-template-columns: auto;
	}

	#news, .twocolumns, #interesting, #interesting section, #galleryindex {
		grid-template-columns: auto !important;
		padding-bottom: 0px;
	}
	#news article {
		padding-bottom: 0px;
	}

	#newscontent {
		padding-top: 0px;
	}

}

@media (max-width: 800px) {
	#feedback h2 {
		font-size: 28px;
	}
	#feedback section {
		width: calc(100vw - 50px);
	}
}