@charset "UTF-8";

/*
font-family: 'Playfair Display', serif;
font-family: 'PT Serif', serif;
*/



html, body{
    width: 100%;
    min-height: 100vh;
    margin:0;
    padding:0;
    font-weight: 400;
    font-size: 14px;
/*    font-family: 'PT Serif', serif;*/
    font-family: 'Roboto', sans-serif;
    -webkit-overflow-scrolling: touch;
    color: #89775f;
}
body.header_activo{
  overflow: hidden;
}

a{
    text-decoration: none;
    color: #000;
}

.clear{
    clear: both;
}


/*header menu*/

header{
    width: 100%;
    position: fixed;
    top: 34px;
    left: 0;
    z-index: 10;
}
.header_desplegar_centrar{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: auto;
}
.header_desplegar{
  position:absolute;
  width:100%;
  background-color: #f0f0f0;
  z-index:1;
  top:0;
  left:0;
  padding-top: 120px;
  height: -o-calc(100vh - 120px);
  height: -ms-calc(100vh - 120px);
  height: -moz-calc(100vh - 120px);
  height: -webkit-calc(100vh - 120px);
  height: calc(100vh - 120px);
  display: none;
}
.header_int{
    width: -o-calc(100% - 100px);
    width: -ms-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
    margin: auto;
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}
.logo{}
.logo img{
    max-width: 80px;
}
.btn_menu{
    width: 40px;
    height: 25px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 0px 10px;
    cursor: pointer;
}
.btn_linea{
    width: 25px;
    height: 1px;
    background-color: #fff;
    margin: 3px 0px 0px;
    display: block;
}

.actScroll .btn_linea{
  background-color: #89775f;
}
.btn_linea.btn_linea_a{}
.btn_linea.btn_linea_b{}
.btn_linea.btn_linea_c{}

/**/


.slider_vertical{
  position: relative;
  width: 100%;
  height: 100vh;

}
.slide{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide{
    /*opacity: 0;*/
    z-index: 1;
}
.slide.act_uno{
    opacity: 1;
    z-index: 2;
    -webkit-transition: translateY(0);
    transition: translateY(0);

}


.slide.act_dos{
    opacity: 1;
    z-index: 3;
    -webkit-animation-name: sliderUno;
    -webkit-animation-duration: 600ms; 
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-delay: 3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-name: sliderUno;
    animation-duration: 600ms;  
    animation-fill-mode: forwards;
    animation-delay: 3s;
    animation-timing-function: ease-in-out;
}
@-webkit-keyframes sliderUno {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100vh);
  }
}
@keyframes sliderUno {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100vh);
  }
}

.puntos{
  position: absolute;
  top: 0;
  right: 50px;
  width: 70px;
  height: 100%;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.puntos_center{
  width: 100%;
  height: auto;
  min-height: 300px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.punto{
    width: 100%;
    height: 30px;
    margin: 5px 0px;
    cursor: pointer;
    color: #fff;
    text-align: right;
    line-height: 30px;
    font-size: 12px;
}
.punto.act{}

.punto_int{
    display: inline-block;
    width: 10px;
    height: 1px;
    background-color: #fff;
    vertical-align: middle;
    margin-left: 10px;
    transition: 200ms;
}

.slide_o{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.punto.act .punto_int{
    width: 40px;
    -webkit-animation-name: punto;
    -webkit-animation-duration: 600ms; 
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-delay: 3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-name: punto;
    animation-duration: 600ms;  
    animation-fill-mode: forwards;
    animation-delay: 3s;
    animation-timing-function: ease-in-out;
}
@-webkit-keyframes punto {
  from {
    width: 40px;
  }
  to {
    width: 10px;
  }
}
@keyframes punto {
  from {
    width: 40px;
  }
  to {
    width: 10px;
  }
}

/*.punto:hover .punto_int{
    width: 40px;
}*/

.slide_o{}
.slide_o .s_titulo{
  color: #fff;
  text-align: center;
}
.slide_o .s_titulo h3{
  font-family: 'Playfair Display', serif;
  margin: 0px 0px 20px;
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-family: 'Fira Mono', monospace;
}
.slide_o .s_titulo .ver_mas{
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 15px 0px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  width: 100%;
  display: block;
  cursor: pointer;
}


.wrapper{}
.contenido{
  width: 1200px;
  margin: auto;
}
.contenido section{
    margin: 120px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
section{
  position: relative;
}
.item_scroll{
    position: absolute;
    top: 0px;
}
.contenido .imagen{
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.contenido .imagen_int{
    margin: 30px 0px;
    overflow: hidden;
}
.contenido .imagen.imagen_l{
  justify-content: flex-start;
}
.contenido .imagen img{
  max-width: 100%;
  height: auto;
  max-height: -o-calc(100vh - 60px);
  max-height: -ms-calc(100vh - 60px);
  max-height: -moz-calc(100vh - 60px);
  max-height: -webkit-calc(100vh - 60px);
  max-height: calc(100vh - 60px);
  /* margin-top: 30px; */
  /* margin-bottom: 30px; */
  display: block;
  transform-origin: center top;
  transform: scale(1.1);
}
.contenido .imagen_text{
    width: -o-calc(50% - 220px);
    width: -ms-calc(50% - 220px);
    width: -moz-calc(50% - 220px);
    width: -webkit-calc(50% - 220px);
    width: calc(50% - 220px);
    margin: 0px 110px;
}
.contenido .imagen_text h2{
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* text-indent: 30px; */
    font-family: 'Playfair Display', serif;
    margin: 0px 0px 20px;
    font-family: 'Fira Mono', monospace;
}
.contenido .imagen_text h3{
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* text-indent: 30px; */
    font-family: 'Playfair Display', serif;
    margin: 0px 0px 20px;
    font-family: 'Fira Mono', monospace;
}
.contenido .imagen_text p{
    margin: 0px 0px 20px;
    /* letter-spacing: 0.03em; */
    line-height: 26px;
    font-size: 15px;
    /* font-family: 'Fira Mono', monospace; */
}
.imagen_text hr{
  border: none;
  border-bottom: 1px solid;
  border-color: #89775f;
  max-width: 300px;
  margin: 30px 0px;
}
section.listado .imagen_text hr{
  margin: 30px auto;
}
.contenido .imagen_text a{
  color: #89775f;
  text-decoration: underline;
}
section.servicios .fila{
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  border-top: 1px solid #89775f;
  padding-top: 70px;
}
section.servicios .fila .imagen_text{
  text-align: center;
  margin: auto;
}

section.inverso{
    flex-direction: row-reverse;
}
.galeria{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.listado{
  
}
.listado .imagen_text{
  text-align: center;
  margin: auto;
  width: 100%;
}
.listado .imagen_text h2{}
.listado .imagen_text ul{
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.listado .imagen_text li{
  margin-bottom: 10px;
}
.listado .imagen_text li a{
    color: #89775f;
    text-decoration: underline;
}
section.listado{
      background-color: #f0f0f0;
      width:100%;
      padding: 136px 0px 140px;
      margin: 1px 0px 0px;
      border-bottom: 2px solid #fff;
}


.imagen_text{}
.imagen_text ul{
  list-style: none;
  margin: 20px 0px;
  padding: 0px;
}
.imagen_text li{
  margin: 10px 0px;
}
.imagen_text li::before{
  content: '-';
  padding-right: 10px;
}
.imagen_text li::after{
  content: '-';
  padding-left: 10px;
}
section.servicios .fila.ti{
      border-top: 1px solid #89775f;
    margin-top: 50px;
    padding-top: 50px;
}
section.galeria{
  padding: 110px 0px 160px;
  display: block;
  background-color: #f0f0f0;
  margin-top: 120px;
}
section.galeria .titulo{
  text-align: center;
  margin: 30px auto;
}
section.galeria .titulo h2{
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* text-indent: 30px; */
    font-family: 'Playfair Display', serif;
    margin: 0px 0px 40px;
    text-align: center;
    font-family: 'Fira Mono', monospace;
}


.galeria_full{
    width: 1000px;
    margin: 60px auto;
}
.galeria_full h2{
    margin: 0px auto 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* font-family: 'Playfair Display', serif; */
    font-style: italic;
    display: block;
    width: -ms-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-family: 'Fira Mono', monospace;
}
.galeria_full h2::before{
  content:'';
  width:1px;
  height: 100px;
  background-color: #89775f;
  display: block;
  margin: 0px auto 20px;
}
.galeria_full .slider{
  width: 100%;
  padding-bottom: 66.6%;
  height: 0px;
  position: relative;
}
.galeria_full .slide{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  align-items: center;
}
.galeria_full .slide img{
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 100%;
  width: auto;
}

.flecha{
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  cursor: pointer;
}
.flecha.flecha_izq{
  left: 0;
}
.flecha.flecha_der{
  right: 0;
}

.flecha .flecha_int{
  top: -o-calc(50% - 15px);
  top: -ms-calc(50% - 15px);
  top: -moz-calc(50% - 15px);
  top: -webkit-calc(50% - 15px);
  top: calc(50% - 15px);
  width: 60px;
  height: 30px;
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
}
.flecha.flecha_izq .flecha_int{
  left: -35px;
  background-image: url(../img/flecha_izq.svg);
}
.flecha.flecha_der .flecha_int{
  right: -35px;
  background-image: url(../img/flecha_der.svg);
}


.fracc{
  position: absolute;
    width: 40px;
    height: 80px;
    left: 100%;
    top: 0;
    text-align: center;
}

.num{
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
}
.num::after{
  content: '';
  width: 20px;
  height: 1px;
  display: block;
  position: absolute;
  transform: rotate(3deg) translateX(-50%);
  background-color: #89775f;
  left: 50%;
}
.den{
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
}

.header_activo .header_desplegar{

}
.menu_centrar{
    display: block;
}
.menu_centrar span{
  width: 100%;
  margin: 14px 0px;
  text-align: left;
  display: block;
  font-family: 'Fira Mono', monospace;
  font-size: 28px;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.menu_centrar span:nth-child(1n+1){
  margin-left: 15px;
}
.menu_centrar span:nth-child(2n+1){
  margin-left: -15px;
}

.logodorado{
  display: none;
}
.actScroll .logo .logodorado{
  display: block;
}
.actScroll .logo .logoblanco{
  display: none;
}


.lacasa .item_scroll{
    top: -90px;
}
.habitaciones .item_scroll{
    top: -120px;
}
.cocina .item_scroll{
    top: -120px;
}
.servicios .item_scroll{
    top: -120px;
}
.lacasa .item_scroll{}

.menu_centrar span.activo{
  text-decoration: line-through;
}

.contenido section.cocina{
  padding-bottom: 20px;
}

.contenido section.servicios{
  margin: 130px 0px;
  align-items: flex-start;
}
.header_activo .logo .logodorado{
  display: block;
}
.header_activo .logo .logoblanco{
  display: none;
}
.header_activo .btn_linea{
      background-color: #89775f;
}

.header_activo .btn_linea.btn_linea_a{
  transform: translate(0px, 8px) rotate(45deg);
}
.header_activo .btn_linea.btn_linea_b{
  opacity: 0;
}
.header_activo .btn_linea.btn_linea_c{
  transform: translate(0px, -8px) rotate(-45deg);
}

.banner_top{
    position: sticky;
    top: 0;
    background-color: #98826c;
    z-index: 15;
    height: 35px;
}
.banner_top_int{
    width: -o-calc(100% - 100px);
    width: -ms-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
    margin: auto;
    text-align: right;
    padding: 0px 0px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.banner_top_int p{margin: 0px;color: #fff;font-size: 13px;font-weight: 300;letter-spacing: 0.03em;}
.banner_top_int p a{
  color: #fff;
  text-decoration: underline;
}

.cerrar_banner{
  width: 40px;
  height: 40px;
  top: 7px;
  right: 0px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
.cerrar_banner::after{
  content: ' ';
  width: 20px;
  display: block;
  position: absolute;
  height: 2px;
  background-color: #fff;
  transform: rotate(-45deg) translate(-7px,21px);
}
.cerrar_banner::before{
  content: ' ';
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg) translate(21px,7px);
}


header.sinReservaciones{
  top: 0;
}
.banner_top.sinReservaciones{
  display: none;
}











