@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=Cormorant+Garamond:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&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=Oswald:wght@400;500;600;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;0,800;1,700;1,800;1,900&display=swap");

:root {
  --globalVerde1: rgb(13, 127, 0);
  --globalRojo1: rgb(214, 0, 0);
  --globalAmarillo1: rgb(214, 193, 0);
  --btn1_gris: #ededed;
  --btn1_grishover: #d2d2d2;
  --colorNegro1: #000;
  --fuenteT1: "Roboto", sans-serif;
  --fuenteT2: "Montserrat", sans-serif;
  --fuenteT3: "Dancing Script", cursive;
  --fuenteM1: "Jost", sans-serif;
  --anchomax: 1800px;
  --fondogris1: rgb(242, 245, 250);
  --altitudAlto: 480px;
  --colorPie: #9b3a2a;
  --colorPie-hover: #d85a47;
  --colorPie2: #9b3a2a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: var(--fuenteT1);
}

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_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;
}

header.scrolled .header_izquierda img {
  height: 48px;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.activo {
  opacity: 1;
  transform: translateY(0);
}

/* menú móvil */
.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;
}

/* 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;
}

/* slider */
.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 */
.booking_bar {
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1200px;
  z-index: 5;
}

.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: #e96a57;
  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: #d85a47;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(233, 106, 87, 0.28);
}

/* reserva panel */
.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);
}

.reserva_panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.reserva_panel.activo {
  right: 0;
}

.reserva_contenido {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.reserva_contenido h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #3a3530;
  margin: 10px 0 25px;
}

.reserva_form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.reserva_form input,
.reserva_form select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--fuenteM1);
}

.reserva_form button {
  margin-top: 10px;
  padding: 14px;
  background: #e96a57;
  color: #fff;
  border: none;
  border-radius: 8px;
}

.cerrar_reserva {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* main */
.md1_h {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 300px;
  background-color: #f0e5d5;
}

.md1_h_int {
  position: relative;
  margin: 0 auto;
  display: grid;
  width: 100%;
  height: 100%;
  max-width: var(--anchomax);
  grid-template-columns: 2fr 1fr;
  align-items: center;
  padding: 0 3rem;
  box-sizing: border-box;
}

.md1_h_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.md1_h_ornament {
  margin-bottom: 0.6rem;
}

.md1_h_welcome {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3a3530;
  margin: 0 0 6px;
}

.md1_h_tagline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #3a3530;
  margin: 0;
  line-height: 1.15;
}

.md1_h_right {
  border-right: 1px solid #9b3a2a;
  border-bottom: 1px solid #9b3a2a;
  padding: 0.85rem 1rem;
  justify-self: end;
  width: 100%;
  box-sizing: border-box;
}

.md1_h_right_title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: #3a3530;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.md1_h_right_desc {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #3f3a36;
  line-height: 1.6;
  margin: 0;
}

.md2_h {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  max-width: var(--anchomax);
}

/* hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-image: url("../img/hero1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  font-family: var(--fuenteT1);
}

.hero_int {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}

.hero__card {
  position: relative;
  margin: 50px 0 0 50px;
  width: 300px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px 28px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.hero__card::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 2px solid rgba(210, 100, 80, 0.8);
  pointer-events: none;
}

.hero__logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 28px auto;
}

.hero__icon {
  color: rgba(210, 100, 80, 0.8);
  font-size: 2rem;
  display: block !important;
  text-align: center !important;
  position: relative;
  width: auto !important;
  margin-bottom: 20px;
}

.hero__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.hero__title-text {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.18em;
  color: #6b6560;
  text-transform: uppercase;
}

.hero__title-divider {
  display: inline-block;
  width: 2px;
  height: 22px;
  background: rgba(210, 100, 80, 0.7);
  margin: 0 8px;
}

.hero__text {
  font-size: 13.5px;
  color: #555;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 28px;
}

.hero__button {
  display: inline-block;
  padding: 9px 18px;
  background: #e2d5bf;
  color: #6b5e48;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
}

.hero__button:hover {
  background: #d4c4a8;
}

.hero__button,
.servicios_boton {
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero__button:hover,
.servicios_boton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* habitaciones */
.habitaciones {
  width: 100%;
  padding: 100px 20px 90px;
  background-color: #f7f3ee;
}

.habitaciones_int {
  width: 100%;
  max-width: var(--anchomax);
  margin: 0 auto;
  position: relative;
}

.habitaciones_titulo {
  text-align: center;
  margin-bottom: 50px;
}

.habitaciones_sub {
  margin: 0 0 10px;
  font-family: var(--fuenteM1);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: #9b3a2a;
}

.habitaciones_titulo h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #2f2a38;
}

.habitacion_card {
  height: 100%;
}

.habitacion_img {
  position: relative;
  height: 430px;
  overflow: hidden;
  border-radius: 4px;
}

.habitacion_img_principal,
.habitacion_img_hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    opacity 0.6s ease,
    transform 0.8s ease;
}

.habitacion_img_principal {
  opacity: 1;
  z-index: 1;
}

.habitacion_img_hover {
  opacity: 0;
  z-index: 2;
}

.habitacion_img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.habitacion_img_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 14px);
  z-index: 4;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.92);
  color: #2f2a38;
  text-decoration: none;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 30px;
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.habitacion_img_btn:hover {
  background: #e96a57;
  color: #fff;
}

.habitacion_card:hover .habitacion_img_principal {
  opacity: 0;
  transform: scale(1.05);
}

.habitacion_card:hover .habitacion_img_hover {
  opacity: 1;
  transform: scale(1.05);
}

.habitacion_card:hover .habitacion_img::after {
  opacity: 1;
}

.habitacion_card:hover .habitacion_img_btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

.habitacion_info {
  width: calc(100% - 36px);
  margin: -48px auto 0;
  position: relative;
  z-index: 10;
  background-color: #fff;
  padding: 24px 24px 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.habitacion_info h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2f2a38;
}

.habitacion_info p {
  margin: 0 0 18px;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  color: #6f6a65;
}

.habitacion_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.habitacion_precio {
  font-family: var(--fuenteM1);
  font-size: 1rem;
  font-weight: 600;
  color: #e96a57;
}

.habitacion_btn {
  text-decoration: none;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  font-weight: 500;
  color: #2f2a38;
  border-bottom: 1px solid #e96a57;
  padding-bottom: 3px;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.habitacion_btn:hover {
  color: #e96a57;
  transform: translateY(-1px);
}

.habitaciones_nav {
  position: absolute;
  top: 35px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 20;
}

.habitaciones_prev,
.habitaciones_next {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: 0.3s;
}

.habitaciones_prev:hover,
.habitaciones_next:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.habitaciones_prev::after,
.habitaciones_next::after {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.habitaciones_pagination {
  margin-top: 15px;
}

.habitaciones_pagination .swiper-pagination-bullet {
  background: #a79f97;
  opacity: 1;
}

.habitaciones_pagination .swiper-pagination-bullet-active {
  background: #e96a57;
}

.swiperHabitaciones {
  width: 100%;
  padding-bottom: 55px;
  position: relative;
}

.habitaciones_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  align-items: start;
}

@media (max-width: 1200px) {
  .habitaciones_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }
}

/* room detail */
.room_detail_page {
  width: 100%;
  background-color: #f7f3ee;
  padding: 110px 20px 90px;
}

.room_detail_int {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.room_detail_titulo {
  margin-bottom: 60px;
}

.room_detail_intro {
  margin: 14px 0 0;
  font-family: var(--fuenteM1);
  font-size: 1rem;
  color: #7a736d;
  letter-spacing: 0.03rem;
}

.room_detail_top {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.room_detail_texto {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.room_detail_bloque {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(47, 42, 56, 0.12);
}

.room_detail_bloque:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.room_detail_bloque h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #2f2a38;
}

.room_detail_bloque p {
  margin: 0;
  font-family: var(--fuenteM1);
  font-size: 0.97rem;
  line-height: 1.9;
  color: #4d4742;
}

.room_detail_imagen {
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
}

.room_detail_sep {
  width: 100%;
  height: 1px;
  background: rgba(47, 42, 56, 0.12);
  margin: 55px 0;
}

.room_detail_amenities,
.room_detail_rules,
.room_detail_location,
.room_detail_highlights {
  margin-bottom: 60px;
}

.room_detail_amenities h3,
.room_detail_rules h3,
.room_detail_location h3,
.room_detail_highlights h3 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: #2f2a38;
}

.room_detail_amenities_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 28px;
}

.room_detail_amenities_grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  color: #4d4742;
}

.room_detail_amenities_grid i {
  color: #e96a57;
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
}

.room_detail_rules_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 28px;
}

.room_detail_rules_grid h4,
.room_detail_note h4,
.room_detail_highlights_grid h4 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #2f2a38;
}

.room_detail_rules_grid ul,
.room_detail_highlights_grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.room_detail_rules_grid li,
.room_detail_highlights_grid li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4d4742;
}

.room_detail_highlights_grid li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #e96a57;
  font-size: 1.1rem;
  line-height: 1.2;
}

.room_detail_note {
  padding-top: 22px;
  border-top: 1px solid rgba(47, 42, 56, 0.12);
}

.room_detail_note p {
  margin: 0;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  line-height: 1.9;
  color: #4d4742;
}

.room_detail_mapa {
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.room_detail_mapa iframe {
  display: block;
  width: 100%;
}

.room_detail_highlights_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* slider habitación */
.roomDetailSwiper {
  width: 100%;
  height: 100%;
}

.roomDetailSwiper .swiper-slide {
  display: flex;
}

.room_detail_slide_img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.room_detail_prev,
.room_detail_next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.room_detail_prev:hover,
.room_detail_next:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.room_detail_prev::after,
.room_detail_next::after {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.room_detail_pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.room_detail_pagination .swiper-pagination-bullet-active {
  background: #e96a57;
  opacity: 1;
}

.room_rule_card {
  background: rgba(255, 255, 255, 0.55);
  padding: 24px 24px 20px;
  border: 1px solid rgba(47, 42, 56, 0.08);
}

.room_rule_head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.room_rule_head i {
  color: #e96a57;
  font-size: 1.05rem;
  width: 20px;
  text-align: center;
}

.room_rule_head h4 {
  margin: 0;
}

.room_rule_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.room_rule_list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4d4742;
}

.room_rule_list li i {
  color: #e96a57;
  font-size: 0.95rem;
  width: 18px;
  min-width: 18px;
  text-align: center;
  margin-top: 4px;
}

.room_rule_list li span {
  display: block;
}

/* lightbox */
.room_lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.room_lightbox.activo {
  opacity: 1;
  visibility: visible;
}

.room_lightbox img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.room_lightbox_close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.room_lightbox_close:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.05);
}

.room_lightbox_nav {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.room_lightbox_nav:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%) scale(1.05);
}

.room_lightbox_prev {
  left: 24px;
}

.room_lightbox_next {
  right: 24px;
}

/* parallax ciclista */
.parallax_ciclista {
  position: relative;
  width: 100%;
  min-height: 560px;

  /* La imagen viene desde PHP en el style="" */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.parallax_ciclista_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 1;
}

.parallax_ciclista_int {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1050px;
  padding: 80px 24px;
  color: #fff;
}

.parallax_ciclista_int h2 {
  margin: 0 0 22px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.parallax_ciclista_int p {
  margin: 0 auto 36px;
  max-width: 900px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.parallax_ciclista_boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 42px;
  min-width: 280px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.parallax_ciclista_boton i {
  font-size: 1.25rem;
}

.parallax_ciclista_boton:hover {
  background: #e96a57;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}

/* bloque altitud */
.servicios_holder {
  width: 100%;
  background-color: #f7f3ee;
  padding-bottom: 40px;
}

.servicios_altitud {
  width: 100%;
  max-width: var(--anchomax);
  height: var(--altitudAlto);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.altitud_texto {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 55px;
  background-color: #d94f3d;
  background-image: url("../img/fondoserviciosizd.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.altitud_texto_interior {
  width: 100%;
  max-width: 560px;
  text-align: left;
}

.altitud_titulo {
  margin: 0;
  font-family: var(--fuenteM1);
  font-size: 4.5rem;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #f6e7da;
}

.altitud_separador {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0 24px;
}

.altitud_separador span {
  display: block;
  width: 115px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.45);
}

.altitud_separador img {
  width: 34px;
  height: auto;
  display: block;
}

.altitud_subtitulo {
  margin: 0 0 38px;
  font-family: var(--fuenteM1);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  color: #f6e7da;
}

.altitud_boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 360px;
  padding: 22px 34px;
  background-color: #f3e4d6;
  color: #2f2a26;
  text-decoration: none;
  border-radius: 14px;
  font-family: var(--fuenteM1);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.altitud_boton:hover {
  background-color: #ecddcf;
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.2);
}

.altitud_flecha {
  font-size: 1.45rem;
  line-height: 1;
}

.altitud_imagen {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.altitud_imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.altitud_imagen:hover img {
  transform: scale(1.05);
}

/* swiper general */
.bloque_slider {
  width: 100%;
  max-width: var(--anchomax);
  margin: 80px auto;
  padding: 0 20px;
}

.bloque_slider .swiper {
  width: 100%;
  height: auto;
  padding-bottom: 55px;
}

.bloque_slider .swiper-slide {
  background: transparent;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.slide_card {
  width: 100%;
}

.slide_img {
  overflow: hidden;
}

.slide_img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.slide_card:hover .slide_img img {
  transform: scale(1.05);
}

.slide_texto {
  text-align: center;
  padding: 24px 18px 0;
}

.slide_linea {
  display: block;
  width: 60px;
  height: 2px;
  margin: 0 auto 14px;
  background-color: #e96a57;
  border-radius: 2px;
  opacity: 0.85;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide_card:hover .slide_linea {
  width: 80px;
}

.slide_texto p {
  margin: 0;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  line-height: 1.7;
  color: #3f3a36;
  opacity: 0.78;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.slide_card:hover .slide_texto p {
  opacity: 1;
  transform: translateY(0);
}

.bloque_slider .swiper-pagination {
  bottom: 5px !important;
}

.bloque_slider .swiper-pagination-bullet {
  background: #666;
}

.bloque_slider .swiper-pagination-bullet-active {
  background: #e96a57;
}

.bloque_slider .swiper-button-next,
.bloque_slider .swiper-button-prev {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: 0.3s;
}

.bloque_slider .swiper-button-next:hover,
.bloque_slider .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* contacto */
.contacto_page {
  width: 100%;
  background-color: #f7f3ee;
  padding: 100px 20px 90px;
}

.contacto_page_int {
  width: 100%;
  max-width: var(--anchomax);
  margin: 0 auto;
}

.contacto_top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

.contacto_form_box {
  background: transparent;
}

.contacto_sub {
  margin: 0 0 10px;
  font-family: var(--fuenteM1);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: #9b3a2a;
}

.contacto_titulo {
  margin: 0 0 35px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #2f2a38;
}

.contacto_formulario {
  width: 100%;
}

.contacto_form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contacto_formulario input,
.contacto_formulario textarea {
  width: 100%;
  border: none;
  background: #efe7de;
  padding: 16px 18px;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  color: #2f2a38;
  outline: none;
  border-radius: 0;
}

.contacto_formulario input::placeholder,
.contacto_formulario textarea::placeholder {
  color: #7e766f;
}

.contacto_formulario textarea {
  resize: vertical;
  min-height: 180px;
  margin-bottom: 18px;
}

.contacto_formulario .cf-turnstile {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 4px auto 20px;
}

.contacto_formulario .cf-turnstile iframe {
  max-width: 100%;
}

.contacto_formulario button {
  border: none;
  background: #e96a57;
  color: #fff;
  font-family: var(--fuenteM1);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  padding: 16px 30px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contacto_formulario button:hover {
  background: #d85a47;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.contacto_formulario.enviando button {
  display: none;
}

.contacto_formulario .footer_form_mensajes {
  margin-bottom: 18px;
}

.contacto_formulario .footer_form_ok {
  color: #21601b;
}

.contacto_formulario .footer_form_ko {
  color: #8b2020;
}

.contacto_formulario.enviando .footer_form_loading {
  display: flex;
}

.contacto_formulario.enviado_ok .footer_form_ok {
  display: block;
}

.contacto_formulario.enviado_ko .footer_form_ko {
  display: block;
}

.contacto_info_box {
  padding-top: 6px;
}

.contacto_info_box h2 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2f2a38;
}

.contacto_info_item {
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(47, 42, 56, 0.14);
}

.contacto_info_label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--fuenteM1);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: #9b3a2a;
}

.contacto_info_item p {
  margin: 0;
  font-family: var(--fuenteM1);
  font-size: 1rem;
  line-height: 1.8;
  color: #3f3a36;
}

.contacto_rrss {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.contacto_rrss a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #2f2a38;
  color: #fff;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.contacto_rrss a:hover {
  background: #e96a57;
  transform: translateY(-2px);
}

.contacto_mapa {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.contacto_mapa iframe {
  display: block;
  width: 100%;
}

/* legales */
.legal_page {
  width: 100%;
  background-color: #f7f3ee;
  padding: 100px 20px 90px;
}

.legal_page_int {
  width: 100%;
  max-width: var(--anchomax);
  margin: 0 auto;
  padding: 0 40px;
}

.legal_header {
  margin-bottom: 50px;
}

.legal_sub {
  margin: 0 0 10px;
  font-family: var(--fuenteM1);
  font-size: 0.85rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: #9b3a2a;
}

.legal_titulo {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #2f2a38;
}

.legal_content {
  max-width: 900px;
}

.legal_bloque {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(47, 42, 56, 0.12);
}

.legal_bloque h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #2f2a38;
}

.legal_bloque p {
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  line-height: 1.9;
  color: #3f3a36;
}

/* =========================
   ALTITUDE CYCLING / HIPOXIA
========================= */

.cycling_altitude {
  width: 100%;
  background: #f7f3ee;
}

.cycling_altitude_intro {
  padding: 110px 20px 70px;
}

.cycling_altitude_intro_int {
  max-width: var(--anchomax);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: end;
}

.cycling_altitude_kicker {
  margin: 0 0 12px;
  font-family: var(--fuenteM1);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: #9b3a2a;
}

.cycling_altitude_intro_left h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  line-height: 1.05;
  color: #2f2a38;
}

.cycling_altitude_intro_right p {
  margin: 0;
  font-family: var(--fuenteM1);
  font-size: 1rem;
  line-height: 1.95;
  color: #4d4742;
}

.cycling_altitude_slider_wrap {
  max-width: var(--anchomax);
  margin: 0 auto;
  padding: 0 20px 90px;
}

.cyclingAltitudeSwiper {
  width: 100%;
  padding-bottom: 65px;
}

.cycling_slide_card {
  position: relative;
  overflow: hidden;
  height: 620px;
}

.cycling_slide_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 4.5s ease;
}

.cycling_slide_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.05)
  );
}
/* slide activo */
.swiper-slide-active .cycling_slide_card img {
  transform: scale(1);
}

.cycling_slide_caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 34px 34px 30px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.cycling_slide_line {
  display: inline-block;
  width: 70px;
  height: 2px;
  background: #e96a57;
  margin-bottom: 18px;
}

.cycling_slide_caption h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.cycling_slide_caption p {
  margin: 0;
  max-width: 520px;
  font-family: var(--fuenteM1);
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.swiper-slide-active .cycling_slide_caption {
  opacity: 1;
  transform: translateY(0);
}

.cycling_altitude_prev,
.cycling_altitude_next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}

.cycling_altitude_prev::after,
.cycling_altitude_next::after {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.cycling_altitude_pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.cycling_altitude_pagination .swiper-pagination-bullet-active {
  background: #e96a57;
  opacity: 1;
}

.cycling_benefits {
  padding: 0 20px 100px;
}

.cycling_benefits_int {
  max-width: var(--anchomax);
  margin: 0 auto;
  padding: 0 40px;
}

.cycling_benefits_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cycling_benefit_card {
  background: #fff;
  padding: 34px 30px 30px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.cycling_benefit_number {
  margin-bottom: 18px;
  font-family: var(--fuenteM1);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14rem;
  color: #9b3a2a;
}

.cycling_benefit_card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #2f2a38;
}

.cycling_benefit_card p {
  margin: 0;
  font-family: var(--fuenteM1);
  font-size: 0.96rem;
  line-height: 1.9;
  color: #4d4742;
}

.cycling_how {
  padding: 0 20px 100px;
}

.cycling_how_int {
  max-width: var(--anchomax);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.cycling_how_left h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1.08;
  color: #2f2a38;
}

.cycling_how_text {
  margin: 0;
  font-family: var(--fuenteM1);
  font-size: 1rem;
  line-height: 1.95;
  color: #4d4742;
}

.cycling_how_right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.cycling_step {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(47, 42, 56, 0.08);
  padding: 28px 24px;
}

.cycling_step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #9b3a2a;
  color: #fff;
  font-family: var(--fuenteM1);
  font-weight: 700;
}

.cycling_step p {
  margin: 0;
  font-family: var(--fuenteM1);
  font-size: 0.96rem;
  line-height: 1.8;
  color: #4d4742;
}

.cycling_safety {
  padding: 0 20px 100px;
}

.cycling_safety_int {
  max-width: var(--anchomax);
  margin: 0 auto;
  padding: 0 40px;
}

.cycling_safety_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cycling_safety_card {
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(47, 42, 56, 0.12);
}

.cycling_safety_card h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #2f2a38;
}

.cycling_safety_card p {
  margin: 0;
  font-family: var(--fuenteM1);
  font-size: 0.96rem;
  line-height: 1.9;
  color: #4d4742;
}

.cycling_statement {
  position: relative;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
}

.cycling_statement_int {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
}

.cycling_statement_kicker {
  margin: 0 0 14px;
  font-family: var(--fuenteM1);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: #f0d7c7;
}

.cycling_statement h2 {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  line-height: 1.05;
}

.cycling_statement p {
  margin: 0 auto 32px;
  max-width: 680px;
  font-family: var(--fuenteM1);
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.9);
}

.cycling_statement_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  background: #e96a57;
  color: #fff;
  text-decoration: none;
  font-family: var(--fuenteM1);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cycling_statement_btn:hover {
  background: #d85a47;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

/* fin hipoxia */

/* =========================
   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);
  color: #fff;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.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);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer_redes_moderno a:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.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);
  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_form_acciones {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  margin-top: 0;
}

.footer_formulario button {
  align-self: center;
  border: none;
  background: var(--colorPie);
  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);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.footer_formulario.enviando button {
  display: none;
}

.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_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);
}

.footer_bottom_moderno p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================
   FOOTER CLÁSICO / LEGADO
========================= */
footer {
  width: 100%;
  background: linear-gradient(to bottom, #3a3530, #2b2724);
  color: #fff;
  padding: 60px 20px 24px;
  box-sizing: border-box;
  font-family: var(--fuenteM1);
}

.footer_interno {
  margin: 0 auto;
  width: 100%;
  max-width: var(--anchomax);
}

.footer_superior {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.footer_box {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer_box h3 {
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  color: #f0d7c7;
  font-family: var(--fuenteM1);
  font-weight: 600;
}

.footer_box a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer_box a:hover {
  color: #e96a57;
  transform: translateY(-1px);
}

.footer_box p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.86);
}

.footer_box iframe {
  border-radius: 10px;
  overflow: hidden;
}

.footer_box img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.footer_redes {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.footer_redes a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer_redes a i {
  color: #fff;
  transition: color 0.3s ease;
}

.footer_redes a:hover {
  background-color: #e96a57;
  border-color: #e96a57;
  transform: translateY(-2px);
}

.footer_redes a:hover i {
  color: #fff;
}

.footer_inferior {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  text-align: center;
  font-size: 0.9rem;
}

.footer_inferior a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer_inferior a:hover {
  color: #e96a57;
}

.footer_inferior p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.footer_logo {
  margin: 0 auto;
  max-width: var(--anchomax);
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 24px 20px;
}

.footer_logo img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* responsive principal */
@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;
  }

  .md1_h {
    height: auto;
    padding: 50px 0;
  }

  .md1_h_int {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .md1_h_right {
    justify-self: start;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 60px 20px;
  }

  .hero__card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 28px 22px;
  }

  .servicios {
    flex-direction: column;
  }

  .servicios_texto,
  .servicios_imagen {
    width: 100%;
  }

  .servicios_texto_interior {
    font-size: 2rem;
    padding: 30px 20px;
  }

  .bloque_slider .swiper {
    height: 260px;
  }

  .bloque_slider .swiper-button-next,
  .bloque_slider .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .footer_superior {
    flex-direction: column;
    gap: 28px;
  }

  .footer_box {
    min-width: 100%;
  }

  .footer_box h3 {
    margin-bottom: 14px;
  }

  .footer_logo {
    padding: 20px 15px;
  }

  .footer_logo img {
    height: 50px;
  }

  .booking_bar {
    display: 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;
  }

  .btn_reservar_mv {
    display: block;
  }

  .parallax_ciclista {
    min-height: 500px;
    background-attachment: scroll;
    background-position: center;
  }

  .parallax_ciclista_int {
    padding: 70px 20px;
  }

  .parallax_ciclista_int h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
    line-height: 1;
    margin-bottom: 18px;
  }

  .parallax_ciclista_int p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .parallax_ciclista_boton {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    padding: 18px 24px;
    font-size: 0.9rem;
  }

  .habitaciones {
    padding: 80px 20px 70px;
  }

  .habitaciones_titulo h2 {
    font-size: 2.4rem;
  }

  .habitaciones_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .habitacion_img {
    height: 340px;
  }

  .habitacion_img_btn {
    opacity: 1;
    top: auto;
    bottom: 18px;
    transform: translate(-50%, 0);
  }

  .habitacion_info {
    width: calc(100% - 24px);
    margin-top: -36px;
    padding: 20px 18px;
  }

  .habitacion_info h3 {
    font-size: 1.7rem;
  }

  .habitaciones_prev,
  .habitaciones_next {
    display: none;
  }

  .contacto_page {
    padding: 120px 20px 70px;
  }

  .contacto_top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacto_titulo {
    font-size: 2.5rem;
  }

  .contacto_form_grid {
    grid-template-columns: 1fr;
  }

  .contacto_formulario button {
    width: 100%;
  }

  .contacto_mapa iframe {
    height: 320px;
  }

  .legal_page_int {
    padding: 0 20px;
  }

  .legal_titulo {
    font-size: 2.4rem;
  }

  .legal_content {
    max-width: 100%;
  }

  .room_detail_page {
    padding: 110px 20px 70px;
  }

  .room_detail_titulo {
    margin-bottom: 40px;
  }

  .room_detail_top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .room_detail_sep {
    margin: 40px 0;
  }

  .room_detail_amenities_grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .room_detail_rules_grid,
  .room_detail_highlights_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .room_detail_amenities h3,
  .room_detail_rules h3,
  .room_detail_location h3,
  .room_detail_highlights h3 {
    font-size: 1.9rem;
  }

  .room_detail_bloque h3 {
    font-size: 1.7rem;
  }

  .room_detail_slide_img {
    height: 320px;
  }

  .room_detail_prev,
  .room_detail_next {
    width: 38px;
    height: 38px;
  }

  .room_detail_prev::after,
  .room_detail_next::after {
    font-size: 15px;
  }

  .room_lightbox {
    padding: 18px;
  }

  .room_lightbox_close {
    top: 14px;
    right: 14px;
  }

  .room_lightbox_nav {
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
  }

  .room_lightbox_prev {
    left: 12px;
  }

  .room_lightbox_next {
    right: 12px;
  }

  .servicios_altitud {
    min-height: auto;
    flex-direction: column;
  }

  .altitud_texto,
  .altitud_imagen {
    width: 100%;
  }

  .altitud_texto {
    padding: 48px 24px;
  }

  .altitud_texto_interior {
    max-width: 100%;
  }

  .altitud_titulo {
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
  }

  .altitud_separador {
    margin: 24px 0 18px;
  }

  .altitud_separador span {
    width: 70px;
  }

  .altitud_separador img {
    width: 28px;
  }

  .altitud_subtitulo {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .altitud_boton {
    width: 100%;
    min-width: 0;
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .servicios_holder {
    padding-bottom: 100px;
  }
  .altitud_imagen {
    min-height: 320px;
  }

  .altitud_imagen img {
    object-position: 72% center;
  }
  .md2_h {
    padding-top: 1px;
  }
}

/* responsive footer nuevo */
@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;
  }

  .cycling_altitude_intro {
    padding: 90px 20px 55px;
  }

  .cycling_altitude_intro_int,
  .cycling_how_int {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .cycling_altitude_intro_left h2,
  .cycling_how_left h2,
  .cycling_statement h2 {
    font-size: 2.35rem;
  }

  .cycling_slide_card {
    height: 420px;
  }

  .cycling_slide_caption {
    padding: 24px 22px 22px;
  }

  .cycling_slide_caption h3 {
    font-size: 1.8rem;
  }

  .cycling_benefits_int,
  .cycling_safety_int {
    padding: 0 20px;
  }

  .cycling_benefits_grid,
  .cycling_safety_grid,
  .cycling_how_right {
    grid-template-columns: 1fr;
  }

  .cycling_statement {
    padding: 90px 20px;
  }

  .cycling_altitude_prev,
  .cycling_altitude_next {
    display: none;
  }
}
@media (max-width: 480px) {
  .parallax_ciclista {
    min-height: 460px;
  }

  .parallax_ciclista_int h2 {
    font-size: 2.45rem;
  }

  .parallax_ciclista_int p {
    font-size: 0.95rem;
  }
}
