* {
    /* color: var(--gris-oscuro); */
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    margin:0;
    padding: 0;
}

html {
    font-size: 62.5% !important;
    letter-spacing: 0.3px;
}

:root {
    --color-primario: #93FFD8;
    --color-secundario: #548CFF;
    --color-naranja: #FF7530;
    --dedalo: #D2C29D;
    --gris: #F3F3F3;
    --gris-oscuro: #171717;
    --negro15: rgba(0,0,0,0.15);
    --negro50: rgba(0,0,0,0.5);
    --negro60: rgba(0,0,0,0.6);
    --negro70: rgba(0,0,0,0.7);
    --blanco50: rgba(255,255,255,0.5);
    --blanco60: rgba(255,255,255,0.6);
    --blanco70: rgba(255,255,255,0.7);
    --blanco80: rgba(255,255,255,0.8);
    --blanco90: rgba(255,255,255,0.9);
    --trans: all 0.15s ease-in-out;
}
::selection {
    background: var(--dedalo);
    color: black;
}
::-moz-selection {
    background: var(--dedalo);
    color: black;
}

.hidden {display: none !important;}

a {text-decoration: none;}

li {list-style: none;}

main{
    margin: 0 auto;
}

h1 {
    color: var(--color-secundario);
    font-size: 3.4rem !important;
    font-family: 'Lobster', cursive;
    font-weight: 500;
}
h2  {
    font-size: 2.1rem !important;
    font-weight: 600 !important;
}
h3 {
    font-family: 'Lobster', cursive;
    font-size: 2.3rem !important;
    font-weight: 500;
    padding: 20px;
}
h4 {
    font-size: 1.45rem !important;
    font-weight: 700 !important;
}
p {
    font-size: 1.7rem !important;
}

button {
    border: none;
    cursor:pointer;
    background: 0;
}

small {
    font-size: 1.2rem !important;
}

.asterisco {
    color: var(--color-secundario);
    font-size: 1.5rem;
}

.bicolor {
    display: flex;
}

.carousel {
    margin: 0 auto;
    width: 90vw;
}

.carousel svg {
    transform: scale(5);
}

.bicolor-1 {
    border: 4px solid var(--color-primario);
    width: 30%;
}

.bicolor-2 {
    border: 4px solid var(--color-secundario);
    width: 70vw;
}

.carousel-caption {
    margin-bottom: 35px;
}

.carousel-caption h2, .carousel-caption p {
    color: white;
}

.carousel-caption h2 {
    margin-bottom: 20px;
}

.carousel-indicators .active {
    background-color: var(--color-primario) !important;
}

/* BOTONES :::::::::::::::: */
.selected {color: var(--color-naranja);}

.boton-primario {
    color: white;
    background-color: var(--color-secundario);
    border-radius: 26px;
    font-size: 1.5rem !important;
    font-weight: 600;
    margin-left: 6px;
    padding: 9px 22px;
    box-shadow: 0 15px 13px -4px rgba(23,23,23,0.22);
    transition: var(--trans);
    display:table;
    margin: 0 auto
}

.boton-primario:hover {
    color: white;
    background-color: var(--color-naranja);
    box-shadow: 0 9px 9px -4px rgba(23,23,23,0.42);
    border-radius: 26px;
}

.boton-primario a {
    color: white;
}

.boton-secundario a {
    color: var(--color-secundario);
    background-color: white;
    border-radius: 26px;
    font-weight: 600;
    font-size: 1.5rem !important;
    margin-left: 6px;
    padding: 9px 22px;
    box-shadow: 0 15px 13px -4px rgba(23,23,23,0.22);
    transition: var(--trans);
    display:table;
    margin: 0 auto;
}

.boton-secundario a:hover {
    color: white;
    background-color: var(--color-naranja);
    box-shadow: 0 9px 9px -4px rgba(23,23,23,0.42);
    border-radius: 26px;
}

.boton-secundario a {
    clear: both;
}

.boton-terciario a {
    color: var(--color-naranja) !important;
    background-color: white;
    border: 1px solid var(--color-naranja);
    border-radius: 26px;
    font-weight: 600;
    font-size: 1.5rem !important;
    margin-left: 6px;
    padding: 9px 22px;
    box-shadow: 0 15px 13px -4px rgba(23,23,23,0.1);
    transition: var(--trans);
    display:table;
    margin: 0 auto;
}

.boton-terciario a:hover {
    color: var(--color-secundario) !important;
    border: 1px solid var(--color-secundario);
    box-shadow: 0 9px 9px -4px rgba(23,23,23,0.22);
    border-radius: 26px;
}


/* MENÚ :::::::::::::::: */
.hide-on-desktop {display: none;}

.burger-menu {
    display: flex;
    justify-content: flex-end;
}

main {
    background-color: var(--gris);
}

main .curva-blanca {
    background: url('../images/curva-blanca.svg') top left no-repeat;
    width: 50vw;
    height: 200px;
    position: absolute;
}

nav {
    display: grid;
    font-weight: bold;
    grid-template-columns: 1fr;
    text-transform: uppercase;
}

nav .logo {
    max-width: 110px;
    z-index: 999;
    padding: 13px 0 0 13px;
    position: absolute;
}

nav img {
    justify-self: flex-start;
}

nav ul {
    justify-self: flex-end;
    font-size: 0;
    padding: 25px 25px 0;
}

nav ul li {
    display: inline-flex;
    font-size: 1.3rem !important;
}

nav ul li:nth-child(n+3) {
    position: relative;
    z-index: 999 !important;
}

nav ul li:last-child a {
    margin-left: 6px;
}

nav ul li a {
    color: var(--color-secundario);
    padding: 13px 10px;
    transition: var(--trans);
}

nav ul li a:hover {
    color: var(--color-naranja);
}

nav ul li ul {
    display:none;
    position:absolute;
    min-width:140px;
    z-index: 995;
    transform: var(--trans);
}

nav ul li:hover > ul {
    margin-top: 10px;
    display:block;
    width: 250px;
}

nav ul li ul li {
    position:relative;
    width: 100%;
    background: var(--gris);
    box-shadow: 0px 8px 14px 3px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 8px 14px 3px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 8px 14px 3px rgba(0,0,0,0.15);
}

.txt-bco, .txt-bco b {
    color: white;
    padding: 30px 0;
}

/* PRECIOS :::::::::::::::: */
.precio, .precio span {
    color: var(--color-secundario);
    font-size: 1.8rem !important;
    font-weight: 700;
}

.precio span {
    font-family: 'Lobster', cursive;
}

.precio small {
    margin-left: 15px;
}

/* ENCABEZADO INTERNAS :::::::::::::::: */
.encabezado {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: right;
    margin: 0 auto 30px 145px;
    text-align: left;
    z-index: 99;
    position: relative;
}

.encabezado h1 {
    margin-top: 15px;
}

.encabezado div {
    display: flex;
    justify-content: start;
}

.encabezado div small {
    margin-bottom: 9px;
}

.encabezado div a {
    display: flex;
    align-items: center;
    padding: 10px 10px 0 10px;
}

.encabezado div a:link, .encabezado div a:visited {
    color: var(--color-secundario) !important;
    transition: var(--trans);
}

.encabezado div a:hover {
    color: var(--color-naranja) !important;
}


.encabezado div a.item-2 {
    margin-left: 0;
    padding-right: 0;
}

/* HERO :::::::::::::::: */
.hero {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-auto-rows: 70vh;
    margin-top: 15px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    bottom: 0;
}

.circulo-contenedor {
    position: relative;
    margin: 0 auto;
}

.circulo-naranja {
    position: absolute;
    background-color: var(--color-naranja);
    border-radius: 50%;
    width: 120%;
    max-width: 500px;
    max-height: 500px;
    height: 120%;
    bottom: -85px;
    left: -40px;
}

.hero .info {
    align-self: center;
    justify-self: flex-end;
}

/* CONTENIDO PAG. INICIO :::::::::::::::: */
.cta-home-alojamientos {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.cta-home-alojamientos h2, .cta-home-alojamientos p {
    color: white;
}

.cta-home-alojamientos p {
    margin: 20px 0;
}

.cta-home-alojamientos .container {
    max-width: 850px;
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto;
    margin: 15px;
}

.cta-home-alojamientos .col-1, .cta-home-alojamientos .col-2 {
}

.cta-home-alojamientos .col-1 {
    position: relative;
}

.cta-home-alojamientos .col-1 img, .cta-home-alojamientos .col-1 .olas {
    position: absolute;
}

.cta-home-alojamientos .col-1 img {
    right: -35px;
    width: 185px;
    height: 250px;
    z-index: 999;
    box-shadow: 0 15px 13px -4px rgba(23,23,23,0.22);
}

.cta-home-alojamientos .col-1 .olas {
    bottom: 18px;
    right: -75px;
    z-index: 998;
}

.cta-home-alojamientos .col-2 {
    background-color: var(--color-secundario);
    display: grid;
    grid-template-columns: 185px 1fr;
    align-items: center;
    border-radius: 0 30px 0 0;
}

.cta-home-alojamientos .col-2 img {
    width: 185px;
    height: 250px;
    display: flex;
    align-self: end;
}

.cta-home-alojamientos .texto-cta {
    padding: 40px 55px 40px 60px;
}

.cta-home-alojamientos .botones {
    float: left;
    display: grid;
    justify-content: center;
}

.cta-home-alojamientos button {
    margin: 7px 7px 0 0;
}

.contenido {
    display: grid;
    justify-items: center;
    align-content: center;
    grid-template-columns: 1fr;
    grid-template-rows: 180px 1fr auto;
    position: relative;
}

.contenido .cta-faqs-contacto {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 20px;
    width: 80%;
    margin-bottom: 40px;
}

.alojamiento .descripcion {
    background: var(--gris);
}

.alojamiento .descripcion b {
    color: black;.
}

.alojamiento .descripcion h3 {
    color: black !important;
    text-align: justify !important;
}

.descripcion {
    width: 100%;
    display: flex;
    background: var(--color-secundario);
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.descripcion div h3 {
    margin: 0 10%;
    font-family: inherit !important;
    font-size: 1.6rem !important;
}

.descripcion div h2 {
    margin: 0 10%;
}

.cta-image {
    position: relative;
}

.cta-image img {
    position: absolute;
    width: 120px;
    height: 160px;
    box-shadow: 0 15px 13px -4px rgba(23,23,23,0.22);
}

.cta-texto p {
    margin-bottom: 14px;
    padding: 0 10%;
}

.olas {
    background: url("../images/olas.svg") center center no-repeat;
    background-size: cover;
    width: 125px;
    height: 50px;
    transform: scale(90%);
    position: absolute;
    z-index: 999;
    bottom: 33%;
}

.cta-1, .cta-2 {
    display: grid;
    align-items: center;
    max-width: 1000px;
    /* grid-column: 1 / span 5;
    grid-row: 20; */
    grid-auto-rows: 250px;
}

.cta-1 .cta-image .olas {
    left: 20px;
    bottom: 20px;
}

.cta-2 .cta-image .olas {
    right: 20px;
    bottom: 20px;
}

.cta-1 .cta-image img {
    left: -20px;
}

.cta-2 .cta-image img {
    right: -20px;
}

.cta-1 img {
    right: 0;
}

.cta-1 .contenedor, .cta-2 .contenedor {
    display: grid;
    grid-auto-rows: 200px;
    background-color: var(--gris);
}

.contenido .cta-1 .contenedor {
    grid-template-columns: 1fr 2fr;
}

.contenido .cta-2 .contenedor {
    grid-template-columns: 2fr 1fr;
}

.cta-texto {
    display: grid;
    align-content: center;
    text-align: center;

}

.caja-azul {
    position: relative;
    background-color: var(--color-secundario);
    border-radius: 0 18px 0 18px;
    max-width: 1400px;
    padding: 30px;
    width: 80vw;
}

.caja-blanca {
    position: relative;
    background-color: white;
    max-width: 1400px;
    padding: 30px;
    width: auto;
}


/* ALOJAMIENTOS :::::::::::::::: */
.alojamientos {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.alojamientos .ppp {
    color: var(--color-naranja);
    text-align: right;
    margin-right: 45px;
}

.alojamientos h3 {
    text-align: center;
    margin: 30px 0 0 0;
}

.alojamientos .list-hab {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 18px;
}

.alojamientos .list-hab-item .foto {
    position: relative;
    height: 100%;
    width: 100%;
}

.alojamientos .list-hab-item .foto .formato {
    position: absolute;
    border-radius: 8px;
    width: 90%;
    height: 100%;
}

/* INICIA FOTOS CASAS --- */
.alojamientos.casas .list-hab-item .foto .foto-1 {
    background: url('../images/casas/habitacion-1-portada.jpg') center center no-repeat;
    background-size: cover;
}
.alojamientos.casas .list-hab-item .foto .foto-2 {
    background: url('../images/casas/habitacion-2-portada.jpg') center center no-repeat;
    background-size: cover;
}
.alojamientos.casas .list-hab-item .foto .foto-3 {
    background: url('../images/casas/habitacion-3-portada.jpg') center center no-repeat;
    background-size: cover;
}
.alojamientos.casas .list-hab-item .foto .foto-4 {
    background: url('../images/casas/habitacion-4-portada.jpg') center center no-repeat;
    background-size: cover;
}
/* TERMINA FOTOS CASAS */

/* INICIA FOTOS ESTANDAR --- */
.alojamientos.estandar .list-hab-item .foto .foto-1 {
    background: url('../images/estudios-estandar/estudio-1-portada.jpg') center center no-repeat;
    background-size: cover;
}
/* TERMINA FOTOS ESTANDAR --- */

/* INICIA FOTOS PLUS --- */
.alojamientos.plus .list-hab-item .foto .foto-1 {
    background: url('../images/estudios-plus/estudios-plus-estudio-1.jpg') center center no-repeat;
    background-size: cover;
}
.alojamientos.plus .list-hab-item .foto .foto-2 {
    background: url('../images/estudios-plus/estudios-plus-estudio-2.jpg') center center no-repeat;
    background-size: cover;
}
.alojamientos.plus .list-hab-item .foto .foto-3 {
    background: url('../images/estudios-plus/estudios-plus-estudio-3.jpg') center center no-repeat;
    background-size: cover;
}
/* TERMINA FOTOS PLUS --- */

.alojamientos .list-hab-item .foto .olas {
    right: 0;
    bottom: 20px;
    transform: scale(70%);
}

.alojamientos .list-hab-item {
    height: auto;
    display: grid;
    grid-template-columns: 4fr 8fr;
    align-items:center;
    background-color: var(--gris);
    padding: 12px 45px 12px 12px;
    border-radius: 12px;
}

.alojamientos .list-hab-item .precio small {
    font-size: 1.4rem !important;
}

.alojamientos .list-hab-item h2 {
    margin-top: 23px;
    margin-bottom: 8px;
    font-weight: 700 !important;
}

.alojamientos .list-hab-item p {
    margin: 18px 0;
}

.alojamientos .list-hab-item .texto-cta {
    text-align: right;
    display: grid;
    justify-items: flex-end;
}

.alojamientos .list-hab-item .texto-cta button {
    margin: initial;
    margin-bottom: 25px;
}

/* HABITACIÓN :::::::::::::::: */
.habitacion {
    display: grid;
    grid-template-rows: repeat(4, auto);
    justify-items: center;
}

.habitacion .precios-cta-hab {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 25px auto;
}

.habitacion .precios-cta-hab .container {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    /* padding: 50px; */
}

.precios-cta-hab .item-1, .precios-cta-hab .item-2 {
    /* padding: 50px 0; */
    padding-bottom: 10px;
    text-align: center;
}

.precios-cta-hab .item-1 {
    border-right: 2px solid var(--gris);
}

.habitacion .precios-cta-hab .reservar button {
    position: relative;
    z-index: 999;
}

.habitacion .precios-cta-hab .reservar .olas-gif {
    background: url(../images/lineas.gif) no-repeat center center;
    background-size: cover;
    position: absolute;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    opacity: 0.06;
    top: 0;
    left: 0;
    z-index: 998;
}

.habitacion .precios-cta-hab .reservar {
    position: relative;
    background: rgba(147,255,216,1);
    border-radius: 12px;
    padding: 50px 20px;
    margin: 0 13px;
}

.habitacion .iconos {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 230px));
    grid-auto-flow: dense;
    grid-gap: 10px 10px;
    justify-content: space-evenly;
    margin: 0 0 30px 0;
}

.material-symbols-outlined {
    font-size: 3rem !important;
    margin-bottom: 7px;
}

.habitacion .iconos div {
    padding: 20px;
    background: var(--gris);
    border-radius: 12px;
    display: flex;
    justify-content: start;
    flex-flow: column;
    text-align: center;
}

.habitacion .iconos div img {
    margin: 0 auto;
    width: 100%;
    max-width: 45px;
}

/* Estudios Plus tipos*/
..estudios-plus-tipos {
    width: 100%;
    position: relative;
}
.estudios-plus-tipos div {
    margin: 0 auto;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 5px;
    justify-content:center;
    align-items: center;
    max-width: 1100px;
    width: 95%;
}

.estudios-plus-tipos div div {
    display: flex;
    flex-flow: column;
    align-items:flex-start;
    justify-content: flex-start;
    width: 100%;
    min-width: 20px;
    height: 100%;
    padding: 20px;
    background: var(--gris);
}

.box1 {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 50px;
}

.box1 .olas {
    left: 40px;
    transform: scale(230%);
    top: 20px;
    z-index: 0;
}

.observaciones {
    display: grid;
    width: 100%;
    max-width: 800px;
    min-width: 320px;
    border: 0.5px solid var(--color-naranja);
    border-radius: 8px;
    padding: 20px;
    font-size: 1.4rem;
    /* margin: 20px 10%; */
}

.observaciones ul li {
    margin: 10px 0;
}

.observaciones a {
    color: var(--color-secundario);
    transition: var(--trans);
    border-bottom: 0.5px solid var(--color-secundario);
}

.observaciones a:hover {
    color: var(--color-naranja);
    border-bottom: 0.5px solid var(--color-naranja);
}

/* ACORDEON :::::::::::::::: */
.acordeon .accordion {
    box-shadow: 3px 13px 18px -8px rgba(0,0,0,0.38);
    -webkit-box-shadow: 3px 13px 18px -8px rgba(0,0,0,0.38);
    -moz-box-shadow: 3px 13px 18px -8px rgba(0,0,0,0.38);
}

.accordion-button {
    font-size: 1.9rem !important;
    line-height: 2.4rem !important;
}

.accordion-body {
    font-size: 1.7rem !important;
    padding: 15px !important;
}

/* CONTACTO :::::::::::::::: */
.datos-contacto-container {
    display: grid;
    grid-template-rows: repeat(2, auto);
    justify-items: center;
    align-items: center;

}

.datos-contacto {
    max-width: 1000px;
    display: grid;
    align-items: center;
    justify-items: center;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
}

.datos-contacto article {
    width: 100%;
    display: grid;
    padding: 30px 30px;
    height: 130px;
    justify-items: center;
    align-content: baseline;
    text-align: center;
}

.datos-contacto .direccion, .datos-contacto .correo {
    border-right: 2px solid var(--gris);
}

/* MAPA :::::::::::::::: */
.mapa {
    padding: 60px;
    width: 100%;
}

.mapa div {

}

/* BOTON FLOTANTE WHATSAPP ::::: */
.whatsapp-float {
    display: block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 3px 13px rgba(14, 244, 75, 0.9);
  }
  
  .whatsapp-float img {
    width: 60%;
    margin-top: 12px;
    margin-left: 11px;
  }

  .whatsapp-float.inicio img {
    margin-left: 0;
  }
  
  .whatsapp-float:hover {
    background-color: #fff;
    box-shadow: 0 3px 13px rgba(14, 244, 75, 0.9);
  }
  
  .whatsapp-float:hover img {
    filter: invert(100%);
  }  

/* FOOTER :::::::::::::::: */
footer {
    background-color: var(--color-secundario);
    display: grid;
    grid-template-columns: 160px 160px 7fr;
    grid-auto-rows: 150px;
    align-items:flex-start;
    padding: 60px 0 0 5%;
}

footer .contactanos li {
    padding: 2px;
}

footer .social li {
    display: inline-flex; 
    padding: 0 2px;
    border: 0;   
}

footer, 
footer a, 
footer h2, 
footer small,
footer .fa-facebook, 
footer .fa-twitter, 
footer .fa-instagram {
    color:var(--gris);
}

footer a,
footer .fa-facebook, 
footer .fa-twitter, 
footer .fa-instagram {
    transition: var(--trans);
} 

footer a:hover, 
footer .fa-facebook:hover, 
footer .fa-twitter:hover, 
footer .fa-instagram:hover {
    color:var(--color-primario);
}

footer a, footer h2, footer small {
    font-weight: 300;
    font-size: 1.2rem !important;
}

footer h2 {
    font-size: 1.2rem !important;
    font-weight: 600;
    padding: 8px 0;
}

footer .logo-icono {
    max-width: 33px;
    display: block;
    margin-bottom: 7px;
}

footer .fa {  
    padding: 5px;  
    text-align: left;  
    font-size: 18px !important;  
    width: 30px;  
}  

