html {
    overflow: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0;
    /* Remove scrollbar space */
    background: transparent;
    /* Optional: just make scrollbar invisible */
}

/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

.flexslider .flex-control-paging {
    bottom: 60px;
}

.viewport {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.scroll-container {
    position: absolute;
    overflow: hidden;
    z-index: 10;
    display: flex;
    justify-content: center;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.btn.btn-primary {
    box-shadow: rgb(0 0 0 / 10%) 0px 20px 25px -5px, rgb(0 0 0 / 4%) 0px 10px 10px -5px;
    background-color: #748896;
    border: none;
    color: white;
    padding: 20px 15px;
    text-align: center;
    width: 300px;
    font-size: 28px;
    border-radius: 0;
}

.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-primary:hover {
    background: white;
    color: #748896;
    border: solid 1px #748896;
}

.header__logo {}

.header__logo img {
    width: 100%;
    min-width: 80px;
}

/* ==========================================================================
   PRELOADER - Estrutura Base e Transição de Saída
   ========================================================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #B7D6E3;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Transição suave para a animação de saída (deslizar para cima) */
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Classe adicionada via JavaScript para iniciar a transição de saída */
.preloader.preloader-hidden {
    transform: translateY(-100%);
}


/* ==========================================================================
   Contentor dos Logos
   ========================================================================== */

.preloader .logo_container {
    position: relative;
    /* Contexto para os logos posicionados dentro */
    width: 250px;
    /* Largura fixa para estabilidade */
    height: 280px;
    /* Altura fixa para estabilidade */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preloader .logotipo {
    opacity: 0;
    /* Começa invisível para a animação */
}

.preloader .logotipo img {
    max-width: 150px;
    display: block;
}

.preloader .top_logo {
    margin-bottom: 20px;
    /* Espaçamento entre os logos */
}


/* ==========================================================================
   SPINNER DE CARREGAMENTO (Solução com Wrapper)
   ========================================================================== */

/* 1. O WRAPPER: Responsável APENAS pelo posicionamento exato. */
.spinner-positioner {
    position: absolute;
    left: 50%;

    /* A sua posição vertical personalizada e correta */
    top: 51%;

    /* A sua técnica de centramento e diâmetro */
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
}

/* 2. O SPINNER INTERNO: Responsável APENAS pelo estilo visual e pela rotação. */
.preloader .spinner {
    width: 100%;
    height: 100%;

    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f6a33b;
    opacity: 0;

    /* Aplica a animação de rotação e de fade-in */
    animation: simpleSpin 1s linear infinite, fadeIn 0.8s ease-out forwards;
    animation-delay: 1.4s;
}


/* ==========================================================================
   ANIMAÇÕES (KEYFRAMES)
   ========================================================================== */

/* Animação para os logos aparecerem */
@keyframes slideAndFadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideAndFadeInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação para o spinner aparecer (fade-in) */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Animação de ROTAÇÃO SIMPLES para o spinner, sem conflitos */
@keyframes simpleSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* ==========================================================================
   Aplicação das Animações de Entrada
   ========================================================================== */

.preloader .top_logo {
    animation: slideAndFadeInFromTop 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.preloader .bottom_logo {
    animation: slideAndFadeInFromBottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.2s;
}

/* .preloader {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.preloader .logo_container {
   width:180px;
   height: 234px; 
   background-repeat: no-repeat; 
   background-color: #FFF;
   background-size: cover; 
}
.preloader .logo_container .logotipo {
	display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.preloader .logo_container .logotipo img {
	width:150px;
}
.preloader .logo_container .logotipo .t_l {
	position: absolute;
	top: -235px;
    opacity: 0;
    transition: 1s;
}
.preloader .logo_container .logotipo .b_l {
	position: absolute;
	bottom: -60px;
    opacity: 0;
    transition: 1s;
}
.preloader .logo_container .top_logo { }
.preloader .logo_container .bottom_logo { 
	height: 120px;
} */

.jarallax {
    position: relative;
    z-index: 0;
}

.jarallax>.jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#logo_header {
    display: block;
    width: 80px;
    height: 80px;
    position: fixed;
    z-index: 8;
    left: 45px;
    top: 45px;
    transition: 0.8s;

}

#logo_header img {
    width: 100%;
}

.reserva-section {}

.reserva-action {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reserva-action .reserva-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 9;
    background-color: #fff;
    box-shadow: 3px -12px 65px #000000;
}

.reserva-container .check-area {
    display: grid;
    padding: 10px;
}

.reserva-container .check-area label {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reserva-container .check-area label>span {
    padding-left: 6px;
}

.reserva-container .check-area input {
    border: 0;
    background-color: whitesmoke;
    border-bottom: 1px solid;
    padding: 0px 10px;
}

.reserva-container .check-area input:focus {
    outline: none;
}

.reserva-container .button-area {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F39739;
}

.reserva-container .button-area img {
    height: 40px;
    margin: 20px;
    ;
}

.reserva-container .button-area a {
    position: absolute;
    bottom: 0px;
}

@media only screen and (max-width: 535px) {
    .reserva-action .reserva-container {
        display: block;
    }

    .reserva-container .check-area {
        margin: 0px;
        width: 50%;
        float: left;
    }

    .reserva-container .button-area {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (max-width: 425px) {
    .reserva-container .check-area {
        margin: 0px;
        width: 100%;
        float: left;
    }

    .reserva-container .check-area input {
        width: 100%;
    }

    .reserva-container .button-area {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


.room-cont {}

.header-section {}

.header-section>h1 {}


.body-section {
    margin-top: 180px;
}

.body-section .room-single {
    display: table;
    position: relative;
    width: 100%;
    margin-bottom: 350px;
}

.body-section .room-single .imagem {
    position: relative;
    width: 60%;
}

.body-section .room-single .imagem img {
    width: 100%;
}

.body-section .room-single .corpo {
    width: 42%;
    background-color: #fff;
    padding: 3em 11em 3em 11em;
    position: absolute;
    top: 0;
    z-index: 9;
    transition: 1s;
}

.body-section .room-single .corpo>h1 {}

.body-section .room-single .corpo>p {}

.body-section .even-room>.imagem {
    float: right;
}

.body-section .even-room>.corpo {
    left: 10%;
}

.body-section .odd-room>.imagem {

    float: left;
}

.body-section .odd-room>.corpo {
    right: 10%;
}

/*******  TEXT SLIDER  ***************/

.scrollable-text {
    text-transform: uppercase;
    font-family: "Crimson Text", serif;
    font-size: 28vw;
    line-height: 20vw;
    height: 20vw;
    display: inline-block;
    white-space: nowrap;
    animation: floatText 140s infinite linear;
    padding-left: 100%;
    /*Initial offset*/
    color: #B7D6E3;

}

.scrollable-text:hover {
    /*animation-play-state: paused;*/
}

.scrollable-text img {
    margin-top: -16vw;
    height: 100%;
}

@keyframes floatText {
    to {
        transform: translateX(-100%);
    }
}

/******  SECTION TEST  ****/
.section-test {
    height: 100vh;
}

.room-cont-stick {
    height: 100vh;
    display: flex;
}

.room-cont-stick .left-stick {}

.room-cont-stick .right-stick {
    height: 100vh;
    overflow: hidden;
    overflow-x: scroll;
}


/***** DIVIDER *******/
.divider__r {
    height: 1px;
    width: 8.33vw;
    margin: 2.8vw 0;
    background: #748896;
    text-align: left;
}





/****** FOOTER   ****/
.footer-widget {}

.footer-widget h3 {
    font-size: 1.3vw;
    font-weight: 400;
    line-height: 2.083vw;
    letter-spacing: -.002vw;
}

.footer-widget ul {
    list-style-type: none;
    padding: 0;
}

.footer-widget ul li {
    font-weight: 400;
    font-size: 0.75vw;
    line-height: 1.5vw;
    letter-spacing: .05vw;
}

.footer-widget .company-footer {}

.footer-widget .company-footer p {
    font-weight: 300;
    font-size: 0.8vw;
    line-height: 1.5vw;
    letter-spacing: .05vw;
    max-width: 27.778vw;
}

.footer-widget .company-footer {}



a {
    -webkit-transition: .3s all;
    transition: .3s all;
    color: #7e8890;
}

a:active,
a:focus,
a:hover {
    color: #B7D6E3;
    text-decoration: none;
}

.link-with-icon {
    color: rgb(116 136 150);
}

.link-with-icon:focus,
.link-with-icon:hover {
    color: #B7D6E3;
}





/**** MENU OVERLAY *****/
.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    /*bottom: 0; */
    left: 0;
    background: #3a3636;
    overflow-y: hidden;
    transition: 1.0s;
    z-index: 9;
}

.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/img_menus.jpg);
    background-position: center;
    /*background-size: cover;*/
    filter: grayscale(100%);
    will-change: transform;
}

.overlay-content {
    position: relative;
    top: 0;
    padding-top: 7%;
    width: 100vw;
    height: 100vh;
    text-align: center;
    background-color: rgb(255 255 255 / 85%);
}


.overlay a {
    margin: 10px;
    text-decoration: none;
    font-size: 35px;
    color: #000;
    transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
    color: #748896;
}

.overlay .closebtn {
    position: absolute;
    top: 80px;
    right: 35px;
    font-size: 70px;
}

.m__menu {
    margin-top: 7vh;
}

.m__menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 53vw;
    margin: 0 auto;
}

.m__menu ul li {
    display: inline;
}

/*.m__menu ul li:after{  
	content: " / ";
    font-size: 2.4vw;
    color: #748896;
}*/
.m__menu ul li:last-child:after {
    content: " ";
}

.m__menu ul li>a {
    position: relative;
    font-family: "Crimson Text", serif;
    cursor: pointer;
    margin: 1.389vw 2.083vw;
    font-size: 2.951vw;
    font-weight: 400;
}

.m__menu ul li>a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0px;
    left: 0;
    background-color: #748896;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.m__menu ul li>a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

.m__contactos {
    margin-top: 7vh;
}

.m__contactos ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 40vw;
    margin: 0 auto;
}

.m__contactos ul li {
    display: inline;
}

.m__contactos ul li>a {
    position: relative;
    cursor: pointer;
    font-weight: 300;
    font-size: 1.2vw;
    line-height: 1.875vw;
    letter-spacing: .05vw;
}

.m__contactos ul li>a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0px;
    left: 0;
    background-color: #748896;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.m__contactos ul li>a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}




/*** SWIPER JS **/
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/*}
.swiper-slide .swiper-text{
	width:50%;
}
.swiper-slide .swiper-text .swiper-image-left{ 
}
.swiper-slide .swiper-text .swiper-image-left h1{
	
}
.swiper-slide .swiper-text .swiper-image-left p{
	
}
.swiper-slide .swiper-image{
	width:50%;
}
.swiper-slide .swiper-image .swiper-image-right{
	height: 100%;
    width: 100%;
}
*/


/********* DETAILS  ***********/
.page-details {
    height: 0%;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #ffffff;
    overflow-y: hidden;
    transition: 1.0s;
    z-index: 9;
}