/* ==========================================================================
   HOSTAL COLCHAGUA - DIRECCIÓN DE ARTE BOUTIQUE
   Identidad Cromática: Tonos del Logo Oficial (#DE9701 Ámbar Dorado / #4B2500 Café Roble & Espresso)
   Ambiente: Descanso, Paisajes, Calidez, Enoturismo y Elegancia Editorial
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Lora:ital,wght@0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Paleta Oficial del Logo */
  --brand-gold: #DE9701;
  --brand-gold-dark: #B87900;
  --brand-gold-light: #F8B838;
  --brand-gold-soft: #FCF4E5;
  --brand-gold-glow: rgba(222, 151, 1, 0.22);
  
  --brand-dark: #4B2500;
  --brand-dark-deep: #2A1400;
  --brand-dark-soft: #633303;
  --brand-dark-card: #3A1D01;
  
  /* Fondos Cálidos e Inmersivos */
  --bg-warm: #FAF8F4;
  --bg-pure: #FFFFFF;
  --bg-sand: #F3ECE1;
  --bg-sand-light: #FAF6EF;
  --bg-sand-dark: #E6DCCE;
  
  /* Acentos complementarios de naturaleza y tierra */
  --accent-olive: #5A6B47;
  --accent-terracotta: #A84926;
  --accent-terracotta-soft: #FBF0EB;
  
  /* Textos y Lectura */
  --text-title: #2B1700;
  --text-body: #4A3A2F;
  --text-muted: #7A695C;
  --text-light: #A39387;
  --text-white: #FFFFFF;
  
  /* Bordes y Separadores */
  --border-color: rgba(75, 37, 0, 0.12);
  --border-gold: rgba(222, 151, 1, 0.35);
  --border-light: rgba(75, 37, 0, 0.06);

  /* Sombras y Elevación */
  --shadow-sm: 0 4px 12px rgba(42, 20, 0, 0.05);
  --shadow-md: 0 10px 28px -4px rgba(42, 20, 0, 0.08);
  --shadow-lg: 0 20px 42px -6px rgba(42, 20, 0, 0.12);
  --shadow-hover: 0 16px 36px -4px rgba(222, 151, 1, 0.18);

  /* Tipografía */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-hand: 'Caveat', cursive, sans-serif;

  /* Bordes Redondeados */
  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 9999px;

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET Y ESTILOS BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-warm);
  color: var(--text-body);
  line-height: 1.68;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(222, 151, 1, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(75, 37, 0, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-gold-dark);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

a:hover {
  color: var(--brand-dark);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-title);
  font-weight: 700;
  line-height: 1.25;
}

.handwritten {
  font-family: var(--font-hand);
  color: var(--brand-gold);
  font-weight: 700;
  font-size: 1.35em;
  letter-spacing: 0.5px;
  display: inline-block;
}

.handwritten.dark {
  color: var(--brand-dark);
}

.handwritten.terracotta {
  color: var(--accent-terracotta);
}

p {
  margin-bottom: 1rem;
  color: var(--text-body);
  font-size: 1.02rem;
}

/* Contenedores */
.boutique-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.boutique-container-narrow {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT & CONTACT BAR
   ========================================================================== */
.top-bar {
  background: var(--brand-dark-deep);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(222, 151, 1, 0.2);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--transition-fast);
}

.top-bar-item:hover {
  color: var(--brand-gold-light);
}

.top-bar-item svg {
  width: 15px;
  height: 15px;
  fill: var(--brand-gold);
}

.top-bar-lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}

.lang-btn:hover, .lang-btn.active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
}

.lang-btn img {
  width: 16px;
  height: 11px;
  border-radius: 2px;
  object-fit: cover;
}

/* ==========================================================================
   HEADER & NAVBAR PRINCIPAL
   ========================================================================== */
.boutique-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo img {
  height: 52px;
  max-height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(75, 37, 0, 0.08));
}

.brand-title-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 2px;
}

.boutique-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.nav-link:hover {
  color: var(--brand-dark);
  background: var(--bg-sand);
  border-color: rgba(75, 37, 0, 0.08);
}

.nav-link.active {
  color: #ffffff !important;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: var(--shadow-sm);
}

.nav-cta-btn {
  margin-left: 12px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--brand-dark);
}

.mobile-menu-toggle svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ==========================================================================
   BOTONES BOUTIQUE - 100% SÓLIDOS (SIN GRADIENTES)
   ========================================================================== */
.btn-boutique {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

/* Botón Principal: Ámbar Dorado Sólido */
.btn-primary-boutique {
  background-color: var(--brand-gold);
  color: #ffffff !important;
  box-shadow: 0 4px 14px var(--brand-gold-glow);
}

.btn-primary-boutique:hover {
  background-color: var(--brand-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 121, 0, 0.28);
}

/* Botón Secundario: Roble Oscuro Sólido */
.btn-dark-boutique {
  background-color: var(--brand-dark);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(42, 20, 0, 0.15);
}

.btn-dark-boutique:hover {
  background-color: var(--brand-dark-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 20, 0, 0.25);
}

/* Botón Outline / Borde */
.btn-outline-boutique {
  background-color: transparent;
  border: 2px solid var(--brand-gold);
  color: var(--brand-dark) !important;
}

.btn-outline-boutique:hover {
  background-color: var(--brand-gold);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff !important;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--brand-dark) !important;
  transform: translateY(-2px);
}

/* Botón WhatsApp */
.btn-whatsapp-boutique {
  background-color: #25D366;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp-boutique:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.38);
}

/* Tamaños de Botones */
.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

/* ==========================================================================
   HERO BANNER & SLIDER INMERSIVO (SOLO PAISAJES Y DESCANSO)
   ========================================================================== */
.boutique-hero {
  position: relative;
  background-color: var(--brand-dark-deep);
  color: #fff;
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  height: 580px;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay cálido editorial para legibilidad */
.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(42, 20, 0, 0.35) 0%,
    rgba(42, 20, 0, 0.55) 60%,
    rgba(42, 20, 0, 0.85) 100%
  );
}

.hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
}

.hero-text-card {
  max-width: 660px;
  background: rgba(35, 16, 0, 0.40);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge-handwritten {
  font-family: var(--font-hand);
  font-size: 1.65rem;
  color: var(--brand-gold-light);
  display: block;
  margin-bottom: 6px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 14px;
  font-weight: 700;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.75);
}

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 24px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge-handwritten {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--brand-gold-light);
  display: block;
  margin-bottom: 6px;
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 14px;
  font-weight: 700;
}

.hero-main-title span {
  color: var(--brand-gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-actions-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Controles del Slider */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow-prev { left: 24px; }
.slider-arrow-next { right: 24px; }

.slider-arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.slider-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.indicator-dot.active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  width: 32px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   BARRA DE CONSULTA & RESERVA RÁPIDA
   ========================================================================== */
.booking-query-bar {
  position: relative;
  z-index: 30;
  margin-top: -38px;
  margin-bottom: 50px;
}

.booking-bar-card {
  background: #ffffff;
  padding: 22px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
  gap: 18px;
  align-items: flex-end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-label svg {
  width: 14px;
  height: 14px;
  fill: var(--brand-gold);
}

.booking-input, .booking-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-warm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-body);
  transition: all var(--transition-fast);
}

.booking-input:focus, .booking-select:focus {
  outline: none;
  border-color: var(--brand-gold);
  background: #fff;
  box-shadow: 0 0 0 3px var(--brand-gold-glow);
}

/* ==========================================================================
   SECCIONES Y LAYOUT EDITORIAL MODERNO (SIN SIDEBAR ANTIGUO)
   ========================================================================== */
.section-spacer {
  padding: 70px 0;
}

.section-spacer-sm {
  padding: 45px 0;
}

.section-bg-sand {
  background-color: var(--bg-sand-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-bg-dark {
  background-color: var(--brand-dark);
  color: #fff;
}

.section-bg-dark h2, .section-bg-dark h3 {
  color: #fff;
}

.section-bg-dark p {
  color: rgba(255, 255, 255, 0.85);
}

/* Encabezados de Sección */
.section-header-center {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 48px auto;
}

.section-header-left {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-pretitle {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--brand-gold);
  display: block;
  margin-bottom: 4px;
}

.section-title {
  font-size: 2.3rem;
  color: var(--text-title);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   TARJETAS BOUTIQUE
   ========================================================================== */
.boutique-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.boutique-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.card-gold {
  background-color: var(--brand-gold-soft);
  border-color: rgba(222, 151, 1, 0.3);
}

.card-dark {
  background-color: var(--brand-dark-card);
  color: #fff;
  border-color: rgba(222, 151, 1, 0.25);
}

.card-dark h3, .card-dark h4 {
  color: #fff;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   GRILLA DE BIENVENIDA & HISTORIA (EDITORIAL)
   ========================================================================== */
.welcome-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.welcome-images-collage {
  position: relative;
}

.welcome-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.welcome-accent-badge {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: #fff;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  max-width: 240px;
  text-align: center;
}

/* ==========================================================================
   GRILLA DE HABITACIONES BOUTIQUE
   ========================================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.room-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.room-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.room-card:hover .room-image {
  transform: scale(1.06);
}

.room-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-size: 1.35rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.room-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--bg-sand);
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(75, 37, 0, 0.08);
  transition: all var(--transition-fast);
}

.amenity-tag:hover {
  background: #ffffff;
  border-color: var(--brand-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(75, 37, 0, 0.06);
}

.amenity-tag svg {
  width: 15px;
  height: 15px;
  fill: var(--brand-gold);
  flex-shrink: 0;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

/* ==========================================================================
   SISTEMA DE FILTROS Y ATRACTIVOS DINÁMICOS
   ========================================================================== */
.attractions-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: #ffffff;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-tab-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.filter-tab-btn:hover {
  background: var(--bg-sand);
  border-color: var(--brand-gold);
}

.filter-tab-btn.active {
  background: var(--brand-dark);
  color: #ffffff;
  border-color: var(--brand-dark);
  box-shadow: var(--shadow-sm);
}

.filter-tab-btn.active svg {
  fill: var(--brand-gold-light);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.attraction-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.attraction-card.hidden {
  display: none !important;
}

.attraction-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.attraction-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.attraction-card:hover .attraction-img {
  transform: scale(1.06);
}

.attraction-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand-gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.attraction-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.attraction-title {
  font-size: 1.3rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.attraction-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.attraction-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.attraction-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.attraction-location svg {
  width: 14px;
  height: 14px;
  fill: var(--brand-gold);
}

.attraction-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.attraction-link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* ==========================================================================
   AMENIDADES Y SERVICIOS GRID
   ========================================================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.amenity-card {
  background: #ffffff;
  padding: 26px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}

.amenity-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.amenity-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand-gold-soft);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  border: 1px solid rgba(222, 151, 1, 0.25);
  transition: all var(--transition-fast);
}

.amenity-card:hover .amenity-icon-box {
  background: var(--brand-gold);
  color: #fff;
  transform: scale(1.08);
}

.amenity-icon-box svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.amenity-card-title {
  font-size: 1.12rem;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.amenity-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   TIRA DE CONFIANZA & SELLOS (3 COLUMNAS BOUTIQUE)
   ========================================================================== */
.trust-strip-section {
  background: var(--bg-sand-light);
  padding: 48px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.trust-card {
  background: #ffffff;
  border: 1.5px dashed rgba(222, 151, 1, 0.45);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-style: solid;
  border-color: var(--brand-gold);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.trust-icon-box {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 16px;
  background: var(--brand-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(222, 151, 1, 0.25);
  overflow: hidden;
  padding: 8px;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.trust-card:hover .trust-icon-box {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(222, 151, 1, 0.15);
}

.trust-icon-box.trust-icon-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
}

.trust-icon-box.trust-icon-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #25D366;
  transition: fill var(--transition-fast);
}

.trust-card:hover .trust-icon-box.trust-icon-whatsapp {
  background: #25D366;
}

.trust-card:hover .trust-icon-box.trust-icon-whatsapp svg {
  fill: #ffffff;
}

.trust-icon-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.trust-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.trust-card-title {
  font-size: 1.05rem;
  color: var(--brand-dark);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.trust-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.trust-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-gold-dark);
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.trust-card:hover .trust-card-link {
  color: var(--brand-dark);
  text-decoration: underline;
}

.trust-card-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-olive);
  background: rgba(90, 107, 71, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-top: 6px;
  width: fit-content;
}

@media (max-width: 992px) {
  .trust-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   GALERÍA FOTOGRÁFICA INTERACTIVA & LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-sand);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 20, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

.gallery-zoom-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Lightbox Modal */
.boutique-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(18, 8, 0, 0.94);
  backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.boutique-lightbox.active {
  display: flex;
}

.lightbox-content-box {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content-box img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: all var(--transition-fast);
}

.lightbox-nav-btn:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ==========================================================================
   FORMULARIO DE CONTACTO & MAPA
   ========================================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact-form-card {
  background: #ffffff;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-warm);
  font-family: var(--font-main);
  font-size: 0.96rem;
  color: var(--text-body);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-gold);
  background: #fff;
  box-shadow: 0 0 0 3px var(--brand-gold-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-info-card {
  background: var(--brand-dark);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gold);
}

.contact-info-card h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-info-list {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon-bubble {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(222, 151, 1, 0.2);
  color: var(--brand-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-bubble svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-info-item a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.contact-info-item a:hover {
  color: var(--brand-gold-light);
}

.map-embed-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 280px;
  margin-top: 20px;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   FOOTER BOUTIQUE
   ========================================================================== */
.boutique-footer {
  background: var(--brand-dark-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 25px 0;
  border-top: 3px solid var(--brand-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 45px;
}

.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-img {
  height: 64px;
  max-height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer-logo-wrap:hover .footer-logo-img {
  transform: translateY(-2px);
  opacity: 0.92;
}

.footer-brand h4 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
  line-height: 1.65;
}

.footer-title {
  font-size: 1.15rem;
  color: var(--brand-gold-light);
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--brand-gold);
  border-radius: var(--radius-pill);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-nav-list a:hover {
  color: var(--brand-gold-light);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-row svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-gold);
  flex-shrink: 0;
}

.footer-contact-row a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-row a:hover {
  color: var(--brand-gold-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--brand-gold-light);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

/* ==========================================================================
   BOTÓN FLOTANTE WHATSAPP
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* ==========================================================================
   DIVISOR DE OLA ORGÁNICA SVG
   ========================================================================== */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* ==========================================================================
   RESPONSIVIDAD & MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .hero-main-title {
    font-size: 2.2rem;
  }
  
  .welcome-editorial-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  
  .top-bar-contact {
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .boutique-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--brand-gold);
    display: none;
  }
  
  .boutique-nav.active {
    display: block;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    height: 44px;
  }
  
  .nav-cta-btn {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    height: 44px;
  }
  
  .hero-slider-container {
    height: 500px;
  }
  
  .hero-text-card {
    padding: 24px;
    margin: 0 16px;
  }
  
  .hero-main-title {
    font-size: 1.8rem;
  }
  
  .booking-bar-card {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   BENEFICIOS DE RESERVA DIRECTA & MEJOR TARIFA
   ========================================================================== */
.booking-benefits-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(75, 37, 0, 0.08);
  grid-column: 1 / -1;
}

.benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.benefit-item svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-gold);
}

/* ==========================================================================
   HORARIOS CHECK-IN / CHECK-OUT
   ========================================================================== */
.timing-pills-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.timing-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-gold-soft);
  border: 1px solid rgba(222, 151, 1, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  color: var(--brand-dark);
  font-weight: 600;
}

.timing-pill svg {
  width: 14px;
  height: 14px;
  fill: var(--brand-gold);
}

/* ==========================================================================
   TESTIMONIOS & OPINIONES REALES (5 ESTRELLAS)
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-stars svg {
  width: 17px;
  height: 17px;
  fill: var(--brand-gold);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-gold-soft);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid var(--brand-gold);
}

.author-info h4 {
  font-size: 0.92rem;
  color: var(--brand-dark);
  margin: 0 0 2px 0;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ITINERARIOS ENOLÓGICOS SUGERIDOS
   ========================================================================== */
.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.itinerary-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.itinerary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--brand-gold);
}

.itinerary-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.itinerary-duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-gold-soft);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid rgba(222, 151, 1, 0.25);
}

.itinerary-title {
  font-size: 1.35rem;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.itinerary-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0 20px 0;
}

.itinerary-step-item {
  display: flex;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.5;
}

.step-number-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   BOTONES GPS / NAVEGACIÓN (GOOGLE MAPS & WAZE)
   ========================================================================== */
.gps-buttons-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn-gps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-gps-maps {
  background: #4285F4;
  color: #ffffff !important;
}

.btn-gps-maps:hover {
  background: #3367D6;
  transform: translateY(-2px);
}

.btn-gps-waze {
  background: #00D6FE;
  color: #0b2546 !important;
}

.btn-gps-waze:hover {
  background: #00b6d9;
  transform: translateY(-2px);
}

.btn-gps svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


/* ==========================================================================
   CABECERAS EDITORIALES DE PÁGINA CON FOTO DE FONDO Y OPACIDAD CAFÉ
   ========================================================================== */
.page-header-banner {
  position: relative;
  background-color: var(--brand-dark);
  background-image: linear-gradient(rgba(42, 20, 0, 0.76), rgba(75, 37, 0, 0.85)), url('../images/header_bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 72px 0 68px 0;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 2px solid var(--brand-gold);
  box-shadow: inset 0 -20px 30px rgba(0, 0, 0, 0.25);
}

.page-header-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(222, 151, 1, 0.18) 0%, rgba(42, 20, 0, 0.45) 100%);
  pointer-events: none;
}

.page-header-banner .boutique-container {
  position: relative;
  z-index: 2;
}

.page-header-banner .handwritten {
  font-family: var(--font-hand);
  font-size: 1.85rem;
  color: var(--brand-gold-light);
  display: block;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-header-banner h1 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 6px 0 14px 0;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.page-header-banner p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.page-header-servicios {
  background-image: linear-gradient(rgba(42, 20, 0, 0.74), rgba(75, 37, 0, 0.84)), url('../images/parron.jpg');
}

.page-header-atractivos {
  background-image: linear-gradient(rgba(42, 20, 0, 0.74), rgba(75, 37, 0, 0.84)), url('../images/slider/1.jpg');
}

.page-header-galeria {
  background-image: linear-gradient(rgba(42, 20, 0, 0.74), rgba(75, 37, 0, 0.84)), url('../images/quote/Colchagua06.jpg');
}

.page-header-contacto {
  background-image: linear-gradient(rgba(42, 20, 0, 0.74), rgba(75, 37, 0, 0.84)), url('../images/parron.jpg');
}


/* ==========================================================================
   SELECTOR DESPLEGABLE PERSONALIZADO (PALETA DORADO & CAFÉ BOUTIQUE)
   ========================================================================== */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-dark);
  background-color: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--brand-gold);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(222, 151, 1, 0.18);
}

.custom-select-arrow {
  width: 18px;
  height: 18px;
  fill: var(--brand-gold);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.custom-select-wrapper.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid rgba(222, 151, 1, 0.4);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(75, 37, 0, 0.16);
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
  padding: 6px;
}

.custom-select-wrapper.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  padding: 11px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brand-dark);
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-select-option:hover {
  background-color: var(--brand-gold-soft);
  color: var(--brand-dark);
  padding-left: 18px;
}

.custom-select-option.selected {
  background-color: var(--brand-gold) !important;
  color: #ffffff !important;
  font-weight: 700;
}

.custom-select-option.selected::after {
  content: '✓';
  font-weight: 800;
  color: #ffffff;
}

/* Soporte y realce de select nativo */
select.booking-select {
  accent-color: var(--brand-gold);
}

select.booking-select option:checked,
select.booking-select option:hover {
  background: #DE9701 !important;
  color: #ffffff !important;
}



/* ==========================================================================
   GALERÍA FOTOGRÁFICA LIMPIA & LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: var(--brand-dark);
  transition: all var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 20, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transform: scale(0.85);
  transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

.gallery-zoom-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--brand-dark);
}

/* ==========================================================================
   MINI-CARRUSEL EN EL MARCO DE HABITACIONES
   ========================================================================== */
.room-image-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--brand-dark);
}

.room-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.room-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, transform 0.6s ease;
}

.room-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.room-card:hover .room-slide.active {
  transform: scale(1.04);
}

.room-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.room-image-wrap:hover .room-slide-arrow {
  opacity: 0.95;
}

.room-slide-arrow:hover {
  background: var(--brand-gold);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.room-slide-prev {
  left: 10px;
}

.room-slide-next {
  right: 10px;
}

.room-slide-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.room-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.room-dot.active {
  background: var(--brand-gold);
  width: 18px;
  border-radius: var(--radius-pill);
}

