@import url(reset.css);
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;600&family=Poppins:wght@300;500;700&display=swap");
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #191919;
  background-color: #fff;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background: #ddd;
}

::-webkit-scrollbar-thumb {
  background: #999;
  -webkit-box-shadow: none;
}

input,
textarea,
select,
button {
  -webkit-appearance: none;
}

select {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

a {
  font-family: "Poppins", sans-serif !important;
  transition: all 0.5s ease;
}

* {
  box-sizing: border-box;
}

div#menuresp {
  display: none;
}

div#general {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
div#general div.wrapper {
  width: 1140px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  position: relative;
}
div#general header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: transparent;
  height: 92px;
  position: fixed;
  z-index: 20;
  transition: all 0.5s ease;
}
div#general header a.logo {
  position: absolute;
  left: 3%;
  top: -100px;
}
div#general header a.logo img {
  width: 130px;
}
div#general header a.menuclick {
  display: none;
}
div#general header div.wrapper {
  align-items: center;
  justify-content: center;
}
div#general header div.wrapper ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
div#general header div.wrapper ul li {
  margin: 0 20px;
}
div#general header div.wrapper ul li a {
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
  font-size: 1.2em;
}
div#general header div.wrapper ul li.act a {
  font-weight: 500;
}
div#general header div.wrapper ul li:last-child a {
  color: #00a3b4;
  border: 2px solid #00a3b4;
  padding: 10px 10px;
}
div#general header.roll {
  background-color: #f3eee7;
  height: 65px;
}
div#general header.roll a.logo {
  top: 5px;
}
div#general header.roll div.wrapper ul li a {
  color: #000;
}
div#general main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
div#general main section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
div#general main section#destaque {
  height: 100vh;
  background: url(../img/destaque.jpg) no-repeat center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  z-index: 5;
}
div#general main section#destaque video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
div#general main section#destaque div.mask {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
div#general main section#destaque div.mask img {
  width: auto;
}
div#general main section#destaque div.mask div#motor {
  width: 100%;
  position: absolute;
  bottom: 50px;
}
div#general main section#destaque div.mask div#motor div.wrapper {
  justify-content: center;
}
div#general main section#destaque div.mask div#motor form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
div#general main section#destaque div.mask div#motor form ::-moz-placeholder {
  color: #fff;
}
div#general main section#destaque div.mask div#motor form ::placeholder {
  color: #fff;
}
div#general main section#destaque div.mask div#motor form input[type=text] {
  background: transparent url(../img/cal.png) no-repeat right center;
  height: 56px;
  padding: 0 20px;
  font-weight: 300;
  font-size: 1.3em;
  color: #fff;
  border: 1px solid #00a3b4;
  width: 160px;
  margin: 0 5px;
}
div#general main section#destaque div.mask div#motor form select {
  background: transparent url(../img/sel.png) no-repeat right center;
  height: 56px;
  padding: 0 20px;
  font-weight: 300;
  font-size: 1.3em;
  color: #fff;
  border: 1px solid #00a3b4;
  width: 160px;
  margin: 0 5px;
}
div#general main section#destaque div.mask div#motor form select option {
  background-color: #00a3b4;
  color: #fff;
}
div#general main section#destaque div.mask div#motor form input[type=button] {
  background-color: #00a3b4;
  height: 56px;
  font-weight: 300;
  font-size: 1.3em;
  color: #fff;
  border: 1px solid #00a3b4;
  width: 160px;
  margin: 0 5px;
  cursor: pointer;
}
div#general main section#destaque div.mask div#motor form input[type=button]:hover {
  background-color: #f3f3f3;
  color: #00a3b4;
}
div#general main section#mapa {
  padding: 60px 0 0;
}
div#general main section#mapa div.wrapper {
  padding-bottom: 30px;
  margin-bottom: 60px;
  flex-direction: column;
  align-items: center;
  align-content: center;
  background: url(../img/linha.png) no-repeat center bottom;
}
div#general main section#mapa div.wrapper h2 {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: 100%;
}
div#general main section#mapa div.wrapper small {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  font-weight: 100;
}
div#general main section#mapa iframe {
  width: 100%;
  height: 700px;
}
div#general main section#intro {
  padding: 120px 0 80px;
}
div#general main section#intro div.wrapper {
  justify-content: space-between;
}
div#general main section#intro div.wrapper div.left {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-right: 2%;
  padding-bottom: 30px;
  background: url(../img/linha.png) no-repeat center bottom;
}
div#general main section#intro div.wrapper div.left h2 {
  font-weight: 400;
  font-size: 2em;
  line-height: 1.3em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
div#general main section#intro div.wrapper div.left p {
  font-size: 1.4em;
  line-height: 1.4em;
  font-weight: 100;
}
div#general main section#intro div.wrapper div.left p strong {
  font-weight: bold;
}
div#general main section#intro div.wrapper div.right {
  width: 45%;
}
div#general main section#intro div.wrapper div.right img {
  width: 100%;
}
div#general main section#intro div.wrapper.bt {
  flex-direction: column;
  align-items: center;
  align-content: center;
  padding-top: 80px;
}
div#general main section#intro div.wrapper.bt a.reserva {
  font-family: "Lora", serif;
  font-weight: 700 !important;
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0 30px;
  height: 56px;
  line-height: 56px;
  font-weight: 300;
  font-size: 1.3em;
  color: #000;
  text-transform: uppercase;
  border: 2px solid #00a3b4;
}
div#general main section#intro div.wrapper.bt a.reserva:hover {
  background-color: #00a3b4;
  color: #fff;
}
div#general main section#loc {
  padding: 40px 0 80px;
}
div#general main section#loc div.wrapper {
  justify-content: space-between;
}
div#general main section#loc div.wrapper div.left {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 50px;
  position: relative;
}
div#general main section#loc div.wrapper div.left a.mais {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 48px;
  color: #000;
  text-transform: uppercase;
}
div#general main section#loc div.wrapper div.right {
  padding-bottom: 70px;
  background: url(../img/linha.png) no-repeat center bottom;
}
div#general main section#loc div.wrapper div.right h2 {
  font-weight: bold;
  font-size: 2em;
  line-height: 1.4em;
  margin-bottom: 20px;
}
div#general main section#loc div.wrapper div.right p {
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 100;
}
div#general main section#loc div.wrapper.bt {
  flex-direction: column;
  align-items: center;
  align-content: center;
  padding-top: 80px;
}
div#general main section#loc div.wrapper.bt a.reserva {
  font-family: "Lora", serif;
  font-weight: 700 !important;
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0 30px;
  height: 56px;
  line-height: 56px;
  font-weight: 300;
  font-size: 1.3em;
  color: #000;
  text-transform: uppercase;
  border: 2px solid #00a3b4;
}
div#general main section#loc div.wrapper.bt a.reserva:hover {
  background-color: #00a3b4;
  color: #fff;
}
div#general main section#destaque_in {
  height: 30vh;
  background-size: cover;
  z-index: 6;
}
div#general main section#destaque_in div.mask {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(240, 228, 220, 0.8);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
div#general main section#destaque_in div.mask h1 {
  font-size: 3em;
  font-weight: 500;
  color: #00a3b4;
  text-transform: uppercase;
}
div#general main section#destaque_in div.mask img {
  width: 600px;
}
div#general main section#motor {
  margin-top: -30px;
  z-index: 7;
}
div#general main section#motor div.wrapper {
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
div#general main section#motor div.wrapper form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
div#general main section#motor div.wrapper form ::-moz-placeholder {
  color: #000;
}
div#general main section#motor div.wrapper form ::placeholder {
  color: #000;
}
div#general main section#motor div.wrapper form input[type=text] {
  background: #f4f4f4 url(../img/cal.png) no-repeat right center;
  height: 76px;
  padding: 0 20px;
  color: #000;
  font-weight: 300;
  font-size: 1.3em;
  border: 0;
  width: 180px;
  margin: 0 1px;
}
div#general main section#motor div.wrapper form select {
  background: #f4f4f4 url(../img/sel.png) no-repeat right center;
  height: 76px;
  padding: 0 20px;
  color: #000;
  font-weight: 300;
  font-size: 1.3em;
  border: 0;
  width: 180px;
  margin: 0 1px;
}
div#general main section#motor div.wrapper form input[type=button] {
  background-color: #00a3b4;
  height: 76px;
  color: #fff;
  font-weight: 300;
  font-size: 1.3em;
  border: 0;
  width: 180px;
  margin: 0 1px;
}
div#general main section#destaqueblog {
  background-color: #f4f4f4;
  padding: 80px 5% 0;
}
div#general main section#destaqueblog div.exp {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
div#general main section#destaqueblog div.exp div.img {
  width: 60%;
  position: relative;
}
div#general main section#destaqueblog div.exp div.img div.shape {
  position: absolute;
  z-index: 3;
  left: -30px;
  top: -30px;
  width: 200px;
  height: 300px;
  background-color: #00a3b4;
}
div#general main section#destaqueblog div.exp div.img img {
  width: 100%;
  position: relative;
  z-index: 4;
}
div#general main section#destaqueblog div.exp div.text {
  width: 35%;
  padding: 0 25px;
}
div#general main section#destaqueblog div.exp div.text h3 {
  font-size: 1.8em;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
}
div#general main section#destaqueblog div.exp div.text h3 a {
  color: #000;
}
div#general main section#destaqueblog div.exp div.text ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: flex-start;
}
div#general main section#destaqueblog div.exp div.text ul li {
  margin: 0 5px 0 0;
}
div#general main section#destaqueblog div.exp div.text ul li a {
  color: #000;
  font-weight: 500;
  font-size: 1.2em;
}
div#general main section#destaqueblog div.exp div.text p {
  font-size: 1.4em;
  line-height: 1.3em;
  font-weight: 300;
  margin-bottom: 20px;
}
div#general main section#destaqueblog div.exp div.text a.leia {
  color: #00a3b4;
  font-size: 1.2em;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 500;
}
div#general main section#destaqueblog div.exp:nth-child(even) {
  flex-direction: row-reverse;
}
div#general main section#destaqueblog div.exp:nth-child(even) div.img div.shape {
  position: absolute;
  z-index: 3;
  left: inherit;
  top: inherit;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 300px;
  background-color: #ca855a;
}
div#general main section#destaqueblog div.exp:nth-child(even) div.text {
  text-align: right;
}
div#general main section#destaqueblogsing {
  background-color: #f4f4f4;
  padding: 80px 5% 0;
}
div#general main section#destaqueblogsing div.exp {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
div#general main section#destaqueblogsing div.exp div.img {
  width: 100%;
  max-height: 50vh;
  overflow: hidden;
  position: relative;
}
div#general main section#destaqueblogsing div.exp div.img div.shape {
  position: absolute;
  z-index: 3;
  left: -30px;
  top: -30px;
  width: 200px;
  height: 300px;
  background-color: #00a3b4;
}
div#general main section#destaqueblogsing div.exp div.img img {
  width: 100%;
  position: relative;
  z-index: 4;
}
div#general main section#destaqueblogsing div.exp div.text {
  width: 35%;
  padding: 0 25px;
}
div#general main section#destaqueblogsing div.exp div.text h3 {
  font-size: 1.8em;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
}
div#general main section#destaqueblogsing div.exp div.text h3 a {
  color: #000;
}
div#general main section#destaqueblogsing div.exp div.text ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: flex-start;
}
div#general main section#destaqueblogsing div.exp div.text ul li {
  margin: 0 5px 0 0;
}
div#general main section#destaqueblogsing div.exp div.text ul li a {
  color: #000;
  font-weight: 500;
  font-size: 1.2em;
}
div#general main section#destaqueblogsing div.exp div.text p {
  font-size: 1.4em;
  line-height: 1.3em;
  font-weight: 300;
  margin-bottom: 20px;
}
div#general main section#destaqueblogsing div.exp div.text a.leia {
  color: #00a3b4;
  font-size: 1.2em;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 500;
}
div#general main section#destaqueblogsing div.exp:nth-child(even) {
  flex-direction: row-reverse;
}
div#general main section#destaqueblogsing div.exp:nth-child(even) div.img div.shape {
  position: absolute;
  z-index: 3;
  left: inherit;
  top: inherit;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 300px;
  background-color: #ca855a;
}
div#general main section#destaqueblogsing div.exp:nth-child(even) div.text {
  text-align: right;
}
div#general main section#post {
  padding: 80px 0;
}
div#general main section#post div.wrapper h1 {
  font-size: 2.5em;
  line-height: 1.4em;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
  width: 100%;
}
div#general main section#post div.wrapper ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: flex-start;
}
div#general main section#post div.wrapper ul li {
  margin: 0 5px 0 0;
}
div#general main section#post div.wrapper ul li a {
  color: #000;
  font-weight: 500;
  font-size: 1.2em;
}
div#general main section#post div.wrapper p {
  font-size: 1.5em;
  line-height: 1.6em;
  font-weight: 300;
  margin-bottom: 20px;
}
div#general main section#blogfeed {
  padding: 80px 0;
}
div#general main section#blogfeed div.posts {
  width: 100%;
  padding: 0 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div#general main section#blogfeed article {
  width: 33%;
  padding: 0 25px 100px;
}
div#general main section#blogfeed article div.thumb {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
}
div#general main section#blogfeed article div.inf {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
}
div#general main section#blogfeed article div.inf h3 {
  font-size: 1.6em;
  line-height: 1.3em;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
}
div#general main section#blogfeed article div.inf h3 a {
  color: #000;
}
div#general main section#blogfeed article div.inf ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: flex-start;
}
div#general main section#blogfeed article div.inf ul li {
  margin: 0 5px 0 0;
}
div#general main section#blogfeed article div.inf ul li a {
  color: #000;
  font-weight: 500;
  font-size: 1.2em;
}
div#general main section#blogfeed article div.inf p {
  font-size: 1.4em;
  line-height: 1.3em;
  font-weight: 300;
  margin-bottom: 20px;
}
div#general main section#blogfeed article div.inf a.leia {
  color: #00a3b4;
  font-size: 1.2em;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 500;
}
div#general main section#present {
  padding: 80px 0;
  justify-content: center;
}
div#general main section#present ul {
  padding: 0 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
div#general main section#present ul li {
  display: flex;
  flex-wrap: wrap;
  max-width: 33%;
  padding: 40px 50px;
}
div#general main section#present ul li:first-child {
  flex-direction: column;
  align-items: center;
  align-content: center;
}
div#general main section#present ul li:first-child h1 {
  font-size: 2em;
  font-weight: 700;
  margin-top: 30px;
}
div#general main section#present ul li small {
  font-size: 1.4em;
  line-height: 1.3em;
  color: #292829;
  font-weight: 100;
}
div#general main section#itensdestaque ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div#general main section#itensdestaque ul li {
  width: 25%;
  height: 0;
  padding-bottom: 30%;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  transition: all 0.5s ease;
}
div#general main section#itensdestaque ul li div.mask {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(240, 228, 220, 0.7);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
div#general main section#itensdestaque ul li div.mask div.inf {
  width: 80%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  align-content: center;
}
div#general main section#itensdestaque ul li div.mask div.inf img.off {
  display: block;
  transition: all 0.5s ease;
}
div#general main section#itensdestaque ul li div.mask div.inf img.on {
  display: none;
  transition: all 0.5s ease;
}
div#general main section#itensdestaque ul li div.mask div.inf small {
  font-size: 2em;
  font-weight: 300;
  color: #b4764f;
  line-height: 1.3em;
  margin-top: 20px;
  transition: all 0.5s ease;
}
div#general main section#itensdestaque ul li:hover div.mask {
  background-color: rgba(125, 51, 48, 0.4);
}
div#general main section#itensdestaque ul li:hover div.mask div.inf img.off {
  display: none;
}
div#general main section#itensdestaque ul li:hover div.mask div.inf img.on {
  display: block;
}
div#general main section#itensdestaque ul li:hover div.mask div.inf small {
  color: #fff;
}
div#general main section#pontos {
  background-color: #f6f6f6;
  padding: 80px 0;
}
div#general main section#pontos ul {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 5%;
  justify-content: space-between;
}
div#general main section#pontos ul li {
  max-width: 33%;
  padding: 0 50px;
}
div#general main section#pontos ul li div.inf {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div#general main section#pontos ul li div.inf div.icon {
  width: 25%;
}
div#general main section#pontos ul li div.inf div.icon i {
  font-size: 3.5em;
}
div#general main section#pontos ul li div.inf div.text {
  width: 75%;
}
div#general main section#pontos ul li div.inf div.text h3 {
  font-size: 1.3em;
  line-height: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
}
div#general main section#pontos ul li div.inf div.text small {
  font-size: 1.1em;
  line-height: 1.2em;
}
div#general main section#acomodahome {
  padding: 80px 0;
  justify-content: center;
}
div#general main section#acomodahome div.wrapper {
  justify-content: center;
}
div#general main section#acomodahome h2 {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 100px;
}
div#general main section#acomodahome .owl-prev {
  position: absolute;
  left: 20px;
  top: calc(50% - 20px);
  font-size: 5em;
  z-index: 9;
  color: #00a3b4;
}
div#general main section#acomodahome .owl-next {
  position: absolute;
  right: 20px;
  top: calc(50% - 30px);
  font-size: 5em;
  z-index: 9;
  color: #00a3b4;
}
div#general main section#acomodahome div.rooms {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
div#general main section#acomodahome div.rooms div.room {
  width: 100%;
  background: url(../img/linha.png) no-repeat center bottom;
  padding-bottom: 80px;
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div#general main section#acomodahome div.rooms div.room:last-child {
  margin-bottom: 80px;
}
div#general main section#acomodahome div.rooms div.room div.thumb {
  width: 55%;
  background-color: #f6f6f6;
}
div#general main section#acomodahome div.rooms div.room div.thumb div.roomgal {
  width: 100%;
}
div#general main section#acomodahome div.rooms div.room div.thumb div.roomgal div.item {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 70%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
div#general main section#acomodahome div.rooms div.room div.thumb .owl-dots {
  width: 100%;
  text-align: center;
  margin-top: -40px;
  z-index: 99;
  position: absolute;
}
div#general main section#acomodahome div.rooms div.room div.thumb .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #f6f6f6;
  border-radius: 20px;
}
div#general main section#acomodahome div.rooms div.room div.thumb .owl-dots .owl-dot.active {
  background-color: #00a3b4;
}
div#general main section#acomodahome div.rooms div.room div.inf {
  width: 45%;
  padding: 0 0 0 5%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}
div#general main section#acomodahome div.rooms div.room div.inf div.qc {
  display: flex;
  flex-wrap: wrap;
}
div#general main section#acomodahome div.rooms div.room div.inf h3 {
  font-size: 2em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
div#general main section#acomodahome div.rooms div.room div.inf h3 span {
  color: #00a3b4;
}
div#general main section#acomodahome div.rooms div.room div.inf ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
div#general main section#acomodahome div.rooms div.room div.inf ul li {
  font-size: 1.3em;
  margin: 0 25px 25px 0;
}
div#general main section#acomodahome div.rooms div.room div.inf p {
  font-size: 1.3em;
  line-height: 1.4em;
  font-weight: 300;
  margin-bottom: 25px;
}
div#general main section#acomodahome div.rooms div.room div.inf p strong {
  font-weight: bold;
}
div#general main section#acomodahome div.rooms div.room div.inf ol {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
div#general main section#acomodahome div.rooms div.room div.inf ol li {
  color: #00a3b4;
  font-size: 2.5em;
}
div#general main section#acomodahome div.rooms div.room div.inf a {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  align-self: flex-start;
  text-transform: uppercase;
  color: #000;
  font-size: 1.3em;
  padding: 20px 45px;
  border: 2px solid #00a3b4;
}
div#general main section#acomodahome div.rooms div.room:nth-child(even) {
  flex-direction: row-reverse;
}
div#general main section#acomodahome div.rooms div.room:nth-child(even) div.inf {
  padding-left: 0;
  padding-right: 5%;
}
div#general main section#oquetem {
  padding: 0 0 80px;
  background-color: #f3eee7;
}
div#general main section#oquetem div.wrapper {
  justify-content: center;
}
div#general main section#oquetem h2 {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}
div#general main section#oquetem a.bt {
  color: #00a3b4;
  font-size: 1.3em;
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: 30px;
}
div#general main section#oquetem p {
  font-size: 1.4em;
  line-height: 1.4em;
  text-align: center;
  width: 90%;
  padding: 0 5%;
  margin-bottom: 90px;
  font-weight: 300;
}
div#general main section#oquetem ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
div#general main section#oquetem ul li {
  width: 30%;
  height: 230px;
  margin: 0 1.5% 40px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  background-position: center;
  background-size: cover;
}
div#general main section#oquetem ul li div.thumb {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-self: flex-end;
  padding: 60px 20px 20px;
  background: #00a3b4;
  background: linear-gradient(0deg, rgb(0, 163, 180) 0%, rgba(255, 255, 255, 0) 100%);
}
div#general main section#oquetem ul li div.thumb h4 {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 15px;
}
div#general main section#oquetem ul li div.thumb small {
  color: #fff;
  font-size: 1.1em;
  line-height: 1.2em;
}
div#general main section#htl {
  padding: 80px 0;
  justify-content: center;
}
div#general main section#htl h2 {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 100px;
}
div#general main section#htl div.rooms {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
div#general main section#htl div.rooms div.room {
  width: 100%;
  margin-bottom: 160px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div#general main section#htl div.rooms div.room:last-child {
  margin-bottom: 80px;
}
div#general main section#htl div.rooms div.room div.thumb {
  width: 55%;
}
div#general main section#htl div.rooms div.room div.thumb div.roomgal {
  width: 100%;
}
div#general main section#htl div.rooms div.room div.thumb div.roomgal div.item {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  background-position: center;
  background-size: cover;
}
div#general main section#htl div.rooms div.room div.thumb .owl-dots {
  width: 100%;
  text-align: center;
  margin-top: -40px;
  z-index: 99;
  position: absolute;
}
div#general main section#htl div.rooms div.room div.thumb .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #f6f6f6;
  border-radius: 20px;
}
div#general main section#htl div.rooms div.room div.thumb .owl-dots .owl-dot.active {
  background-color: #00a3b4;
}
div#general main section#htl div.rooms div.room div.inf {
  width: 45%;
  padding: 0 5%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
div#general main section#htl div.rooms div.room div.inf h3 {
  font-size: 2em;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.3em;
}
div#general main section#htl div.rooms div.room div.inf ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
div#general main section#htl div.rooms div.room div.inf ul li {
  font-size: 1.3em;
  margin: 0 25px 25px 0;
}
div#general main section#htl div.rooms div.room div.inf p {
  font-size: 1.4em;
  line-height: 1.5em;
  font-weight: 300;
  margin-bottom: 25px;
}
div#general main section#htl div.rooms div.room div.inf ol {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
div#general main section#htl div.rooms div.room div.inf ol li {
  color: #00a3b4;
  font-size: 2.5em;
}
div#general main section#htl div.rooms div.room div.inf a {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  align-self: flex-start;
  text-transform: uppercase;
  color: #00a3b4;
  font-size: 1.3em;
  padding: 20px 45px;
  border: 1px solid #00a3b4;
}
div#general main section#htl div.rooms div.room:nth-child(even) {
  flex-direction: row-reverse;
}
div#general main section#experiencias {
  padding: 0 0 80px 0;
  align-items: center;
  flex-direction: column;
}
div#general main section#experiencias h2 {
  font-size: 2.4em;
  font-weight: 500;
  text-align: center;
  border-top: 3px solid #00a3b4;
  padding-top: 30px;
  text-transform: uppercase;
  margin-bottom: 120px;
}
div#general main section#experiencias div.wrapper {
  flex-direction: row;
}
div#general main section#experiencias div.wrapper div.exp {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
div#general main section#experiencias div.wrapper div.exp div.img {
  width: 60%;
  position: relative;
}
div#general main section#experiencias div.wrapper div.exp div.img div.shape {
  position: absolute;
  z-index: 3;
  left: -30px;
  top: -30px;
  width: 200px;
  height: 300px;
  background-color: #00a3b4;
}
div#general main section#experiencias div.wrapper div.exp div.img img {
  width: 100%;
  position: relative;
  z-index: 4;
}
div#general main section#experiencias div.wrapper div.exp div.text {
  width: 35%;
  padding: 0 25px;
}
div#general main section#experiencias div.wrapper div.exp div.text h3 {
  font-size: 1.8em;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
}
div#general main section#experiencias div.wrapper div.exp div.text p {
  font-size: 1.4em;
  line-height: 1.5em;
  font-weight: 300;
}
div#general main section#experiencias div.wrapper div.exp:nth-child(even) {
  flex-direction: row-reverse;
}
div#general main section#experiencias div.wrapper div.exp:nth-child(even) div.img div.shape {
  position: absolute;
  z-index: 3;
  left: inherit;
  top: inherit;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 300px;
  background-color: #ca855a;
}
div#general main section#experiencias div.wrapper div.exp:nth-child(even) div.text {
  text-align: right;
}
div#general main section#faq {
  padding: 120px 0 60px;
  background-color: #fff;
}
div#general main section#faq h2 {
  font-size: 2.4em;
  text-transform: uppercase;
  font-weight: bold;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
div#general main section#faq small {
  font-size: 1.2em;
  line-height: 1.3em;
  margin-bottom: 80px;
  max-width: 80%;
}
div#general main section#faq small a {
  color: #6242bf;
  text-decoration: underline;
}
div#general main section#faq small strong {
  font-weight: bold;
}
div#general main section#faq div.faq {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
div#general main section#faq div.faq ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
div#general main section#faq div.faq ul li {
  width: 100%;
  margin-bottom: 20px;
}
div#general main section#faq div.faq ul li div.pergunta {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #111;
  cursor: pointer;
}
div#general main section#faq div.faq ul li div.pergunta h3 {
  max-width: 80%;
  font-size: 1.4em;
  line-height: 1.2em;
  font-weight: bold;
}
div#general main section#faq div.faq ul li div.pergunta i {
  color: #00a3b4;
  transition: all 0.5s ease;
}
div#general main section#faq div.faq ul li div.resposta {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #111;
  border-top: 0;
}
div#general main section#faq div.faq ul li div.resposta p {
  font-size: 1.1em;
  line-height: 1.3em;
}
div#general main section#faq div.faq ul li.active div.pergunta i {
  transform: rotate(180deg);
}
div#general main section#faq div.faq ul li.active div.resposta {
  display: flex;
}
div#general main section#comochegar {
  padding: 0 0 0 0;
  align-items: center;
  flex-direction: column;
}
div#general main section#comochegar h2 {
  font-size: 2.4em;
  font-weight: 500;
  text-align: center;
  border-top: 3px solid #00a3b4;
  padding-top: 30px;
  text-transform: uppercase;
  margin-bottom: 80px;
}
div#general main section#comochegar iframe {
  width: 100%;
  height: 600px;
}
div#general main section#condicoes-especiais {
  padding: 80px 0 40px;
  background-color: #f3eee7;
}
div#general main section#condicoes-especiais .owl-dots {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  z-index: 99;
}
div#general main section#condicoes-especiais .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 20px;
}
div#general main section#condicoes-especiais .owl-dots .owl-dot.active {
  background-color: #00a3b4;
}
div#general main section#condicoes-especiais h2 {
  font-size: 2.4em;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
  width: 100%;
}
div#general main section#condicoes-especiais div.item {
  padding: 0 25px 100px;
}
div#general main section#condicoes-especiais div.item div.left {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  background-position: center;
  background-size: cover;
  margin-bottom: 20px;
}
div#general main section#condicoes-especiais div.item div.right {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
}
div#general main section#condicoes-especiais div.item div.right h3 {
  font-size: 1.4em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}
div#general main section#condicoes-especiais div.item div.right small {
  font-size: 1.3em;
  line-height: 1.3em;
  font-weight: 700;
  margin-bottom: 15px;
}
div#general main section#condicoes-especiais div.item div.right p {
  font-size: 1.2em;
  line-height: 1.3em;
  font-weight: 300;
  color: #888;
  margin-bottom: 35px;
}
div#general main section#condicoes-especiais div.item div.right a {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  align-self: flex-start;
  text-transform: uppercase;
  color: #00a3b4;
  font-size: 1.3em;
  padding: 20px 45px;
  border: 2px solid #00a3b4;
}
div#general main section#pacotes {
  padding: 120px 0 80px;
}
div#general main section#pacotes div.pacotes {
  width: 100%;
  padding: 0 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div#general main section#pacotes div.pacotes div.pct {
  width: 33%;
  padding: 0 25px 100px;
}
div#general main section#pacotes div.pacotes div.pct div.thumb {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
}
div#general main section#pacotes div.pacotes div.pct div.inf {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
}
div#general main section#pacotes div.pacotes div.pct div.inf h3 {
  font-size: 1.6em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}
div#general main section#pacotes div.pacotes div.pct div.inf div.periodo {
  font-size: 1.1em;
  line-height: 1.3em;
  color: #00a3b4;
  margin-bottom: 15px;
}
div#general main section#pacotes div.pacotes div.pct div.inf small {
  font-size: 1.3em;
  line-height: 1.3em;
  font-weight: 300;
  margin-bottom: 15px;
}
div#general main section#pacotes div.pacotes div.pct div.inf p {
  font-size: 1.6em;
  line-height: 1.3em;
  font-weight: 500;
  color: #00a3b4;
  margin-bottom: 35px;
}
div#general main section#pacotes div.pacotes div.pct div.inf a {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  align-self: flex-start;
  text-transform: uppercase;
  color: #00a3b4;
  font-size: 1.3em;
  padding: 20px 45px;
  border: 2px solid #00a3b4;
}
div#general footer {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
div#general footer section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
div#general footer section#depo {
  background: #f3eee7 url(../img/shad.png) no-repeat 13% center;
  min-height: 468px;
  justify-content: space-between;
}
div#general footer section#depo div.left {
  width: 20%;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
div#general footer section#depo div.left h3 {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 30px;
}
div#general footer section#depo .owl-dots {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  z-index: 99;
}
div#general footer section#depo .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 20px;
}
div#general footer section#depo .owl-dots .owl-dot.active {
  background-color: #00a3b4;
}
div#general footer section#depo div.depos {
  width: 65%;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
div#general footer section#depo div.depos div.item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}
div#general footer section#depo div.depos div.item div.thumb {
  width: 150px;
  height: 150px;
  border-radius: 100px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 4px solid #000;
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  margin-bottom: 30px;
}
div#general footer section#depo div.depos div.item p {
  font-size: 1.3em;
  line-height: 1.4em;
  font-weight: 300;
  margin-bottom: 25px;
}
div#general footer section#depo div.depos div.item h4 {
  font-size: 1.4em;
}
div#general footer section#foot {
  background-color: #333;
  padding: 80px 50px;
}
div#general footer section#foot div.box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
}
div#general footer section#foot div.box.box1 {
  width: 26%;
}
div#general footer section#foot div.box.box1 img {
  align-self: flex-start;
}
div#general footer section#foot div.box.box1 p {
  color: #fff;
  line-height: 1.3em;
  font-size: 1.1em;
  font-weight: 300;
  display: flex;
  align-self: flex-start;
  margin-top: 30px;
}
div#general footer section#foot div.box.box1 small {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  color: #fff;
  line-height: 1.3em;
  font-size: 1.3em;
  font-weight: 300;
}
div#general footer section#foot div.box.box1 small a {
  margin-left: 20px;
}
div#general footer section#foot div.box.box2 {
  width: 33%;
  padding-left: 5%;
}
div#general footer section#foot div.box.box2 ul li {
  margin-bottom: 50px;
}
div#general footer section#foot div.box.box2 ul li a {
  color: #fff;
  line-height: 1.2em;
  font-size: 1.1em;
  font-weight: 300;
}
div#general footer section#foot div.box.box2 ul li a i {
  margin-right: 10px;
  font-size: 1.1em;
  color: #00a3b4;
}
div#general footer section#foot div.box.box3 {
  width: 40%;
  padding-left: 5%;
}
div#general footer section#foot div.box.box3 h3 {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #00a3b4;
}
div#general footer section#foot div.box.box3 form {
  width: 100%;
}
div#general footer section#foot div.box.box3 form ::-moz-placeholder {
  color: #00a3b4;
}
div#general footer section#foot div.box.box3 form ::placeholder {
  color: #00a3b4;
}
div#general footer section#foot div.box.box3 form input[type=text],
div#general footer section#foot div.box.box3 form input[type=email],
div#general footer section#foot div.box.box3 form input[type=tel] {
  width: 100%;
  border: 2px solid #00a3b4;
  padding: 15px;
  background: transparent;
  margin-bottom: 15px;
}
div#general footer section#foot div.box.box3 form textarea {
  width: 100%;
  height: 120px;
  border: 2px solid #00a3b4;
  padding: 15px;
  background: transparent;
  margin-bottom: 15px;
}
div#general footer section#foot div.box.box3 form input[type=submit] {
  display: flex;
  flex-wrap: wrap;
  align-self: flex-start;
  text-transform: uppercase;
  background-color: #00a3b4;
  color: #fff;
  font-size: 1.3em;
  padding: 15px 45px;
  border: 2px solid #00a3b4;
}
div#general footer section#sign {
  background-color: #000;
  padding: 20px;
  justify-content: center;
}
div#general footer section#sign p {
  color: #fff;
  font-size: 1.3em;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  div#menuresp {
    display: none;
    width: 80%;
    height: 100vh;
    position: fixed;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.98);
    right: 0;
    top: 0;
  }
  div#menuresp a.clsmenu {
    font-size: 2em;
    color: #000;
    position: absolute;
    right: 5%;
    margin-top: 30px;
  }
  div#menuresp ul {
    width: 100%;
    padding-top: 100px;
  }
  div#menuresp ul li {
    margin-bottom: 20px;
    padding: 0 5%;
  }
  div#menuresp ul li a {
    font-size: 1.6em;
    font-weight: 300;
    text-transform: uppercase;
    color: #000;
  }
  html,
  div#general {
    width: 100% !important;
    overflow-x: hidden !important;
  }
  html div.wrapper,
  div#general div.wrapper {
    width: 100%;
    padding: 0 7%;
    left: inherit !important;
    margin: 0;
  }
  html header ul#menu,
  div#general header ul#menu {
    display: none;
  }
  html header a.menuclick,
  div#general header a.menuclick {
    display: flex;
    position: absolute;
    right: 5%;
    top: 30px;
    font-size: 2em;
    color: #00a3b4;
  }
  html header a.logo,
  div#general header a.logo {
    position: absolute;
    left: 3%;
    top: -100px;
  }
  html header a.logo img,
  div#general header a.logo img {
    width: 130px;
  }
  html header.roll,
  div#general header.roll {
    background-color: #f3eee7 !important;
  }
  html header.roll a.menuclick,
  div#general header.roll a.menuclick {
    top: 15px;
  }
  html main section#destaque,
  div#general main section#destaque {
    height: 100vh;
    background-attachment: inherit;
    background-image: none;
  }
  html main section#destaque video,
  div#general main section#destaque video {
    height: 100%;
  }
  html main section#destaque div.mask,
  div#general main section#destaque div.mask {
    background-color: rgba(0, 0, 0, 0.6);
    flex-direction: column;
    justify-content: flex-start;
  }
  html main section#destaque div.mask img,
  div#general main section#destaque div.mask img {
    width: 35%;
    margin-top: 40px;
  }
  html main section#destaque div.mask div#motor,
  div#general main section#destaque div.mask div#motor {
    justify-content: center;
    margin-bottom: 30px;
  }
  html main section#destaque div.mask div#motor div.wrapper,
  div#general main section#destaque div.mask div#motor div.wrapper {
    width: 100% !important;
    padding: 0 !important;
  }
  html main section#destaque div.mask div#motor div.wrapper form,
  div#general main section#destaque div.mask div#motor div.wrapper form {
    width: 100% !important;
  }
  html main section#destaque div.mask div#motor div.wrapper form input[type=text],
  html main section#destaque div.mask div#motor div.wrapper form input[type=email],
  html main section#destaque div.mask div#motor div.wrapper form input[type=button],
  html main section#destaque div.mask div#motor div.wrapper form input[type=tel],
  html main section#destaque div.mask div#motor div.wrapper form select,
  div#general main section#destaque div.mask div#motor div.wrapper form input[type=text],
  div#general main section#destaque div.mask div#motor div.wrapper form input[type=email],
  div#general main section#destaque div.mask div#motor div.wrapper form input[type=button],
  div#general main section#destaque div.mask div#motor div.wrapper form input[type=tel],
  div#general main section#destaque div.mask div#motor div.wrapper form select {
    width: 100%;
    margin-bottom: 5px;
  }
  html main section#loc div.wrapper div.left,
  div#general main section#loc div.wrapper div.left {
    width: 100%;
  }
  html main section#loc div.wrapper div.left img,
  div#general main section#loc div.wrapper div.left img {
    width: 100%;
  }
  html main section#loc div.wrapper div.right,
  div#general main section#loc div.wrapper div.right {
    width: 100%;
  }
  html main section#loc div.wrapper div.right img,
  div#general main section#loc div.wrapper div.right img {
    width: 100%;
  }
  html main section#intro div.wrapper div.left,
  div#general main section#intro div.wrapper div.left {
    width: 100%;
  }
  html main section#intro div.wrapper div.right,
  div#general main section#intro div.wrapper div.right {
    width: 100%;
  }
  html main section#intro div.wrapper div.right img,
  div#general main section#intro div.wrapper div.right img {
    width: 100%;
  }
  html main section#present,
  div#general main section#present {
    padding: 0 0 30px;
  }
  html main section#present ul,
  div#general main section#present ul {
    width: 100%;
    flex-direction: column;
  }
  html main section#present ul li,
  div#general main section#present ul li {
    width: 90% !important;
    padding: 0;
    margin-bottom: 30px;
    max-width: inherit;
  }
  html main section#present ul li h1 br,
  div#general main section#present ul li h1 br {
    display: none;
  }
  html main section#itensdestaque ul li,
  div#general main section#itensdestaque ul li {
    width: 90%;
    margin: 0 5% 30px;
    padding-bottom: 90%;
  }
  html main section#oquetem div.wrapper ul li,
  div#general main section#oquetem div.wrapper ul li {
    width: 100%;
  }
  html main section#pontos,
  div#general main section#pontos {
    padding-bottom: 30px;
  }
  html main section#pontos ul li,
  div#general main section#pontos ul li {
    max-width: inherit;
    width: 100%;
    padding: 0 5%;
    margin-bottom: 40px;
  }
  html main section#motor,
  div#general main section#motor {
    justify-content: center;
    margin-bottom: 30px;
  }
  html main section#motor div.wrapper form input[type=text],
  html main section#motor div.wrapper form input[type=email],
  html main section#motor div.wrapper form input[type=button],
  html main section#motor div.wrapper form input[type=tel],
  html main section#motor div.wrapper form select,
  div#general main section#motor div.wrapper form input[type=text],
  div#general main section#motor div.wrapper form input[type=email],
  div#general main section#motor div.wrapper form input[type=button],
  div#general main section#motor div.wrapper form input[type=tel],
  div#general main section#motor div.wrapper form select {
    width: 100%;
    margin-bottom: 1px;
  }
  html main section#htl,
  div#general main section#htl {
    padding-bottom: 0;
  }
  html main section#htl div.rooms div.room div.thumb,
  div#general main section#htl div.rooms div.room div.thumb {
    width: 100%;
    margin-bottom: 30px;
  }
  html main section#htl div.rooms div.room div.inf,
  div#general main section#htl div.rooms div.room div.inf {
    width: 100%;
  }
  html main section#htl div.rooms div.room div.inf h3,
  div#general main section#htl div.rooms div.room div.inf h3 {
    font-size: 1.6em;
    font-weight: bold;
  }
  html main section#htl div.rooms div.room div.inf a,
  div#general main section#htl div.rooms div.room div.inf a {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
  html main section#htl div.rooms div.room div.inf ol,
  div#general main section#htl div.rooms div.room div.inf ol {
    margin-top: 10px;
  }
  html main section#experiencias,
  div#general main section#experiencias {
    padding-bottom: 0;
  }
  html main section#experiencias div.wrapper,
  div#general main section#experiencias div.wrapper {
    padding: 0 5%;
  }
  html main section#experiencias div.wrapper div.exp div.img,
  div#general main section#experiencias div.wrapper div.exp div.img {
    width: 100%;
    margin-bottom: 30px;
  }
  html main section#experiencias div.wrapper div.exp div.img div.shape,
  div#general main section#experiencias div.wrapper div.exp div.img div.shape {
    height: 150px;
  }
  html main section#experiencias div.wrapper div.exp div.text,
  div#general main section#experiencias div.wrapper div.exp div.text {
    width: 100%;
  }
  html main section#experiencias div.wrapper div.exp:nth-child(even) div.img,
  div#general main section#experiencias div.wrapper div.exp:nth-child(even) div.img {
    width: 100%;
    margin-bottom: 50px;
  }
  html main section#experiencias div.wrapper div.exp:nth-child(even) div.img div.shape,
  div#general main section#experiencias div.wrapper div.exp:nth-child(even) div.img div.shape {
    height: 150px;
  }
  html main section#experiencias div.wrapper div.exp:nth-child(even) div.text,
  div#general main section#experiencias div.wrapper div.exp:nth-child(even) div.text {
    text-align: left;
  }
  html main section#comochegar iframe,
  div#general main section#comochegar iframe {
    height: 250px;
  }
  html main section#destaque_in div.mask h1,
  div#general main section#destaque_in div.mask h1 {
    font-size: 2.5em;
    width: 90%;
    padding: 0 5%;
    text-align: center;
  }
  html main section#destaqueblog,
  div#general main section#destaqueblog {
    width: 100%;
  }
  html main section#destaqueblog div.exp div.img,
  div#general main section#destaqueblog div.exp div.img {
    width: 100%;
    margin-bottom: 30px;
  }
  html main section#destaqueblog div.exp div.img div.shape,
  div#general main section#destaqueblog div.exp div.img div.shape {
    height: 150px;
  }
  html main section#destaqueblog div.exp div.text,
  div#general main section#destaqueblog div.exp div.text {
    width: 100%;
  }
  html main section#destaqueblog div.exp:nth-child(even) div.img,
  div#general main section#destaqueblog div.exp:nth-child(even) div.img {
    width: 100%;
    margin-bottom: 50px;
  }
  html main section#destaqueblog div.exp:nth-child(even) div.img div.shape,
  div#general main section#destaqueblog div.exp:nth-child(even) div.img div.shape {
    height: 150px;
  }
  html main section#destaqueblog div.exp:nth-child(even) div.text,
  div#general main section#destaqueblog div.exp:nth-child(even) div.text {
    text-align: left;
  }
  html main section#blogfeed div.posts article,
  div#general main section#blogfeed div.posts article {
    width: 100%;
  }
  html main section#pacotes,
  div#general main section#pacotes {
    padding: 60px 0;
  }
  html main section#pacotes div.pacotes div.pct,
  div#general main section#pacotes div.pacotes div.pct {
    width: 100%;
  }
  html main section#acomodahome,
  div#general main section#acomodahome {
    padding-bottom: 0;
  }
  html main section#acomodahome h2,
  div#general main section#acomodahome h2 {
    font-size: 2.5em;
  }
  html main section#acomodahome div.rooms div.room,
  div#general main section#acomodahome div.rooms div.room {
    flex-direction: column-reverse;
    margin-bottom: 80px;
  }
  html main section#acomodahome div.rooms div.room:nth-child(even),
  div#general main section#acomodahome div.rooms div.room:nth-child(even) {
    flex-direction: column-reverse;
  }
  html main section#acomodahome div.rooms div.room div.thumb,
  div#general main section#acomodahome div.rooms div.room div.thumb {
    width: 100%;
  }
  html main section#acomodahome div.rooms div.room div.inf,
  div#general main section#acomodahome div.rooms div.room div.inf {
    width: 100%;
    margin-bottom: 30px;
  }
  html main section#acomodahome div.rooms div.room div.inf h3,
  div#general main section#acomodahome div.rooms div.room div.inf h3 {
    font-size: 1.6em;
    font-weight: bold;
  }
  html main section#acomodahome div.rooms div.room div.inf a,
  div#general main section#acomodahome div.rooms div.room div.inf a {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
  html main section#acomodahome div.rooms div.room div.inf ol,
  div#general main section#acomodahome div.rooms div.room div.inf ol {
    margin-top: 10px;
  }
  html footer section#depo,
  div#general footer section#depo {
    min-height: inherit;
  }
  html footer section#depo div.left,
  div#general footer section#depo div.left {
    width: 100%;
  }
  html footer section#depo div.depos,
  div#general footer section#depo div.depos {
    width: 100%;
  }
  html footer section#foot,
  div#general footer section#foot {
    padding: 60px 0;
  }
  html footer section#foot div.box,
  div#general footer section#foot div.box {
    width: 100% !important;
    margin-bottom: 30px;
    padding: 0 5% !important;
  }
  html footer section#foot div.box ul li,
  div#general footer section#foot div.box ul li {
    margin-bottom: 20px !important;
  }
}/*# sourceMappingURL=style.css.map */