/* ################################ CSS AJUSTADO ################################### */

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/montserrat:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Avalone';
    src: url(/fonts/Avalone-Regular.ttf?8ea2af88a03ba50553ec39898a25d0ff) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Avalone';
    src: url(/fonts/Avalone-Italic.ttf?390562deb9e46d52a5472bdb9bb55ade) format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Avenir';
    src: url(/fonts/Avenir-book.ttf?06422e51366177f80a44dcf65097f21f) format('truetype');
    font-weight: 400;
    /* normal */
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url(/fonts/Avenir-black.ttf?7ce894e12078ca8c5134c0c2ad1670f5) format('truetype');
    font-weight: 900;
    /* black */
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url(/fonts/Avenir-heavy.ttf?f728da1ab92fe217cfca730633ec44b0) format('truetype');
    font-weight: 700;
    /* black */
    font-style: normal;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #343339;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Avalone', sans-serif;
    letter-spacing: 2.5px;
}

h1,
h2 {
    font-size: 50px;
    line-height: 55px;
}

@media (min-width: 1200px) {

    h1,
    h2 {
        font-size: 60px;
        line-height: 55px;
    }
}

p {
    line-height: 26px;
}

strong {
    font-weight: 700;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.space-around {
    justify-content: space-around;
}

.relative {
    position: relative;
}

.error-msg {
    color: red;
    font-size: 0.85rem;
    margin-top: 4px;
}
.form-control.is-invalid {
    border-color: red;
}

/* ################################ NAVBAR ################################### */
.container-navbar {
    max-width: calc(100% - 50px);
    margin-bottom: 20px !important;
}

@media (min-width: 1440px) {
    .container-navbar {
        max-width: 1441px;
        margin: 0 auto;
    }
}

.navbar-collapse {
    justify-content: space-around;
}

.custom-navbar {
    font-family: 'Avenir', sans-serif;
    font-size: 1rem;
    position: absolute;
    width: 100%;
    z-index: 3;
    text-transform: uppercase;
    color: white;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(52, 51, 57, 0.2);
}

.custom-navbar-nav {
    gap: clamp(10px, 5vw, 60px);
    align-items: center;
}

.nav-item {
    margin: 0;
    text-align: center;
}

.custom-navbar .container {
    align-items: end;
}

.custom-navbar a {
    color: white;
}

.custom-navbar a:hover {
    color: white;
}

.custom-navbar .navbar-brand {
    font-size: 32px;
    font-weight: 600;
    z-index: 1;
}

.navbar-brand img {
    max-width: 168px;
    height: auto;
}

.custom-navbar .navbar-brand>span {
    opacity: .4;
}

.custom-navbar .navbar-toggler {
    border-color: transparent;
}

.custom-navbar .navbar-toggler:active,
.custom-navbar .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.custom-navbar .custom-navbar-nav li a {
    font-weight: 500;
    transition: .3s all ease;
    position: relative;
}

@media (min-width: 768px) {
    .custom-navbar .custom-navbar-nav li a:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 8px;
        right: 8px;
        background: white;
        height: 1px;
        opacity: 1;
        visibility: visible;
        width: 0;
        transition: .15s all ease-out;
        border-radius: 50px;
    }
}

.custom-navbar .custom-navbar-nav li a:hover {
    opacity: 1;
}

.custom-navbar .custom-navbar-nav li a:hover:before {
    width: calc(100% - 16px);
}

.custom-navbar .custom-navbar-nav li.active a {
    opacity: 1;
}

.custom-navbar .custom-navbar-nav li.active a:before {
    width: calc(100% - 16px);
}

.custom-navbar .custom-navbar-cta {
    margin-left: 0 !important;
    flex-direction: row;
}

.custom-navbar .custom-navbar-cta li {
    margin-left: 0px;
    margin-right: 0px;
}

.custom-navbar .custom-navbar-cta li:first-child {
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    text-align: center;
    margin-left: 1.5rem;
}

.custom-navbar .custom-navbar-cta li:first-child {
    margin: 0 auto;
}

/* SELECTOR IDIOMA */

.idioma {
    position: absolute;
    bottom: -40px;
    right: 1rem;
    /* From https://css.glass */
    background: rgba(52, 51, 57, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 5px;
    border-radius: 5px;
}

@media (min-width: 1200px) {
    .idioma {
        position: absolute;
        bottom: -40px;
        right: 5rem;
    }
}

.idioma a {
    text-decoration: none;
}

.idioma a.active {
    font-weight: bold;
}


/* ################################ FOOTER ################################### */

.custom-footer {
    background-color: #25292f;
    font-family: 'Montserrat', sans-serif;
    position: relative;

    & h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
    }
}

.custom-footer p {
    font-size: 16px;
}

.copyright {
    color: #858B91;
    font-size: 12px;
}

.custom-footer a {
    text-decoration: none;
}

.contenedor-redes {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
}

.contenedor-redes img {
    width: 40px;
    height: 40px;
}

.texto-proytel {
    line-height: 2em;
    font-weight: 300;
}

@media (min-width: 1200px) {
    .contenedor-redes {
        justify-content: flex-start;
    }
}

/* BOTON SUBIR */

.boton-subir {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    text-align: center;
}

.boton-subir p {
    color: #BCC1C4;
    font-size: 1rem;
    margin-top: 5px;
}

.btn-subir {
    background-color: #F6F6F6;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px -2px 4px #00000029;
}

.btn-subir:hover {
    background-color: #F6F6F6;
}

.btn-subir img {
    width: 20px;
    height: 20px;
}

/* ################################  BUSCADOR  ################################### */
.destino::before {
    content: url(/img/icon-destino.svg);
    position: absolute;
    left: 10px;
    top: 40%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.fecha_llegada::before {
    content: url(/img/icon-calendario.svg);
    position: absolute;
    left: 10px;
    top: 43%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.fecha_salida::before {
    content: url(/img/icon-calendario.svg);
    position: absolute;
    left: 10px;
    top: 43%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.huespedes::before {
    content: url(/img/icon-huespedes.svg);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 23px;
}

.buscador {
    margin: 0 auto;
    justify-content: center;
    border-radius: 8px;
    background-color: white;
    width: auto;
    padding: 25px 30px;
    font-family: 'Avenir', sans-serif;
    gap: 20px;
    box-shadow: 0px 3px 4px #34333926;
    display: flex;
}

.buscador-div {
    margin: 0 20px;
}

.buscador div {
    padding: 0;
    position: relative;
}

.buscador input {
    border: none;
    border-radius: 5px;
    width: 100%;
    height: 44px;
    padding-left: 35px;
    background-color: #F6F6F6;
    color: #666666;
}

.buscador select {
    border: none;
    border-radius: 5px;
    width: 100%;
    height: 44px;
    padding-left: 35px;
    background-color: #F6F6F6;
    color: #666666;
}

.buscador button {
    margin: 0 auto;
    background-color: transparent;
    border-radius: 5px;
    border: solid 1px #343338;
    width: 165px;
    height: 44px;
    color: #343338;
    text-transform: uppercase;
}

.buscador button:hover {
    background-color: #343338;
    color: white;
}

.is-selected {
    background-color: #286090;
    color: white;
}

.is-selected:hover {
    background-color: #204d74 !important;
}

.is-between {
    border-radius: 0 !important;
    background-color: #5599d4;
    color: white;
}

.is-between:hover {
    background-color: #204d74 !important;
}

.checkin-picker .active,
.checkout-picker .is-selected {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.checkout-picker .active,
.checkin-picker .is-selected {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.disabled {
    color: #d8d8d8 !important;
}

@media (min-width: 1200px) {

    .buscador {
        width: -moz-max-content;
        width: max-content;
        gap: 40px;
    }

    .buscador input {
        width: 165px;
    }

    .buscador select {
        width: 165px;
    }

    .buscador button {
        width: 165px;
    }
}

/* ################################  HERO  ################################### */
.hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    overflow: hidden;
}

.hero-video {
    display: none;
}

.hero-image {
    display: block;
}

@media (min-width: 1200px) {
    .hero {
        height: 100vh;
    }

    .hero-video {
        display: block;
    }

    .hero-image {
        display: none;
    }
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
}

.hero img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero span {
    font-size: 30px;
}

/* ################################ HOME HOME ################################### */
/* HERO HOME */
.hero-home-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: transparent linear-gradient(180deg, #34333900 0%, #343339 100%) 0% 0% no-repeat padding-box;
    text-align: center;
}

.hero-home-content p {
    font-size: 1rem;
    letter-spacing: 0.48px;
    color: white;
    font-weight: 200;
}

.cta-hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.cta-hero a {
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    color: white;
    background: transparent;
    padding: 10px 60px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    width: 241px;
    margin: 0 auto;
}

.cta-hero a:hover {
    background: #FFFFFF;
    color: #25292F;
}

@media (min-width: 1200px) {

    .hero-home-content {
        text-align: left;
    }

    .hero-home-content p {
        font-size: 1.25rem;
    }

    .cta-hero {
        flex-direction: row;
    }

    .cta-hero a {
        margin: 0;
    }
}

/* TITULOS CON LINEAS */

.texto-lineas {
    display: flex;
    align-items: flex-start;
    text-align: center;
    color: #fff;
    padding: 15px;
}

.texto-lineas p {
    font-size: 1rem;
    width: 60%;
    font-weight: 300;
    letter-spacing: 0.72px;
}

.texto-lineas::before,
.texto-lineas::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #999;
    margin-top: 15px;
}

.texto-lineas::before {
    margin-right: 10px;
}

.texto-lineas::after {
    margin-left: 10px;
}

.texto-lineas-left {
    display: flex;
    align-items: flex-start;
    text-align: left;
    color: #fff;
    padding: 15px;
}

.texto-lineas-left p {
    font-size: 1rem;
    width: 50%;
    font-weight: 300;
    letter-spacing: 0.72px;
}

.texto-lineas-left::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #999;
}

.texto-lineas-left::after {
    margin-left: 10px;
    margin-top: 40px;
}

.texto-lineas-white {
    display: flex;
    align-items: flex-start;
    text-align: center;
    color: #26292F;
    padding: 15px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Avalone', sans-serif;
    letter-spacing: 1.6px;
}

.texto-lineas-white::before,
.texto-lineas-white::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #999;
}

.texto-lineas-white::before {
    margin-right: 10px;
    margin-top: 10px;
}

.texto-lineas-white::after {
    margin-left: 10px;
    margin-top: 10px;
}

@media (min-width: 1200px) {


    /* TITULOS CON LINEAS */
    .texto-lineas {
        padding: 50px;
        font-size: 1.5rem;
    }

    .texto-lineas p {
        font-size: 1.5rem;
        width: auto;
    }

    .texto-lineas::before {
        margin-right: 30px;
    }

    .texto-lineas::after {
        margin-left: 30px;
    }

    .texto-lineas-left {
        padding: 40px;
    }

    .texto-lineas-left p {
        font-size: 1.5rem;
        width: auto;
    }

    .texto-lineas-left::after {
        margin-left: 30px;
        margin-top: 15px;
    }

    .texto-lineas-white {
        padding: 40px;
        font-size: 2rem;
    }

    .texto-lineas-white::before {
        margin-right: 30px;
        margin-top: 10px;
    }

    .texto-lineas-white::after {
        margin-left: 30px;
        margin-top: 10px;
    }

    .texto-home-lineas {
        font-weight: 300;
        letter-spacing: 0.72px;
    }
}

/* CARDS PROPIEDADES */

.desarrollos {
    padding: 0 20px 0 10px;
}

.propiedades {
    padding-bottom: 5rem;
}

.propiedad-home {
    position: relative;
}

.propiedad-home h2 {
    font-size: 44px;
    text-align: center;
    letter-spacing: 2.2px;
    line-height: 26px;
}

.propiedad-home h3 {
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0;
}

.propiedad-home img {
    width: 100%;
    height: auto;
    min-height: 642px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: filter .5s;
}

.overlay-propiedades {
    height: 50%;
    position: absolute;
    padding-top: 180px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    color: #fff;
    font-family: 'Avalone', sans-serif;
    font-size: 2.75rem;
    /* 44px */
    letter-spacing: 2.2px;
    line-height: 26px;
    gap: 5px;
    transform: translateY(1px);
    background:  linear-gradient(180deg, #34333900 0%, #222 100%) 0% 0% no-repeat padding-box;


    & p {
        font-size: 24px;
        color: #FFFFFF;
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
        letter-spacing: 0;
    }
}

@media (min-width: 1200px) {
    .desarrollos {
        padding: 0 20px;
    }

    .propiedad-home img {
        filter: grayscale(100%);
        max-height: 478px;
    }

    .overlay-propiedades {
        transform: translateY(50px);
        transition: opacity .5s, transform .5s;
        opacity: 0;
        gap: 15px;
    }

    .propiedad-home:hover img {
        filter: grayscale(0%);
    }

    .propiedad-home:hover .overlay-propiedades {
        opacity: 1;
        transform: translateY(0);
    }
}


/* VALORES */
.valores {
    position: relative;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
}

.valores video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
}

.valores .hero-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.contenido-valores {
    background-color:rgba(255,255,255,.85);
    max-width: 421px;
    margin: 25px 35px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
}

.contenido-valores h1 {
    font-size: 50px;
    text-align: left;
}

.contenido-valores p {
    font-size: 1rem;
    font-weight: 400;
}
@media (max-width : 440px) {
    .contenido-valores{
        background-color: rgba(255, 255, 255, .85); 
        margin: 0;
        height: 100%;
    }
}
@media (min-width: 1200px) {

    .contenido-valores {
        padding: 40px 28px;
    }

    .contenido-valores p {
        font-size: 18px;
    }
}

.contenido-slider-home ul li {
    margin: 10px 0;
    font-weight: 300;
    letter-spacing: 0.8px;
}

/* VENTAJAS */
.contenedor-ventajas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px 0;
}

.ventajas {
    display: flex;
    gap: 8px;
}

.ventajas p {
    font-weight: 500;
    font-size: 18px;
}

.ventajas img {
    width: 32px !important;
    height: 32px !important;
}

.cta-ventajas {
    display: inline-flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
}

.cta-ventajas a {
    border: 1px solid #343338;
    border-radius: 5px;
    background: transparent;
    font-size: 1rem;
    /* 18px */
    font-weight: 400;
    color: #343338;
    padding: 8px 89px;
}

.cta-ventajas a:hover {
    background: #343338;
    color: white;
    border: 1px solid #343338;
}


@media (min-width: 1200px) {

    .contenedor-ventajas {
    }

    .ventajas {
        gap: 20px;
    }

    .cta-ventajas a {
        font-size: 1.125rem;
    }
}

/* DESTINOS */

.destinos .texto-lineas-left p {
    width: 80%;
}

.card-destino {
    max-width: 350px;
    height: 100%;
    position: relative;
}

.card-destino a {
    display: block;
    position: relative;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
    overflow: hidden;

}

.card-destino a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: transparent linear-gradient(180deg, #34333900 0%, #343339f7 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    opacity: 0.9;
    z-index: 1;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
}

.card-destino img {
    width: 100%;
    height: 100%;
    max-height: 408px;
    min-height: 408px;
    -o-object-fit: cover;
       object-fit: cover;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
    position: relative;
    z-index: 0;
}

.titulo-card-destino {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding: 10px 15px;
    z-index: 2;
}

.card-destino h3 {
    text-align: left;
    color: #fff;
    font-family: 'Avalone', sans-serif;
    font-size: 1.875rem;
    letter-spacing: 2.4px;
    line-height: 26px;
    white-space: nowrap;
}


.card-destino p {
    font-size: 1.125rem;
    line-height: 26px;
    color: #fff;
    font-weight: 100;
    opacity: 0.6;
    margin-bottom: 8px;
}

.destinos-swiper {
    margin-left: 10px;
    margin-bottom: 40px;
    /* overflow-x: auto; */
    /* padding: 10px 0; */
    /* scroll-snap-type: x mandatory; Efecto de "snap" al hacer scroll */
}

@media (min-width: 1200px) {
    .vaquera {
        display: none;
    }

    .destinos-swiper {
        margin-left: 40px;
    }

    .destinos .texto-lineas-left p {
        width: auto;
    }
}

/* SLIDER GALERIA HOME */
.contenido-slider-home {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    color: white;
    padding: 0px 10px;
    text-align: left;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.slider-home-box {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    color: white;
    padding: 0px 10px;
    text-align: left;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.contenido-slider-home p {
    font-size: 30px;
    font-family: 'Avalone', sans-serif;
    line-height: 55px;
    letter-spacing: 1.5px;
}
.slider-home-box p {
    font-size: 30px;
    font-family: 'Avalone', sans-serif;
    line-height: 55px;
    letter-spacing: 1.5px;
}

.contenido-slider-home span {
    font-size: 50px;
    font-family: 'Avalone', sans-serif;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.slider-home-box span {
    font-size: 50px;
    font-family: 'Avalone', sans-serif;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.contenido-slider-home ul {
    padding: 0;
    list-style-position: inside;
    font-size: 1rem;
}
.slider-home-box ul {
    padding: 0;
    list-style-position: inside;
    font-size: 1rem;
    list-style: none;
}
.slider-home-box ul img {
    margin-right: 10px;
}

.contenido-slider-home ul li {
    margin: 10px 0;
}

.slider-home-box ul li {
    margin: 3rem 0;
    font-weight: 400;

}


.contenido-slider-home .cta-slider {
    display: flex;
}
.slider-home-box .cta-slider {
    display: flex;
    margin: 0 auto;
}
.contenido-slider-home .cta-slider a {
    
}

.contenido-slider-home .cta-slider a:hover {
    
}

.contenido-slider-home .cta-slider a:active {
    
}

.slider-home {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider.swiper {
    width: 100%;
    height: 100%;
}

.slider .swiper-slide img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media(min-width: 1200px) {
    .slider .swiper-slide img {
        width: 100%;
    }
}

.slider .swiper-slide video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slider .swiper-button-next {
    left: auto;
    right: 20px;
    top: unset;
    bottom: 25%;
}

.slider .swiper-button-prev {
    left: 20px;
    right: auto;
    top: unset;
    bottom: 25%;
}

.slider .swiper-button-prev,
.slider .swiper-button-next {
    color: black;
    background-color: rgba(255, 255, 255, .85);
    padding: 30px;
    border-radius: 50%;
}

.slider .swiper-button-prev::after,
.slider .swiper-button-next::after {
    font-size: 25px;
    color: black;
}

.destinos-swiper .swiper-button-prev,
.destinos-swiper .swiper-button-next {
    color: black;
    background-color: rgba(255, 255, 255, .85);
    padding: 30px;
    border-radius: 50%;
}

.destinos-swiper .swiper-button-prev::after,
.destinos-swiper .swiper-button-next::after {
    font-size: 25px;
    color: black;
}

@media (min-width: 1200px) {

    .contenido-slider-home {
        text-align: left;
        align-items: flex-start;
        width: auto;
        left: auto;
        transform: none;
    }
    .slider-home-box {
        margin-left: 3rem;
        padding: 2rem;
        text-align: left;
        align-items: flex-start;
        width: auto;
        left: auto;
        transform: none;
        height: 100%;
        background-color: rgba(255,255,255,.8);
    }

    .contenido-slider-home p {
        font-size: 30px;
        text-align: left;
    }
    .slider-home-box p {
        font-size: 30px;
        text-align: left;
    }

    .contenido-slider-home span {
        font-size: 3.125rem;
    }
    .slider-home-box span {
        font-size: 3.125rem;
    }

    .slider .swiper-button-next {
        left: auto;
        right: 20px;
        top: 55%;
        bottom: unset;
    }

    .slider .swiper-button-prev {
        left: auto;
        right: 20px;
        top: 45%;
        bottom: unset;
    }
}

/* ALOJAMIENTOS/ALOJAMIENTOS CARD */

.alojamientos {
    background-color: #F6F6F6;
    color: #26292F;
    font-size: 1.5rem;
    font-weight: 400;
    padding-bottom: 50px;
}

.titulo-alojamientos {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}

@media (min-width: 1200px) {
    .titulo-alojamientos {
        font-size: 1.7rem;
        letter-spacing: 0.72px;
    }

    .titulo-alojamientos:nth-of-type(2) {
        text-align: left;
    }
}

.card-alojamientos {
    background-color: white;
    color: #343339;
    padding: 8px;
    box-shadow: 0px 3px 4px #34333926;
    border-radius: 8px;
    
    
}
@media (min-width:1200px){
    .card-alojamientos{
        width: 46vw;
    }
}

.contenedor-card-alojamientos {
    padding: 15px;
}

.galeria-alojamientos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0px;
    position: relative;
    width: 100%;
    max-height: 167px;
    grid-template-areas:
        "item1 item1 item2 item3"
        "item1 item1 item4 item4";
}

/* Asignación de las áreas a los div contenedores */
.item1 {
    grid-area: item1;
}

.item2 {
    grid-area: item2;
}

.item3 {
    grid-area: item3;
}

.item4 {
    grid-area: item4;
}

.item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

/* Ajuste de la imagen dentro del div */
.item img {
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

.body-alojamientos {
    padding: 16px 20px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.contenido-alojamientos {
    flex: 1 1 50%;
}

.contenido-alojamientos p {
    margin: 0;
}

.cta-alojamientos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 50%;
}

.cta-alojamientos a {
    border: 1px solid #343338;
    border-radius: 5px;
    color: #343338;
    padding: 10px 70px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    background-color: transparent;
}

.cta-alojamientos a:hover {
    background-color: #343338;
    color: white;
    border: #26292F;
}

.alojamientos-ubicacion {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 300;
}

.alojamientos-nombre {
    font-size: 20px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alojamientos-precio {
    font-size: 1rem;
    font-weight: 700;
}

.alojamientos-precio span {
    font-size: 0.875rem;
    font-weight: 400;
}

.rating {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    color: #343338;
}

@media (min-width: 1200px) {

    .body-alojamientos {
        padding: 16px 20px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .contenedor-card-alojamientos {
        
    }
}

/* OFERTAS */

.contenedor-ofertas {
    margin: 10px 15px;
    background-image: url(/img/bg-ofertas.jpg);
    background-size: cover;
    border-radius: 8px;
}

.texto-ofertas {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.cards-ofertas {
    margin: 40px 20px 0;
    padding-bottom: 40px;
}

.card-oferta {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, .85);
    border-radius: 4px;
}

.imagen-oferta-card{
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 300px;
    min-height: 300px;
    border-radius: 16px;
}

.rating img {
    min-height: auto !important;
}

.body-oferta {
    padding: 16px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.titulo-ofertas {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 19px;
}

.fecha-ofertas {
    font-size: 1rem;
    font-weight: 200;
    line-height: 19px;
}

.body-oferta p {
    margin: 0;
}

.cta-oferta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-oferta a {
    border: 1px solid #343338;
    border-radius: 5px;
    color: #343338;
    padding: 8px 17px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    background-color: transparent;
}

.cta-oferta a:hover {
    background-color: #343338;
    color: white;
    border: #26292F;
}

.ahorra {
    color: #B36206;
    font-size: 0.875rem;
    text-align: left;
    padding: 0 20px;
    margin-top: 10px;
}

.pildora-descuento {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    background: transparent linear-gradient(180deg, #E8C842 0%, #F4A32C 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 4px #34333926;
    padding: 5px;
    border-radius: 13px;
    font-size: 14px;
    color: white;
    font-weight: 700;
}

.imagen-oferta {
    position: relative;
}

.contenido-oferta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

@media (min-width: 1200px) {

    .contenedor-ofertas {
        margin: 10px 40px;

    }

    .titulo-ofertas {
        font-size: 2rem;
        text-align: start;
    }

    .fecha-ofertas {
        font-size: 1.5rem;
    }

    .texto-ofertas {
        padding: 50px;
    }

    .cards-ofertas {
        margin: 85px 30px 0;
        padding-bottom: 40px;
    }

    .body-oferta {
        padding: 16px 20px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .card-oferta {
        max-height: 463px;
    }

    .galeria-alojamientos {
        max-height: 300px;
    }
}

/* ################################ HOME VENTA ################################### */
.enlaces-hero {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.enlaces-hero a {
    color: white;
    font-size: 12px;
    text-decoration: none;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.enlaces-hero a:first-child {
    font-family: 'Avalone', sans-serif;
    font-size: 20px;
    margin-bottom: .5rem;
}

.enlaces-hero a:last-child::after {
    content: url('/img/chevron-right-solid.svg');
    margin-left: 10px;
    height: 16px;
    display: inline-block;
    width: 10px;
}

@media (min-width: 1200px) {

    .enlaces-hero {
        justify-content: flex-end;
        align-items: end;
    }

    .enlaces-hero a {
        margin-bottom: .8rem;
    }
}

/* PROPIEDADES  */

.propiedades-ubicacion .texto-lineas-left p {
    width: -moz-max-content;
    width: max-content;
}

.propiedades-ubicacion .texto-lineas-left::after {
    margin-left: 10px;
    margin-top: 15px;
}

.propiedades-ubicacion img {
    width: 100%;
    height: 100%;
}



.desarrollos-venta {
    padding: 0 15px 40px;
}

.texto-propiedad-ubicacion {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: #F6F6F6;
    text-align: center;
    padding: 25px;
}

.texto-propiedad-ubicacion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    background: transparent linear-gradient(180deg, #34333900 0%, #222 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    z-index: -1;
    opacity: 0.6;
}

.texto-propiedad-ubicacion h3 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}

.texto-propiedad-ubicacion p {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.6px;
    font-weight: 100;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 1rem;
}


.texto-propiedad-ubicacion h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #F6F6F6;
    margin: 0 auto .5rem;
    border-bottom: 1px solid #F6F6F6;
}


.sold-out {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    /* Ajusta el tamaño según necesites */
    font-weight: bold;
    position: relative;
    margin: 20px 0;
    font-size: 25px !important;
    font-weight: 500 !important;
    letter-spacing: 2px;
    /* Espaciado superior e inferior */
}

.sold-out::before,
.sold-out::after {
    content: '';
    flex: 1;
    border-top: 1px solid white;
    margin: 0 20px;
    width: 40px;
}

.desarrollos-venta .swiper-slide {
    height: auto;
}

@media (min-width: 1200px) {
    .desarrollos-venta .swiper-slide {
        max-height: 90vh;
    }

    .propiedades-ubicacion img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
}

.desarrollos-venta .swiper-pagination-bullet-active {
    background: #F6F6F6;
    border-radius: 8px;
    width: 16px;
}


/* CUADRO */

.cuadro {
    padding: 20px 10px;
}

.cuadro .texto-lineas {
    max-width: 1176px;
    margin: 0 auto;
    margin-bottom: -26px;
    padding: 0;

}

.cuadro .texto-lineas::before,
.cuadro .texto-lineas::after {
    border-bottom: 1px solid #F6F6F6;
}

.cuadro .texto-lineas p {
    font-size: 24px;
}

.cuadro-informacion {
    max-width: 1176px;
    border: 1px solid #F6F6F6;
    margin: 0 auto;
    border-top: none;
    padding: 45px 30px;
}

.cuadro-informacion .row {
    gap: 40px;
}

.cuadro-informacion hr {
    color: #F6F6F6;
    width: 90%;
    margin: 1rem auto;
}

.cuadro-informacion .informacion {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #F6F6F6;
    width: auto;
}

.cuadro-informacion .informacion p:nth-of-type(1) {
    font-family: 'Avalone', sans-serif;
    font-size: 42px;
    margin-bottom: 0;
    letter-spacing: 2.1px;
}

.cuadro-informacion .informacion p:nth-of-type(2) {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    letter-spacing: 0.6px;
    font-weight: 100;
    line-height: 1.5;
    margin-bottom: 0;
}

.cuadro-informacion p {
    color: white;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
}

@media (min-width: 1200px) {

    .cuadro-informacion .row {
        gap: 0;
    }
}

/* SLIDER */

.contenido-valores-venta h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-ventajas a {
    background-color: transparent;
    color: #343339;
}

.venta.contenido-slider-home span {
    text-transform: none;
    letter-spacing: 0.8px;
}

.venta.contenido-valores-venta h2+p {
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0;
}

.venta .contenedor-ventajas {
    gap: 30px;
    margin: 40px 0 30px;
}

.venta .contenedor-ventajas p {
    margin-bottom: 0;
}

.contenido-valores-venta {
    color: #343339;
    background-color: rgba(255, 255, 255, .85);
    max-width: 421px;
    margin: 0px 10px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contenido-valores-venta span {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.contenido-valores-venta p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.ventajas p {
    text-wrap: nowrap;
}

.swipers.venta .swiper-button-next {
    top: unset;
    bottom: 1%;
}

.swipers.venta .swiper-button-prev {
    top: unset;
    bottom: 1%;
}

@media (min-width: 1200px) {
    .venta .contenedor-ventajas {
        margin: 40px 0 80px;
    }

    .swipers.venta .swiper-button-next {
        top: 55%;
        bottom: unset;
    }

    .swipers.venta .swiper-button-prev {
        top: 45%;
        bottom: unset;
    }

    .contenido-valores-venta p {
        font-size: 18px;
        margin-bottom: 0;
    }

    .contenido-valores-venta {
        margin: 0px 35px;
        padding: 40px 28px;
        height: 100%;
    }

}

/* CUADRO MULTIPLES PAGOS */

.cuadro-informacion1 {
    max-width: 1176px;
    border: 1px solid #F6F6F6;
    margin: 30px auto;
    padding: 45px 30px;
}

.cuadro-informacion1 hr {
    color: #F6F6F6;
    width: 90%;
    margin: 1rem auto;
}

.cuadro-informacion1 .informacion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #F6F6F6;
    width: auto;
    margin: 0 auto;
    gap: 20px;

}

.cuadro-informacion1 p {
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .cuadro-informacion1 .informacion {
        flex-direction: row;
    }

    .texto-ubicacion-venta {
        width: 100%;
    }
}

/* FORMULARIO UBICACIOON VENTA */


.formulario-ubicacion {
    padding: 40px 0;
    background-color: #343339
}

.formulario-ubicacion p {
    color: #F6F6F6;
    font-size: 20px;
    line-height: 40px;
    text-align: center;

}

.formulario-ubicacion button+p {
    margin-bottom: 0;
}

.formulario-contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 0;
    background: #343339 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
}

.formulario-contacto {
    position: relative;
}

.formulario-contacto div {
    position: relative;
    z-index: 1;
}

.formulario-contacto h2 {
    color: #F6F6F6;
    text-align: center;
}

.formulario-contacto span {
    font-size: 32px;
}

.formulario-contacto form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 392px;
}


.formulario-contacto button {
    border: 1px solid #F6F6F6;
    border-radius: 4px;
    font-size: 18px;
    max-width: 280px;
    background-color: transparent;
    color: #F6F6F6;
    margin: 0 auto;
    height: 50px;
    width: 100%;
}


.formulario-contacto a {
    border: 1px solid #F6F6F6;
    border-radius: 4px;
    font-size: 18px;
    max-width: 280px;
    background-color: transparent;
    color: #F6F6F6;
    margin: 0 auto;
    text-decoration: none;
    height: 50px;
    width: 100%;
    text-align: center;
    padding: 12px;
}

.formulario-contacto input {
    border: 1px solid #F6F6F6;
    border-radius: 4px;
    padding: 10px;
    font-size: 20px;
    max-width: 395px;
}

.formulario-contacto {
    background-image: url('/img/bg-formulario1.png');
    padding: 50px 20px;
    background-size: cover;
}

.formulario-contacto p br{
    display: none;
}

@media (min-width: 1200px) {
    .formulario-ubicacion {
        padding: 40px 40px 80px;
    }

    .formulario-contacto h2 {
        text-align: left;
    }

    .formulario-ubicacion p {
        text-align: left;
        line-height: 31px;
        font-weight: 300;
    }
}


/* ################################ HOME RENTA ################################### */

/* HERO RENTA */

.texto-hero {
    position: relative;
    margin-bottom: 30px;
}

.texto-hero h2 {
    color: white;
    text-wrap: nowrap;
}

.texto-hero p {
    font-size: 1.875rem;
    color: white;
    letter-spacing: 1.5px;
    margin-bottom: 23px;
}

.header {
    z-index: 2;
    height: 100%;
}

.header .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #34333900 0%, #343339 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    opacity: 0.6;
    z-index: 1;
}

.header .swiper-slide {
    position: relative;
}

.header .swiper-pagination {
    right: 30px;
}

.header .swiper-pagination-bullet {
    background-color: white;
    width: 12px;
    height: 12px;
    opacity: .8;
}

.header .swiper-pagination-bullet-active {
    width: 12px;
    height: 24px;
    border-radius: 30px;
    opacity: 1;
}

.enlace-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 160px;
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: .6px;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.enlace-header a {
    color: white;
    text-decoration: none;
}

.enlace-header strong {
    font-size: 1.25rem;
    font-family: 'Avalone', sans-serif;
    letter-spacing: 1px;
}

.enlace-header::after {
    content: url('/img/chevron-right-solid.svg');
    margin-left: 10px;
    height: 16px;
    display: inline-block;
    width: 10px;
    vertical-align: middle;
}

.enlace-header strong {
    font-size: 1.25rem;
    font-family: 'Avalone', sans-serif;
    letter-spacing: 1px;
}


@media (min-width: 1200px) {

    .texto-hero {
        position: relative;
        margin-bottom: 0;
    }

    .texto-hero h2 {
        font-size: 3.75rem;
        color: white;
        letter-spacing: 3px;
    }

    .enlace-header {
        left: unset;
        transform: none;
        right: 5%;
        bottom: 150px;
        width: auto;
        bottom: 8%;
    }

}


/* RENTA */
.renta {
    background-color: #F6F6F6;
}

.rentas.swiper {
    width: 95%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}



.card-renta {
    width: 300px;
    height: auto;
    background-color: white;
    border-radius: 10px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.card-renta .imagen-renta {
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
}

.card-renta .imagen-renta img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.contenido-renta {
    width: 100%;
    text-align: left;
    margin: 10px 0;
}

.contenido-renta p {
    margin: 0;
    padding: 0;
}

.rentas .swiper-button-prev {
    left: auto;
    right: 80px;
    top: 30px;
}

.rentas .swiper-button-next {
    left: auto;
    right: 10px;
    top: 30px;
}

.rentas .swiper-button-prev,
.rentas .swiper-button-next {
    color: black;
    background-color: white;
    padding: 30px;
    border-radius: 50%;
}

.rentas .swiper-wrapper {
    padding-bottom: 50px;
    padding-top: 100px;
}

.rentas .swiper-button-prev:after,
.rentas .swiper-button-next::after {
    font-size: 25px;
}

.texto-lineas-left.navs {
    margin-bottom: -105px;
}

.contenido-renta a {
    text-decoration: none;
    color: #343338;
}

.renta .texto-lineas-left p {
    width: auto;
}

.rentas .swiper-button-next,
.rentas .swiper-button-prev {
    display: none;
}

@media (min-width: 1200px) {
    .navs.texto-lineas-left::after {
        margin-right: 10%;
    }

    .rentas .swiper-button-next,
    .rentas .swiper-button-prev {
        display: flex;
    }
}

/* EXPERIENCIA */

.textosM p {
    padding: 0 15px;
}

.textos {
    display: none;
}

.experiencias-swiper {
    padding: 15px;
}

.experiencia {
    background-color: #F6F6F6;
}

.textos.texto-lineas-left::after {
    margin-left: 0px;
}

.texto-lineas-left.textos p {
    width: 100%;
    line-height: 30px;
    margin: 0;
    text-align: center;
    font-weight: 200;
    font-size: 20px;
}

.texto-lineas-left.textos span {
    font-family: 'Avalone', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.experiencias {
    background-color: #F6F6F6;
    padding-bottom: 50px;
}

.experiencia {
    position: relative;
    overflow: hidden;
    height: 80vh;
}

.experiencia img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
}

.overley-experiencia {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity .5s;
    color: #fff;
    font-size: 2.75rem;
    letter-spacing: 2.2px;
    line-height: 26px;
    min-height: 30%;
}

.overley-experiencia::before {
    background: transparent linear-gradient(180deg, #34333900 0%, #343339 100%) 0% 0% no-repeat padding-box;
    opacity: 0.6;
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.overley-experiencia::after {
    background: transparent linear-gradient(180deg, #34333900 0%, #343339 100%) 0% 0% no-repeat padding-box;
    opacity: 0.6;
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.overley-experiencia .body-oferta {
    position: relative;
    z-index: 2;
    align-items: flex-end;
}

.overley-experiencia .cta-oferta a,
.overley-experiencia .cta-oferta a:hover {
    background-color: transparent;
    border: 1px solid white !important;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.overley-experiencia .alojamientos-ubicacion {
    letter-spacing: 0;
}


@media (min-width: 1200px) {

    .textosM {
        display: none;
    }

    .textos {
        display: flex;
    }

    .texto-lineas-left.textos {
        align-items: flex-end;
    }

    .texto-lineas-left.textos p {
        text-align: left;
    }

    .overley-experiencia {
        opacity: 0;
    }

    .experiencia:hover .overley-experiencia {
        opacity: 1;
    }

    .experiencias-swiper {
        padding: 0 40px;
    }
}

/* EXPERIENCIA */

.alojamientos-precio {
    letter-spacing: 0;
}



/* VALORACION */

.valoraciones {
    position: relative;
    width: 100%;
    height: 105vh;
    overflow: hidden;
}

.valoraciones video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.valoraciones .hero-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.contenido-valoracion,
.valoracion {
    background-color: rgba(255, 255, 255, .85);
    max-width: 421px;
    margin: 10px;
    padding: 10px 28px;
    display: flex;
}

.contenido-valoracion {
    flex-direction: column;
}

.valoracion {
    align-items: center;
}

.valoracion img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
}

.texto-valoracion p {
    font-size: 1rem;
    margin: 0;
}

.texto-valoracion p:first-child {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.texto-valoracion p:last-child {
    font-weight: 700;
    font-family: 'Avalone', sans-serif;
}

.texto-valoracion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-valoracion {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Avalone', sans-serif;
    font-size: 1.25rem;
}


.rating-valoracion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: .875rem;
}

.body-valoracion h3 {
    font-size: 2rem;
    letter-spacing: 2px;
}

.ubicacion-valoracion {
    font-size: 1rem;
}

.precio-valoracion {
    font-size: 1rem;
    font-weight: 700;
}

.precio-valoracion span {
    font-size: .875rem;
    font-weight: 400;

}

.cta-valoracion {
    display: flex;
    justify-content: center;
}

.cta-valoracion a {
    padding: 8px 20px;
    background-color: transparent;
    color: #343338;
    font-size: 1.125rem;
    font-weight: 400;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #343338;
    width: 100%;
}

.cta-valoracion a:hover {
    background-color: #343338;
    color: white;
}

@media (min-width: 1200px) {
    .body-valoracion h3 {
        font-size: 2.5rem;
    }

    .contenido-valoracion,
    .valoracion {
        margin: 10px 35px;
    }
}

/* ################################ DESARROLLO VENTA ################################### */

/* MAPA */

.custom-marker {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 1px solid #394659;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.custom-tooltip {
    position: absolute;
    background-color: white;
    padding: 8px 18px;
    border: none transparent;
    border-radius: 8px;
    transform: translate(-50%, -100%);
    white-space: nowrap;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: 100;
    cursor: pointer;
    color: black;
}

.custom-marker.selected {
    background-color: #394659 !important;
}

.custom-tooltip.selected {
    font-weight: 700 !important;
    padding: 12px 30px !important;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}


#reserva {
    cursor: pointer;
}

input.error {
    border: 2px solid red;
    /* Puedes agregar otros estilos si lo deseas */
}

input.error:focus {
    outline: none;
    box-shadow: 0 0 5px red;
}

