@charset "utf-8";

/*@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,400;6..12,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@100;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mandali&display=swap');

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
  /* =========================================================
     VARIABLES GENERALES DEL TEMA
     Para crear una nueva empresa, cambia primero estos colores.
     La mayoría de botones, enlaces destacados, líneas y acentos
     se alimentan de estas variables.
  ========================================================= */
  --theme-primary: #9b3a2a;
  --theme-primary-hover: #d85a47;
  --theme-accent: #9b3a2a;
  --theme-accent-hover: #d85a47;
  --theme-line: rgba(155, 58, 42, 0.3);
  --theme-button-bg: var(--theme-primary);
  --theme-button-bg-hover: var(--theme-primary-hover);
  --theme-button-text: #ffffff;
  --theme-button-disabled: #a7a7a7;
  --theme-link-hover: var(--theme-primary);
  --theme-footer-bg: #111111;
  --theme-footer-accent: var(--theme-primary);
  --theme-text: #2f2a26;
  --theme-text-soft: #746e68;
  --theme-white: #ffffff;
  --theme-light-bg: #f7f3f0;

  /* Variables antiguas: se mantienen por compatibilidad. */
  --blue1: rgb(19, 66, 107);
  --backtop0: #2f2f2f;
  --backgreen1: var(--theme-line);
  
  --backgreenbut1: var(--theme-button-bg-hover);
  --backgreenbut2: var(--theme-button-bg);
  --backgreenFoot: var(--theme-footer-accent);

  --backred1:#c22424;
  --backred2:#ff9797;
  --backyel1:#f5ca0c;
  --backgris1:rgba(241, 241, 241, 0.616);
  --backpie1: var(--theme-footer-bg);
  --backpie2: #000;
  --backRojo:rgb(246, 205, 205);

  
  --cnegro1: var(--theme-text);
  --cgris1:#ccc;
  --cgris2: var(--theme-text-soft);
  --cgris3: var(--theme-light-bg);
  --cblanco1: var(--theme-white);

  --backwhite1: var(--theme-white);
  --backorange1:#fbba18;
  --font101:'Nunito Sans', sans-serif;
  --fontR1:'Roboto', sans-serif;
  --fontR2:'Roboto Condensed', sans-serif;
  --fontR3:'Mandali', sans-serif;
  --backbookbar:rgba(120, 166, 47, 0.7);
  --txtwhite1: var(--theme-white);
  --txtblack:#000;
  --maxw: 1100px;
  --maxw2: 1400px;

  --btn1: var(--theme-accent);
  --bnt1hover: var(--theme-accent-hover);
  --linemenu: var(--theme-accent);

  --fuenteT1: "Roboto", sans-serif;
  --fuenteM1: "Jost", sans-serif;
  --anchomax: 1800px;

  /* Colores del footer / reservas */
  --colorPie: var(--theme-primary);
  --colorPie2: var(--theme-primary);
  --colorPie-hover: var(--theme-primary-hover);

}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: var(--fuenteT1);
}

/* =========================
   HEADER
========================= */

header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 999;
  transition:
    height 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

header.scrolled {
  height: 58px;
  background-color: rgba(15, 15, 15, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header_contenedor {
  max-width: var(--anchomax);
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.header_izquierda,
.header_centro,
.header_derecha {
  display: flex;
  align-items: center;
  height: 100%;
}

.header_izquierda img {
  height: 60px;
  width: auto;
  display: block;
  transition:
    height 0.35s ease,
    transform 0.35s ease;
}

header.scrolled .header_izquierda img {
  height: 48px;
}

.header_centro ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 35px;
}

.header_centro ul li a,
.header_derecha a {
  text-decoration: none;
  font-family: var(--fuenteM1);
  letter-spacing: 0.05rem;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.header_centro ul li a:hover,
.header_derecha a:hover {
  color: #e96a57;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #e96a57;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.header_derecha {
  gap: 18px;
}

/* =========================
   BOTÓN MENÚ MÓVIL
========================= */

.btn_menu {
  width: 26px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

.btn_menu span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  transition: all 0.3s ease;
}

.btn_menu.activo span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.btn_menu.activo span:nth-child(2) {
  opacity: 0;
}

.btn_menu.activo span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.btn_menu:hover span {
  background: #e96a57;
}

/* =========================
   MENÚ MÓVIL COMPLETO
   Solo hace falta si copias también el div .menumv_h
========================= */

.menumv_h {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: all 0.4s ease;
}

.menumv_h.activo {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.menumv_h_contenido {
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 0 20px;
}

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

.menumv_h_lista li {
  margin-bottom: 24px;
}

.menumv_h_lista li:last-child {
  margin-bottom: 0;
}

.menumv_h_lista a {
  text-decoration: none;
  color: #fff;
  font-family: var(--fuenteM1);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  display: inline-block;
}

.menumv_h_lista a:hover {
  color: #e96a57;
  transform: translateY(-2px);
}

.menumv_h_idiomas {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.menumv_h_idiomas a {
  text-decoration: none;
  color: #ccc;
  font-family: var(--fuenteM1);
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  transition: color 0.3s ease;
}

.menumv_h_idiomas a:hover {
  color: #e96a57;
}

.menumv_h_idiomas span {
  color: #666;
  font-size: 0.8rem;
}

/* =========================
   SLIDER VÍDEO
========================= */

.slider {
  width: 100%;
  height: 85vh;
  min-height: 620px;
  max-height: 900px;
  position: relative;
  overflow: visible;
}

.slider_h2 {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: visible;
}

.slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.slider_video {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider_video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   BOOKING BAR
   Déjalo si vas a activar el formulario comentado
========================= */

.booking_bar {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1200px;
  z-index: 5;
}

.h_sld2 {
  position: relative;
  margin-bottom: 72px;
}

.booking_bar_form {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr auto;
  align-items: end;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  overflow: visible;
}

.booking_item {
  position: relative;
  padding: 18px 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking_item:last-child {
  border-right: none;
}

.booking_item label {
  font-family: var(--fuenteM1);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: #7a766f;
}

.booking_item input,
.booking_item select {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--fuenteM1);
  font-size: 1rem;
  color: #2f2a26;
  padding: 0;
}

.booking_item input::placeholder {
  color: #999;
}

.amadores_booking_dates {
  cursor: pointer;
}

.booking_item_dates .amadores_booking_dates {
  padding-left: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaa39d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 15px 15px;
}

.amadores_guests_toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2f2a26;
  font-family: var(--fuenteM1);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.amadores_guests_toggle i {
  color: #8b847d;
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.booking_item_guests.is-open .amadores_guests_toggle i {
  transform: rotate(180deg);
}

.amadores_guests_dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: none;
  width: 270px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}

.booking_item_guests.is-open .amadores_guests_dropdown {
  display: block;
}

.amadores_guest_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  color: #39332e;
  font-size: 0.92rem;
}

.amadores_guest_row + .amadores_guest_row {
  border-top: 1px solid #eee8e3;
}

.amadores_guest_counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.amadores_guest_counter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid #d8d0c9;
  border-radius: 50%;
  background: #fff;
  color: var(--colorPie, #9b3a2a);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.amadores_guest_counter output {
  min-width: 22px;
  color: #2f2a26;
  font-weight: 700;
  text-align: center;
}

.amadores_guests_apply {
  width: 100%;
  margin-top: 10px;
  padding: 11px 16px;
  border: 0;
  border-radius: 9px;
  background: var(--colorPie, #9b3a2a);
  color: #fff;
  font-family: var(--fuenteM1);
  font-weight: 700;
  cursor: pointer;
}

.booking_item_btn {
  padding: 10px;
  justify-content: center;
}

.booking_item_btn button {
  width: 100%;
  min-width: 160px;
  height: 58px;
  border: none;
  border-radius: 14px;
  background: var(--colorPie, #9b3a2a);
  color: #fff;
  font-family: var(--fuenteM1);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.booking_item_btn button:hover {
  background: var(--colorPie-hover, #d85a47);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(233, 106, 87, 0.28);
}

/* =========================
   BOTÓN RESERVA MÓVIL
   Solo si luego copias el panel de reserva
========================= */

.btn_reservar_mv {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1001;
  display: none;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  background-color: #e96a57;
  color: #fff;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.btn_reservar_mv:hover {
  background-color: #d85a47;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.booking_mobile_open,
.booking_mobile_overlay,
.booking_mobile_panel {
  display: none;
}

.daterangepicker {
  z-index: 30020 !important;
}

/* =========================
   CABECERA INTERIOR COMPACTA
========================= */

.slider_interior {
  height: auto;
  min-height: 0;
  max-height: none;
  padding-bottom: 24px;
  background: #fff;
}

.slider_interior::before {
  bottom: auto;
  height: 230px;
}

.slider_interior .slider_video {
  height: 230px;
}

.slider_interior .booking_bar {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 3000;
  width: calc(100% - 80px);
  margin: 0 auto;
  transform: none;
}

.slider_interior .booking_bar_form {
  border-radius: 0 0 18px 18px;
  box-shadow: 0 14px 34px rgba(45, 35, 30, 0.14);
}

.amadores_booking_submit::before {
  content: "\f002";
  margin-right: 9px;
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   FANCYBOX LEGAL AMADORES
========================= */

.fancybox-slide--iframe {
  padding: 32px;
}

.fancybox-slide--iframe .fancybox-content {
  width: min(950px, calc(100% - 32px));
  height: min(85vh, 820px);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.h_b4:has(> .h_databootit1.gaptop2) {
  min-height: 100vh;
  background: #f7f5f3;
}

.h_databootit1.gaptop2 {
  padding: 34px 38px 0 !important;
  background: #f7f5f3;
  font-family: var(--fuenteM1);
}

.h_databootit1.gaptop2 .d_databootit1 {
  max-width: 880px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--colorPie, #9b3a2a);
  color: #302b28;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.05;
}

.h_databootit1.gaptop2 + .d_pag_x3 {
  max-width: 880px;
  margin: 0 auto;
  padding: 26px 38px 42px;
  background: #f7f5f3;
  color: #3f3935;
  font-family: var(--fuenteM1);
  font-size: 1rem;
  line-height: 1.65;
  text-align: left;
}

.h_databootit1.gaptop2 + .d_pag_x3 p {
  margin: 0 0 1.1em;
}

.h_databootit1.gaptop2 + .d_pag_x3 ul,
.h_databootit1.gaptop2 + .d_pag_x3 ol {
  margin: 0.8em 0 1.4em;
  padding-left: 1.5em;
}

.h_databootit1.gaptop2 + .d_pag_x3 li {
  margin-bottom: 0.35em;
}

.h_databootit1.gaptop2 + .d_pag_x3 strong,
.h_databootit1.gaptop2 + .d_pag_x3 b {
  color: #2d2825;
}

.linkc {
  color: var(--colorPie, #9b3a2a);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.linkc:hover {
  color: var(--colorPie-hover, #d85a47);
}

.d_databookv2_e0 .btnpaynow {
  display: table;
  margin-right: auto;
  margin-left: auto;
  background: var(--colorPie, #9b3a2a);
}

.d_btnv2_0_100.d_e1_mtopbtn {
  background: var(--colorPie, #9b3a2a);
  text-align: center;
}

.btn_volver::before {
  content: "\f060";
  margin-right: 9px;
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
}

.btn_pagar_ahora::before {
  content: "\f09d";
  margin-right: 9px;
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
}

.paytxt,
.pay_return {
  text-align: center;
}

.pay_title .d_databootit1 {
  text-align: center;
}

.paytxt .d_databookv2_ed0,
.pay_return.d_databookv2_ed0 {
  margin-right: auto;
  margin-left: auto;
}

.pay_return .btn_volver_inicio {
  display: inline-block;
  background-color: var(--colorPie, #9b3a2a) !important;
}

.pay_return .btn_volver_inicio::before {
  content: "\f015";
  margin-right: 9px;
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
}

.pay_return .btn_volver_inicio:hover {
  background-color: var(--colorPie-hover, #d85a47) !important;
}

.d_bookv2_bookprice_2 .d_btnv2_0.btnselectv2 {
  background-color: var(--colorPie, #9b3a2a) !important;
}

.d_bookv2_bookprice_2 .d_btnv2_0.btnselectv2:hover {
  background-color: var(--colorPie-hover, #d85a47) !important;
}

.d_databookv2_e0 .btnpaynow:hover,
.d_btnv2_0_100.d_e1_mtopbtn:hover {
  background: var(--colorPie-hover, #d85a47);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .slider {
    height: 70vh;
    min-height: 520px;
    max-height: 700px;
  }

  .booking_bar {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 48px);
    margin: 24px auto 0;
    transform: none;
  }

  .booking_bar_form {
    grid-template-columns: 1fr 1fr;
  }

  .booking_item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .booking_item:nth-child(even) {
    border-right: none;
  }

  .booking_item_btn {
    grid-column: 1 / -1;
    border-bottom: none;
  }

  .h_sld2 {
    margin-bottom: 36px;
  }

  .slider_interior {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .slider_interior::before,
  .slider_interior .slider_video {
    height: 200px;
  }

  .slider_interior .booking_bar {
    width: calc(100% - 48px);
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .daterangepicker {
    width: min(340px, calc(100vw - 32px)) !important;
  }

  .daterangepicker .drp-calendar.left {
    float: none;
    width: 100%;
    max-width: none;
    padding: 8px;
  }

  .daterangepicker .drp-calendar.right {
    display: none !important;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 0;
    border-radius: 4px;
  }

  .slider {
    height: 58vh;
    min-height: 420px;
    max-height: 560px;
  }

  .header_contenedor {
    padding: 0 20px;
  }

  .header_centro {
    display: none;
  }

  .header_derecha a {
    display: none;
  }

  .btn_menu {
    display: flex;
  }

  .menumv_h_lista a {
    font-size: 1.7rem;
  }

  .booking_bar {
    display: none;
  }

  .booking_mobile_open {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 6;
    display: block;
    width: calc(100% - 40px);
    max-width: 340px;
    min-height: 54px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: var(--colorPie, #9b3a2a);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: var(--fuenteM1);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    transform: translateX(-50%);
  }

  .booking_mobile_open::before {
    content: "\f073";
    margin-right: 9px;
    font-family: "Font Awesome 7 Pro";
    font-size: 0.9em;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }

  .booking_mobile_overlay {
    position: fixed;
    inset: 0;
    z-index: 30000;
    display: block;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .booking_mobile_overlay.is-open {
    visibility: visible;
    opacity: 1;
  }

  .booking_mobile_panel {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30010;
    display: block;
    max-height: min(88svh, 720px);
    padding: 24px 20px max(24px, env(safe-area-inset-bottom));
    overflow-y: auto;
    border-radius: 24px 24px 0 0;
    background: #fff;
    box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.3);
    color: #2f2a26;
    transform: translateY(105%);
    transition: transform 0.35s ease;
  }

  .booking_mobile_panel.is-open {
    transform: translateY(0);
  }

  .booking_mobile_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
  }

  .booking_mobile_header h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
  }

  .booking_mobile_close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f0ece8;
    color: #2f2a26;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
  }

  .booking_mobile_form {
    display: grid;
    gap: 10px;
  }

  .booking_mobile_form label {
    margin-top: 7px;
    color: #746e68;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
  }

  .booking_mobile_form input,
  .booking_mobile_form select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #ddd6d0;
    border-radius: 10px;
    background: #fff;
    color: #2f2a26;
    font: inherit;
  }

  .booking_mobile_form .amadores_booking_dates {
    padding-left: 42px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaa39d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 16px 16px;
  }

  .amadores_mobile_guests {
    padding: 6px 14px;
    border: 1px solid #ddd6d0;
    border-radius: 10px;
    background: #fff;
  }

  .amadores_mobile_guests .amadores_guest_row {
    padding: 13px 0;
  }

  .booking_mobile_form button[type="submit"] {
    width: 100%;
    min-height: 54px;
    margin-top: 14px;
    border: 0;
    border-radius: 12px;
    background: var(--colorPie, #9b3a2a);
    color: #fff;
    font-family: var(--fuenteM1);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
  }

  body.booking_mobile_locked {
    overflow: hidden;
  }

  .slider_interior {
    height: auto;
    min-height: 0;
    max-height: none;
    padding-bottom: 16px;
    background: #fff;
  }

  .slider_interior::before,
  .slider_interior .slider_video {
    height: 150px;
  }

  .slider_interior .booking_mobile_open {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 72px);
    max-width: 300px;
    min-height: 48px;
    padding: 11px 20px;
    margin: 14px auto 0;
    font-size: 0.9rem;
    transform: none;
  }

  .fancybox-slide--iframe {
    padding: 10px;
  }

  .fancybox-slide--iframe .fancybox-content {
    width: 100%;
    height: 92vh;
    border-radius: 12px;
  }

  .h_databootit1.gaptop2 {
    padding: 22px 18px 0 !important;
  }

  .h_databootit1.gaptop2 .d_databootit1 {
    padding-bottom: 14px;
    font-size: 2rem;
  }

  .h_databootit1.gaptop2 + .d_pag_x3 {
    padding: 20px 18px 30px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .book_results_title .d_databootit1 {
    padding: 0 20px;
    text-align: center;
  }

  .data_page_title .d_databootit1,
  .data_empty_cart {
    text-align: center;
  }
}

/* =========================
   EFECTO REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.activo {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FOOTER CONTACTO MODERNO
========================= */

.campo_oculto {
  display: none;
}

.footer_contacto {
  width: 100%;
  background-color: #111;
  color: #fff;
  font-family: var(--fuenteM1);
}

.footer_contacto_grid {
  width: 100%;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
}

.footer_mapa {
  min-height: 620px;
}

.footer_mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(15%) brightness(0.78);
}

.footer_info {
  background: var(--colorPie, #9b3a2a);
  color: #fff;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.footer_info .footer_logo_link {
  display: block;
  align-self: center;
  margin-bottom: 28px;
}

.footer_info .footer_logo_link img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
}

.footer_info_etiqueta {
  display: inline-block;
  align-self: center;
  background: #111;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  padding: 10px 16px;
  margin-bottom: 28px;
}

.footer_info h2 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer_info_texto {
  margin: 0 auto 34px;
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
}

.footer_info_datos {
  margin-bottom: 34px;
}

.footer_info_datos p {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.footer_info_datos span {
  font-weight: 700;
  text-transform: uppercase;
}

.footer_redes_moderno {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer_redes_moderno a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--colorPie2, #9b3a2a);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer_redes_moderno a:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   FORMULARIO FOOTER
========================= */

.footer_formulario_box {
  background: #111;
  padding: 70px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer_formulario_box h2 {
  margin: 0 0 34px;
  text-align: center;
  font-family: var(--fuenteM1);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer_formulario {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer_formulario input,
.footer_formulario textarea {
  width: 100%;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 15px 18px;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  line-height: 1.4;
  outline: none;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.footer_formulario input::placeholder,
.footer_formulario textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.footer_formulario input:focus,
.footer_formulario textarea:focus {
  background: #181818;
  border-color: var(--colorPie-hover, #d85a47);
  box-shadow: 0 0 0 2px rgba(216, 90, 71, 0.16);
}

.footer_formulario textarea {
  min-height: 130px;
  resize: vertical;
}

.footer_formulario .cf-turnstile {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 12px auto 24px;
}

.footer_formulario .cf-turnstile iframe {
  max-width: 100%;
}

.footer_formulario button {
  align-self: center;
  border: none;
  background: var(--colorPie, #9b3a2a);
  color: #fff;
  font-family: var(--fuenteM1);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.footer_formulario button:hover {
  background: var(--colorPie-hover, #d85a47);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.footer_formulario.enviando button {
  display: none;
}

/* =========================
   MENSAJES FORMULARIO
========================= */

.footer_form_mensajes {
  width: 100%;
  text-align: center;
}

.footer_form_msg,
.footer_form_estado,
.footer_form_loading {
  display: none;
}

.footer_form_msg,
.footer_form_estado {
  width: 100%;
  padding: 13px 15px;
  margin-top: 4px;
  font-family: var(--fuenteM1);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.footer_form_loading {
  justify-content: center;
  align-items: center;
}

.footer_form_loading img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer_formulario.enviando .footer_form_loading {
  display: flex;
}

.footer_form_ok,
.footer_form_estado.ok {
  background: rgba(13, 127, 0, 0.16);
  border: 1px solid rgba(13, 127, 0, 0.35);
  color: #d7ffd2;
}

.footer_form_ko,
.footer_form_estado.error {
  background: rgba(214, 0, 0, 0.16);
  border: 1px solid rgba(214, 0, 0, 0.35);
  color: #ffd7d7;
}

.footer_formulario.enviado_ok .footer_form_ok,
.footer_form_estado.ok {
  display: block;
}

.footer_formulario.enviado_ko .footer_form_ko,
.footer_form_estado.error {
  display: block;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer_bottom_moderno {
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 20px 28px;
  text-align: center;
}

.footer_bottom_links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.footer_bottom_links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.3s ease;
}

.footer_bottom_links a:hover {
  color: var(--colorPie2, #9b3a2a);
}

.footer_bottom_moderno p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================
   RESPONSIVE FOOTER
========================= */

@media (max-width: 1200px) {
  .footer_contacto_grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer_mapa {
    grid-column: 1 / -1;
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .footer_contacto_grid {
    grid-template-columns: 1fr;
  }

  .footer_mapa {
    min-height: 320px;
  }

  .footer_info,
  .footer_formulario_box {
    padding: 50px 22px;
  }

  .footer_info h2 {
    font-size: 2.4rem;
  }

  .footer_formulario_box h2 {
    font-size: 1.8rem;
  }

  .footer_formulario button {
    width: 100%;
  }
}

/* =========================
   FOOTER RESERVAS REDUCIDO
   Se usa con el PHP nuevo cuando $tipoFooterReservas = 'reducido'
========================= */

.footer_booking {
  width: 100%;
  background: #101010;
  color: #fff;
  font-family: var(--fuenteM1);
  border-top: 3px solid var(--colorPie, #9b3a2a);
}

.footer_booking_inner {
  width: 100%;
  max-width: var(--anchomax);
  margin: 0 auto;
  padding: 58px 55px 26px;
}

.footer_booking_grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  align-items: start;
  gap: 64px;
}

.footer_booking_col {
  min-width: 0;
}

.footer_booking_brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 32px;
}

.footer_booking_brand .footer_logo_link {
  display: block;
  width: fit-content;
}

.footer_booking_brand .footer_logo_link img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: auto;
}

.footer_booking_brand strong {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.footer_booking_title {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 13px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  line-height: 1.2;
}

.footer_booking_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--colorPie, #9b3a2a);
}

.footer_booking_contact_list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.footer_booking_contact_item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.65;
  transition: color 0.3s ease;
}

.footer_booking_contact_item i {
  flex: 0 0 18px;
  margin-top: 5px;
  color: var(--colorPie, #9b3a2a);
  font-size: 1rem;
  text-align: center;
}

.footer_booking_contact_item:hover {
  color: #fff;
}

.footer_booking_legal {
  display: flex;
  flex-direction: column;
}

.footer_booking_legal a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.footer_booking_legal a:first-child {
  padding-top: 0;
}

.footer_booking_legal a:hover {
  color: var(--colorPie-hover, #d85a47);
  padding-left: 6px;
}

.footer_booking_map {
  width: 100%;
  height: 195px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #191919;
}

.footer_booking_map iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  filter: grayscale(18%) brightness(0.78);
}

.footer_booking_social .footer_booking_title {
  margin-bottom: 18px;
}

.footer_booking_redes {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer_booking_redes a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.footer_booking_redes a:hover {
  border-color: var(--colorPie, #9b3a2a);
  background: var(--colorPie, #9b3a2a);
  color: #fff;
  transform: translateY(-2px);
}

.footer_booking_bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer_booking_bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .footer_booking_grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer_booking_col_map {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr);
    align-items: start;
    gap: 36px;
  }

  .footer_booking_map {
    margin-bottom: 0;
  }
}

@media (max-width: 800px) {
  .footer_booking_inner {
    padding: 44px 24px 24px;
  }

  .footer_booking_grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 42px;
  }

  .footer_booking_col_map {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .footer_booking_brand {
    align-items: center;
  }

  .footer_booking_brand .footer_logo_link img {
    max-width: 160px;
  }

  .footer_booking_title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer_booking_contact_item {
    justify-content: center;
  }

  .footer_booking_contact_item i {
    flex-basis: 18px;
  }

  .footer_booking_legal a:hover {
    padding-left: 0;
  }

  .footer_booking_map {
    height: 200px;
    margin-bottom: 36px;
  }

  .footer_booking_redes {
    justify-content: center;
  }

  .footer_booking_bottom {
    margin-top: 42px;
  }
}

/*COOKIES 2022 INICIO*/
.cook_holder{
	position: fixed;
	margin: 0 auto;
	padding: 0;
	margin-top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 20000;
	display: flex;
	align-items: center;
}
.cook_holder_cc{
	position: fixed;
	margin: 0 auto;
	padding: 0;
	margin-top: -10px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 20000;
	display: flex;
	align-items: center;
}
.cook_nodisplay{
	display: none;
}
.cook_holder1{
	margin: 0 auto;
	position: relative;
	padding: 0;
	width: 80%;
	max-width: 500px;
	/*height: 80%;*/
	max-height: 500px;
	background-color: rgb(255, 255, 255);
	z-index: 20000;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 15px;
}
.cook_holder11{
	margin: 0 auto;
	position: relative;
	padding: 0;
	width: 80%;
	max-width: 500px;
	/*height: 80%;*/
	max-height: 400px;
	background-color: rgb(255, 255, 255);
	z-index: 20000;
	padding: 20px;
	box-sizing: border-box;
	overflow-y: auto;
	border-radius: 5px;
}
.cook_holder2{
	margin: 0 auto;
	width: 100%;
	height: auto;
	z-index: 20000;
	font-family: Arial;
	font-size: 0.9rem;
	color: #000000;
	text-align: justify;
	box-sizing: border-box;
}
.titulo{
	font-family: Arial;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	margin: 0;
}
.cook_holder3{
	margin: 0 auto;
	position: relative;
	width: 100%;
	height: auto;
	z-index: 20000;
	bottom:0;
	left:0; right:0;
	bottom: 0;
	box-sizing: border-box;
	margin-bottom: 10px;
}
.cook_holder33{
	margin: 0 auto;
	width: 100%;
	height: auto;
	z-index: 20000;
	left:0; right:0;
	box-sizing: border-box;
	margin-bottom: 0px;
	padding-top: 30px;
}
.cook_btn0{
	margin: 0 auto;
	position: relative;
	text-align: center;
	display: inline-block;
	width: auto;
	height: auto;
	margin-top: 25px;
	font-family: Arial;
	font-size: 0.9rem;
	color: #000000;
	font-weight: bold;
	background-color: rgb(70, 39, 204);
	padding: 10px 20px 10px 20px;
	margin-left: 5px;
	margin-right: 5px;
	cursor: pointer;
	background-color: rgb(238, 238, 238);
	border-radius: 0px;
	border-color: rgba(34, 34, 34, 0.2);
}
.cook_btn0:hover{
	background-color: rgb(213, 211, 211);
}
.cook_btn_color{
	background-color: var(--backgreenbut2);
	color: #FFFFFF;
}
.cook_btn_color:hover{
	background-color: var(--backgreenbut1);
}
.cook_holder_opt{
	margin: 0 auto;
	width: 100%;
	height: auto;
	z-index: 20000;
	font-family: Arial;
	font-size: 0.9rem;
	color: #000000;
	text-align: justify;
	box-sizing: border-box;
	margin-top: 20px;
}
.cook_opt0{
	position: relative;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding-top: 10px;
	clear: both;
	border-top: 1px solid #e9e9e9;
}
.cook_opt1{
	float: left;
	width: 62%;
	height: auto;
	height: auto;
	box-sizing: border-box;
	cursor: pointer;
	font-weight: bold;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
	text-align: left;
}

.cook_opt1:hover{
	color: #999999;
}
.cook_height30{
  height: auto !important;
}
.cook_opt1_symb{
	float: left;
	width: auto;
	height: auto;
	padding-right: 5px;
}
.cook_opt2{
	float: left;
	width: 33%;
	height: auto;
	height: 20px;
	box-sizing: border-box;
	text-align: center;
}
.cook_opt3{
	float: left;
	width: 100%;
	height: 0px;
	box-sizing: border-box;
	overflow: hidden;
}
.cook_opt3_open{
	height: auto;
}
.cook_opt3_txt{
	width: 100%;
	height: auto;
	background-color: rgba(228, 228, 228, 0.37);
	box-sizing: border-box;
	padding: 10px;
}
.cook_holder2 a:link,.cook_holder2 a:visited, .cook_holder2 a:active{
  text-decoration	:none;
	color: #414141;
}
.cook_holder2 a:hover{
	color: #999999;
  transition: all 0.2s ease;
}
.cook_marginbot{
  margin-bottom: 25px;
}

.select_cookies {
	display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing:border-box;
  padding: 5px 8px;
  border: 1px solid #b7b7b7;
  -webkit-border-radius: 3px;
  border-radius: 3px;
	font-family: var(--font101);
	font-size: 0.9em;
	color:rgba(0,0,0,1.00);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgba(252,252,252,1);
  /*
	-webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
  box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
	*/
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	width: auto;
	text-align: center;
	text-align: left;
	cursor: pointer;
}
.d_forbut{
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.d_forbut > a{
  color: inherit;
  text-decoration: none;
}
.btncook_configura{
  margin: 0 auto;
  text-align: center;
  width: auto;
  cursor: pointer;
  font-family: var(--font101);
  background-color: var(--backgreenbut2);
  color: var(--cblanco1);
  padding: 5px 15px;
  border-radius: 10px;
}
.btncook_configura:hover{
  background-color: var(--backgreenbut1);
  transition: all .2s ease;
}
/*COOKIES 2022 FIN*/

/*extras1*/
.d_top_ne:hover .d_sbm0{
  display: block;
}
.d_center{
  text-align: center !important;
}
/*end extras1*/
