/* =====================================================================
   app.css — Hotel Mar Andino CMS
   Basado en análisis de imágenes reales del sitio HMA
   ===================================================================== */

/* ── Variables ─────────────────────────────────────────────────────── */
:root {
  --primary:      #1a1a1a;
  --primary-dark: #000;
  --accent:       #c9a84c;
  --accent-dark:  #a8852d;
  --text:         #1a1a1a;
  --text-muted:   #5a5a5a;
  --text-light:   rgba(255,255,255,.88);
  --bg-light:     #f5f4f0;
  --white:        #ffffff;
  --border:       rgba(0,0,0,.08);
  --border-white: rgba(255,255,255,.18);
  --shadow:       0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.18);
  --radius-card:  12px;
  --navbar-h:     58px;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
  --font-display: 'Cormorant Garamond','Playfair Display',Georgia,serif;
  --font-body:    'Montserrat','Mulish',system-ui,sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a  { text-decoration: none; transition: var(--transition); }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

/* ── Botones ────────────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: .5rem 1.6rem;
  transition: var(--transition);
  white-space: nowrap;
}
/* Botón outline semitransparente blanco — usado sobre imágenes oscuras */
.btn-hma {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-hma:hover {
  background: rgba(255,255,255,.22);
  border-color: #fff;
  color: #fff;
}
/* Botón negro sólido — usado en cards y CTAs */
.btn-dark-hma {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .72rem;
}
.btn-dark-hma:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}
.btn-accent {
  background: var(--accent);
  border: 1.5px solid var(--accent);
  color: var(--primary);
  font-weight: 700;
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background: #333; border-color: #333; color: #fff; }
.btn-lg  { padding: .65rem 2rem; font-size: .82rem; }
.btn-sm  { padding: .35rem 1.1rem; font-size: .72rem; }

/* ── Helpers ────────────────────────────────────────────────────────── */
.section-py    { padding: 80px 0; }
.section-py-sm { padding: 55px 0; }
.bg-warm       { background: var(--bg-light); }
.bg-dark-hma   { background: #0f0f0f; }
.text-accent   { color: var(--accent) !important; }
.font-display  { font-family: var(--font-display) !important; }

/* ══════════════════════════════════════════════════════════════════
   NAVBAR — oscura fija, logo izquierda, menú centrado, RRSS derecha
   ══════════════════════════════════════════════════════════════════ */
.main-navbar {
  background: rgba(30,30,30,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: var(--navbar-h);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .35s ease;
}
.main-navbar.scrolled { background: rgba(20,20,20,.98); }
.main-navbar .container-xl {
  height: 100%;
  display: flex;
  align-items: center;
}
/* Logo */
.navbar-brand { flex-shrink: 0; }
.brand-logo-img { height: 36px; object-fit: contain; filter: brightness(0) invert(1); }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1;
}
/* Nav links */
.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .8rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.82) !important;
  padding: 0 1.2rem !important;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  position: relative;
  transition: color .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff !important; }
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.2rem; right: 1.2rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
/* RRSS */
.navbar-social { display: flex; align-items: center; gap: .45rem; flex-shrink: 0; }
.navbar-social a {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: var(--transition);
}
.navbar-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
/* Menú móvil como offcanvas (desliza desde la derecha); en desktop (lg+) Bootstrap lo vuelve
   a mostrar como el menú en línea normal, así que estas reglas quedan acotadas a <lg. */
#navMenuHMA.offcanvas { z-index: 2050; }
@media (max-width: 991.98px) {
  /* #navMenuHMA vive dentro de .main-navbar, que tiene backdrop-filter: eso la
     convierte en el "containing block" de sus hijos fixed, así que bottom:0 quedaba
     pegado al fondo de la navbar (~57px) en vez del fondo real de la pantalla.
     Se fuerza el alto explícito para que ocupe la pantalla completa igual. */
  #navMenuHMA.offcanvas { background: #1a1a1a; width: min(300px, 85vw); height: 100dvh; }
  /* En mobile no hay scrollbar "real" que ocupe espacio de layout, pero Bootstrap
     igual calcula un padding-right de compensación al abrir el offcanvas (para que
     el fondo no salte al perder la scrollbar) y en este rango lo calcula mal,
     dejando una franja en blanco a la derecha del contenido. Se anula. */
  body { padding-right: 0 !important; }
  #navMenuHMA .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,.08); padding: 1.3rem 1.4rem; }
  #navMenuHMA .offcanvas-title { font-family: var(--font-display); font-size: 1.2rem; color: #fff; }
  #navMenuHMA .offcanvas-body { padding: 0; }
  #navMenuHMA .navbar-nav { width: 100%; }
}
/* Toggler */
.navbar-toggler {
  border: 1px solid rgba(255,255,255,.28);
  padding: .3rem .55rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.82%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Dropdown */
.dropdown-menu {
  background: rgba(18,18,18,.97);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  padding: .4rem 0;
  min-width: 170px;
}
.dropdown-item {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  letter-spacing: .05em;
  padding: .5rem 1.1rem;
}
.dropdown-item:hover { background: rgba(255,255,255,.06); color: #fff; }

/* ══════════════════════════════════════════════════════════════════
   HOME — HERO CARRUSEL (Imagen 5)
   Logo HMA centrado, texto "Tu descanso ideal / en Rancagua" en itálica
   ══════════════════════════════════════════════════════════════════ */
.hero-carousel { position: relative; height: 100vh; min-height: 560px; }
.hero-slide {
  position: relative;
  height: 100vh; min-height: 560px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.38) 0%,
    rgba(0,0,0,.30) 50%,
    rgba(0,0,0,.52) 100%);
  z-index: 1;
}
.hero-slide-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1rem; max-width: 640px;
}
.hero-brand-logo {
  height: 80px; object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 1.4rem;
  display: block; margin-left: auto; margin-right: auto;
}
/* Texto del hero — estilo "Tu descanso ideal / en Rancagua" */
.hero-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem,2.2vw,1.4rem);
  color: rgba(255,255,255,.9);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: .1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,6vw,4.2rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-subtitle {
  font-size: clamp(.82rem,1.4vw,.95rem);
  color: rgba(255,255,255,.78);
  margin-bottom: 2rem;
  line-height: 1.65;
}
/* Carousel controls */
.carousel-control-prev, .carousel-control-next { width: 44px; z-index: 10; }
.carousel-control-prev-icon, .carousel-control-next-icon { width: 26px; height: 26px; }
.carousel-indicators [data-bs-target] {
  width: 30px; height: 2px;
  border-radius: 0; border: none;
  background: rgba(255,255,255,.45);
  transition: width .3s, background .3s;
}
.carousel-indicators .active { background: var(--accent); width: 42px; }

/* ══════════════════════════════════════════════════════════════════
   HOME — SECCIÓN INTRO (Imagen 5: "Confort, atención y descanso pleno")
   ══════════════════════════════════════════════════════════════════ */
.home-intro {
  padding: 65px 0 50px;
}
.home-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.home-intro p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
  margin: 0 auto !important;
  max-width: 560px;
}

/* ══════════════════════════════════════════════════════════════════
   HOME — CARRUSEL DE SERVICIOS (zona roja Imagen 8)
   3 cards visibles, con imagen arriba, título + desc + botón negro abajo
   ══════════════════════════════════════════════════════════════════ */
.services-carousel-section { padding: 0 0 60px; }
.services-carousel-section .carousel { position: relative; }

/* Card de servicio */
.service-slide-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  height: 100%;
}
.service-slide-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.service-slide-card-body {
  padding: 1.1rem 1rem 1.2rem;
  background: var(--white);
}
.service-slide-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--primary);
}
.service-slide-card-text {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: .9rem;
}
/* Indicadores circulares del carrusel de servicios */
.services-indicators {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
.services-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  background: #fff;
  padding: 0;
  transition: background .25s;
}
.services-indicators button.active { background: var(--primary); }

/* Transición lenta al deslizar (carrusel de servicios: Home, Corporativo, Restaurante, Nosotros/Salones) */
#servicesCarousel .carousel-item,
#corpCarousel .carousel-item,
#terraMenuCarousel .carousel-item,
#corpEventsCarousel .carousel-item {
  transition-duration: 1.2s;
  transition-timing-function: ease-in-out;
}
#servicesCarousel .carousel-item-start.active,
#servicesCarousel .carousel-item-end.active,
#corpCarousel .carousel-item-start.active,
#corpCarousel .carousel-item-end.active,
#terraMenuCarousel .carousel-item-start.active,
#terraMenuCarousel .carousel-item-end.active,
#corpEventsCarousel .carousel-item-start.active,
#corpEventsCarousel .carousel-item-end.active {
  transition-duration: 1.2s;
}

/* ══════════════════════════════════════════════════════════════════
   HOME — MAPA + RANCAGUA texto (Imagen 5)
   ══════════════════════════════════════════════════════════════════ */
.rancagua-section {
  padding: 60px 0;
}
.rancagua-section .map-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rancagua-section .map-img {
  max-width: 500px;
  width: 100%;
  opacity: .92;
}
.rancagua-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 700;
  margin-bottom: .8rem;
}
.rancagua-section p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════════
   HOME — SECCIÓN "NUESTRAS HABITACIONES" oscura con imagen de fondo
   (Imagen 5 — bloque con imagen + texto centrado + botón)
   ══════════════════════════════════════════════════════════════════ */
.home-rooms-banner {
  position: relative;
  min-height: 800px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.home-rooms-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 1;
}
.home-rooms-banner-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem 1rem;
}
.home-rooms-banner-content h1, .home-rooms-banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,4vw,3rem);
  color: #fff;
  margin-bottom: .6rem;
}
.home-rooms-banner-content p {
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════
   HOME — LISTA DE SERVICIOS (Imagen 5 — grilla con íconos)
   ══════════════════════════════════════════════════════════════════ */
.home-services-list {
  padding: 55px 0 65px;
  background: var(--bg-light);
}
.home-services-list h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem,3vw,2.4rem);
  margin-bottom: .5rem;
}
.home-services-list .sub {
  font-size: .85rem; color: var(--text-muted); margin-bottom: 2.5rem;
}
.service-item {
  display: flex; align-items: center; gap: .7rem;
  padding: .55rem 0;
  font-size: .82rem; color: var(--text-muted);
}
.service-item i { font-size: 1.1rem; color: var(--primary); flex-shrink: 0; }
.service-item span { font-weight: 400; }

/* ══════════════════════════════════════════════════════════════════
   HABITACIONES (Imagen 7) — Hero media pantalla + grilla 3 cols
   ══════════════════════════════════════════════════════════════════ */
.page-hero-half {
  position: relative;
  height: 50vh; min-height: 300px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
}
.page-hero-half::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.2) 100%);
  z-index: 1;
}
.page-hero-half .hero-half-content {
  position: relative; z-index: 2;
  padding: 2.5rem 0;
  width: 100%;
}
.page-hero-half .hero-half-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,5vw,3rem);
  color: #fff;
  margin-bottom: .4rem;
}
.page-hero-half .hero-half-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.78);
  max-width: 440px;
  margin-bottom: 1.2rem;
  line-height: 1.65;
}
/* Sección intro debajo del hero de habitaciones */
.rooms-intro { padding: 50px 0 35px; }
.rooms-intro h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.3rem); margin-bottom: .7rem; }
.rooms-intro p  { font-size: .88rem; color: var(--text-muted); max-width: 480px; line-height: 1.8; }

/* Card de habitación (Imagen 7) — con borde redondeado, overlay de título arriba */
.room-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Imagen con overlay oscuro + título/badge superpuesto */
.room-card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.room-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.room-card:hover .room-card-img-wrap img { transform: scale(1.05); }
.room-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.1) 55%);
  display: flex; flex-direction: column;
  padding: .9rem 1rem;
}
.room-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.room-card-guests {
  display: flex; align-items: center; gap: .3rem;
  font-size: .75rem; color: rgba(255,255,255,.85);
}
.room-card-guests i { font-size: .82rem; }
/* Body de la card */
.room-card-body {
  padding: .9rem 1.1rem 1.2rem;
  display: flex; flex-direction: column; flex-grow: 1;
}
.room-card-desc-title {
  font-style: italic;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .3rem;
}
.room-card-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: .7rem;
  flex-grow: 1;
}
.room-card-price {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .8rem;
}
.room-card-price strong { color: var(--primary); font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════
   RESTAURANTE — TERRA (Imagen 1)
   Hero fullscreen con logo Terra alineado IZQUIERDA-ARRIBA
   ══════════════════════════════════════════════════════════════════ */
.terra-hero {
  position: relative;
  height: 100vh; min-height: 520px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.terra-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.35) 55%,
    rgba(0,0,0,.15) 100%
  );
  z-index: 1;
}
.terra-hero-content {
  position: relative; z-index: 2;
  padding: 0 0 60px;
  max-width: 420px;
}
/* Logo Terra — escalable, dorado */
.terra-logo {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .1rem;
  letter-spacing: -.01em;
}
.terra-logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .2rem;
}
.terra-logo-city {
  display: block;
  font-family: var(--font-body);
  font-size: .55rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
}
.terra-hero-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 1.3rem;
}
/* Logo Terra imagen PNG */
.terra-logo-img {
  max-height: 100px;
  object-fit: contain;
  filter: brightness(0) saturate(0%) invert(100%);
  margin-bottom: 1.5rem;
  display: block;
}
/* Carrusel de ambiente del restaurante (fotos, sin texto) */
.terra-ambiance-carousel .terra-ambiance-slide {
  height: 60vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
}
.terra-ambiance-carousel .carousel-control-prev,
.terra-ambiance-carousel .carousel-control-next { width: 44px; }

/* Galería de platos debajo del intro (Imagen 1 — imagen sola en col) */
.dish-gallery { padding: 0 0 60px; }
.dish-gallery-img {
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 360px;
  height: 280px;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════════════════
   MENÚ ÍTEMS — DESAYUNO / MENÚ DEL DÍA (Imágenes 3 y 6)
   Hero 60-65vh, logo Terra CENTRADO + precio dorado + horario blanco
   ══════════════════════════════════════════════════════════════════ */
.menu-item-hero {
  position: relative;
  height: 65vh; min-height: 460px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.menu-item-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
}
.menu-item-hero-inner {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem; max-width: 620px;
}
/* Logo Terra centrado (img PNG dorado) */
.menu-terra-logo-img {
  max-height: 90px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  /* color dorado — si es SVG/PNG blanco, usar filter */
}
/* Logo Terra centrado (texto fallback) */
.menu-terra-logo-text {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .1rem;
}
.menu-terra-logo-sub {
  font-family: var(--font-body);
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: block;
  margin-bottom: 1.6rem;
}
.menu-item-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3.4rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: .6rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.menu-item-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: .45rem;
}
.menu-item-schedule {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════════
   PANORAMAS (Imagen 2) — Hero fullscreen centrado, texto centrado
   ══════════════════════════════════════════════════════════════════ */
.panoramas-hero {
  position: relative;
  height: 600px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.panoramas-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.38);
  z-index: 1;
}
.panoramas-hero-inner {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem; max-width: 640px;
}
.panoramas-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3.5rem);
  color: #fff; margin-bottom: .7rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.panoramas-hero-inner p {
  font-size: .88rem; color: rgba(255,255,255,.78);
  max-width: 520px; margin: 0 auto 1.5rem; line-height: 1.65;
}

/* Tarjetas de panorama (grilla principal + "Otros panoramas") — misma altura en toda la fila */
.panorama-card-img-wrap { position: relative; overflow: hidden; height: 480px; }
.panorama-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.panorama-card-title { font-size: 1.25rem; }
@media (max-width: 767.98px) {
  .panorama-card-img-wrap { height: 380px; }
}

/* ══════════════════════════════════════════════════════════════════
   CORPORATIVO (Imagen 4)
   Hero + intro text + CARRUSEL de servicios (3 items visibles)
   ══════════════════════════════════════════════════════════════════ */
.corporativo-hero {
  position: relative;
  height: 600px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.corporativo-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 1;
}
.corporativo-hero-inner {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem; max-width: 600px;
}
.corporativo-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem,5vw,3.2rem);
  color: #fff; margin-bottom: .8rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.corporativo-hero-inner p {
  font-size: .85rem; color: rgba(255,255,255,.78);
  max-width: 480px; margin: 0 auto 1.5rem; line-height: 1.65;
}
/* Intro de corporativo */
.corp-intro { padding: 55px 0 40px; }
.corp-intro-eyebrow { color: var(--accent-dark); font-size: clamp(.95rem,1.8vw,1.1rem); }
.corp-intro h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: .8rem; }
.corp-intro p  { font-size: .88rem; color: var(--text-muted); max-width: 520px; line-height: 1.8; }

/* Bullets de confianza (hero corporativo) */
.corp-trust-bullets {
  display: flex; flex-wrap: wrap; gap: .55rem 1.5rem;
  list-style: none; padding: 0; margin: 1.6rem 0 0;
}
.corp-trust-bullets li { display: flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 600; letter-spacing: .02em; }
.corp-trust-bullets i { font-size: 1rem; color: var(--accent); }
.corp-hero-trust li { color: rgba(255,255,255,.88); }
.corporativo-hero-inner .corp-trust-bullets { justify-content: center; }

/* Beneficios para empresas (Corporativo) */
.corp-benefits { padding: 0 0 60px; }
.corp-benefit-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-card);
  padding: 2rem 1.6rem;
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}
.corp-benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.corp-benefit-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.corp-benefit-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.corp-benefit-text { font-size: .84rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Eventos Corporativos (Corporativo) — texto + carrusel de fotos */
.corp-events-section { padding: 70px 0; background: var(--bg-light); }
.corp-events-section h2 { font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 1rem; }
.corp-events-section p { font-size: .92rem; color: var(--text-muted); line-height: 1.75; max-width: 440px; }
.corp-events-carousel { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow); }
.corp-events-slide {
  height: 420px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767.98px) {
  .corp-events-slide { height: 280px; }
}

/* CTA corporativo */
.corp-cta {
  background: var(--primary);
  padding: 70px 0;
}
.corp-cta h2 { color: #fff; font-size: clamp(1.6rem,3vw,2.3rem); margin-bottom: .7rem; }
.corp-cta p { color: rgba(255,255,255,.72); font-size: .92rem; max-width: 480px; margin: 0 auto 1.6rem; line-height: 1.7; }
.corp-cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.corp-cta-note { color: rgba(255,255,255,.5); font-size: .74rem; margin: 1.1rem 0 0; }

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN INTRO GENÉRICA (texto grande + párrafo)
   ══════════════════════════════════════════════════════════════════ */
.page-intro { padding: 55px 0 45px; }
.page-intro h2 { font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,2.6rem); margin-bottom: .8rem; }
.page-intro p  { font-size: .88rem; color: var(--text-muted); max-width: 560px; line-height: 1.8; }

/* ══════════════════════════════════════════════════════════════════
   CARDS GENÉRICAS (panoramas, blog, etc.)
   ══════════════════════════════════════════════════════════════════ */
.hma-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.hma-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hma-card-img-wrap { position: relative; overflow: hidden; height: 210px; }
.hma-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.hma-card:hover .hma-card-img-wrap img { transform: scale(1.05); }
.hma-card-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: #fff;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .6rem; border-radius: 50px;
}
.hma-card-body { padding: 1.2rem; }
.hma-card-cat { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .35rem; }
.hma-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: .45rem; line-height: 1.3; }
.hma-card-text { font-size: .8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: .85rem; }
.hma-card-link { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); display: inline-flex; align-items: center; gap: .35rem; }
.hma-card-link:hover { color: var(--accent); }
.hma-price { display: flex; align-items: baseline; gap: .4rem; margin: .4rem 0 .7rem; }
.hma-price-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.hma-price-old   { font-size: .8rem; color: var(--text-muted); text-decoration: line-through; }

/* ══════════════════════════════════════════════════════════════════
   CONTENT / SIDEBAR
   ══════════════════════════════════════════════════════════════════ */
.content-card { background: #fff; padding: 2.5rem; border: 1px solid rgba(0,0,0,.06); border-radius: 4px; }
.page-content { font-size: .9rem; line-height: 1.85; color: var(--text); }
.page-content h2,.page-content h3 { margin-top: 1.8rem; margin-bottom: .7rem; font-family: var(--font-display); }
.page-content ul,.page-content ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.sidebar-widget { background: #fff; border: 1px solid rgba(0,0,0,.07); padding: 1.2rem; border-radius: 4px; margin-bottom: 1.2rem; }
.widget-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin-bottom: .8rem; }
.widget-list { list-style: none; padding: 0; margin: 0; }
.widget-list li { border-bottom: 1px solid rgba(0,0,0,.05); }
.widget-list li:last-child { border: none; }
.widget-list li a { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; color: var(--text-muted); font-size: .83rem; }
.widget-list li a:hover { color: var(--primary); }
.sidebar-card { background: #fff; border: 1px solid rgba(0,0,0,.07); padding: 1.5rem; border-radius: 4px; }

/* ══════════════════════════════════════════════════════════════════
   CONTACTO
   ══════════════════════════════════════════════════════════════════ */
.contacto-hero {
  position: relative;
  height: 600px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.contacto-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.46);
  z-index: 1;
}
.contacto-hero-inner { position: relative; z-index: 2; text-align: center; padding: 0 1.5rem; max-width: 600px; }
.contacto-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem,5vw,3.2rem);
  color: #fff; margin-bottom: .6rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.contacto-hero-inner p { font-size: .88rem; color: rgba(255,255,255,.82); max-width: 480px; margin: 0 auto; line-height: 1.65; }

.contacto-quick { padding: 40px 0 0; }
.contacto-quick-card {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: var(--radius-card);
  padding: 1.2rem 1.4rem; height: 100%;
  text-decoration: none; color: var(--text);
  transition: transform .25s, box-shadow .25s;
}
.contacto-quick-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--text); }
.contacto-quick-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%; background: rgba(201,168,76,.12); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.contacto-quick-card strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--primary); }
.contacto-quick-card span { font-size: .78rem; color: var(--text-muted); word-break: break-word; }

.contact-info-item { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.1rem; }
.contact-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: .95rem; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: .15rem; }
.contact-info-item p { margin: 0; font-size: .86rem; }
.contact-form-card { background: #fff; border: 1px solid rgba(0,0,0,.07); padding: 2.5rem; border-radius: 4px; }
.contact-info-card { background: var(--bg-light); border: 1px solid rgba(0,0,0,.06); padding: 2.2rem; border-radius: 4px; height: 100%; }
.contact-social { display: flex; gap: .7rem; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.05rem;
  transition: background .25s, color .25s;
}
.contact-social a:hover { background: var(--accent); color: #fff; }

#formErrorSummary a { color: inherit; text-decoration: underline; }
.form-control.is-valid { border-color: #b7c9a8; background-image: none; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.site-footer { background: #0a0a0a; color: rgba(255,255,255,.65); }
.footer-top { padding: 58px 0 44px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand-text { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: #fff; letter-spacing: .04em; }
.footer-brand-text span { color: var(--accent); }
.footer-logo-img { max-height: 36px; filter: brightness(0) invert(1); opacity: .8; margin-bottom: .8rem; }
.footer-desc { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.75; margin-top: .6rem; }
.footer-heading { font-family: var(--font-body); font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .8rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; gap: .55rem; align-items: flex-start; margin-bottom: .65rem; font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-contact-list li i { color: var(--accent); font-size: .82rem; margin-top: .14rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.45); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-social { display: flex; gap: .5rem; margin-top: .9rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-newsletter .form-control { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: #fff; border-radius: 50px 0 0 50px; font-size: .8rem; }
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.28); }
.footer-newsletter .form-control:focus { border-color: var(--accent); box-shadow: none; background: rgba(255,255,255,.09); color: #fff; }
.footer-newsletter .btn { border-radius: 0 50px 50px 0; }
.footer-bottom { padding: .9rem 0; }
.footer-bottom p { color: rgba(255,255,255,.28); font-size: .76rem; margin: 0; }

/* ══════════════════════════════════════════════════════════════════
   WHATSAPP FAB
   ══════════════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed; bottom: 26px; right: 24px;
  width: 52px; height: 52px;
  background: #25d366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 22px rgba(37,211,102,.42);
  z-index: 2000; transition: transform .25s ease;
  animation: pulseGreen 2.5s infinite;
}
.whatsapp-fab:hover { color: #fff; transform: scale(1.1); }
.whatsapp-tooltip { position: absolute; right: 60px; background: #25d366; color: #fff; padding: .28rem .65rem; border-radius: 50px; font-size: .76rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }
@keyframes pulseGreen {
  0%  { box-shadow: 0 6px 22px rgba(37,211,102,.42); }
  50% { box-shadow: 0 6px 28px rgba(37,211,102,.72), 0 0 0 9px rgba(37,211,102,.08); }
  100%{ box-shadow: 0 6px 22px rgba(37,211,102,.42); }
}

/* ══════════════════════════════════════════════════════════════════
   PAGINATION / ALERTS / MISC
   ══════════════════════════════════════════════════════════════════ */
.pagination .page-link { color: var(--primary); border-color: rgba(0,0,0,.1); border-radius: 50px !important; margin: 0 2px; font-size: .78rem; }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }
.alert-success { background: #f0faf4; border-color: #b7e5c8; color: #1a6638; border-radius: 4px; }
.alert-danger  { background: #fef2f2; border-color: #fecaca; color: #7f1d1d; border-radius: 4px; }

/* Offset para navbar fija */
body > main { padding-top: var(--navbar-h); }
/* Secciones que van sobre la navbar (hero full) */
body > main > .hero-carousel:first-child,
body > main > .terra-hero:first-child,
body > main > .panoramas-hero,
body > main > .corporativo-hero,
body > main > .contacto-hero,
body > main > .page-hero-half,
body > main > .menu-item-hero { margin-top: calc(-1 * var(--navbar-h)); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .hero-carousel, .hero-slide { height: 85vh; }
  .terra-hero { height: 70vh; align-items: flex-end; }
  .navbar-nav .nav-link { height: auto; padding: .65rem 1rem !important; border-bottom: 1px solid rgba(255,255,255,.06); }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-social { padding: .65rem 1rem; border-top: 1px solid rgba(255,255,255,.06); }
}
@media (max-width: 767.98px) {
  .hero-carousel, .hero-slide { height: 90vh; min-height: 480px; }
  .section-py { padding: 50px 0; }
  .section-py-sm { padding: 35px 0; }
  .room-card-img-wrap { height: 180px; }
  .menu-item-hero { height: 70vh; min-height: 420px; }
  .panoramas-hero, .corporativo-hero, .contacto-hero { height: 60vh; }
  .page-hero-half { height: 45vh; }
  .terra-hero { height: 80vh; }
  .terra-hero-content { max-width: 100%; }
  .content-card, .contact-form-card { padding: 1.5rem; }
  .rancagua-section .map-img { max-width: 200px; }
}

/* ══ HERO BOOKING BAR ══════════════════════════════════════════════ */
.hero-booking-bar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  max-width: 860px;
}

.booking-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: .6rem .6rem .6rem 1.4rem;
  gap: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,.22);
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  flex: 1;
  padding: .3rem .6rem;
  min-width: 0;
}

.booking-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin: 0;
}

.booking-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.booking-input,
.booking-select {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0;
  width: 100%;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.booking-input-wrap i {
  font-size: .85rem;
  color: var(--text-muted);
  margin-left: .3rem;
  flex-shrink: 0;
  pointer-events: none;
}
/* Stepper de cantidad compacto dentro de la barra de reserva del Home */
.booking-field .qty-stepper {
  border: none;
  width: 100%;
}
.booking-field .qty-stepper .qty-btn {
  background: transparent;
  width: 22px;
  height: 24px;
  font-size: .95rem;
  color: var(--text-muted);
}
.booking-field .qty-stepper .qty-btn:hover { background: transparent; color: var(--accent-dark); }
.booking-field .qty-stepper .qty-value {
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  width: auto;
}

.booking-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,.12);
  flex-shrink: 0;
}

.booking-btn {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: .75rem 1.6rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.booking-btn:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: scale(1.02);
}

/* Responsivo */
@media (max-width: 767.98px) {
  /* En mobile el botón flotante "Reservar" ya cumple esta función: se oculta
     la barra para no duplicarla dentro del hero. */
  .hero-booking-bar { display: none; }
}

/* ══════════════════════════════════════════════════════════════════
   CINTA DE RESERVA V2 — fondo glass/transparente + huéspedes en desplegable
   ══════════════════════════════════════════════════════════════════ */
.hero-booking-bar-v2 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  max-width: 780px;
}

.booking-form-v2 {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 60px;
  padding: .5rem .5rem .5rem 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.28);
}

.booking-field-v2 {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 1;
  min-width: 0;
  padding: .35rem .7rem;
  background: none;
  border: none;
  text-align: left;
  color: #fff;
}

.booking-field-v2 > i {
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.booking-field-v2 > div { min-width: 0; }

.booking-label-v2 {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.75);
  margin: 0 0 .1rem;
}

.booking-input-v2 {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  padding: 0;
  width: 100%;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}

.booking-guests-summary-v2 {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.booking-guests-trigger-v2 {
  cursor: pointer;
}

.booking-divider-v2 {
  width: 1px;
  align-self: center;
  height: 32px;
  background: rgba(255,255,255,.28);
  flex-shrink: 0;
}

.booking-guests-menu-v2 {
  min-width: 230px;
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-lg);
  padding: 1rem !important;
}

.booking-guests-row-label {
  font-size: .85rem;
  color: var(--primary);
  font-weight: 500;
}

.booking-guests-menu-v2 .qty-stepper { border-color: rgba(0,0,0,.12); }
.booking-guests-menu-v2 .qty-stepper .qty-btn { background: var(--bg-light); color: var(--primary); }
.booking-guests-menu-v2 .qty-stepper .qty-value { color: var(--primary); background: transparent; }

.booking-btn-v2 {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 0 1.6rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.booking-btn-v2:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: scale(1.02);
}

@media (max-width: 767.98px) {
  .hero-booking-bar-v2 { display: none; }
}

/* ══ BOTÓN FLOTANTE RESERVA ════════════════════════════════════════ */
.reserva-fab {
  position: fixed;
  bottom: 96px;   /* encima del WhatsApp */
  right: 24px;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  padding: .7rem 1.1rem .7rem 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(201,168,76,.45);
  z-index: 1999;
  transition: var(--transition);
  text-decoration: none;
  animation: pulseGold 2.8s infinite;
}

.reserva-fab i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.reserva-fab-label {
  white-space: nowrap;
}

.reserva-fab:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,.6);
}

@keyframes pulseGold {
  0%   { box-shadow: 0 6px 24px rgba(201,168,76,.45); }
  50%  { box-shadow: 0 6px 32px rgba(201,168,76,.75), 0 0 0 8px rgba(201,168,76,.1); }
  100% { box-shadow: 0 6px 24px rgba(201,168,76,.45); }
}

@media (max-width: 767.98px) {
  .reserva-fab-label { display: none; }
  .reserva-fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    bottom: 90px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   PANEL DE RESERVA (Offcanvas de derecha a izquierda)
   ══════════════════════════════════════════════════════════════════ */
.reserve-offcanvas {
  width: min(400px, 92vw);
  background: var(--white);
  z-index: 2050;
}
.offcanvas-backdrop { z-index: 2040; }
.reserve-offcanvas .offcanvas-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 1.8rem 1.6rem;
  align-items: flex-start;
}
.reserve-offcanvas .offcanvas-title {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: .2rem;
}
.reserve-offcanvas .btn-close {
  opacity: .6;
}
.reserve-offcanvas .btn-close:hover { opacity: 1; }
.reserve-offcanvas-room {
  color: var(--accent-dark);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
}
/* Ocultar los FABs mientras el panel de reserva está abierto, para que no se sobrepongan */
body.reserve-open .reserva-fab,
body.reserve-open .whatsapp-fab {
  display: none;
}
.reserve-offcanvas-cancel {
  display: block;
  width: 100%;
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  background: none;
  border: none;
  margin-top: 1rem;
  padding: .5rem;
  cursor: pointer;
  text-decoration: underline;
}
.reserve-offcanvas-cancel:hover { color: var(--primary); }

/* ── Stepper de cantidad (Adultos / Niños) ── */
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  overflow: hidden;
}
.qty-stepper .qty-btn {
  background: var(--bg-light);
  border: none;
  width: 38px;
  height: 40px;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}
.qty-stepper .qty-btn:hover { background: var(--accent); color: #fff; }
.qty-stepper .qty-value {
  flex: 1;
  min-width: 0;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  color: var(--primary);
  padding: 0;
  cursor: default;
}
.qty-stepper .qty-value:focus { outline: none; }
.reserve-offcanvas .offcanvas-body { padding: 1.8rem 1.6rem; }
.reserve-offcanvas-intro {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.reserve-offcanvas-form .form-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.reserve-offcanvas-form .form-control,
.reserve-offcanvas-form .form-select {
  border-radius: 8px;
  border-color: rgba(0,0,0,.12);
  padding: .6rem .8rem;
}
.reserve-offcanvas-form .form-control:focus,
.reserve-offcanvas-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(201,168,76,.15);
}
.reserve-offcanvas .btn-dark-hma { padding: .75rem; font-size: .78rem; }
.reserve-offcanvas .btn-outline-success {
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  padding: .7rem;
}

/* ══════════════════════════════════════════════════════════════════
   PROMOCIONES (sección Home) — reutiliza .hma-card / .hma-price
   ══════════════════════════════════════════════════════════════════ */
.home-promos-section .sub { font-size: .88rem; color: var(--text-muted); max-width: 480px; margin: .5rem auto 0; }
.home-promos-section h2 { font-size: clamp(1.7rem,3.5vw,2.6rem); }
.promo-image-card {
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.promo-image-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); }
.promo-image-card img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 4/5; }

/* ══════════════════════════════════════════════════════════════════
   POPUP DE PROMOCIONES (modal al cargar el Home)
   ══════════════════════════════════════════════════════════════════ */
.promo-popup-modal .modal-dialog {
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100% - 2rem);
  max-width: 380px; /* las piezas gráficas son todas 4:5 — este ancho evita bordes y scroll */
}
.promo-popup-modal .modal-content {
  width: 100%;
  border: none;
  border-radius: var(--radius-card);
  overflow: hidden;
  max-height: 92vh;
}
.promo-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 5;
  background-color: #fff;
  border-radius: 50%;
  width: 32px; height: 32px;
  opacity: 1;
  padding: 0;
}
.promo-popup-img {
  display: block;
  width: 100%;
  height: auto;
}
.promo-popup-body { padding: 1.1rem 1.5rem 1.4rem; text-align: center; }

/* ══════════════════════════════════════════════════════════════════
   MAPA (Home / Contacto)
   ══════════════════════════════════════════════════════════════════ */
.map-section h2 { font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 1rem; }
.map-address { font-size: .88rem; color: var(--text-muted); display: flex; align-items: center; }
.map-embed-wrap { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }

/* ══════════════════════════════════════════════════════════════════
   INSTAGRAM FEED
   ══════════════════════════════════════════════════════════════════ */
.instagram-section h2 { font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: .3rem; }
.instagram-handle { color: var(--primary); font-weight: 600; font-size: .9rem; }
.instagram-handle:hover { color: var(--accent); }
.instagram-fallback {
  max-width: 420px; margin: 1.5rem auto 0;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px dashed rgba(0,0,0,.15);
  border-radius: var(--radius-card);
}
.instagram-fallback i { font-size: 2.2rem; color: var(--accent); margin-bottom: .8rem; display: block; }
.instagram-fallback p { color: var(--text-muted); font-size: .85rem; margin-bottom: 1.1rem; }
behold-widget { display: block; margin-top: 1rem; }

/* ══════════════════════════════════════════════════════════════════
   AMENITIES — ícono en badge circular (grid de servicios del Home)
   ══════════════════════════════════════════════════════════════════ */
.service-item {
  border-radius: 50px;
  transition: background .25s;
}
.service-item:hover { background: rgba(0,0,0,.03); }
.service-item i {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem !important;
}
