@charset "UTF-8";
/*

  VARIABLES

*/
/*
@mixin v_tablet {
  @media only screen and (max-width: 768px) {
    @content;
  }
}
*/
/*
	Theme Name: pilones 2023 V1
	Theme URI: https://www.loygorri.com
	Description: Tailored WordPress Theme
	Version: 1.0
	Author: Gabriel García Loygorri
	Author URI: https://www.loygorri.com
	Tags: TAILORED, HTML5, CSS3, SASS

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

:root, :root.light {
  --azul: rgba(12,113,195,1);
  --blanco: rgba(255,255,255,1);
  --oscuro: rgba(52,58,66,1);
  --blanco_siempre: rgba(255,255,255,1);
  --oscuro_siempre: rgba(52,58,66,1);
  --oscuro_ligero: rgba(52,58,66,0.05);
  --blanco_menu: rgba(255,255,255,0.75);
  --familia: "Raleway", sans-serif;
  --ancho_maximo: 1200px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --azul: rgba(12,113,195,1);
    --oscuro: rgba(249,246,239,1);
    --blanco: rgba(52,58,66,1);
    --blanco_siempre: rgba(255,255,255,1);
    --oscuro_ligero: rgba(255,255,255,0.05);
    --blanco_menu: rgba(0,0,0,0.75);
  }
}
:root.dark {
  --azul: rgba(12,113,195,1);
  --oscuro: rgba(249,246,239,1);
  --blanco: rgba(52,58,66,1);
  --blanco_siempre: rgba(255,255,255,1);
  --oscuro_ligero: rgba(255,255,255,0.05);
  --blanco_menu: rgba(0,0,0,0.75);
}

h1 {
  font-family: var(--titulares);
  font-display: swap;
}

hr {
  display: none;
}

body {
  font-family: var(--familia);
  font-weight: 400;
  font-size: 100%;
  background-color: var(--blanco);
}
body.stop {
  height: 100dvh;
  overflow: hidden;
}
body .wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body .wrapper header, body .wrapper main, body .wrapper aside {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body .wrapper.blur header, body .wrapper.blur main, body .wrapper.blur aside {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}
@media only screen and (max-width: 550px) {
  body .wrapper.blur header, body .wrapper.blur main, body .wrapper.blur aside {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

.clean {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100svh;
}
.clean svg#logo {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 30px;
  fill: var(--oscuro);
}
.clean svg#clean {
  max-width: 500px;
  margin: 5%;
}
.clean svg#clean #arco {
  fill: var(--naranja);
}
.clean svg#clean #texto {
  fill: var(--oscuro);
}
.clean a.boton {
  background-color: var(--oscuro);
  color: var(--texto_boton_clean);
  text-decoration: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: var(--size_texto_boton_clean);
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 5%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 550px) {
  .clean a.boton {
    font-size: var(--size_texto_boton_clean_movil);
  }
}

/*

	VARIABLES

	--color_fondo_alert
	--color_borde_alert

	--grosor_uno

*/
.barra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 3;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: var(--azul);
  color: var(--blanco_siempre);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
}
.barra .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin: auto;
  width: 100%;
}
.barra .centrado ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
}
@media only screen and (max-width: 550px) {
  .barra .centrado ul {
    display: none;
  }
}
@media only screen and (max-width: 550px) {
  .barra .centrado ul.primera_linea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 550px) {
  .barra .centrado ul.primera_linea li:first-child,
  .barra .centrado ul.primera_linea li:last-child {
    display: none;
  }
}
@media only screen and (max-width: 550px) {
  .barra .centrado ul.primera_linea li:after {
    display: none;
  }
}
.barra .centrado ul li:after {
  content: " | ";
  padding-left: 10px;
  padding-right: 10px;
}
.barra .centrado ul li a {
  color: var(--blanco_siempre);
}
.barra .centrado ul li:last-child:after {
  content: "";
  padding-left: 0px;
  padding-right: 0px;
}

/*

	VARIABLES

*/
header {
  padding-top: 25px;
  background-color: var(--crema_menu);
  top: 10vh;
  height: 70vh;
  border-radius: 10px;
  z-index: 2;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: absolute;
  width: 400px;
  background-color: var(--blanco_menu);
  left: calc(50% - 200px);
  overflow: hidden;
}
@media only screen and (max-width: 550px) {
  header {
    padding-top: 0px;
    height: initial;
    width: initial;
    position: fixed;
    top: initial;
    bottom: 20px;
    right: 20px;
    background-color: initial;
    width: initial;
    background-color: var(--azul);
    width: 50px;
    height: 50px;
    left: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px;
  }
}
header .centrado {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  justify-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 100%;
}
@media only screen and (max-width: 550px) {
  header .centrado {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
header .centrado .logo {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 550px) {
  header .centrado .logo {
    display: none;
    margin-left: 0px;
  }
}
header .centrado .logo h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: auto;
  padding: auto;
}
header .centrado .logo h1 img {
  display: block;
  height: 100%;
  margin: auto;
}
header .centrado .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
header .centrado .logo a img {
  display: block;
  height: 100%;
}
header .centrado hr {
  display: none;
}
header .centrado .bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex;
      -ms-flex-pack: flex;
          justify-content: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  cursor: pointer;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  z-index: 3;
  display: none;
}
@media only screen and (max-width: 550px) {
  header .centrado .bars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header .centrado .bars svg {
  width: 30px;
  fill: var(--blanco_siempre);
}
header .centrado ul {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 550px) {
  header .centrado ul {
    display: none;
  }
}
header .centrado ul li {
  list-style: none;
  text-align: center;
  color: var(--oscuro);
  font-size: 25px;
  font-weight: 300;
}
header .centrado ul li span {
  display: block;
}
header .centrado ul li .hide {
  display: none;
}
header .centrado .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
header .centrado .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0px;
  list-style: none;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding-top: 0px;
  padding-bottom: 0px;
}
@media only screen and (max-width: 550px) {
  header .centrado .nav ul {
    display: none;
  }
}
header .centrado .nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-top: 1px solid var(--blanco_siempre);
}
header .centrado .nav ul li.current-menu-item a {
  background-color: var(--azul);
}
header .centrado .nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--oscuro);
  font-family: var(--gosha);
  line-height: 0.8em;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 10px;
  background-color: var(--oscuro_siempre);
  color: var(--blanco_siempre);
}
header .centrado .nav ul li a:hover {
  background-color: var(--azul);
}
header .centrado .nav ul li ul {
  display: none;
}

.entorno header, .habitaciones header, .fotos header, .contacto header, .basica header {
  left: 20px;
  top: 65px;
  height: auto;
  height: 85vh;
}
@media only screen and (max-width: 550px) {
  .entorno header, .habitaciones header, .fotos header, .contacto header, .basica header {
    left: initial;
    top: initial;
    height: 50px;
    width: 50px;
  }
}

.habitaciones, .fotos {
  /*
  	header{ // FIXED
  		left: 20px;
  	    height: auto;
  	    position: sticky;
  	    top: 65px;
  	}
  	*/
}

/*

	VARIABLES

*/
.menu-desplegable {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  right: -400px;
  background-color: var(--azul);
  z-index: 5;
  padding: 20px 20px;
  opacity: 0.9;
  overflow: scroll;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
@media only screen and (max-width: 550px) {
  .menu-desplegable {
    right: -500px;
    top: 0px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100vh;
    background-color: var(--azul);
    opacity: 1;
    border-right: 0px;
  }
}
.menu-desplegable > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  width: auto;
}
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .menu-desplegable > a {
    margin-right: 100%;
  }
}
.menu-desplegable > a img {
  height: 100%;
  width: auto;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.menu-desplegable > a span {
  display: none;
}
.menu-desplegable ul {
  list-style-type: none;
  margin-top: 20px;
}
.menu-desplegable ul li {
  position: relative;
  border-top: 1px solid var(--blanco_siempre);
}
.menu-desplegable ul li a {
  /*background-color: rgba(255, 255, 255, 0.3);*/
  color: var(--blanco_siempre);
  font-family: var(--familia);
  line-height: 1.5em;
  font-weight: 400;
  font-size: 22px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-transform: uppercase;
}
@media only screen and (max-width: 550px) {
  .menu-desplegable ul li a {
    color: var(--blanco_siempre);
    font-size: 18px;
    line-height: 1.3em;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.menu-desplegable ul li.activo a {
  font-weight: bold;
}
.menu-desplegable ul li i {
  position: absolute;
  top: 0px;
  right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: grey;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.menu-desplegable ul li i:hover {
  background-color: darkgray;
}
.menu-desplegable ul li i.activo {
  background-color: white;
}
.menu-desplegable ul li:last-child a {
  border-bottom: 0px;
}
.menu-desplegable ul li .sub-menu {
  display: none;
}
.menu-desplegable ul li .sub-menu.activo {
  display: block;
}
.menu-desplegable.activo {
  right: 50px;
}
@media only screen and (max-width: 550px) {
  .menu-desplegable.activo {
    right: 0px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}

.cierre-menu-desplegable {
  position: fixed;
  top: 0px;
  left: 100%;
  width: 100%;
  height: 100vh;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
@media only screen and (max-width: 550px) {
  .cierre-menu-desplegable {
    display: none;
  }
}

.cierre-menu-desplegable.activo {
  left: 0px;
}
@media only screen and (max-width: 550px) {
  .cierre-menu-desplegable.activo {
    display: none;
  }
}

/* FIRMA */
.firma {
  background-color: rgb(10, 10, 10);
  color: rgb(255, 255, 255);
  padding: 10px;
  font-size: 11px;
  text-transform: uppercase;
}

.firma a {
  color: rgb(255, 255, 255);
}

.firma a:hover {
  font-weight: 700;
}

.enlace_firma {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 75px;
  max-width: 200px;
  margin-top: 20px;
}

.enlace_firma span {
  color: rgb(255, 255, 255);
  padding: 0px 10px;
  font-size: 11px;
  text-transform: uppercase;
}

.enlace_firma span a {
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.enlace_firma a {
  height: 30px;
  font-weight: 700;
}

.enlace_firma a svg {
  height: 30px;
}

/*

	VARIABLES
	--color_fondo_footer
	--color_borde_footer
	--color_borde_titular
	--color_titular_h2
	--color_enlace_pie
	--color_buller_pie

	--ancho_centrado
	--grosor_uno
	--hueco_triple
	--hueco

	--veinte
	--dieciseis
	--light




*/
body:not(.home) aside {
  position: fixed;
  bottom: 0px;
  width: 100%;
  background-color: var(--crema_aside);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
}
body:not(.home) aside.activo .centrado .contenedor {
  opacity: 0;
}
body:not(.home) aside.activo .centrado .acciones p {
  opacity: 0;
}
body:not(.home) aside.activo .centrado .acciones ul {
  opacity: 0;
}
body:not(.home) aside.activo .centrado .acciones svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
body:not(.home) aside .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body:not(.home) aside .centrado .acciones {
  width: 200px;
  min-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .acciones {
    width: 100%;
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body:not(.home) aside .centrado .acciones h2 {
  cursor: pointer;
  font-family: var(--gosha);
  font-size: 23px;
  line-height: 0.8em;
  letter-spacing: -0.05em;
  color: var(--oscuro);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .acciones h2 {
    background-color: var(--naranja);
    padding: 10px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
}
body:not(.home) aside .centrado .acciones h2 svg {
  width: 20px;
  margin-right: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
body:not(.home) aside .centrado .acciones h2 svg .st0 {
  fill: var(--oscuro);
}
body:not(.home) aside .centrado .acciones h2 svg.giro {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
body:not(.home) aside .centrado .acciones p {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .acciones p {
    display: none;
  }
}
body:not(.home) aside .centrado .acciones ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  list-style: none;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body:not(.home) aside .centrado .acciones ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px;
  width: 100%;
}
body:not(.home) aside .centrado .acciones ul li.naranja a {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .acciones ul li.negro a {
  background-color: var(--cat_negro);
}
body:not(.home) aside .centrado .acciones ul li.azul a {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .acciones ul li.verde a {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .acciones ul li.pistacho a {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .acciones ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 4px 10px;
  background-color: black;
  text-transform: uppercase;
  color: white;
  font-size: 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
body:not(.home) aside .centrado .contenedor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  overflow: scroll;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 550px) {
  body:not(.home) aside .centrado .contenedor {
    display: none;
  }
}
body:not(.home) aside .centrado .contenedor .item {
  width: 250px;
  min-width: 200px;
  background-color: var(--blanco);
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body:not(.home) aside .centrado .contenedor .item .linea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 5px;
}
body:not(.home) aside .centrado .contenedor .item .linea .titulo {
  font-size: 14px;
  font-weight: 500;
  color: var(--oscuro);
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria {
  padding: 4px 5px;
  background-color: black;
  text-transform: uppercase;
  color: white;
  font-size: 13px;
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria.naranja {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria.negro {
  background-color: var(--cat_negro);
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria.azul {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria.verde {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .contenedor .item .linea .categoria.pistacho {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
body:not(.home) aside .centrado .contenedor .item p {
  padding-bottom: 5px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-size: 14px;
  font-weight: 400;
  color: var(--oscuro);
}
body:not(.home) aside .centrado .contenedor .item a {
  display: block;
  display: block;
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
}
body:not(.home) aside .centrado .contenedor .item a img {
  display: block;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body:not(.home) aside .centrado .contenedor .item a:hover img {
  width: 120%;
  margin-left: -5%;
  margin-top: -5%;
}

body.home aside {
  position: fixed;
  bottom: -300px;
  width: 100%;
  background-color: var(--crema);
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
}
body.home aside.activo {
  bottom: 0px;
}
body.home aside.activo .centrado .contenedor {
  opacity: 1;
}
body.home aside.activo .centrado .acciones svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
body.home aside.activo .centrado .acciones p {
  opacity: 1;
}
body.home aside.activo .centrado .acciones ul {
  opacity: 1;
}
body.home aside.activo .centrado .acciones ul li.naranja a {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
body.home aside.activo .centrado .acciones ul li.negro a {
  background-color: var(--cat_negro);
}
body.home aside.activo .centrado .acciones ul li.azul a {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
body.home aside.activo .centrado .acciones ul li.verde a {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
body.home aside.activo .centrado .acciones ul li.pistacho a {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
body.home aside .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body.home aside .centrado .acciones {
  width: 200px;
  min-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .acciones {
    width: 100%;
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body.home aside .centrado .acciones h2 {
  cursor: pointer;
  font-family: var(--gosha);
  font-size: 23px;
  line-height: 0.8em;
  letter-spacing: -0.05em;
  color: var(--oscuro);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .acciones h2 {
    background-color: var(--naranja);
    padding: 10px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
}
body.home aside .centrado .acciones h2 svg {
  width: 20px;
  margin-right: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
body.home aside .centrado .acciones h2 svg .st0 {
  fill: var(--oscuro);
}
body.home aside .centrado .acciones h2 svg.giro {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
body.home aside .centrado .acciones p {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .acciones p {
    display: none;
  }
}
body.home aside .centrado .acciones ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  list-style: none;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body.home aside .centrado .acciones ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px;
  width: 100%;
}
body.home aside .centrado .acciones ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 4px 10px;
  background-color: black;
  text-transform: uppercase;
  color: white;
  font-size: 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
body.home aside .centrado .contenedor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  overflow: scroll;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 550px) {
  body.home aside .centrado .contenedor {
    display: none;
  }
}
body.home aside .centrado .contenedor .item {
  width: 250px;
  min-width: 200px;
  background-color: var(--blanco);
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body.home aside .centrado .contenedor .item .linea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 5px;
}
body.home aside .centrado .contenedor .item .linea .titulo {
  font-size: 14px;
  font-weight: 500;
  color: var(--oscuro);
}
body.home aside .centrado .contenedor .item .linea .categoria {
  padding: 4px 5px;
  background-color: black;
  text-transform: uppercase;
  color: var(--blanco_siempre);
  font-size: 13px;
}
body.home aside .centrado .contenedor .item .linea .categoria.naranja {
  background-color: var(--cat_naranja);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .contenedor .item .linea .categoria.negro {
  background-color: var(--cat_negro);
}
body.home aside .centrado .contenedor .item .linea .categoria.azul {
  background-color: var(--cat_azul);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .contenedor .item .linea .categoria.verde {
  background-color: var(--cat_verde);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .contenedor .item .linea .categoria.pistacho {
  background-color: var(--cat_pistacho);
  color: var(--oscuro_siempre);
}
body.home aside .centrado .contenedor .item p {
  padding-bottom: 5px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-size: 14px;
  font-weight: 400;
  color: var(--oscuro);
}
body.home aside .centrado .contenedor .item a {
  display: block;
  display: block;
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
}
body.home aside .centrado .contenedor .item a img {
  display: block;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.home aside .centrado .contenedor .item a:hover img {
  width: 120%;
  margin-left: -5%;
  margin-top: -5%;
}

/*

body.home .wrapper aside .centrado{
	justify-content: flex-end;	
}
body.home .wrapper aside .centrado .contenedor{
	visibility: collapse;
	opacity: 0;
}

body.home .wrapper aside .centrado .acciones p,
body.home .wrapper aside .centrado .acciones ul{
	visibility: collapse;
	opacity: 0;
}

body.home .wrapper aside.activo{

}
body.home .wrapper aside.activo .centrado .contenedor{
	display: flex;
	opacity: 1;


}

body.home .wrapper aside.activo .centrado .acciones p,
body.home .wrapper aside.activo .centrado .acciones ul{
	display: flex;
	opacity: 1;

}
*/
/*

	VARIABLES
	--color_fondo_footer

*/
.mapa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 50vh;
  background-color: var(--oscuro_siempre);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 820px) {
  .mapa {
    min-height: 75vh;
  }
}
.mapa img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.mapa .centrado {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: auto;
  max-width: var(--ancho_maximo);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20vh;
  padding-bottom: 20vh;
}
@media only screen and (max-width: 1200px) {
  .mapa .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 820px) {
  .mapa .centrado {
    margin: initial;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .mapa .centrado {
    padding: 0px;
  }
}
.mapa .centrado .panel {
  border-radius: 10px;
  padding: 20px;
  background-color: var(--azul);
  color: var(--blanco_siempre);
  width: 100%;
  max-width: 600px;
}
@media only screen and (max-width: 820px) {
  .mapa .centrado .panel {
    max-width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  .mapa .centrado .panel {
    border-radius: 0px;
  }
}
.mapa .centrado .panel h2 {
  color: var(--blanco_siempre);
  font-size: 36px;
  font-weight: 300;
  padding-bottom: 20px;
  text-transform: uppercase;
}
@media only screen and (max-width: 550px) {
  .mapa .centrado .panel h2 {
    padding-bottom: 10px;
    font-size: 25px;
  }
}
.mapa .centrado .panel p {
  padding-bottom: 20px;
  font-size: 20px;
  line-height: 1.5em;
  color: var(--blanco_siempre);
  line-height: 1.5em;
}
@media only screen and (max-width: 820px) {
  .mapa .centrado .panel p {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 550px) {
  .mapa .centrado .panel p {
    font-size: 16px;
  }
}

footer {
  background-color: var(--oscuro_siempre);
  position: relative;
  z-index: 1;
}
footer .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: var(--ancho_maximo);
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  footer .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 550px) {
  footer .centrado {
    padding-left: 10px;
    padding-right: 10px;
  }
}
footer .centrado ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0px;
}
@media only screen and (max-width: 550px) {
  footer .centrado ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
footer .centrado ul li a {
  color: var(--blanco_siempre);
  text-decoration: none;
}
footer .centrado ul li a:hover {
  text-decoration: underline;
}

/*
.fotos, .habitaciones{// FIXED
	.wrapper{
		footer{
			width: 100%;
			position: fixed;
			z-index: 2;
			bottom: 0px;
		}
	}
}
*/
/*

	VARIABLES
	--color_fondo_footer

*/
.home .wrapper main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
}
.home .wrapper main .centrado {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home .wrapper main .bloque_carrusel {
  min-height: 90vh;
  background-color: rgba(0, 0, 0, 0.05);
  position: relative;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_carrusel {
    min-height: 60vh;
  }
}
.home .wrapper main .bloque_carrusel > img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.home .wrapper main .bloque_carrusel .centrado {
  position: relative;
  z-index: 2;
  height: 90vh;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_carrusel .centrado {
    padding-left: 0px;
    padding-right: 0px;
    height: 60vh;
  }
}
.home .wrapper main .bloque_carrusel .centrado .owl-carousel {
  height: 90vh;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_carrusel .centrado .owl-carousel {
    height: 60vh;
  }
}
.home .wrapper main .bloque_carrusel .centrado .owl-carousel .owl-stage-outer {
  height: 90vh;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_carrusel .centrado .owl-carousel .owl-stage-outer {
    height: 60vh;
  }
}
.home .wrapper main .bloque_carrusel .centrado .owl-carousel .owl-stage-outer .owl-stage {
  height: 90vh;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_carrusel .centrado .owl-carousel .owl-stage-outer .owl-stage {
    height: 60vh;
  }
}
.home .wrapper main .bloque_carrusel .centrado .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 90vh;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_carrusel .centrado .owl-carousel .owl-stage-outer .owl-stage .owl-item {
    height: 60vh;
  }
}
.home .wrapper main .bloque_carrusel .centrado .owl-carousel .owl-stage-outer .owl-stage .owl-item .item {
  height: 90vh;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_carrusel .centrado .owl-carousel .owl-stage-outer .owl-stage .owl-item .item {
    height: 60vh;
  }
}
.home .wrapper main .bloque_carrusel .centrado .owl-carousel .owl-stage-outer .owl-stage .owl-item .item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.home .wrapper main .bloque_carrusel .centrado .owl-carousel .owl-prev {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 30px;
  fill: white;
}
.home .wrapper main .bloque_carrusel .centrado .owl-carousel .owl-next {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 30px;
  fill: white;
}
.home .wrapper main .bloque_servicios {
  padding-top: 50px;
  background-color: var(--oscuro_ligero);
  padding-bottom: 50px;
  border-bottom: 10px solid var(--azul);
}
.home .wrapper main .bloque_servicios .centrado {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: var(--ancho_maximo);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 1200px) {
  .home .wrapper main .bloque_servicios .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .home .wrapper main .bloque_servicios .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home .wrapper main .bloque_servicios .centrado h2 {
  margin-bottom: 50px;
  color: var(--oscuro);
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
}
.home .wrapper main .bloque_servicios .centrado h2 a {
  color: var(--oscuro);
}
.home .wrapper main .bloque_servicios .centrado ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .wrapper main .bloque_servicios .centrado ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_servicios .centrado ul li {
    width: 25%;
    max-width: 25%;
  }
}
.home .wrapper main .bloque_servicios .centrado ul li img {
  width: 75px;
  margin-bottom: 10px;
}
.home .wrapper main .bloque_servicios .centrado ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  color: var(--oscuro);
  font-size: 17px;
}
.home .wrapper main .bloque_descripcion {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--blanco);
  color: var(--oscuro);
}
.home .wrapper main .bloque_descripcion .centrado {
  width: 100%;
  max-width: var(--ancho_maximo);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin: auto;
}
@media only screen and (max-width: 1200px) {
  .home .wrapper main .bloque_descripcion .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .home .wrapper main .bloque_descripcion .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 820px) {
  .home .wrapper main .bloque_descripcion .centrado {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_descripcion .centrado {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home .wrapper main .bloque_descripcion .centrado .uno {
  width: 100%;
  max-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -250px;
  z-index: 2;
}
@media only screen and (max-width: 820px) {
  .home .wrapper main .bloque_descripcion .centrado .uno {
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: -100px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_descripcion .centrado .uno {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
    margin-top: -150px;
  }
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_descripcion .centrado .uno img {
    width: 175px;
  }
}
.home .wrapper main .bloque_descripcion .centrado .uno p {
  position: relative;
  width: 80%;
  margin-top: 50px;
  text-align: center;
}
@media only screen and (max-width: 820px) {
  .home .wrapper main .bloque_descripcion .centrado .uno p {
    margin-top: 100px;
    width: 60%;
    margin-left: 10%;
    margin-right: 10%;
  }
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_descripcion .centrado .uno p {
    width: 100%;
    margin-top: 50px;
  }
}
.home .wrapper main .bloque_descripcion .centrado .uno p:after {
  font-family: Marcellus, serif;
  font-size: 200px;
  content: " ” ";
  color: var(--azul);
  position: absolute;
  bottom: -155px;
  right: 0px;
}
.home .wrapper main .bloque_descripcion .centrado .uno p:before {
  font-family: Marcellus, serif;
  content: " “ ";
  color: var(--azul);
  font-size: 200px;
  position: absolute;
  top: -65px;
  left: 0px;
}
.home .wrapper main .bloque_descripcion .centrado .uno p strong {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5em;
  padding-left: 100px;
  padding-right: 100px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_descripcion .centrado .uno p strong {
    line-height: 1.3em;
  }
}
.home .wrapper main .bloque_descripcion .centrado .dos {
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 820px) {
  .home .wrapper main .bloque_descripcion .centrado .dos {
    max-width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_descripcion .centrado .dos {
    max-width: 100%;
    margin-bottom: 50px;
  }
}
.home .wrapper main .bloque_descripcion .centrado .dos h2 {
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 300;
}
.home .wrapper main .bloque_descripcion .centrado .dos h2 span {
  border-bottom: 5px solid var(--azul);
}
.home .wrapper main .bloque_descripcion .centrado .dos p {
  padding-bottom: 20px;
  font-size: 17px;
  line-height: 1.5em;
}
.home .wrapper main .bloque_columnas {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--blanco);
  color: var(--oscuro);
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_columnas {
    padding-bottom: 0px;
  }
}
.home .wrapper main .bloque_columnas .centrado {
  width: 100%;
  max-width: var(--ancho_maximo);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin: auto;
  padding-top: 5vh;
  padding-bottom: 5vh;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1200px) {
  .home .wrapper main .bloque_columnas .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .home .wrapper main .bloque_columnas .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 820px) {
  .home .wrapper main .bloque_columnas .centrado {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_columnas .centrado {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home .wrapper main .bloque_columnas .centrado .columna {
  width: 100%;
  max-width: calc(33.3333333333% - 14px);
  margin-bottom: 20px;
}
@media only screen and (max-width: 820px) {
  .home .wrapper main .bloque_columnas .centrado .columna {
    max-width: 100%;
    /**/
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, auto-fill);
    grid-template-rows: repeat(2, auto-fill) auto-fill; /* La última fila crecerá con 1fr */
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 20px;
    /**/
  }
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_columnas .centrado .columna {
    max-width: 100%;
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home .wrapper main .bloque_columnas .centrado .columna h2 {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 300;
  color: var(--oscuro);
}
@media only screen and (max-width: 820px) {
  .home .wrapper main .bloque_columnas .centrado .columna h2 {
    /**/
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/2/3;
    margin-bottom: 10px;
    /**/
  }
}
.home .wrapper main .bloque_columnas .centrado .columna h2 a {
  text-decoration: none;
  color: var(--oscuro);
}
.home .wrapper main .bloque_columnas .centrado .columna a.enlace_imagen_columna {
  display: block;
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid gba(0, 0, 0, 0.15);
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 820px) {
  .home .wrapper main .bloque_columnas .centrado .columna a.enlace_imagen_columna {
    /**/
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/4/2;
    margin-bottom: 0px;
    margin-top: 0px;
    margin-right: 20px;
    /**/
  }
}
.home .wrapper main .bloque_columnas .centrado .columna a.enlace_imagen_columna img {
  display: block;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.home .wrapper main .bloque_columnas .centrado .columna h3 {
  color: var(--oscuro);
  padding-bottom: 10px;
  line-height: 1.5em;
}
@media only screen and (max-width: 820px) {
  .home .wrapper main .bloque_columnas .centrado .columna h3 {
    /**/
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
    padding-left: 20px;
    font-size: 20px;
    font-weight: bold;
    /**/
  }
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_columnas .centrado .columna h3 {
    padding-left: 0px;
    margin-top: 20px;
  }
}
.home .wrapper main .bloque_columnas .centrado .columna p {
  color: var(--oscuro);
  line-height: 1.5em;
  font-size: 17px;
}
@media only screen and (max-width: 820px) {
  .home .wrapper main .bloque_columnas .centrado .columna p {
    /**/
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3/2/4/3;
    height: auto;
    grid-auto-rows: auto;
    padding-left: 20px;
    /**/
  }
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .bloque_columnas .centrado .columna p {
    padding-left: 0px;
  }
}

/*

	VARIABLES
	--color_fondo_footer

*/
.entorno .wrapper main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.entorno .wrapper main > img {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.entorno .wrapper main .centrado {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .entorno .wrapper main .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.entorno .wrapper main .bloque_entorno {
  width: calc(100% - 460px);
  background-color: var(--blanco_menu);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin-top: 65px;
  border-radius: 10px;
  margin-right: 20px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_entorno {
    width: 100%;
    margin-right: initial;
    margin-right: initial;
    margin-bottom: 20px;
  }
}
.entorno .wrapper main .bloque_entorno .centrado {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_entorno .centrado {
    padding: 0px;
  }
}
.entorno .wrapper main .bloque_entorno .centrado > div {
  margin-bottom: 20px;
  width: 100%;
}
.entorno .wrapper main .bloque_entorno .centrado > div:nth-child(even) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_entorno .centrado > div:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.entorno .wrapper main .bloque_entorno .centrado > div:nth-child(odd) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_entorno .centrado > div:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.entorno .wrapper main .bloque_entorno .centrado > div div.imagen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-width: 50%;
  margin: auto;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_entorno .centrado > div div.imagen {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
}
.entorno .wrapper main .bloque_entorno .centrado > div div.imagen img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  height: 100%;
  width: auto;
  max-width: 100%;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_entorno .centrado > div div.imagen img {
    width: 100%;
  }
}
.entorno .wrapper main .bloque_entorno .centrado > div div.intro {
  padding: 20px;
  width: 50%;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_entorno .centrado > div div.intro {
    width: 100%;
  }
}
.entorno .wrapper main .bloque_entorno .centrado > div h1 {
  color: var(--oscuro);
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.entorno .wrapper main .bloque_entorno .centrado > div h1 span {
  color: var(--azul);
}
.entorno .wrapper main .bloque_entorno .centrado > div h2 {
  color: var(--oscuro);
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
}
.entorno .wrapper main .bloque_entorno .centrado > div p {
  padding-bottom: 20px;
  color: var(--oscuro);
  font-size: 17px;
  line-height: 1.5em;
}
.entorno .wrapper main .bloque_actividades {
  background-color: var(--blanco);
  padding-top: 20px;
  overflow: hidden;
  width: 100%;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_actividades {
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: var(--blanco_menu);
  }
}
.entorno .wrapper main .bloque_actividades .fila {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_actividades .fila {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.entorno .wrapper main .bloque_actividades .fila:first-child {
  margin-left: -25%;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_actividades .fila:first-child {
    margin-left: 0;
  }
}
.entorno .wrapper main .bloque_actividades .fila .item {
  position: relative;
  width: calc(33.3333333333vw - 20px);
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_actividades .fila .item {
    width: 100%;
  }
}
.entorno .wrapper main .bloque_actividades .fila .item img {
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_actividades .fila .item img {
    border-radius: 10px;
  }
}
.entorno .wrapper main .bloque_actividades .fila .item p {
  position: absolute;
  z-index: 2;
  background-color: var(--azul);
  color: var(--blanco_siempre);
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 10px;
}
@media only screen and (max-width: 550px) {
  .entorno .wrapper main .bloque_actividades .fila .item p {
    border-radius: 5px;
  }
}
.entorno .wrapper main .bloque_actividades .fila .item p span {
  display: block;
}

.zoom.entorno .wrapper main {
  padding-left: 0px;
  padding-right: 0px;
}

/*

	VARIABLES
	--color_fondo_footer

*/
.habitaciones .wrapper main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.habitaciones .wrapper main > img {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.habitaciones .wrapper main .centrado {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .habitaciones .wrapper main .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.habitaciones .wrapper main .bloque_habitaciones {
  width: calc(100% - 460px);
  background-color: var(--blanco_menu);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin-top: 65px;
  border-radius: 10px;
  margin-right: 20px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .bloque_habitaciones {
    width: 100%;
    margin-right: initial;
    margin-right: initial;
    margin-bottom: 20px;
  }
}
.habitaciones .wrapper main .bloque_habitaciones .centrado {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px;
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .entrada {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .bloque_habitaciones .centrado .entrada {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .entrada h1 {
  color: var(--azul);
  text-transform: uppercase;
  width: 40%;
  font-size: 36px;
  font-weight: 300;
  padding-bottom: 20px;
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .bloque_habitaciones .centrado .entrada h1 {
    width: 100%;
  }
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .entrada h1 span {
  display: block;
  color: var(--oscuro);
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .entrada p {
  width: 60%;
  padding-left: 20px;
  color: var(--oscuro);
  font-size: 17px;
  line-height: 1.5em;
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .bloque_habitaciones .centrado .entrada p {
    width: 100%;
    padding-left: 0px;
  }
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 2px solid var(--azul);
    padding-top: 20px;
    margin-bottom: 0px;
  }
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones:last-child {
  margin-bottom: 0px;
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .info {
    width: 100%;
  }
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .info h2 {
  color: var(--oscuro);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 300;
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .info h2 span {
  color: var(--azul);
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .info p {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  color: var(--oscuro);
  font-size: 17px;
  line-height: 1.5em;
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .lo_servicios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .lo_servicios {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .lo_servicios ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
  border-top: 1px solid var(--oscuro);
  border-bottom: 1px solid var(--oscuro);
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .lo_servicios ul {
    margin-left: 0px;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .lo_servicios ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .lo_servicios ul li {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .lo_servicios ul li img {
  width: 30px;
  height: 30px;
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .lo_servicios a {
  background-color: var(--oscuro);
  color: var(--blanco);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  height: 40px;
  text-decoration: none;
  text-transform: uppercase;
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .item_habitaciones .lo_servicios a {
    width: 100%;
    margin-bottom: 20px;
  }
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .foto {
  position: relative;
  width: 40%;
  max-width: 500px;
  max-height: 200px;
  background-color: var(--oscuro_siempre);
}
@media only screen and (max-width: 550px) {
  .habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .foto {
    width: 100%;
    overflow: hidden;
  }
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .foto img {
  position: relative;
  z-index: 1;
  width: auto;
  opacity: 0.5;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  height: 100%;
}
.habitaciones .wrapper main .bloque_habitaciones .centrado .array_habitaciones .foto a {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: calc(50% - 20px);
  left: calc(50% - 75px);
  z-index: 2;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid var(--blanco);
  width: 150px;
  height: 40px;
  color: var(--blanco);
  text-decoration: none;
  text-transform: uppercase;
}

.zoom.habitaciones .wrapper main {
  padding-left: 0px;
  padding-right: 0px;
}

/*
.habitaciones{ // FIXED
	.wrapper{
			main{
				position: absolute;

				.bloque_habitaciones{
					//margin-bottom: 60px;
				}

			}	
		}

	}
	*/
/*

	VARIABLES
	--color_fondo_footer

*/
.fotos .wrapper main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 550px) {
  .fotos .wrapper main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.fotos .wrapper main > img {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.fotos .wrapper main .centrado {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .fotos .wrapper main .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .fotos .wrapper main .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.fotos .wrapper main .bloque_fotos {
  width: calc(100% - 460px);
  background-color: var(--blanco_menu);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin-top: 65px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding: 20px;
  margin-right: 20px;
}
@media only screen and (max-width: 550px) {
  .fotos .wrapper main .bloque_fotos {
    width: 100%;
    margin-right: initial;
    margin-right: initial;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .fotos .wrapper main .bloque_fotos .centrado {
    padding-left: 0;
    padding-right: 0px;
  }
}
.fotos .wrapper main .bloque_fotos .grupo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}
@media only screen and (max-width: 550px) {
  .fotos .wrapper main .bloque_fotos .grupo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fotos .wrapper main .bloque_fotos .grupo:last-child {
  margin-bottom: 0px;
}
.fotos .wrapper main .bloque_fotos .grupo h2 {
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
}
.fotos .wrapper main .bloque_fotos .grupo .array {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 550px) {
  .fotos .wrapper main .bloque_fotos .grupo .array {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fotos .wrapper main .bloque_fotos .grupo .array .item {
  width: 100%;
  max-width: calc(33.3333333333% - 10px);
  margin-bottom: 20px;
}
@media only screen and (max-width: 550px) {
  .fotos .wrapper main .bloque_fotos .grupo .array .item {
    max-width: 100%;
  }
}
.fotos .wrapper main .bloque_fotos .grupo .array .item img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.zoom.fotos .wrapper main {
  padding-left: 0px;
  padding-right: 0px;
}

/*
.fotos{ // FIXED
	.wrapper{
			main{
				position: absolute;

				.bloque_fotos{
					//margin-bottom: 60px;
				}

			}	
		}

	}
*/
/*

	VARIABLES
	--color_fondo_footer

*/
.contacto .wrapper main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 550px) {
  .contacto .wrapper main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contacto .wrapper main > img {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.contacto .wrapper main .centrado {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .contacto .wrapper main .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contacto .wrapper main .bloque_contacto {
  width: calc(100% - 460px);
  background-color: var(--blanco_menu);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin-top: 65px;
  border-radius: 10px;
  margin-right: 20px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 550px) {
  .contacto .wrapper main .bloque_contacto {
    width: 100%;
    margin-right: initial;
    margin-right: initial;
    margin-bottom: 20px;
  }
}
.contacto .wrapper main .bloque_contacto .centrado {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px;
}
.contacto .wrapper main .bloque_contacto .centrado h1 {
  color: var(--azul);
  text-transform: uppercase;
  width: 40%;
  font-size: 36px;
  font-weight: 300;
  padding-bottom: 20px;
}
.contacto .wrapper main .bloque_contacto .centrado h1 span {
  display: block;
  color: var(--oscuro);
}
.contacto .wrapper main .bloque_contacto .centrado p {
  width: 100%;
  padding-left: 0px;
  color: var(--oscuro);
  font-size: 17px;
  line-height: 1.5em;
  padding-bottom: 10px;
}
@media only screen and (max-width: 550px) {
  .contacto .wrapper main .bloque_contacto .centrado p {
    width: 100%;
  }
}
.contacto .wrapper main .bloque_contacto .centrado p label .wpcf7-form-control-wrap input, .contacto .wrapper main .bloque_contacto .centrado p label .wpcf7-form-control-wrap textarea, .contacto .wrapper main .bloque_contacto .centrado p label .wpcf7-form-control-wrap .wpcf7-submit {
  width: 100%;
  padding: 5px;
  font-size: 17px;
  border-radius: 5px;
  font-family: var(--familia);
  border: 0px;
}
.contacto .wrapper main .bloque_contacto .centrado p .wpcf7-submit {
  width: 100%;
  padding: 5px;
  font-size: 17px;
  text-transform: uppercase;
  border-radius: 5px;
  font-family: var(--familia);
  border: 0px;
  background-color: var(--azul);
  color: var(--blanco_siempre);
}

.zoom.contacto .wrapper main {
  padding-left: 0px;
  padding-right: 0px;
}

/*
.habitaciones{ // FIXED
	.wrapper{
			main{
				position: absolute;

				.bloque_habitaciones{
					//margin-bottom: 60px;
				}

			}	
		}

	}
	*/
/*

	VARIABLES
	--color_fondo_footer

*/
.basica .wrapper main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 550px) {
  .basica .wrapper main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.basica .wrapper main > img {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.basica .wrapper main .centrado {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .basica .wrapper main .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 550px) {
  .basica .wrapper main .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.basica .wrapper main .bloque_basico {
  width: calc(100% - 460px);
  background-color: var(--blanco_menu);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  min-height: 85vh;
  margin-top: 65px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding: 20px;
  margin-right: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 550px) {
  .basica .wrapper main .bloque_basico {
    width: 100%;
    margin-right: initial;
    margin-right: initial;
    margin-bottom: 20px;
  }
}
.basica .wrapper main .bloque_basico .centrado {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 550px) {
  .basica .wrapper main .bloque_basico .centrado {
    padding-left: 0;
    padding-right: 0px;
  }
}
.basica .wrapper main .bloque_basico .centrado h2 {
  padding-bottom: 10px;
}
.basica .wrapper main .bloque_basico .centrado h3 {
  padding-bottom: 10px;
}
.basica .wrapper main .bloque_basico .centrado p {
  padding-bottom: 10px;
}

.zoom.basica .wrapper main {
  padding-left: 0px;
  padding-right: 0px;
}

/*
.fotos{ // FIXED
	.wrapper{
			main{
				position: absolute;

				.bloque_fotos{
					//margin-bottom: 60px;
				}

			}	
		}

	}
*/
/*

	VARIABLES

	--color_fondo_alert
	--color_borde_alert

	--grosor_uno

*/
.alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 3;
  bottom: -50px;
  left: 0px;
  width: 100%;
  background-color: var(--azul);
  color: var(--blanco_siempre);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 550px) {
  .alert {
    border-top: var(--grosor_uno) solid var(--color_borde_alert);
  }
}
.alert p {
  width: 100%;
  padding: 10px;
  margin: 0px;
  color: var(--blanco_siempre);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 550px) {
  .alert p {
    padding: 15px 10px;
  }
}
.alert p a {
  font-weight: 700;
  color: var(--blanco_siempre);
  margin-left: 20px;
}
.alert span {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.alert.dark {
  bottom: 0px;
  text-transform: uppercase;
}

/*

  VARIABLES

  --grosor_uno

*/
.again {
  cursor: pointer;
}

#gdpr-cookie-message {
  position: fixed;
  bottom: 0px;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  padding: 20px;
}

#gdpr-cookie-message h4 {
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 15px;
}

#gdpr-cookie-message p {
  line-height: 1.3em;
  font-size: 14px;
}

#gdpr-cookie-message a {
  color: rgb(255, 255, 255);
}

#gdpr-cookie-types {
  padding: 20px 0px;
}

#gdpr-cookie-types h5 {
  text-transform: uppercase;
  padding-bottom: 10px;
}

#gdpr-cookie-types ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#gdpr-cookie-types ul li {
  padding: 0px 10px;
}

#gdpr-cookie-message p:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
}

#gdpr-cookie-message button {
  padding: 10px 20px;
  border-radius: 0px;
  border: 0px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: var(--familia);
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#gdpr-cookie-message button:first-of-type:hover {
  background-color: rgba(0, 0, 0, 0);
}

#gdpr-cookie-message button:last-of-type {
  margin-left: 20px;
  padding: 0px;
  border: 0px;
  text-decoration: underline;
  font-size: 12px;
}

#gdpr-cookie-message label {
  cursor: pointer;
}

@media (max-width: 414px) {
  #gdpr-cookie-types {
    padding-bottom: 0px;
  }
  #gdpr-cookie-types h5 {
    margin: 0px;
  }
  #gdpr-cookie-types ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px;
    padding: 0px;
  }
}
.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
}

.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: 400;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: 0.2em 0.8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  -webkit-transform-origin: 8px 8px;
          transform-origin: 8px 8px;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    -webkit-animation-name: blink;
            animation-name: blink;
    -webkit-animation-duration: 2000ms;
            animation-duration: 2000ms;
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.wpcf7 input[type=file] {
  cursor: pointer;
}

.wpcf7 input[type=file]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type=url], .wpcf7 input[type=email], .wpcf7 input[type=tel] {
  direction: ltr;
}

.wpcf7-reflection > output {
  display: list-item;
  list-style: none;
}