@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 {
  --blue1: rgb(19, 66, 107);
  --backtop0: #2f2f2f;
  --backgreen1:#79a62f;
  
  --backgreenbut1:#97cc41;
  --backgreenbut2:#597927;
  --backgreenFoot: #76A423;

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

  
  --cnegro1:#1f1f1f;
  --cgris1:#ccc;
  --cgris2:#4d4d4d;
  --cgris3:#f0f0f0;
  --cblanco1:#fff;

  --backwhite1:#fff;
  --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:#fff;
  --txtblack:#000;
  --maxw: 1100px;
  --maxw2: 1400px;

  --btn1:#DC9F00;
  --bnt1hover:#76A423;
  --linemenu:#FBBA00;

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

  /* Colores del footer / reservas */
  --colorPie: #9b3a2a;
  --colorPie2: #9b3a2a;
  --colorPie-hover: #d85a47;

}

* {
  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: 650px;
  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: -42px;
  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.2fr 1.2fr 1fr 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: hidden;
}

.booking_item {
  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;
}

.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);
}

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

@media (max-width: 1100px) {
  .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;
  }
}

@media (max-width: 900px) {
  .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 {
    position: relative;
    left: auto;
    bottom: auto;
    display: block;
    width: calc(100% - 32px);
    margin: 20px auto 0;
    transform: none;
  }

  .booking_bar_form {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

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

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

  .booking_item_btn {
    padding: 16px;
  }

  .booking_item_btn button {
    min-width: 100%;
  }

  .slider {
    margin-bottom: 0;
  }

  .h_sld2 {
    margin-bottom: 28px;
  }

  .btn_reservar_mv {
    display: none;
  }
}

/* =========================
   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*/
