/*
Theme Name: CasitasDeLaAzucenaTheme
Author: Hugo Díaz
Description: Estilos de CasitasDeLaAzucena
Version: 1.0.0
Template: genesis
*/

@import "../genesis/style.css";

@view-transition {
  navigation: auto;
}

/*** FUENTES ***/
@font-face {
    font-family: 'Nunito';
    src: url(./fonts/nunito/static/Nunito-Medium.ttf);
}

/*** VARIABLES PARA TODA LA APP ***/
:root{
	--primary-font: Verdana;
	--secondary-font: 'Lucida Sans Unicode';
    --third-font: 'Nunito';
	--primary-brown: #7F4111;
	--secondary-brown: #5D351E;
	--third-brown: #CFC6B9;
    --black-hover: #484848;
	--primary-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

*{
    box-sizing: border-box;
}

input[type="radio"]{
    accent-color: var(--secondary-brown);
}

main:not(:has(.index-section--img)){
    padding: 3rem 0;
}

*::selection{
    background-color: var(--secondary-brown);
    color: var(--third-brown);
    color: white;
}

body {
    padding:0;
    margin:0; 
	box-sizing: border-box;
	font-family: 'Verdana';
    background-color: #F6F6F6;
}

body::-webkit-scrollbar {
    width: .7rem;
    height: .7rem;
}
  
body::-webkit-scrollbar-track {
    background: var(--third-brown);
    border-radius: .3rem;
}
  
body::-webkit-scrollbar-thumb {
    background: var(--primary-brown);
    border-radius: .3rem;
}

@media screen and (width < 500px) {
    body::-webkit-scrollbar {
        width: .3rem;
    }
}

.elementor-icon-box-wrapper {
    position:relative;
    top:-50px;
}

strong{
	color: var(--primary-brown);
}

.separation-blocks{
	margin: 1rem 0;
}

textarea{
	resize: none;
}

/******* ESTILOS SHORTCODE --> TITLES_FLOWERS *******/
.block_title_with_flowers{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.block_title_with_flowers-div--img{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: -.5rem;
}

.block_title_with_flowers-div--img__img{
	width: 50%;
}

.block_title_with_flowers-div--title{
	display: flex;
	justify-content: center;
	align-items: center;
}

.block_title_with_flowers-div--title__hr{
	height: 2px;
	width: 30vw;
	background-color: var(--secondary-brown);
}

.block_title_with_flowers-div--title__title{
	color: var(--primary-brown);
	text-align: center;
	width: 30vw;
}

@media screen and (width < 800px) {
	.block_title_with_flowers-div--title__hr{
		display: none;
	}

	.block_title_with_flowers-div--title__title{
		width: 85vw;
	}
}
/******* FIN ESTILOS SHORTCODE --> TITLES_FLOWERS *******/

/******* ESTILOS POP-UP *******/
.pum-close{
	background-color: var(--primary-brown) !important;
	transition: all 300ms linear;
}

#popmake-202, #popmake-146, #popmake-75{
    top: auto !important;
    bottom: -36px !important;
    position: fixed !important;
    right: 10px !important;
    border-radius: 1rem;
    a{
        text-decoration: none;
        p{
            color: var(--secondary-brown);
        }
    }
}

.wpcf7-response-output{
    display: none;
}

/***************************** INICIO *****************************/

/******* ESTILOS SHORTCODE --> BLOCK-SLOGAN-INDEX *******/
.index-section--img{
	width: 100%;
    height: calc(100vw* .31);
    background-image: url(../../uploads/2025/10/image-principal.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 90% 50%;
    margin-bottom: 2rem;
}

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

.index-section--eslogan__title{
	width: 80%;
	text-align: center;
	text-wrap: pretty;
	color: var(--primary-brown);
	font-weight: 600;
}

.index-section--eslogan__desc{
	width: 80%;
	text-wrap: pretty;
	color: var(--secondary-brown);
}

@media screen and (width < 1000px) {
    .index-section--img{
        height: calc(100vw* .5);
    }
}
/******* FIN ESTILOS SHORTCODE --> BLOCK-SLOGAN-INDEX *******/

/******* ESTILOS SHORTCODE --> BLOCK-APARTMENTS-INDEX *******/
.index-main__section--apartments__div--articles{
	display: flex;
	justify-content: center;
	align-items: center;
}

.index-main__section--apartments__div--articles > div{
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 90%;
}

.index-main__section--apartments__div--articles__article{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    gap: 1rem;
}

@keyframes fade-in-top {
    0%{
        opacity: 0;
        translate: 0px 100px;

    }
    100%{
        opacity: 1;
        translate: 0 0;
    }
}

.index-main__section--apartments__div--articles__article__img{
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: end;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: .5rem;
    box-shadow: var(--primary-shadow);
}

.index-main__section--apartments__div--articles__article__img__anchor{
    color: white;
    font-weight: 600;
    font-size: .9rem;
    background-color: rgb(76, 129, 76);
    border-radius: 2rem;
    padding: .6rem 1rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    font-family: var(--third-font);
    border: 2px solid var(--third-brown);
}

.index-main__section--apartments__div--articles__article__img__anchor:hover{
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.index-main__section--apartments__div--articles__article__title{
    color: var(--primary-brown);
    text-align: center;
    text-wrap: pretty;
}

.index-main__section--apartments__div--articles__article__desc{
    color: var(--secondary-brown);
    text-align: center;
    text-wrap: pretty;
    height: 50px;
}

.index-main__section--apartments__div--articles__article__book{
    color: white;
    background-color: #F08616;
    background-color: var(--primary-brown);
    border-radius: 2rem;
    padding: .8rem 2rem;
    text-decoration: none;
    font-family: var(--third-font);
    border: 2px solid var(--third-brown);
    letter-spacing: .2rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.index-main__section--apartments__div--desc{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
    margin-top: 1.5rem;
}

.index-main__section--apartments__div--desc__text{
	width: 80%;
	text-wrap: pretty;
    text-align: center;
    color: var(--secondary-brown);
}

.index-main__section--apartments__div--desc__icons{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 2rem;
    padding: .8rem;
    margin: 2rem 0;
}

.index-main__section--apartments__div--desc__icons__div{
	display: flex;
	align-items: center;
	flex-direction: column;
}

.index-main__section--apartments__div--desc__icons__div__title{
    font-weight: 600;
    font-size: 1rem;
	text-align: center;
	color: var(--primary-brown);
	font-family: var(--secondary-font);
	text-wrap: pretty;
}

.index-main__section--apartments__div--desc__icons__div__img{
    width: 90px;
	height: auto;
}

@media (width < 1400px) {
    .index-main__section--apartments__div--articles > div{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .index-main__section--apartments__div--articles__article__desc{
        width: 70%;
    }
}

@media (width < 1200px) {
    .index-main__section--apartments__div--desc__icons{
        width: 85%;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (width < 800px) {
    .index-main__section--apartments__div--articles > div{
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
    }

    .index-main__section--apartments__div--articles__article{
        animation: fade-in-top linear both;
        animation-timeline: view();
        animation-range: entry 10% cover 50%;
    }

    .index-main__section--apartments__div--articles__article__desc{
        height:auto;
    }
}

@media (width < 600px) {
    .index-main__section--apartments__div--desc__icons{
        grid-template-columns: repeat(2, 1fr);
    }
}
/******* FIN ESTILOS SHORTCODE --> BLOCK-APARTMENTS-INDEX *******/

/******* ESTILOS SHORTCODE --> BLOCK-CONTACT *******/
.index-main__section--contact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.index-main__section--contact__div--desc{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    flex-direction: column;
}

.index-main__section--contact__div--desc__text{
    width: 80%;
    color: var(--secondary-brown);
    text-align: center;
}

.index-main__section--contact__div--form__ubi__map__iframe{
	height: 450px;
}

.index-main__section--contact__div--form{
    padding: 2rem;
    justify-content: center;
    display: flex;
    gap: 2rem;
}

.index-main__section--contact__div--form__ubi{
    display: flex;
    flex-direction: column;
}

.index-main__section--contact__div--form__ubi__div{
    display: flex;
    gap: .5rem;
}

.index-main__section--contact__div--form__ubi__phone__img,
.index-main__section--contact__div--form__ubi__email__img{
	width: 45px;
	height: auto;
}

.index-main__section--contact__div--form__ubi__email__img, 
.index-main__section--contact__div--form__ubi__email__text, 
.index-main__section--contact__div--form__ubi__phone__img,
.index-main__section--contact__div--form__ubi__phone__text{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-brown);
    gap: .3rem;
    a{
        text-decoration: none;
        color: var(--primary-brown);
    }
}

.index-main__section--contact__div--form__form__form{
    display: flex;
    flex-direction: column;
}

.index-main__section--contact__div--form__form__form__div{
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.index-main__section--contact__div--form__form__form__div__label{
    color: var(--primary-brown);
    font-size: .9rem;
    margin-bottom: .5rem;
}

.index-main__section--contact__div--form__form__form__div__input, 
.index-main__section--contact__div--form__form__form__div__textarea{
    padding: .5rem;
    color: var(--secondary-brown);
    font-weight: 700;
    width: 20rem;
    border: 2px solid var(--primary-brown);
    font-family: var(--primary-font);
    box-sizing: border-box;
    margin-top: .4rem;
}

.index-main__section--contact__div--form__form__form__div__textarea{
    height: 10rem;
    resize: none;
}

.index-main__section--contact__div--form__form__form__div--submit{
    margin-top: .5rem;
    display: flex;
	justify-content: center;
	align-items: center;
}

.index-main__section--contact__div--form__form__form__div--submit > p{
	width: 100%;
	margin-top: -.5rem;
	display: flex;
	flex-direction: column;
}

.index-main__section--contact__div--form__form__form__div--submit__submit{
    padding: .5rem 1rem;
    color: var(--secondary-brown);
    background-color: var(--third-brown);
    font-weight: 600;
    border: 2px solid var(--primary-brown);
    cursor: pointer;
    font-family: var(--third-font);
    letter-spacing: .1rem;
	width: 100%;
    transition: all 200ms linear;
}

.index-main__section--contact__div--form__form__form__div--submit__submit:hover{
    color: var(--primary-brown);
}

@media (width < 1050px) {
    .index-main__section--contact__div--form{
        flex-direction: column;
        gap: 4rem;
    }

    .index-main__section--contact__div--form__ubi{
        order: 2;
    }

    .index-main__section--contact__div--form__ubi__div{
        justify-content: center;
        align-items: center;
    }

    .index-main__section--contact__div--form__form__form__div__input, 
	.index-main__section--contact__div--form__form__form__div__textarea{
        width: 100% !important;
    }
}

@media screen and (width < 750px) {
    .index-main__section--contact__div--form__ubi__map__iframe{
        width:100% !important;
        height: auto;
    }
}

@media (width < 600px) {
    .index-main__section--apartments__div--desc__icons{
        grid-template-columns: repeat(2, 1fr);
    }

    .index-main__section--contact__div--form__ubi__map{
        overflow: hidden;
    }

    .index-main__section--contact__div--form__ubi__map__iframe{
        display: none;
    }
}

@media (width < 500px) {
    .index-main__section--contact__div--form__ubi__div{
        font-size: .7rem;
    }
}
/******* ESTILOS SHORTCODE --> BLOCK-CONTACT *******/

/***************************** FIN INICIO *****************************/


/***************************** ALOJAMIENTOS *****************************/

/******* ESTILOS SHORTCODE --> BLOCKs-APARTMENTS *******/
.apartments-section--info{
	display: flex;
	justify-content: center;
	align-items: center;
}

.apartments-section--info__div{
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.apartments-section--info__div__div--desc{
	display: flex;
	justify-content: center;
	align-items: center;
}

.apartments-section--info__div__div--desc__desc{
    color: var(--secondary-brown);
    font-size: 1rem;
    text-align: center;
    text-wrap: pretty;
}

.apartments-section--info__div__div--options{
	display: grid;
	justify-content: center;
	align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.apartments-section--info__div__div--options__apartment{
	padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.scaleEffect{
	overflow: hidden;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 1rem;
}

.apartments-section--info__div__div--options__apartment__img{
	width: 32vw;
    height: calc(32vw*0.75);
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 300ms ease-in-out;
}

.scaleEffect:hover .apartments-section--info__div__div--options__apartment__img{
	transform: scale(1.1);
    filter: grayscale(.8);
}

.apartments-section--info__div__div--options__apartment__img.canada{
    background-image: url(../../uploads/2024/06/apartments/canada/canada-dormitorio-2.png);
}

.apartments-section--info__div__div--options__apartment__img.mirador{
    background-image: url(../../uploads/2024/06/apartments/mirador/mirador-dormitorio-1.png);
}

.apartments-section--info__div__div--options__apartment__img.rincon{
    background-image: url(../../uploads/2024/06/apartments/rincon/rincon-salon-1.png);
}

.apartments-section--info__div__div--options__apartment__img.casona{
    background-image: url(../../uploads/2024/06/apartments/casona/casona-cocina-3.png);
}

.apartments-section--info__div__div--options__apartment__anchor{
	color: var(--primary-brown);
    background-color: white;
    border-radius: .5rem;
    padding: .8rem 1.2rem;
    text-decoration: none;
    margin-bottom: 2rem;
    border: 2px solid var(--third-brown);
    box-shadow: 0 .35rem 0 rgba(0, 0, 0, .15);
    font-weight: 700;
    letter-spacing: 1px;
	font-family: var(--third-font);

}

.apartments-section--info__div__div--options__apartment__anchor:hover{
    background-color: whitesmoke;
    transition: all 200ms linear;
}

.apartments-section--info__div__div--options__apartment__anchor:active{
    box-shadow: inset 0 .2rem 0 rgba(0, 0, 0, .15);
}

@media (width < 900px) {
    .apartments-section--info__div__div--options{
        grid-template-columns: repeat(1, 1fr);
    }

    .apartments-section--info__div__div--options__apartment__img{
        width: 60vw;
        height: calc(60vw*0.75);
        filter: grayscale(0);
    }
}

@media (width < 550px) {
	.apartments-section--info__div__div--options__apartment__anchor{
		font-size: .8rem;
		padding: .6rem .9rem;
	}

	.apartments-section--info__div__div--options__apartment__img{
        width: 80vw;
        height: calc(80vw*0.75);
    }
}

/******* FIN ESTILOS SHORTCODE --> BLOCKS-APARTMENTS *******/

/***************************** FIN ALOJAMIENTOS *****************************/


/***************************** TARIFAS *****************************/

/******* ESTILOS SHORTCODE --> BLOCK-MAIN-RATES *******/
.rates-main__section--rates{
	width: 100%;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
}

.rates-main__section--rates__article{
	width: 80%;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
}

.rates-main__section--rates__article__title{
	text-align: center;
    color: var(--primary-brown);
    font-size: 1.3rem;
	text-wrap: pretty;
}

.rates-main__section--rates__article > div {
	display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
	width: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.rates-main__section--rates__article > div::-webkit-scrollbar {
    height: .8rem;
}
  
.rates-main__section--rates__article > div::-webkit-scrollbar-track {
    background: var(--third-brown);
    border-radius: .5rem;
}
  
.rates-main__section--rates__article > div::-webkit-scrollbar-thumb {
    background: var(--primary-brown);
    border-radius: .5rem;
}

.rates-main__section--rates__article__table{
	font-family: var(--secondary-font);
	width: 100%;
}

.rates-main__section--rates__article__table__td,
.rates-main__section--rates__article__table__th{
    padding: 1rem;
    text-align: center;
    text-wrap: pretty;
    font-weight: bold;
}

.rates-main__section--rates__article__table__td{
	font-size: .8rem;
}

.rates-main__section--rates__article__table__td:first-child{
	background-color: var(--third-brown);
}

.rates-main__section--rates__article__table__th{
	color: white;
    background-color: var(--primary-brown);
}

.rates-main__section--rates__text{
    margin: 4rem 0 2rem;
    text-align: center;
    text-wrap: pretty;
    font-size: .8rem;
    color: var(--primary-brown);
    font-weight: bold;
    font-style: italic;
	width: 80%;
    font-family: var(--secondary-font);
}

@media screen and (width < 1000px) {
	.rates-main__section--rates__article > div{
		justify-content: start;
	}
}

/******* FIN ESTILOS SHORTCODE --> BLOCK-MAIN-RATES *******/

/***************************** FIN TARIFAS *****************************/








/***************************** TARIFAS *****************************/

/******* ESTILOS SHORTCODE --> BLOCK-MAIN-RATES *******/
#rates .rates-main__section--rates{
	width: 100%;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
}

#rates .rates-main__section--rates__article{
	width: 80%;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
}

#rates .rates-main__section--rates__article__title{
	text-align: center;
    color: var(--primary-brown);
    font-size: 1.3rem;
	text-wrap: pretty;
}

#rates .rates-main__section--rates__article > div {
	display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
	width: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#rates .rates-main__section--rates__article > div::-webkit-scrollbar {
    height: .8rem;
}
  
#rates .rates-main__section--rates__article > div::-webkit-scrollbar-track {
    background: var(--third-brown);
    border-radius: .5rem;
}
  
#rates .rates-main__section--rates__article > div::-webkit-scrollbar-thumb {
    background: var(--primary-brown);
    border-radius: .5rem;
}

#rates table{
	font-family: var(--secondary-font);
	width: 100%;
}

#rates table td,
#rates table th{
    padding: 1rem;
    text-align: center;
    text-wrap: pretty;
    font-weight: bold;
}

#rates table td{
	font-size: .8rem;
    border: 3px solid #f6f6f6;
}

#rates table td:first-child{
    width: 30%;
	background-color: var(--third-brown);
}

#rates table tr:first-child td:not(:first-child){
	color: white;
    background-color: var(--primary-brown);
}

#rates .rates-main__section--rates__text{
    margin: 4rem 0 2rem;
    text-align: center;
    text-wrap: pretty;
    font-size: .8rem;
    color: var(--primary-brown);
    font-weight: bold;
    font-style: italic;
	width: 80%;
    font-family: var(--secondary-font);
}

@media screen and (width < 1000px) {
	#rates .rates-main__section--rates__article > div{
		justify-content: start;
	}
}

/******* FIN ESTILOS SHORTCODE --> BLOCK-MAIN-RATES *******/

/***************************** FIN TARIFAS *****************************/









/***************************** RESERVAS *****************************/

/******* ESTILOS SHORTCODE --> BLOCK-DESC-FORM (FORMULARIO DE RESERVAS) *******/
.booking-main__section--booking{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.booking-main__section--booking > div{
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.booking-main__section--booking__div--desc{
	display: flex;
	flex-direction: column;
}

.booking-main__section--booking__div--desc__text{
	color: var(--secondary-brown);
    text-wrap: pretty;
}

/* ETIQUETA FORM DEL FORMULARIO DE RESERVAS */
.booking-main__section--booking .wpcf7{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.booking-main__section--booking .wpcf7-form{ 
	display: flex;
	gap: 1rem;
	width: 90%;
	justify-content: center;
}

.booking-main__section--booking__div--form{
	display: flex;
	justify-content: center;
	align-items: center;
}

.booking-main__section--booking__div--form__div__form{
	display: flex;
	flex-direction: column;
	align-items: start !important;
	justify-content: start !important;
}

.booking-main__section--booking__div--form__div__form__div{
	width: 100%;
}

.booking-main__section--booking__div--form__div__form__div p > span{
	width: 100%;
}

.booking-main__section--booking__div--form__div__form__div p > span > select,
.booking-main__section--booking__div--form__div__form__div p > input[type="submit"],
.booking-main__section--booking__div--form__div__form__div p > span > input[type="date"]{
	width: 100% !important;
}

.booking-main__section--booking__div--form__div__form__div p{
	display: flex;
	flex-direction: column;
}

.booking-main__section--booking__div--form__div__form__div__label{
    color: var(--primary-brown);
    font-size: .9rem;
	margin-bottom: -.5rem;
}

.booking-main__section--booking__div--form__div__form__div__input, 
.booking-main__section--booking__div--form__div__form__div__textarea,
.booking-main__section--booking__div--form__div__form__div--submit__submit{
    padding: .5rem;
    color: var(--secondary-brown);
    font-weight: 700;
    width: 22rem;
    border: 2px solid var(--primary-brown);
    font-family: var(--third-font);
    box-sizing: border-box;
}

.wpcf7-list-item{
    margin: 0 !important;
}

.wpcf7-list-item-label{
    color: var(--secondary-brown) !important;
}



.booking-main__section--booking__div--form__div__form__div--submit{
	width: 100%;
}

.booking-main__section--booking__div--form__div__form__div--submit > p{
	width: 100%;
}

.booking-main__section--booking__div--form__div__form__div--submit__submit{
	padding: .5rem 1rem;
    color: var(--secondary-brown);
    background-color: var(--third-brown);
    font-weight: 600;
    border: 2px solid var(--primary-brown);
    cursor: pointer;
    letter-spacing: .1rem;
	transition: all 200ms linear;
}

.booking-main__section--booking__div--form__div__form__div--submit__submit:hover{
    color: var(--primary-brown);
}

#pets-verification{
    border: none;
    outline: none;
	display: flex;
	gap: 2rem;
}

#pets-verification .wpcf7-list-item{
	margin: 0;
}

@media screen and (width < 900px) {
	.booking-main__section--booking__div--form__div__form__div__input, 
	.booking-main__section--booking__div--form__div__form__div__textarea,
	.booking-main__section--booking__div--form__div__form__div--submit__submit,
    .booking-main__section--booking__div--form__div__form__div p > span > select,
    .booking-main__section--booking__div--form__div__form__div p > input[type="submit"],
    .booking-main__section--booking__div--form__div__form__div p > span > input[type="date"]{
		width: 100% !important;
	}
}

@media screen and (width < 750px) {
	.booking-main__section--booking .wpcf7-form{ 
		flex-direction: column;
		gap: 0;
	}

    .booking-main__section--booking__div--form__div__form__div__input, 
	.booking-main__section--booking__div--form__div__form__div__textarea,
	.booking-main__section--booking__div--form__div__form__div--submit__submit,
    .booking-main__section--booking__div--form__div__form__div p > span > select,
    .booking-main__section--booking__div--form__div__form__div p > input[type="submit"],
    .booking-main__section--booking__div--form__div__form__div p > span > input[type="date"]{
		min-width: 100% !important;
	}
}

.booking-main__section--booking__div--additionalInfo__text{
	text-align: center;
	color: var(--secondary-brown);
	font-size: .8rem;
	font-weight: bold;
    font-family: var(--secondary-font);
}

.booking-main__section--booking__div--contact{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.booking-main__section--booking__div--contact__div{
	display: flex;
	justify-content: center;
	align-items: center;
}

.booking-main__section--booking__div--contact__div__img{
	width: 50px;
}

.booking-main__section--booking__div--contact__div__text{
    color: var(--secondary-brown);
}

@media screen and (width < 500px) {
	.booking-main__section--booking__div--contact__div{
		flex-direction: column;
		margin-top: 2rem;
	}

	.booking-main__section--booking__div--contact__div__img{
		margin-bottom: -1rem;
	}

    .booking-main__section--booking__div--contact__div__text{
        font-size: .8rem;
}

}
/******* FIN ESTILOS SHORTCODE --> BLOCK-DESC-FORM (FORMULARIO DE RESERVAS) *******/

/***************************** FIN RESERVAS *****************************/


/***************************** ENTORNO Y PATRIMONIO *****************************/

/******* ESTILOS SHORTCODE --> BLOCK-DESC-ENVIRONMENT *******/
.environment-main__section--desc{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-bottom: 4rem;
}

.environment-main__section--desc__desc{
    width: 85%;
    margin-top: 1rem;
    color: var(--secondary-brown);
}
/******* FIN ESTILOS SHORTCODE --> BLOCK-DESC-ENVIRONMENT *******/

/******* ESTILOS SHORTCODE --> BLOCKS-ENVIRONMENT-CHARACTERISTICS *******/
.environment-main__section--environment{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 4rem;
}

.environment-main__section--environment__div{
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.environment-main__section--environment__div__div--img{
	display: flex;
    justify-content: center;
    align-items: center;
	margin-bottom: -1rem;
}

.environment-main__section--environment__div__div--img__img{
	width: 60px;
}

.environment-main__section--environment__div__div--title{
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.environment-main__section--environment__div__div--title__hr{
	height: 2px;
    background-color: var(--secondary-brown);
    width: 30vw;
}

.environment-main__section--environment__div__div--title__title{
	color: var(--primary-brown);
    text-align: center;
    width: 30vw;
}

.environment-main__section--environment__div__div--main{
	display: flex;
    width: 80%;
    margin-top: 1rem;
    justify-content: space-between;
    gap: 2rem;
}

.environment-main__section--environment__div__div--main__div--places{
	display: flex;
    width: 100%;
    flex-direction: column;
    gap: .4rem;
    justify-content: center;
}

.environment-main__section--environment__div__div--main__div--places__list{
	display: flex;
    gap: .8rem;
    align-items: center;
}

.environment-main__section--environment__div__div--main__div--places__list__img{
	width: 25px;
}

.environment-main__section--environment__div__div--main__div--places__list__name{
	font-size: .9rem;
    font-weight: bold;
	color: var(--secondary-brown);
}

.environment-main__section--environment__div__div--main__div--places--img__img{
	height: auto;
    width: 400px;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / .5);
}

@media screen and (width < 1000px) {
    .environment-main__section--environment__div__div--main{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .environment-main__section--environment__div__div--main__div--places{
        justify-content: center;
        order: 2;
    }

    .environment-main__section--environment__div__div--main__div--img{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .environment-main__section--environment__div__div--main__div--img__img{
        width: 80%;
    }
}

@media screen and (width < 800px) {
    .environment-main__section--environment__div__div--title__hr{
        display: none;
    }

    .environment-main__section--environment__div__div--title__title{
        width: 85vw;
    }
}

@media screen and (width < 600px) {
    .environment-main__section--environment__div__div--main__div--img__img{
        width: 95%;
    }
}

@media screen and (width < 500px) {
	.environment-main__section--environment__div__div--main{
		width: 100%;
	}

	.environment-main__section--environment__div__div--main__div--places--img__img{
		width: 90%;
	}
	
}
/******* FIN ESTILOS SHORTCODE --> BLOCKS-ENVIRONMENT-CHARACTERISTICS *******/

/***************************** FIN ENTORNO Y PATRIMONIO *****************************/


/***************************** SOBRE NOSOTROS *****************************/

/******* ESTILOS SHORTCODE --> BLOCKS-ABOUT-US *******/
.aboutUs-section--info{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 4rem;
}

.aboutUs-section--info__div{
	width: 80%;
    display: flex;
    margin-top: 2rem;
    gap: 7rem;
}

.aboutUs-section--info__div__div--text{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--secondary-brown);
	font-size: 1.1rem;	
}

.aboutUs-section--info__div__div--img{
	display: flex;
	justify-content: center;
	align-items: center;
}

.aboutUs-section--info__div__div--img__img{
    box-shadow: var(--primary-shadow);
    border-radius: 1rem;
	width: 400px;
	height: auto;
}

@media (width < 1200px) {
    .aboutUs-section--info__div{
        flex-direction: column;
        gap: 4rem;
    }

	.aboutUs-section--info__div__div--img__img{
		width: 80%;
	}

	.aboutUs-section--info__div__div--text{
		order: 2;
	}
}

@media screen and (width < 600px) {
	.aboutUs-section--info__div{
		width: 90%;
	}

	.aboutUs-section--info__div__div--img__img{
		width: 90%;
	}

	.aboutUs-section--info__div__div--text{
		font-size: .9rem;
	}
}
/******* FIN ESTILOS SHORTCODE --> BLOCKS-ABOUT-US *******/

/*******ESTILOS SHORTCODE --> BLOCKS-VALORS-US *******/
.aboutUs-section--values{
	display: flex;
	justify-content: center;
	align-items: center;
}

.aboutUs-section--values__div{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
	width: 80%;
}

.aboutUs-section--values__div__value{
	display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    gap: .5rem;
}

.aboutUs-section--values__div__value__img{
	width: 40%;
}

.aboutUs-section--values__div__value__title{
	text-align: center;
    text-wrap: pretty;
    color: var(--primary-brown);
}

.aboutUs-section--values__div__value__desc{
    font-size: 1.1rem;
    width: 90%;
    text-wrap: pretty;
    color: var(--secondary-brown);
}

@media (width < 1200px) {
    .aboutUs-section--values__div{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (width < 900px) {
    .aboutUs-section--values__div{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width < 600px) {
    .aboutUs-section--values__div{
        grid-template-columns: repeat(1, 1fr);
    }

    .aboutUs-section--values__div__value__img{
        width: 20%;
    }
}
/*******FIN ESTILOS SHORTCODE --> BLOCKS-VALORS-US *******/

/***************************** FIN SOBRE NOSOTROS *****************************/


/***************************** SHORTCODES APARTAMENTOS CONCRETOS *****************************/

/******* ESTILOS SHORTCODE --> BLOCK-GRID-PRINCIPAL-IMGS *******/
.locals-main__section--gallery{
	display: flex;
	justify-content: center;
	align-items: center;
}

.locals-main__section--gallery > div{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	width: 70vw;
	gap: 1rem;
}

.locals-main__section--gallery__img{
	width: 100%;
	height: auto;
	border-radius: .5rem;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media screen and (width < 1200px) {
	.locals-main__section--gallery > div{
		width: 75vw;
	}	
}

@media (width < 700px) {
    .locals-main__section--gallery > div{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width < 500px) {
    .locals-main__section--gallery > div{
        display: flex;
        flex-direction: column;
        width: 80%;
    }
}

.image-big{
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.image-small-1{
    grid-column: 3 / span 1;
    grid-row: 1 / span 1;
}

.image-small-2{
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
}

.image-small-3{
    grid-column: 3 / span 1;
    grid-row: 3 / span 1;
}

.image-small-4{
    grid-column: 1 / span 1;
    grid-row: 3 / span 1;
}

.image-small-5{
    grid-column: 3 / span 1;
    grid-row: 2 / span 1;
}

@media (width < 700px) {
    .image-small-3{
        grid-column: 1 / span 1 !important;
        grid-row: 1 / span 1 !important;
    }
    
    .image-small-1{
        grid-column: 2 / span 1 !important;
        grid-row: 1 / span 1 !important;
    }

    .image-small-2{
        grid-column: 1 / span 1 !important;
        grid-row: 2 / span 1 !important;
    }

    .image-big{
        grid-column: 2 / span 1 !important;
        grid-row: 2 / span 1 !important;
    }

    .image-small-4{
        grid-column: 1 / span 1 !important;
        grid-row: 3 / span 1 !important;
    }
    
    .image-small-5{
        grid-column: 2 / span 1 !important;
        grid-row: 3 / span 1 !important;
    }
}
/******* FIN ESTILOS SHORTCODE --> BLOCK-GRID-PRINCIPAL-IMGS *******/

/******* ESTILOS SHORTCODE --> BLOCK-CHECKS-EXTRAINFO *******/
.locals-main__section--extraInfo{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2.5rem;
}

.locals-main__section--extraInfo > div{
	width: 75vw;
	display: flex;
	flex-direction: column;
	color: var(--secondary-brown);
	gap: .5rem;
}

.locals-main__section--extraInfo__block{
	display: flex;
	align-items: center;
	gap: .5rem;
}

.locals-main__section--extraInfo__block > img{
	width: 40px;
	height: auto;
}
/******* FIN ESTILOS SHORTCODE --> BLOCK-CHECKS-EXTRAINFO *******/

/******* ESTILOS SHORTCODE --> BLOCK-NEAR-PLACES *******/
.locals-main__section--characteristics__places{
	display: flex;
	justify-content: center;
	align-items: center;
    margin: 2rem 0;
}

.locals-main__section--characteristics__places > div{
	width: 76vw;
}

.locals-main__section--characteristics__places__title{
	display: flex;
	align-items: center;
	color: var(--primary-brown);
}

.locals-main__section--characteristics__places__title__img{
	height: 65px;
	width: auto;
}

.locals-main__section--characteristics__places__text{
	margin-top: 1rem;
	margin-left: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--primary-brown);
}

.locals-main__section--characteristics__places__places{
	margin-top: 1rem;
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    color: var(--secondary-brown);
}

.locals-main__section--characteristics__places__places__block{
    display: flex;
    align-items: center;
    gap: .2rem;
}

.locals-main__section--characteristics__places__places__block__img{
	width: 45px;
	height: auto;
}

@media screen and (width < 450px) {
    .locals-main__section--characteristics__places__places{
        margin-left: 0rem;
    }
}
/******* FIN ESTILOS SHORTCODE --> BLOCK-NEAR-PLACES *******/

/******* SHORTCODE --> BLOCK-EXTRA-IMGS *******/
.locals-main__section--carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.locals-main__section--carousel > div {
    display: flex;
    gap: 2rem;
    max-width: 80vw;
    overflow-x: auto;
    padding: 2rem 0;
}

.locals-main__section--carousel > div::-webkit-scrollbar {
    height: .8rem;
    background: var(--third-brown);
    border-radius: .5rem;
}
  
.locals-main__section--carousel > div ::-webkit-scrollbar-track {
    background: var(--secondary-brown);
    border-radius: .5rem;
}
  
.locals-main__section--carousel > div::-webkit-scrollbar-thumb {
    background: var(--primary-brown);
    border-radius: .5rem;
}

.locals-main__section--carousel__img{
    height: 30vh;
    width: auto;
    border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
/******* FIN SHORTCODE --> BLOCK-EXTRA-IMGS *******/

/******* SHORTOCODE --> BLOCK-ICONS-CHARACTERISTICS *******/
.locals-main__section--characteristics{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.locals-main__section--characteristics__title{
    font-size: 1.1rem;
    text-align:center;
    color: var(--primary-brown);
}

.locals-main__section--characteristics__characteristics{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    width: 80%;
}

.locals-main__section--characteristics__characteristics__block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.locals-main__section--characteristics__characteristics__block__img{
    width: 90px;
    height: auto;
}

.locals-main__section--characteristics__characteristics__block__text{
    text-align: center;
    font-size: .9rem;
    color: var(--primary-brown);
    font-weight: bold;
    font-family: var(--secondary-font);
    width: 80%;
}

@media (width < 800px) {
    .locals-main__section--characteristics__characteristics{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (width < 600px) {
    .locals-main__section--characteristics__characteristics{
        grid-template-columns: repeat(2, 1fr);
    }

    .locals-main__section--characteristics__title{
        text-wrap: pretty;
        width: 90%;
    }

}

/***************************** FIN SHORTCODES APARTAMENTOS CONCRETOS *****************************/

/******* CABECERA *******/
#header{
    display: none;
}

hr{
    display: none;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    gap: 1rem;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    z-index: 9999;
  }
  
  .nav__label--logo {
    font-size: 1.5rem;
  }

  .nav__label--logo__img{
    width: 230px;
  }
  
  #menu-menu-cabecera {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: white;
    gap: 1rem;
  }
  
  #menu-menu-cabecera li {
    margin-right: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #menu-menu-cabecera li a {
    transition: all 300ms linear;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-brown);
    font-family: var(--third-font), var(--secondary-font);
  }
  
  #menu-menu-cabecera li a:hover {
    color: var(--primary-brown);
    transform: scale(1.1);
  }
  
  .checkbtn {
    color: var(--primary-brown);
    font-size: 30px;
    cursor: pointer;
    display: none;
  }
  
  #check {
    display: none;
  }
  
  @media (max-width: 1050px) {
    .checkbtn {
      display: block;
      order: 1;
      margin-right: 20px;
    }

    .nav{
        position: sticky;
        top: 0;
    }
    
    #menu-menu-cabecera {
      position: fixed;
      top: 95px;
      right: -100%;
      width: 100%;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: all 0.5s;
      background-color: white;
    }
  
    #menu-menu-cabecera li {
      margin: 20px 0;
    }
  
    #menu-menu-cabecera li a {
      font-size: 20px;
    }
  
    #check:checked ~ ul {
      right: 0;
    }
  }

/******* FIN CABECERA *******/

/******* INICIO PIE DE PÁGINA *******/
.footer{
    margin-top: 2rem;
    background-color: var(--third-brown);
    padding: 2rem;
	font-family: var(--secondary-font);
    box-shadow: var(--primary-shadow);
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.footer > div:nth-child(2){
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer__img{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

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

.footer__title__title{
    text-align: center;
    color: var(--primary-brown);
    font-style: italic;
    font-size: 1.4rem;
    text-shadow: 1px 1px 1px #A1A1A1;
}

.footer__img__img{
    width: 300px;
    height: auto;
}

.footer__ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin-right: 3rem;
}

.footer__ue{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10rem;
    div:first-child img{
      height: 120px;
    } 
    img{
      height: 80px;
      filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 5px 15px);
    }
  }
  
  @media screen and (width < 1050px) {
    .footer__ue{
        gap: 6rem;
      div:first-child img{
        height: 90px;
      } 
      img{
        height: 60px;
      }
    }
  }
  
  @media screen and (width < 750px){
    .footer__ue{
      flex-direction: column;
      gap: 3rem;
    }
  }

.footer__ul__li__anchor{
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-brown);
    font-family: var(--third-font), var(--secondary-font);
}

.footer__ul--apartments__li{
    text-align: center;
}

.footer__ul__li__anchor:hover{
    color: var(--black-hover);
}

#separator{
    height: 2px;
    width: 80%;
    background-color: var(--primary-brown);
}

.footer__copy{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer__copy__text{
    color: var(--primary-brown);
    font-size: .9rem;
    text-align: center;
    text-wrap: pretty;
}

#pipe{
    font-weight: 900;
    color: var(--primary-brown);
}

.footer__ayla{
    text-align: center;
    text-wrap: pretty;
    color: var(--primary-brown);    
}

.footer__ayla a{
    text-decoration: none;
}

@media (width < 1000px) {
    .footer{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .footer > div:nth-child(2){
        flex-direction: row;
        justify-content: space-between;
    }

    .footer__ul{
        gap: 1rem;
        flex-direction: column;
    }

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

@media (width < 700px) {
    .footer > div:nth-child(2){
        flex-direction: column;
        justify-content: center;
    }

    .footer__ul{
        flex-direction: column;
    }

    .footer__copy__text{
        text-align: center;
    }

    .footer__copy{
        flex-direction: column;
        gap: 0;
    }

    #pipe{
        display: none;
    }
}
/******* FIN DEL PIE DE PÁGINA *******/

/************************** PÁGINAS DE POLÍTICAS (FOOTER) **************************/
.page-policy{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    padding: 4rem 0;
    a{
        color: var(--secondary-brown); 
    }
}

.block-pages-footer{
    padding: 0 .2rem;
    width: 90%;
}

.title-pages-footer{
    color: var(--primary-brown);
    text-align: center;
    text-wrap: pretty;
    margin: 2rem 0;
    width: 90%;
    font-size: 2.5rem;
}

.block-pages-footer > h3{
    color: var(--primary-brown);
    margin-top: 2rem;
}

.block-pages-footer > ul{
    margin-left: 2rem;
    color: var(--secondary-brown); 
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

@media (width < 800px) {
    .block-pages-footer > ul{
        margin-left: -.5rem !important;
    }
}

.block-pages-footer > ul > li:has(strong){
    margin-top: 1.5rem;
}

.block-pages-footer > p{
    margin: 1rem 0;
    color: var(--secondary-brown); 
}
/************************** FIN PÁGINAS DE POLÍTICAS (FOOTER) **************************/