/*
Theme Name: Mirador del Lago
Author: Ortiz Juan Manuel
Version: 2025
*/


/* RESET
   ----------------------------- */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}html,body{height:100%;font-family:sans-serif;font-size:16px;line-height:1.5;background:#fff;color:#000}img,video,canvas,svg{display:block;max-width:100%;height:auto}button,input,select,textarea{font:inherit;color:inherit;background:none;border:none;outline:none}a{text-decoration:none;color:inherit}ul,ol{list-style:none}table{border-collapse:collapse;border-spacing:0}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}address,cite,dfn,em,i{font-style:normal}b,strong{font-weight:normal}fieldset{border:none;padding:0;margin:0}
a:focus,
a:active {
  outline: none;
  box-shadow: none;
}


/* VARIABLES
   ----------------------------- */

:root {
   --brown: #a39789;
   --beige: #e7d5c1;
   --brown-2: #755846;


   --light-grey: #b9b9b9;
   --dark-grey: #3d3d3d;
   --grey: #606060;
   --light-beige: #f4f5f0;
   --light-blue: #b8ccde;
   --dark-blue: #326c94;
   --blue: #6699c2;
   --white: #FFF;
   --black: #000;

   --h1-size: 46px;
   --h2-size: 44px;
   --h3-size: 40px;
   --h4-size: 36px;
   --h5-size: 40px;
   --h6-size: 27px;

   --btn-size: 15px;
   --btn-padding: 8px 30px;

   --paragraph-size: 17px;
   --paragraph-size-xl: 18px;

   --font-title:  "Sina", serif;
   --font-text: "Muller", sans-serif;




   --lighter-beige: #e1ddd6;
   --field-bg: #fff;
}


/* FONT FACE
   ----------------------------- */

@font-face {
    font-family: 'Sina';
    src: url('fonts/Sina-Regular.woff2') format('woff2'),
        url('fonts/Sina-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Muller';
    src: url('fonts/MullerRegular.woff2') format('woff2'),
        url('fonts/MullerRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




/* SCROLL BAR
----------------------------- */

:root {
   --sb-accent: #6699c2;
   --sb-background: #000;
   --sb-radius: 10px;
   --sb-width: 8px;
}

@-moz-document url-prefix() {
   html {
      scrollbar-width: thin;
      scrollbar-color: var(--sb-accent) var(--sb-background);
   }
}
html::-webkit-scrollbar {
   width: var(--sb-width);
   height: var(--sb-width);
}

html::-webkit-scrollbar-track {
   background: var(--sb-background);
}

html::-webkit-scrollbar-thumb {
   background-color: var(--sb-accent);
   border-radius: var(--sb-radius);
}
html::-webkit-scrollbar-button {
   display: none !important;
   width: 0 !important;
   height: 0 !important;
}



/* FONTS
   ----------------------------- */

body {
   font-size: var(--paragraph-size);
   line-height: 1.2;
   font-family: var(--font-text);
   font-weight: 400;
   color: var(--grey);
}

p {
   font-size: var(--paragraph-size);
   line-height: 1.4;
   font-family: var(--font-text);
   font-weight: 400;
}
h1, h2, h3, h4, h5, h6{
   text-wrap: balance;
  overflow-wrap: anywhere;
}
h1,
.h1 {
   font-size: var(--h1-size);
   line-height: 1.05;
   font-family: var(--font-title);
   font-weight: 500;
}

h2,
.h2 {
   font-size: var(--h2-size);
   line-height: 1.05;
   font-family: var(--font-title);
   font-weight: 500;
}

h3,
.h3 {
   font-size: var(--h3-size);
   line-height: 1.08;
   font-family: var(--font-title);
   font-weight: 500;
}

h4,
.h4 {
   font-size: var(--h4-size);
   line-height: 1.1;
   font-family: var(--font-title);
   font-weight: 500;
}

h5,
.h5 {
   font-size: var(--h5-size);
   line-height: 1.25;
   font-family: var(--font-title);
   font-weight: 500;
}

h6,
.h6 {
   font-size: var(--h6-size);
   line-height: 1.15;
   font-family: var(--font-title);
   font-weight: 500;
}


/* VIDEO
   ----------------------------- */

section.video {
   position: relative;
   width: 100%;
   height: 600px;
   overflow: hidden;
   background: var(--dark-grey);
   margin-bottom: 25px;
}

section.video video {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

section.video .video-poster {
   position: absolute;
   inset: 0;
   z-index: 2;
   transition: opacity .4s ease;
}

section.video .video-poster img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

section.video.video-ready .video-poster {
   opacity: 0;
   pointer-events: none;
}


@media(max-width: 999px){

   section.video{
      height: 500px;
   }
   section.video{
      margin-bottom: 20px;
   }
}
@media(max-width: 690px){

   section.video{
      height: 300px;
   }
   section.video{
      margin-bottom: 10px;
   }
}


@media(max-width: 600px){

   section.video{
      height: auto;
      aspect-ratio: 16 / 9;
   }
}


/* PARALLAX IMAGE
----------------------------- */


/* base (required) */
.parallax-initialized {
    position: relative;
    overflow: hidden;
}

.parallax-initialized img {
    width: 100% !important;
    margin: 0 !important;
    height: auto;
    will-change: transform;
}



/* GENERAL
   ----------------------------- */

.badge-title{
   text-transform: uppercase;
   letter-spacing: 1px;
   font-size: 16px;
}

.btn-reservar-mobile{
   display: none;
   position: fixed;
   bottom: 0;
   left: 0;
   width: 100%;
   text-align: center;
   text-transform: uppercase;
   font-size: 15px;
   letter-spacing: 2.5px;
   font-family: var(--font-text);
   z-index: 999;
   background: var(--blue);
   color: var(--white);
   padding: 18px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.38) !important;

}

[data-parallax] img{
   display: none !important;
}


a {
   transition: all 0.15s ease;
}

.c-wrap {
   max-width: 1300px;
   width: 100%;
   padding: 0 50px;
   margin: 0 auto;
}

.flickity-enabled:focus {
    outline: none; 
}
.flickity-page-dot:focus{
   outline: 0 !important;
   box-shadow: none !important;
}
.carousel .flickity-page-dots{
   bottom: 0px;
   padding-bottom: 25px;
   left: 0;
   height: auto;
   background: linear-gradient(to top, rgba(0,0,0, 0.5) 0%, rgba(0,0,0, 0) 100%);

   display: flex;
   align-items: flex-end;
}
.carousel .flickity-page-dots .flickity-page-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: var(--white);
   opacity: 0.4;
   transition: transform 0.2s ease, opacity 0.2s ease;
}

.carousel .flickity-page-dots .flickity-page-dot.is-selected {
  opacity: 1;
}

.carousel{
   opacity: 0;
   /*transform: translate3d(0,50px,0);*/
   transition: opacity 0.8s cubic-bezier(.1,.1,.25,1), transform 0.8s cubic-bezier(.1,.1,.25,1);
}
.carousel.flickity-enabled{
   /*transform: translate3d(0,0,0);*/
   opacity: 1;
}


.simpleParallax {
   height: 100% !important;
   width: 100% !important;
}
.paragraph{
   line-height: 1.4;
}
.paragraph p{
   font-size: var(--paragraph-size);
   padding-bottom: 15px;
   line-height: 1.4;
}
.paragraph p:last-child{
   padding-bottom: 0;
}


.title-stagger{
   opacity: 0;
}
.title-stagger.on{
   opacity: 1;
}

.fancybox__container{
   z-index: 105000000 !important;
}

/* Estado inicial – oculto */
[data-reveal] {
    opacity: 0;
    transform: translate3d(0,50px,0);
    transition: opacity 1s cubic-bezier(.1,.1,.25,1), transform 1s cubic-bezier(.1,.1,.25,1);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}



/* DATEPICKER
   ----------------------------- */

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: var(--brown) !important;
  border-color: var(--brown) !important;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 var(--brown) !important;
}

.flatpickr-day.week.selected {
  box-shadow: -5px 0 0 var(--brown), 5px 0 0 var(--brown) !important;
}


/* FXS
   ----------------------------- */


.fadeIn{
   transform: translateY(10px);
   opacity: 0;
   transition: all 0.8s cubic-bezier(.25,.1,.1,1);
}
.fadeIn.shown{
   opacity: 1;
   transform: translateY(0px);
}

.title-stagger .word{
   display:inline-block;
   white-space:normal;
}
.title-stagger .char{
   display:inline-block;
   opacity:0;
   transform:translateX(20px);
   transition:opacity 0.6s ease,transform 0.6s ease;
   transition-delay:var(--d,0s);
   will-change:opacity,transform;
}
.title-stagger.on .char{
   opacity:1;
   transform:translateX(0);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.flatpickr-calendar {
   position: absolute !important;
   top: 100% !important;
   left: 0 !important;
   z-index: 999999 !important;
}


/* HEADER
   ----------------------------- */

header.header{
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 9999;
   user-select: none;
   transition: all 0.3s ease;
}
body.home header.header{
   position: relative;
}
header.header:after{
   content: ' ';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #f6f6f4;
   transform: scaleX(1);
   transition: transform 2s cubic-bezier(.25,1,.33,1);
   z-index: -1;
}

header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
header.header figure.logo{
   position: relative;
   z-index: 1;
}
header.header figure.logo img{
   width: 170px;
   height: auto;
   display: block;
   transition: all 0.6s cubic-bezier(.25,1,.33,1);
}
header.header.is-fixed figure.logo img{
   width: 140px;
}
header.header .box{
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 80px;
   padding: 15px 0;
}
header.header .box:after{
   content: ' ';
   position: absolute;
   top: 0;
   left: -40px;
   width: calc(100% + 80px);
   height: 100%;
   background: #f6f6f4;
   z-index: 0;
}
body.home header.header:after{
   transform: scaleX(0);
}
body.home header.header.is-fixed:after{
   transform: scaleX(1);
   transition: transform 0.6s cubic-bezier(.25,1,.33,1);
}

header.header .form-wrap{
   position: relative;
   z-index: 1;
   width: 100%;
}
header.header .form-wrap form{
   display: flex;
   align-items: center;
   gap: 40px;
   width: 100%;
}
header.header .form-wrap .field-group{
   width: 100%;
}
header.header .form-wrap select.c-select,
header.header .form-wrap input.c-input{
   padding: 8px 0;
   border: 0;
   width: 100%;
   font-size: 15px;
   color: var(--black);
   border-bottom: 1px solid var(--light-grey);
}
header.header .form-wrap select.c-select option{
   padding: 10px;
}
header.header .form-wrap [type="submit"]{
   cursor: pointer;
   background: var(--light-blue);
   display: inline-block;
   color: var(--white);
   text-transform: uppercase;
   letter-spacing: 1px;
   padding: 12px 40px;
   font-weight: 400;
   font-size: 16px;
   width: 100%;
   transition: background 0.15s ease;
   white-space: nowrap;
}
header.header .form-wrap [type="submit"]:hover{
   background: var(--blue);
}
header.header .form-wrap label{
   display: block;
   text-transform: uppercase;
   font-size: 13px;
}
header.header .form-wrap select.c-select{
   cursor: pointer;
   background: none;
   outline: none;
   border-radius: 0;
   -webkit-appearance: none;
   appearance: none;
   padding: 8px;
}


/* MOBILE MENU
   ----------------------------- */

.burger-menu-wrap{
   position: relative;
   z-index: 1;
}
.burger-menu{
   border: 1px solid var(--grey);
   padding: 8px;

   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   gap: 4px;

   width: 38px;
   height: 38px;

}

.burger-menu span{
   display: block;
   width: 100%;
   height: 1px;
   background: var(--grey);
   transition: transform 0.3s cubic-bezier(.25,1,.33,1);
   transform: translateY(0px);
}

.burger-menu:hover span:first-child{
   transform: translateY(-2px);
}


.burger-menu:hover span:last-child{
   transform: translateY(2px);
}



.menu-shadow{
   position: fixed;
   top: 0;
   left: 0;
   width: 110vw;
   height: 110vh;
   background: var(--black);
   z-index: 999998;
   pointer-events: none;
   opacity: 0;
   transition: opacity 0.3s cubic-bezier(.25,1,.33,1);
}
body.menu-open .menu-shadow{
   opacity: 0.7;
   pointer-events: initial;
}
.main-menu-wrap {
   user-select: none;
   position: fixed;
   top: 0;
   right: 0;
   transform: translateX(110%);
   width: 350px;
   height: 100vh;
   background: #f6f6f4;
   box-shadow: -5px 0 20px rgba(0,0,0,0.1);
   transition: transform 0.6s cubic-bezier(.25,1,.33,1);
   z-index: 999999;
   display: flex;
   flex-direction: column;
}
.main-menu-wrap .btn-close-menu{
   position: absolute;
   top: 30px;
   right: 30px;
}
.main-menu-wrap .btn-close-menu svg{
   width: 20px;
}

.main-menu-wrap.active {
   transform: translateX(0%);
}

.main-menu-wrap .menu-wrap {
   flex: 1;
   overflow-y: auto;
   padding: 80px 40px 50px 40px;
}

.main-menu {
   list-style: none;
   margin: 0;
   padding: 0;
}

.main-menu li {
   margin-bottom: 20px;
   text-transform: uppercase;
}

.main-menu a {
   text-decoration: none;
   color: var(--grey);
   font-size: var(--paragraph-size);
   transition: color 0.3s;
}

.main-menu a:hover {
   color: var(--blue);
}


.sub-menu{
   margin-top: 7px;
}
.sub-menu li{
   margin-bottom: 0;
   padding: 0;
}
.sub-menu li a{
   display: inline-block;
   padding: 3px 5px 3px 12px;
   font-size: 14px;
}
.main-menu .sub-menu {
   display: none;
}

.main-menu .menu-item-has-children.open > .sub-menu {
   display: block;
}



/* LANG SWITCH
   ----------------------------- */

.lang-buttons{
   margin-top: 40px;
}
.lang-toggle,
.lang-buttons,
.lang-switcher {
    display: flex;
}

.lang-toggle a,
.lang-buttons button {
    padding: 6px 12px;
    border-radius: 0px;
    border: 0;
    border-right: 1px solid #ccc;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}
.lang-buttons button:last-child{
   border-right: 0;
}

.lang-toggle a.active,
.lang-buttons button.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}




/* STICKY WHATSAPP
   ----------------------------- */

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;

    background: #35D451;
    background-image: linear-gradient(#35D451, #2bab41);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);

}
.floating-whatsapp img {
    width: 42px;
    height: 42px;
}
.floating-whatsapp.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}


/* TAX FREE 
   ----------------------------- */

.tax-free-wrap {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.tax-free-wrap img {
    width: 80px;
    height: auto;
}
.tax-free-wrap.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}




/* BUTTONS
   ----------------------------- */

.main-btn.btn-beige{
   color: var(--white);
   background: var(--light-blue);
}

.main-btn {
   display: inline-block;
   padding: var(--btn-padding);
   background: var(--accent-green);
   cursor: pointer;
   text-decoration: none;
   user-select: none;

   text-transform: uppercase;
   letter-spacing: 2px;

   color: var(--white);
   background: var(--light-blue);
}

.main-btn-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    font-size: var(--btn-size);
    font-family: var(--font-texts);
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    transition: gap 0.25s ease;
}

.main-btn:hover .main-btn.wrap {
    gap: 70px;
}

.main-btn-text {
    position: relative;
    display: block;
    transition: transform 0.45s cubic-bezier(.25,1,.33,1);
    color: inherit;
}

.main-btn-text:after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    bottom: -120%;
    width: 100%;
    transition: transform 0.55s cubic-bezier(.25,1,.33,1);
    color: inherit;
}

.main-btn:hover .main-btn-text {
    transform: translateY(-100%);
}

.main-btn:hover .main-btn-text:after {
    transform: translateY(-20%);
}


/* LINE REVEAL EFFECT
   ----------------------------- */

.line-reveal-by-space {
   line-height: 1.2;
}

.line-reveal-by-space span {
   opacity: 0.2;
   transition: opacity 0.2s linear;
   will-change: opacity;
}
.line-reveal-by-space span.visible {
   opacity: 1;
}




/* FOOTER
   ----------------------------- */




/* CF7 FORMS
   ----------------------------- */

.grecaptcha-badge {
   visibility: hidden;
}


input::-webkit-input-placeholder {
  color: var(--grey);
  opacity: 0.6;
}

input:-moz-placeholder {
  color: var(--grey);
  opacity: 0.6;
  opacity: 1;
}

input::-moz-placeholder {
  color: var(--grey);
  opacity: 0.6;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: var(--grey);
  opacity: 0.6;
}

.wpcf7-turnstile {
   width: 100%;
}

.wpcf7-form{
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}

.wpcf7-form label{
   pointer-events: none;
   font-size: 13px;
   font-weight: 400;
   text-transform: uppercase;
   font-family: var(--font-main);
   margin-bottom: -10px;
}
.wpcf7-form .with-textarea{
   overflow: hidden;
   border-radius: 4px;
   background: var(--field-bg);
   border: 1px solid transparent;
}
.wpcf7-form .with-textarea.focus{
   border-color: var(--lighter-beige);
}
.wpcf7-form .with-textarea .wpcf7-form-control-wrap{
   margin-top: 0;
}
.wpcf7-form .textarea-label{
   width: 100%;
   height: 40px;
   position: relative;
   margin-top: -7px;
}
.wpcf7-form .with-textarea label{

}
.wpcf7-form .with-textarea textarea{
   margin-top: 0;
   background: none;
}
.wpcf7-form .control-group.focus label{
   transform: scale(0.65);
   opacity: 1;
}

.wpcf7-form .wpcf7-form-control-wrap{
   position: relative !important;
   display: block;
   margin-top: 5px;
}
.wpcf7-form input[type="date"],
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea{
   width: 100%;
   font-family: var(--font-main);
   font-size: 15px;
   line-height: 1;
   color: var(--grey);
   background: var(--field-bg);
   padding: 20px 0;
   border-radius: 0;
   border: 1px solid transparent;
   border-bottom: 1px solid var(--light-grey);
}

.wpcf7-form input[type="date"]:focus,
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus{
   box-shadow: none;
   border-bottom-color: var(--blue);
}
.wpcf7-form select{
   cursor: pointer;
   background: none;
   outline: none;
   border-radius: 0;
   -webkit-appearance: none;
   appearance: none;
   padding-left: 8px;
   padding-right: 8px;
}
.wpcf7-form textarea{
   line-height: 1.3;
   padding: 20px 0;
   resize: none;
   overflow: auto;
   height: 180px;
}
.wpcf7-form .control-group{
   position: relative;
   width: 100%;
   margin: 12px 0;
   user-select: none;
}
.wpcf7-form .control-group.mid{
   width: calc(50% - 10px);
}
.wpcf7-form .submit-wrap{
   width: 100%;
   margin-top: 35px;
   display: flex;
   flex-direction: row-reverse;
   align-items: center;
   gap: 20px;
   justify-content: flex-start;
}
.wpcf7-form .submit-wrap input[type="submit"]{
   background: var(--dark-grey);
   color: var(--white);
   text-transform: uppercase;
   padding: 22px 30px;
   cursor: pointer;
   display: inline-block;
   letter-spacing: 2px;
   text-align: center;
   min-width: 210px;
}
.wpcf7-form .submit-wrap input[type="submit"]:hover{
   background: var(--grey);
}
.wpcf7-form .submit-wrap .main-btn{
   align-self: flex-end;
}

.wpcf7-form .wpcf7-not-valid-tip {
   font-size: 13px;
   color: var(--black) !important;
   padding: 0;
   background-color: transparent;
   box-shadow: none;
   padding: 5px 0 0 0 !important;
   box-shadow: none !important;
}

.wpcf7-form input[type="text"].wpcf7-not-valid,
.wpcf7-form input[type="email"].wpcf7-not-valid,
.wpcf7-form input[type="tel"].wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid {
    border-bottom-color: red !important;
}

.wpcf7-form .wpcf7-response-output{
   font-size: 15px;
   line-height: 1.5;
   background: transparent;
   border: 0 !important;
    padding: 40px 0 0 0 !important;
    margin: 0 auto !important;
   width: 100%;
   text-align: center;
}

.wpcf7-spinner::before {
   display: none;
}

 .wpcf7-form .wpcf7-spinner{
    margin: 0 !important;
    background-image: url('images/loader.svg') !important;
    background-color: transparent !important;
    width: 24px !important;
    height: 24px !important;
    display: block;
    top: 2px;
}

.wpcf7-form .clarification{
   font-size: 14px;
   line-height: 1.4;
   margin-top: 15px;
}

.wpcf7-form .clarification a{
   color: inherit;
   transition: all 0.3s ease;
}

.is-desktop .wpcf7-form .clarification a:hover {
   text-decoration: underline;
}

.wpcf7-form-control:-ms-input-placeholder {
   color: var(--green) !important;
   opacity: 1 !important;
}

.wpcf7-form-control::placeholder {
   color: var(--green) !important;
   opacity: 1 !important;
}


.select-wrap{
   position: relative;
}

.select-wrap select{
   width: 100%;
   cursor: pointer;
   background: var(--field-bg);
   height: 60px;
   -webkit-appearance: none;
   appearance: none;
   font-family: var(--font-main);
   font-size: var(--paragraph-size);
   border-radius: 4px;
   color: inherit;
   padding: 11px 15px;
   border: 1px solid transparent;
}
.select-wrap svg{
   position: absolute;
   top: 30px;
   right: 20px;
   transform: translateY(-50%);
   pointer-events: none;
   width: 16px;
}




/* 404
   ----------------------------- */

section.hero.hero-404 {
   min-height: 400px;
}

section.hero.hero-404 .c-wrap .info{
   text-align: center;
   max-width: 650px;
   align-items: center;
   margin: 0 auto;
}

@media(max-width: 690px){
   section.hero.hero-404 h1 {
      max-width: 400px;
   }
}

/* RESPONSIVE
   ----------------------------- */

@media (max-width: 1300px) {

   :root {
      --h1-size: 38px;
      --h2-size: 35px;
      --h3-size: 32px;
      --h4-size: 29px;
      --h5-size: 26px;
      --h6-size: 25px;
      --paragraph-size-xl: 17px;
   }
}


@media (max-width: 1200px) {
   header.header figure.logo img{
      width: 170px;
   }
   header.header .form-wrap select.c-select,
   header.header .form-wrap input.c-input{
      font-size: 14px;
   }
   header.header .box{
      gap: 30px;
   }
   header.header .form-wrap form{
      gap: 30px;
   }
   header.header .form-wrap [type="submit"]{
      padding: 12px 30px;
   }
   .tax-free-wrap img{
      width: 70px;
   }

   .floating-whatsapp{
      width: 50px;
      height: 50px;
   }
   .floating-whatsapp img{
      width: 37px;
      height: 37px;
   }
}
@media (max-width: 1024px) {
   .c-wrap {
      padding: 0 30px;
   }
   .fadeIn{
      opacity: 1;
      transform: translateY(0px);
   }
}

@media (max-width: 999px) {
   header.header .form-wrap{
      display: none;
   }
   .btn-reservar-mobile{
      display: block;
   }
   header.header figure.logo img{
      width: 120px;
   }
   header.header .box{
      padding: 15px 0;
   }
   .wpcf7-form .submit-wrap input[type="submit"]{
      padding: 16px 20px;
      min-width: 180px;
      font-size: 16px;
   }
   header.header.is-fixed figure.logo img{
      width: 110px;
   }
   .badge-title{
      font-size: 16px;
   }

   .floating-whatsapp{
      right: 10px;
      bottom: 65px;
      width: 42px;
      height: 42px;
   }
   .floating-whatsapp img{
      width: 30px;
      height: 30px;
   }
   .tax-free-wrap{
      left: 10px;
      bottom: 65px;
   }
   .tax-free-wrap img{
      width: 60px;
   }
}
@media (max-width: 690px) {

   :root {
      --h1-size: 32px;
      --h2-size: 30px;
      --h3-size: 28px;
      --h4-size: 26px;
      --h5-size: 24px;
      --h6-size: 22px;
      --paragraph-size-xl: 16px;
      --paragraph-size: 15px;
      --btn-size: 13px;
   }
   header.header.is-fixed figure.logo img{
      width: 90px;
   }
   .badge-title{
      font-size: 13px;
   }
   .carousel .flickity-page-dots{
      padding-bottom: 18px;
   }
   .carousel .flickity-page-dots .flickity-page-dot{
      margin: 0 5px;
      width: 8px;
      height: 8px;
   }
   header.header figure.logo img{
      width: 90px;
      min-width: 90px;
   }
   .main-menu-wrap{
      width: 100%;
   }
   .c-wrap {
      padding: 0 25px;
   }
   header.header .c-wrap{
      padding: 0 30px;
   }
   .wpcf7-form .submit-wrap input[type="submit"]{
      width: 100%;
      font-size: 15px;
   }
   .wpcf7-form .submit-wrap{
      flex-direction: column;
   }
   .wpcf7-form .control-group.mid{
      width: 100%;
   }

   header.header .box{
      padding: 12px 0;
   }
   header.header .box:after{
      left: -20px;
      width: calc(100% + 40px);
   }
   .burger-menu{
      padding: 8px;
      width: 38px;
      height: 38px;
   }

   .wpcf7-form input[type="date"],
   .wpcf7-form input[type="text"],
   .wpcf7-form input[type="email"],
   .wpcf7-form input[type="tel"],
   .wpcf7-form select,
   .wpcf7-form textarea{
      padding: 12px 0;
   }


}


@media (max-width: 500px){

   header.header figure.logo img{
      max-width: 90px;
   }
}

