/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ─── TOKENS ────────────────────────────────────────── */
:root {
  --c-primary:    #0E7A4B;
  --c-primary-d:  #0A5D39;
  --c-gold:       #D4A017;
  --c-gold-l:     #E9C255;
  --c-brown:      #4B2E83;
  --c-brown-l:    #6E4FA3;
  --c-bg:         #FAFAFA;
  --c-bg-alt:     #F4F4F5;
  --c-bg-dark:    #0B1712;
  --c-text:       #111827;
  --c-text-mid:   #374151;
  --c-text-muted: #6B7280;
  --c-border:     #E5E7EB;
  --c-white:      #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.13);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: 220ms cubic-bezier(.4,0,.2,1);
  --max-w:      1200px;
  --topbar-h:   36px;
  --nav-h:      68px;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; }

.container {
  width: min(var(--max-w), 100%);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ─── ANDEAN PATTERN DIVIDER ─────────────────────────── */
.andean-divider {
  width: 100%;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='28'%3E%3Cpath d='M0 14 L10 4 L20 14 L30 4 L40 14 L50 4 L60 14' fill='none' stroke='%236B7280' stroke-width='1.5' opacity='.25'/%3E%3Cpath d='M0 20 L10 10 L20 20 L30 10 L40 20 L50 10 L60 20' fill='none' stroke='%236B7280' stroke-width='1' opacity='.15'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  opacity: .7;
}

.section-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-primary);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.2;
  margin-top: .4rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--c-text-mid);
  max-width: 52ch;
  margin-top: .75rem;
  line-height: 1.7;
}
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin-inline: auto; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.6rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary { background: var(--c-primary); color: var(--c-white); }
.btn-primary:hover { background: var(--c-primary-d); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(139,58,42,.35); }
.btn-outline { background: transparent; color: var(--c-white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-gold { background: var(--c-gold); color: var(--c-bg-dark); font-weight: 600; }
.btn-gold:hover { background: var(--c-gold-l); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(212,160,23,.4); }
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }

/* ─── TOPBAR ─────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 102;
  height: var(--topbar-h);
  background: var(--c-bg-dark);
  border-bottom: 1px solid rgba(212,160,23,.1);
  display: flex; align-items: center;
  transition: transform .32s ease;
}
body.scrolled .topbar { transform: translateY(-100%); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; }
.topbar-group { display: flex; align-items: center; gap: .8rem; }
.topbar-item { display: flex; align-items: center; gap: .32rem; font-size: .72rem; color: rgba(255,255,255,.48); white-space: nowrap; }
.topbar-item a { color: rgba(255,255,255,.48); transition: color var(--transition); }
.topbar-item a:hover { color: var(--c-gold-l); }
.topbar-item svg { width: 11px; height: 11px; flex-shrink: 0; color: rgba(212,160,23,.45); }
.topbar-sep { width: 1px; height: 13px; background: rgba(255,255,255,.1); }
.topbar-badge { font-size: .67rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--c-gold-l); display: flex; align-items: center; gap: .3rem; opacity: .85; }
.topbar-badge svg { width: 11px; height: 11px; }
@media (max-width: 768px) { .topbar { display: none; } }

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition), top .32s ease;
}
body.scrolled .navbar { top: 0; }
@media (max-width: 768px) {
  .navbar { top: 0; padding-top: env(safe-area-inset-top, 0px); }
}
.navbar.transparent { background: linear-gradient(to bottom, rgb(0 0 0 / 78%) 0%, transparent 100%); }
.navbar.solid {
  background: rgba(13,10,5,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(212,160,23,.12), 0 4px 28px rgba(0,0,0,.4);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: .65rem; }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: rgba(212,160,23,.08); border: 1px solid rgba(212,160,23,.18);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.navbar.solid .nav-logo-icon { background: rgba(212,160,23,.12); border-color: rgba(212,160,23,.24); }
.nav-logo-icon svg { width: 24px; height: 24px; color: var(--c-gold); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; gap: .18rem; }
.nav-logo-eyebrow { font-size: .5rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(212,160,23,.55); }
.nav-logo-name {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; letter-spacing: .07em;
  color: var(--c-white); transition: color var(--transition);
}
.navbar.solid .nav-logo-name { color: var(--c-gold-l); }
.nav-logo-sub { font-size: .52rem; letter-spacing: .17em; text-transform: uppercase; color: rgba(255,255,255,.3); }

.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a {
  font-size: .82rem; font-weight: 400; letter-spacing: .02em;
  color: rgba(255,255,255,.8); position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1.5px; background: var(--c-gold);
  transition: right var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }
.navbar.solid .nav-links a { color: rgba(255,255,255,.68); }
.navbar.solid .nav-links a:hover { color: var(--c-gold-l); }

.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-phone-link {
  display: flex; align-items: center; gap: .32rem;
  font-size: .75rem; color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.nav-phone-link svg { width: 13px; height: 13px; }
.nav-phone-link:hover { color: var(--c-gold-l); }
.btn-nav-wa {
  display: flex; align-items: center; gap: .38rem;
  background: var(--c-gold); color: var(--c-bg-dark);
  font-size: .79rem; font-weight: 700; letter-spacing: .03em;
  padding: .5rem .95rem; border-radius: 8px; white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-nav-wa:hover { background: var(--c-gold-l); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(212,160,23,.32); }
.btn-nav-wa svg { width: 14px; height: 14px; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 7px; border-radius: 8px; transition: background var(--transition); cursor: pointer; }
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span { display: block; width: 21px; height: 1.5px; background: rgba(255,255,255,.85); border-radius: 2px; transform-origin: center; transition: transform .26s ease, opacity .26s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 149;
  background: rgba(0,0,0,.52); backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mobile-overlay.open { display: block; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 150;
  width: min(300px, 84vw);
  background: var(--c-bg-dark);
  border-left: 1px solid rgba(212,160,23,.1);
  display: flex; flex-direction: column;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.mobile-close {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); border-radius: 8px;
  color: rgba(255,255,255,.65); font-size: .9rem; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.mobile-close:hover { background: rgba(255,255,255,.13); color: #fff; }
.mobile-nav { flex: 1; padding: 1rem 1.25rem; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block; padding: .8rem 0;
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--c-gold-l); padding-left: .4rem; }
.mobile-menu-foot {
  padding: 1.25rem; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: .6rem; flex-shrink: 0;
}
.mobile-contact { display: flex; align-items: center; gap: .45rem; font-size: .76rem; color: rgba(255,255,255,.4); }
.mobile-contact svg { width: 13px; height: 13px; color: rgba(212,160,23,.45); flex-shrink: 0; }
.mobile-contact a { color: rgba(255,255,255,.4); }
.mobile-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  background: var(--c-gold); color: var(--c-bg-dark);
  font-size: .85rem; font-weight: 700; padding: .82rem 1rem;
  border-radius: 10px; margin-top: .4rem;
  transition: background var(--transition);
}
.mobile-wa-btn:hover { background: var(--c-gold-l); }
.mobile-wa-btn svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .nav-links, .nav-phone-link { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .btn-nav-wa { display: none; }
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  /* altura proporcional a la imagen 2172×724 (ratio ~3:1) */
  height: clamp(280px, 33.3vw, 620px);
  display: flex; flex-direction: column; overflow: hidden;
  background: #0a0604;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,2,1,.55) 0%, rgba(6,2,1,.0) 100%),
    var(--banner-desktop, url('../images/banner-principal.png')) center/cover no-repeat;
}
.hero-mobile-img {
  display: none;
}
@media (max-width: 767px) {
  .hero {
    height: clamp(260px, 55vh, 420px);
    margin-top: -25px !important;
    padding-top: 0 !important;
  }
  .hero-bg {
    background-image: linear-gradient(180deg, rgba(6,2,1,.45) 0%, rgba(6,2,1,.0) 60%);
    background-size: 100% 100%;
    z-index: 1;
  }
  .hero-mobile-img {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    z-index: 0 !important;
    margin: 0 !important;
  }
}

/* ─── HERO CONTENT ───────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding-inline: clamp(1rem, 4vw, 2rem);
  animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) both;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .65rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(212,160,23,.7);
  margin-bottom: .9rem;
}
.hero-eyebrow-line {
  display: block; flex: 0 0 32px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,.5));
}
.hero-eyebrow-line:last-child {
  background: linear-gradient(90deg, rgba(212,160,23,.5), transparent);
}
.hero-big-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .06em;
  color: rgba(255,255,255,.93);
  text-transform: uppercase;
  text-shadow: 0 2px 32px rgba(0,0,0,.4);
}
.hero-big-title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--c-gold-l);
  text-shadow: 0 2px 20px rgba(212,160,23,.3);
}
.hero-rule {
  width: 52px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,.65), transparent);
  margin: 1.1rem auto;
}
.hero-pills {
  display: flex; align-items: center; gap: .7rem;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 1.5rem;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .06em;
  color: rgba(255,255,255,.62);
}
.hero-pill svg { color: rgba(212,160,23,.6); flex-shrink: 0; }
.hero-pill-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(212,160,23,.4);
}
.hero-cta-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(212,160,23,.55);
  font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: .7rem 2rem;
  border-radius: 2px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.hero-cta-btn:hover {
  background: rgba(212,160,23,.14);
  border-color: rgba(212,160,23,.85);
  color: var(--c-gold-l);
}
@media (max-width: 560px) {
  .hero-big-title { font-size: 2.2rem; }
  .hero-pills { gap: .5rem; }
}

.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: .55;
  mix-blend-mode: overlay;
}

.hero-corner {
  position: absolute; width: 110px; height: 110px; opacity: .45; z-index: 2;
}
.hero-corner.tl { top: calc(var(--topbar-h) + var(--nav-h) + 20px); left: 2rem; }
@media (max-width: 768px) { .hero-corner.tl { top: calc(var(--nav-h) + 20px); } }
.hero-corner.br { bottom: 2rem; right: 2rem; transform: rotate(180deg); }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-body {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--topbar-h) + var(--nav-h) + 1.5rem) clamp(1rem, 4vw, 2rem) 4.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.45);
  border-radius: 50px; padding: .38rem 1.1rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-gold-l); margin-bottom: 1rem;
  box-shadow: 0 0 24px rgba(212,160,23,.12);
  animation: heroFadeUp .7s .1s ease both;
}
.hero-line {
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 1.1rem;
  animation: heroFadeUp .7s .22s ease both;
}
.hero-line::before, .hero-line::after {
  content: ''; width: 44px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,160,23,.7));
}
.hero-line::after { background: linear-gradient(to left, transparent, rgba(212,160,23,.7)); }
.hero-line-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-gold); opacity: .8;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.6rem); font-weight: 600;
  color: #fff; line-height: 1.06; max-width: 18ch; margin-inline: auto;
  text-shadow: 0 2px 20px rgba(0,0,0,.8), 0 1px 3px rgba(0,0,0,.6);
  animation: heroFadeUp .8s .35s ease both;
  letter-spacing: -.01em;
}
.hero-title em { font-style: italic; color: var(--c-gold-l); }
.hero-divider {
  width: 48px; height: 2px; margin: 1.5rem auto 0;
  background: linear-gradient(90deg, var(--c-primary), var(--c-gold), var(--c-primary));
  border-radius: 2px; opacity: .7;
  animation: heroFadeUp .7s .5s ease both;
}
.hero-sub {
  font-size: clamp(.92rem, 1.75vw, 1.08rem); color: rgba(255,255,255,.92); text-shadow: 0 1px 8px rgba(0,0,0,.7);
  max-width: 48ch; margin: 1.1rem auto 0; line-height: 1.8;
  animation: heroFadeUp .7s .6s ease both;
}
.hero-cta-row {
  display: flex; gap: 1rem; margin-top: 2rem;
  justify-content: center; flex-wrap: wrap;
  animation: heroFadeUp .7s .72s ease both;
}
.hero-stats {
  display: flex; gap: 0; margin-top: 2.5rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
  justify-content: center;
  animation: heroFadeUp .7s .85s ease both;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding-inline: 2rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { padding-right: 0; border-right: none; }
.stat-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--c-gold-l); line-height: 1; }
.stat-label { font-size: .68rem; color: rgba(255,255,255,.6); margin-top: .3rem; text-transform: uppercase; letter-spacing: .1em; }

.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.4); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  animation: heroFadeUp .7s 1.1s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.55), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .35; transform: scaleY(1); }
  50% { opacity: .9; transform: scaleY(.65); }
}

/* ─── BOOKING BAR ─────────────────────────────────── */
.hero-bar-wrap {
  position: relative; z-index: 20;
  margin-top: -56px;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.hero-bar {
  position: relative;
  background: rgba(255,255,255,.98);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='220'%3E%3Cg fill='none' stroke='%23374151' stroke-width='1.2' stroke-linejoin='round'%3E%3Cpolygon points='62,52 192,44 214,68 206,152 184,168 68,172 44,146 40,70' opacity='0.04'/%3E%3Cpolygon points='0,0 60,0 64,50 40,72 0,56' opacity='0.04'/%3E%3Cpolygon points='62,0 190,0 190,42 62,50' opacity='0.04'/%3E%3Cpolygon points='192,0 300,0 300,57 216,65 190,44' opacity='0.04'/%3E%3Cpolygon points='218,67 300,59 300,148 208,152' opacity='0.04'/%3E%3Cpolygon points='210,154 300,150 300,220 193,220' opacity='0.04'/%3E%3Cpolygon points='186,170 208,154 192,220 102,220 98,202' opacity='0.04'/%3E%3Cpolygon points='42,148 66,174 95,204 0,208 0,152' opacity='0.04'/%3E%3Cpolygon points='0,58 38,72 42,146 0,154' opacity='0.04'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff);
  background-size: 300px 220px, auto;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(44,26,18,.22), 0 4px 16px rgba(44,26,18,.1), 0 0 0 1px rgba(44,26,18,.07);
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr 1fr auto;
  overflow: hidden;
  max-width: var(--max-w); margin-inline: auto;
}
.hero-bar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-gold), var(--c-primary));
  z-index: 1;
}
.hbar-field {
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.15rem 1.4rem;
  border-right: 1px solid rgba(44,26,18,.1);
  cursor: pointer; min-width: 0;
  transition: background var(--transition);
}
.hbar-field:hover { background: rgba(139,58,42,.04); }
.hbar-label {
  display: block;
  font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-text-muted); margin-bottom: .35rem;
}
.hbar-field-row { display: flex; align-items: center; gap: .5rem; }
.hbar-field-row svg { width: 15px; height: 15px; color: var(--c-primary); flex-shrink: 0; }
.hbar-field input, .hbar-field select {
  background: transparent; border: none; outline: none;
  font-family: var(--font-body); font-size: .88rem; font-weight: 500;
  color: var(--c-text); min-width: 0; width: 100%;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
.hbar-field input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .4; }
.hbar-field select option { background: var(--c-bg); }
.hbar-estimate {
  font-size: .72rem; color: var(--c-primary); font-weight: 600;
  margin-top: .25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hbar-btn {
  background: linear-gradient(160deg, var(--c-primary) 0%, var(--c-primary-d) 100%);
  color: #fff; border: none; padding: 0 2rem; min-width: 118px;
  font-family: var(--font-body); font-weight: 600; font-size: .88rem; letter-spacing: .04em;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: filter var(--transition);
}
.hbar-btn:hover { filter: brightness(1.12); }
.hbar-btn svg { width: 17px; height: 17px; }
.hbar-wa {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  font-size: .75rem; color: var(--c-text-muted);
  margin-top: .8rem; padding-inline: .5rem;
  transition: color var(--transition); text-align: center;
}
.hbar-wa:hover { color: var(--c-primary); }
.hbar-wa svg { width: 15px; height: 15px; color: #25D366; flex-shrink: 0; }

/* ─── FEATURES STRIP ─────────────────────────────────── */
.feat-strip {
  background: var(--c-bg-dark);
  padding: .85rem 0;
}
.feat-strip ul {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; list-style: none;
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.feat-strip li {
  font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.9);
  padding: .35rem 1.4rem; border-right: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; gap: .45rem; letter-spacing: .03em;
  white-space: nowrap;
}
.feat-strip li:last-child { border-right: none; }
.feat-strip svg { width: 13px; height: 13px; flex-shrink: 0; }

@media (max-width: 900px) {
  .hero-bar {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .hbar-field:nth-child(2) { border-right: none; }
  .hbar-field:nth-child(4) { border-right: none; }
  .hbar-field { border-bottom: 1px solid rgba(44,26,18,.08); }
  .hbar-btn {
    grid-column: 1 / -1; padding: 1.1rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .hero-bar-wrap { margin-top: -40px; }
}
@media (max-width: 560px) {
  .hero-bar { grid-template-columns: 1fr; }
  .hbar-field { border-right: none; }
  .hbar-btn { grid-column: 1; padding: 1.1rem; }
  .hero-bar-wrap { margin-top: -28px; }
  .feat-strip li { padding: .3rem .85rem; font-size: .72rem; }
}

/* ─── SECTIONS ───────────────────────────────────────── */
.section { padding-block: clamp(1rem, 4vw, 3rem); }
.section-alt { background: var(--c-bg-alt); }

/* ─── ROOMS ──────────────────────────────────────────── */
.rooms-carousel-wrap { position: relative; padding-inline: 10px; }
.rooms-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1px solid rgba(0,0,0,.13);
  box-shadow: 0 2px 14px rgba(0,0,0,.18);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; color: var(--c-text);
  transition: background .2s, color .2s, box-shadow .2s; outline: none;
}
.rooms-nav-btn:hover { background: var(--c-bg-dark); color: #fff; box-shadow: 0 4px 22px rgba(0,0,0,.3); }
.rooms-nav-btn svg { width: 20px; height: 20px; }
.rooms-nav-prev { left: -21px; }
.rooms-nav-next { right: -21px; }
.rooms-grid {
  display: flex; gap: 1.4rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
  padding-bottom: .5rem;
}
.rooms-grid::-webkit-scrollbar { display: none; }
.room-card {
  flex: 0 0 308px; scroll-snap-align: start;
  background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.09);
  border: 1px solid rgba(0,0,0,.07);
  transition: transform .22s, box-shadow .22s; cursor: pointer;
}
.room-card:hover { transform: translateY(-5px); box-shadow: 0 10px 34px rgba(0,0,0,.15); }
.room-card-link { display: block; text-decoration: none; }
.room-img-wrap { position: relative; height: 210px; overflow: hidden; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.room-card:hover .room-img-wrap img { transform: scale(1.07); }
.room-corner-badge {
  position: absolute; top: 0; right: 0;
  background: linear-gradient(160deg, #0B1712 0%, #2A2010 100%);
  color: #fff; padding: .55rem 1.1rem .55rem 1.65rem;
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%);
  min-width: 135px;
}
.room-corner-cat { font-size: .6rem; color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .12em; display: block; }
.room-corner-loc { font-size: .82rem; font-weight: 700; color: #fff; display: block; line-height: 1.25; }
.room-img-tag {
  position: absolute; bottom: .85rem; left: .85rem;
  background: rgba(19,16,8,.78); color: #fff;
  padding: .28rem .85rem; border-radius: 50px;
  font-size: .67rem; font-weight: 600; letter-spacing: .05em;
}
.room-body { padding: 1rem 1.2rem 1.2rem; }
.room-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: .4rem; margin-bottom: .5rem; }
.room-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--c-text); line-height: 1.2; }
.room-rating { display: flex; align-items: center; gap: .25rem; font-size: .76rem; color: var(--c-text-mid); white-space: nowrap; margin-top: .1rem; }
.room-rating svg { width: 13px; height: 13px; color: #F59E0B; flex-shrink: 0; }
.room-highlight { display: flex; align-items: center; gap: .4rem; font-size: .79rem; color: var(--c-text-mid); margin-bottom: .7rem; }
.room-highlight svg { width: 14px; height: 14px; color: #6B7280; flex-shrink: 0; }
.room-perks { display: flex; flex-direction: column; gap: .28rem; margin-bottom: .85rem; padding-bottom: .85rem; border-bottom: 1px solid var(--c-border); }
.room-perk { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: var(--c-text-mid); }
.room-perk svg { width: 13px; height: 13px; color: #16A34A; flex-shrink: 0; }
.room-price-area { margin-bottom: .9rem; padding-top: .85rem; border-top: 1px solid var(--c-border); }
.room-price-label { font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--c-text-muted); display: block; margin-bottom: .25rem; }
.room-price-main { display: flex; align-items: center; gap: .42rem; margin-bottom: .3rem; }
.room-price-original { font-size: .85rem; color: #9CA3AF; text-decoration: line-through; }
.room-price-badge { background: #DC2626; color: #fff; font-size: .6rem; font-weight: 700; padding: .12rem .42rem; border-radius: 4px; letter-spacing: .02em; }
.room-price-current { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--c-text); line-height: 1; }
.room-price-unit { font-size: .72rem; color: var(--c-text-muted); align-self: flex-end; padding-bottom: .2rem; }
.room-price-note { font-size: .67rem; color: var(--c-text-muted); display: flex; align-items: center; gap: .3rem; }
.room-price-note svg { width: 11px; height: 11px; color: #16A34A; flex-shrink: 0; }
.btn-reservar {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .78rem 1rem; border-radius: 10px;
  background: var(--c-bg-dark); color: #fff; text-decoration: none;
  font-size: .875rem; font-weight: 600; letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn-reservar:hover { background: #2D2510; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.22); }
.btn-reservar svg { width: 16px; height: 16px; transition: transform .2s; }
.btn-reservar:hover svg { transform: translateX(3px); }
@media (max-width: 560px) {
  .room-card { flex: 0 0 276px; }
  .rooms-nav-btn { display: none; }
}

/* ─── EXPERIENCE ─────────────────────────────────────── */
.experience-section { position: relative; overflow: hidden; }
.experience-bg { position: absolute; inset: 0; background: var(--c-bg-alt); }
.experience-grid {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.experience-media {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 200px; gap: .75rem;
}
.exp-img-a {
  grid-row: span 2; border-radius: var(--radius-md);
  width: 100%; height: 100%; object-fit: cover;
  box-shadow: var(--shadow-md);
}
.exp-img-b, .exp-img-c {
  border-radius: var(--radius-md); width: 100%; height: 100%;
  object-fit: cover; box-shadow: var(--shadow-sm);
}
.exp-badge {
  position: absolute; bottom: 1rem; left: -.75rem;
  background: var(--c-bg-dark); color: #fff;
  padding: .8rem 1.2rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); text-align: center;
  border-left: 3px solid var(--c-primary);
}
.exp-badge-num { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; line-height: 1; color: var(--c-gold-l); }
.exp-badge-txt { font-size: .65rem; letter-spacing: .1em; opacity: .75; text-transform: uppercase; }
.experience-text { padding-top: 0; }
.exp-stats {
  display: flex; gap: 0; margin: 1.1rem 0;
  border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
  padding: .85rem 0;
}
.exp-stat { flex: 1; text-align: center; padding-inline: .75rem; border-right: 1px solid var(--c-border); }
.exp-stat:last-child { border-right: none; }
.exp-stat-num { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; color: var(--c-text); line-height: 1; }
.exp-stat-lbl { font-size: .67rem; text-transform: uppercase; letter-spacing: .09em; color: var(--c-text-muted); margin-top: .3rem; }
.exp-feature-list { display: flex; flex-direction: column; }
.exp-feature {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: .7rem 0; border-bottom: 1px solid var(--c-border);
}
.exp-feature:last-child { border-bottom: none; }
.exp-feature-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 9px;
  background: var(--c-white); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.exp-feature-icon svg { width: 17px; height: 17px; color: var(--c-primary); }
.exp-feature-body h4 { font-size: .92rem; font-weight: 600; color: var(--c-text); margin-bottom: .15rem; }
.exp-feature-body p { font-size: .79rem; color: var(--c-text-muted); line-height: 1.55; }
.exp-cta { display: flex; gap: .85rem; margin-top: 1.25rem; flex-wrap: wrap; }
@media (max-width: 900px) {
  .experience-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .experience-media { grid-template-rows: 220px 160px; }
}
@media (max-width: 560px) {
  .experience-media { grid-template-columns: 1fr; grid-template-rows: 240px 160px 140px; }
  .exp-img-a { grid-row: span 1; }
}

/* ─── SERVICES ───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.service-item {
  background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.service-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px;
  background: var(--c-bg-alt); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.service-icon svg { width: 20px; height: 20px; color: var(--c-primary); transition: color var(--transition); }
.service-item:hover .service-icon { background: var(--c-bg-dark); border-color: var(--c-bg-dark); }
.service-item:hover .service-icon svg { color: var(--c-gold-l); }
.service-body { min-width: 0; }
.service-name { font-size: .9rem; font-weight: 600; color: var(--c-text); margin-bottom: .25rem; }
.service-desc { font-size: .77rem; color: var(--c-text-muted); line-height: 1.5; }

/* ─── GALLERY ────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; transition: transform 400ms ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,26,18,.7) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { color: #fff; font-size: .8rem; font-weight: 500; letter-spacing: .06em; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; gap: .6rem; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-item img { min-height: 220px !important; }
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials-section { position: relative; overflow: hidden; }
.testimonials-bg { position: absolute; inset: 0; background: var(--c-bg-dark); }
.testimonials-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20 L10 10 L20 20 L10 30Z' fill='none' stroke='%23D4A017' stroke-width='.6' opacity='.12'/%3E%3Cpath d='M20 20 L30 10 L40 20 L30 30Z' fill='none' stroke='%23D4A017' stroke-width='.6' opacity='.08'/%3E%3C/svg%3E");
}
.testimonials-section .section-label,
.testimonials-section .section-title { color: #fff; position: relative; }
.testimonials-section .section-subtitle { color: rgba(255,255,255,.6); position: relative; }
.testimonials-track { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.testi-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 1.15rem 1.25rem;
  display: flex; flex-direction: column;
  transition: background var(--transition), transform var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.testi-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .55rem; }
.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { width: 13px; height: 13px; color: var(--c-gold); }
.testi-platform { font-size: .62rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.38); border: 1px solid rgba(255,255,255,.15); border-radius: 4px; padding: .14rem .4rem; }
.testi-text { font-size: .82rem; color: rgba(255,255,255,.82); line-height: 1.55; font-style: italic; margin-bottom: .8rem; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.testi-text::before { content: '\201C'; font-size: 1.3em; color: var(--c-gold); line-height: 0; vertical-align: -.2em; margin-right: .1em; }
.testi-author { display: flex; align-items: center; gap: .6rem; margin-top: auto; padding-top: .7rem; border-top: 1px solid rgba(255,255,255,.09); }
.testi-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.2); }
.testi-name { font-size: .8rem; font-weight: 600; color: #fff; }
.testi-country { font-size: .68rem; color: rgba(255,255,255,.5); margin-top: .1rem; }

/* ─── LOCATION ───────────────────────────────────────── */
.location-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: center; }
.location-info h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 1rem; color: var(--c-text); }
.location-info p { font-size: .9rem; color: var(--c-text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.location-details { display: flex; flex-direction: column; gap: .9rem; }
.loc-item { display: flex; align-items: flex-start; gap: .75rem; }
.loc-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--c-bg-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-icon svg { width: 18px; height: 18px; color: var(--c-primary); }
.loc-text span { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-text-muted); }
.loc-text strong { font-size: .875rem; color: var(--c-text); font-weight: 500; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 280px; }
}

/* ─── CTA ────────────────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; text-align: center; padding-block: 7rem; }
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1526392060635-9d6019884377?w=1400&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center 30%;
  filter: brightness(.3);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(19,16,8,.25) 0%, rgba(19,16,8,.72) 100%);
}
.cta-content { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; }
.cta-section .section-label { color: var(--c-gold-l); letter-spacing: .12em; }
.cta-section .section-title { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 0; }
.cta-desc { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.7; margin-block: 1rem 0; }
.cta-gold-line { width: 50px; height: 2px; background: var(--c-gold); margin: 1.25rem auto; border-radius: 2px; }
.cta-trust {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
  padding: 1.4rem 1.75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}
.cta-trust-item { display: flex; align-items: center; gap: .55rem; }
.cta-trust-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.28);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-trust-icon svg { width: 15px; height: 15px; color: var(--c-gold-l); }
.cta-trust-text { text-align: left; line-height: 1.3; }
.cta-trust-text strong { display: block; font-size: .82rem; color: #fff; font-weight: 600; }
.cta-trust-text span { font-size: .72rem; color: rgba(255,255,255,.55); }
.cta-social-proof { display: flex; align-items: center; justify-content: center; gap: .55rem; margin-bottom: 1.75rem; }
.cta-proof-stars { display: flex; gap: 2px; }
.cta-proof-stars svg { width: 14px; height: 14px; color: var(--c-gold); }
.cta-proof-text { font-size: .8rem; color: rgba(255,255,255,.6); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer { background: var(--c-bg-dark); color: rgba(255,255,255,.75); padding-top: 4rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo-eyebrow { color: rgba(212,160,23,.45); }
.footer-brand .nav-logo-name { color: #fff; }
.footer-brand .nav-logo-sub { color: rgba(255,255,255,.35); }
.footer-desc { font-size: .83rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 28ch; margin-top: 1rem; }
.social-links { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.social-link:hover { background: var(--c-primary); transform: translateY(-2px); }
.social-link svg { width: 17px; height: 17px; color: #fff; }
.footer-col h5 { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--c-gold-l); }
.footer-contact { display: flex; flex-direction: column; gap: .8rem; }
.contact-item { display: flex; align-items: flex-start; gap: .6rem; }
.contact-item svg { width: 16px; height: 16px; color: var(--c-gold); flex-shrink: 0; margin-top: .1em; }
.contact-item span { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-bottom {
  padding-block: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}

/* ─── REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ─── WHATSAPP FLOAT ─────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }

/* ══ Modal de detalle y reserva de tour (compartido home/detalle) ══ */
/* ── Room Detail Modal ──────────────────────────────────── */
.rdm-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow-y: auto;
  padding: 1.5rem 1rem;
  align-items: flex-start;
  justify-content: center;
}
.rdm-overlay.open { display: flex; }
.rdm-modal {
  background: #fff;
  border-radius: 22px;
  width: 100%; max-width: 980px;
  height: clamp(500px, 85vh, 720px);
  display: grid;
  grid-template-columns: 1fr 400px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
  animation: rdmIn .28s cubic-bezier(.4,0,.2,1);
  margin: auto;
}
@keyframes rdmIn {
  from { opacity:0; transform:scale(.96) translateY(14px); }
  to   { opacity:1; transform:none; }
}

/* Close */
.rdm-close {
  position: absolute; top: .9rem; right: .9rem; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,.5); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s;
}
.rdm-close:hover { background: rgba(0,0,0,.9); }
.rdm-close svg { width: 18px; height: 18px; }

/* Gallery column */
.rdm-gallery {
  background: #0a0a0a;
  display: flex; flex-direction: column;
  min-width: 0; overflow: hidden;
}
.rdm-gallery-main {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.rdm-gallery-main img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: opacity .3s;
}
.rdm-gallery-main img.fading { opacity: .35; }
.rdm-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(0,0,0,.55); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s;
}
.rdm-nav:hover { background: rgba(0,0,0,.9); }
.rdm-nav svg { width: 20px; height: 20px; }
.rdm-prev { left: .75rem; }
.rdm-next { right: .75rem; }
.rdm-counter {
  position: absolute; bottom: .85rem; right: .85rem;
  background: rgba(0,0,0,.6); color: #fff;
  font-size: .72rem; font-weight: 600; padding: .28rem .7rem;
  border-radius: 20px; letter-spacing: .04em;
}
.rdm-zoom-btn {
  position: absolute; bottom: .85rem; left: .85rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.55); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s;
}
.rdm-zoom-btn:hover { background: rgba(0,0,0,.9); }
.rdm-zoom-btn svg { width: 16px; height: 16px; }

/* Lightbox */
.rdm-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
  cursor: zoom-out;
}
.rdm-lightbox.open { display: flex; }
.rdm-lightbox img {
  max-width: 95vw; max-height: 92vh;
  object-fit: contain; border-radius: 6px;
  box-shadow: 0 10px 60px rgba(0,0,0,.6);
  cursor: default;
}
.rdm-lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s;
}
.rdm-lightbox-close:hover { background: rgba(255,255,255,.3); }
.rdm-lightbox-close svg { width: 20px; height: 20px; }
.rdm-thumbs {
  display: flex; gap: 8px; padding: 10px;
  background: #111; overflow-x: auto; flex-shrink: 0;
  scrollbar-width: thin; scrollbar-color: #D4A017 #000;
}
.rdm-thumb {
  width: 100px; height: 70px; object-fit: cover; flex-shrink: 0;
  border-radius: 10px; cursor: pointer;
  opacity: .5; transition: opacity .2s, outline .2s;
  outline: 3px solid transparent; outline-offset: 2px;
}
.rdm-thumb.active { opacity: 1; outline-color: #D4A017; }
.rdm-thumb:hover { opacity: .8; }

/* Info column */
.rdm-info {
  height: 100%;
  display: flex; flex-direction: column; overflow: hidden;
  min-width: 0; width: 100%;
}

/* ── Tabs ──────────────────────────────────────────── */
.rdm-tabs {
  display: flex; flex-shrink: 0; border-bottom: 2px solid #F0EDE6;
}
.rdm-tab {
  flex: 1; padding: .7rem .5rem; border: none; background: none; cursor: pointer;
  font-size: .82rem; font-weight: 600; color: #9CA3AF;
  border-bottom: 2.5px solid transparent; margin-bottom: -2px;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  transition: color .18s, border-color .18s;
}
.rdm-tab svg { flex-shrink: 0; }
.rdm-tab.active { color: #0E7A4B; border-bottom-color: #D4A017; }
.rdm-tab:hover:not(.active) { color: #374151; }
.rdm-tab-panel {
  display: none; flex: 1; min-height: 0; overflow-y: auto; overflow-x: hidden;
  padding: 1.5rem 1.6rem; flex-direction: column; gap: 0.8rem;
}
.rdm-tab-panel.active { display: flex; }

/* ── Calendar ──────────────────────────────────────── */
.rdm-cal-loading { font-size: .83rem; color: #9CA3AF; padding: 1rem 0; text-align: center; }
.rdm-cal-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: .65rem;
}
.rdm-cal-title { font-size: .9rem; font-weight: 700; color: #0D0A05; text-transform: capitalize; }
.rdm-cal-nav-btn {
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid #E5E7EB;
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #374151; transition: background .15s;
}
.rdm-cal-nav-btn:hover { background: #F3F4F6; }
.rdm-cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: .25rem; }
.rdm-cal-wd { text-align: center; font-size: .62rem; font-weight: 700; color: #9CA3AF; padding: .22rem 0; text-transform: uppercase; }
.rdm-cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.rdm-cal-day {
  aspect-ratio: 1; border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: .76rem; font-weight: 500; cursor: pointer; border: 1.5px solid transparent;
  transition: background .1s, border-color .1s; user-select: none; position: relative;
}
.rdm-cal-day.empty { cursor: default; }
.rdm-cal-day.past  { color: #D1D5DB; cursor: not-allowed; }
.rdm-cal-day.today:not(.past):not(.booked) { border-color: #D4A017; font-weight: 700; }
.rdm-cal-day.booked { background: #FEE2E2; color: #EF4444; cursor: not-allowed; font-size: .7rem; }
.rdm-cal-day.available:hover { background: #F0FDF4; border-color: #86EFAC; }
.rdm-cal-day.sel-ci { background: #0E7A4B !important; color: #fff !important; border-color: #0E7A4B !important; border-radius: 7px 0 0 7px; }
.rdm-cal-day.sel-co { background: #D4A017 !important; color: #2A2005 !important; border-color: #D4A017 !important; border-radius: 0 7px 7px 0; }
.rdm-cal-day.in-range { background: #ECFDF5; color: #15803D; border-radius: 0; }
.rdm-cal-legend { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .6rem; }
.rdm-cal-leg { display: flex; align-items: center; gap: .3rem; font-size: .67rem; color: #6B7280; }
.rdm-cal-leg-dot { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; }
.rdm-cal-leg-dot.a { background: #F0FDF4; border: 1.5px solid #86EFAC; }
.rdm-cal-leg-dot.b { background: #FEE2E2; border: 1.5px solid #EF4444; }
.rdm-cal-leg-dot.s { background: #0E7A4B; }
.rdm-cal-sel-info {
  margin-top: .75rem;
  min-height: 2.5rem;
  font-size: .8rem;
  line-height: 1.5;
  border-radius: 10px;
  padding: .6rem .85rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, color .2s;
}
.rdm-cal-sel-info.neutral {
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  color: #94A3B8;
  font-style: italic;
}
.rdm-cal-sel-info.partial {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #3B82F6;
}
.rdm-cal-sel-info.selected {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #166534;
  font-weight: 500;
}
.rdm-cal-err[hidden] { display: none !important; }
.rdm-cal-err {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: .6rem .85rem;
  font-size: .78rem;
  margin-top: .5rem;
}
.rdm-cal-err::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B91C1C' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
.rdm-cal-checktimes {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .73rem;
  color: #94A3B8;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: .45rem .75rem;
  margin-top: .5rem;
}
.rdm-cal-checktimes svg { color: #0E7A4B; flex-shrink: 0; }
.rdm-cal-checktimes strong { color: #475569; font-weight: 600; }
.rdm-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  width: fit-content;
  background: linear-gradient(135deg, #0E7A4B, #149863);
  color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 20px;
}
.rdm-badge svg { width: 12px; height: 12px; }
.rdm-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem; font-weight: 700; color: #0D0A05;
  line-height: 1.15; margin: 0;
  overflow-wrap: break-word;
}
.rdm-meta { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.rdm-stars { display: flex; align-items: center; gap: .22rem; color: #D4A017; }
.rdm-stars svg { width: 15px; height: 15px; }
.rdm-stars span { font-size: .82rem; color: #6B7280; margin-left: .2rem; }
.rdm-capacity { display: flex; align-items: center; gap: .35rem; font-size: .85rem; color: #374151; }
.rdm-capacity svg { width: 16px; height: 16px; color: #9CA3AF; flex-shrink: 0; }
.rdm-hr { border: none; border-top: 1px solid #F0EDE6; }

/* Amenities */
.rdm-amenities-label {
  font-size: .68rem; font-weight: 700; color: #9CA3AF;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .65rem;
}
.rdm-amenities-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .3rem .5rem;
  min-width: 0; overflow: hidden;
}
.rdm-amenities-grid > * { min-width: 0; overflow: hidden; }
.rdm-amenity {
  display: flex; align-items: flex-start; gap: .38rem;
  font-size: .82rem; color: #374151;
  overflow: hidden; word-break: break-word;
}
.rdm-amenity svg { width: 13px; height: 13px; color: #16A34A; flex-shrink: 0; margin-top: .15rem; }

/* Price */
.rdm-price-box {
  background: #F9F6EF; border: 1.5px solid #E9E2D1;
  border-radius: 12px; padding: .65rem .9rem;
}
.rdm-price-label {
  font-size: .67rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #9CA3AF; margin-bottom: .25rem;
}
.rdm-price-row { display: flex; flex-direction: column; gap: .1rem; }
.rdm-price-row > span:not(.rdm-price-extra-guest) { display: inline-flex; align-items: baseline; gap: .3rem; flex-wrap: wrap; }
.rdm-price-main-row { display: inline-flex; align-items: baseline; gap: .3rem; flex-wrap: wrap; }
.rdm-price-old-row { display: inline-flex; align-items: center; gap: .35rem; flex-wrap: wrap; }
.rdm-price-orig { text-decoration: line-through; color: #9CA3AF; font-size: .8rem; }
.rdm-price-disc { background: #DCFCE7; color: #16A34A; font-size: .68rem; font-weight: 700; padding: .12rem .45rem; border-radius: 20px; }
.rdm-price-main {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: #0D0A05; line-height: 1;
}
.rdm-price-unit { font-size: .72rem; color: #9CA3AF; }
.rdm-price-extra-guest {
  display: flex; align-items: baseline; gap: .2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 700; color: #0E7A4B;
}
.rdm-price-note { font-size: .73rem; color: #9CA3AF; margin-top: .35rem; display: flex; align-items: center; gap: .28rem; }
.rdm-price-note svg { width: 12px; height: 12px; color: #16A34A; flex-shrink: 0; }

/* CTAs */
.rdm-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  background: #25D366; color: #fff; border-radius: 12px;
  padding: .9rem 1rem; font-weight: 700; font-size: .93rem;
  text-decoration: none; transition: filter .2s, transform .15s;
}
.rdm-btn-wa:hover { filter: brightness(1.08); transform: translateY(-1px); }
.rdm-btn-wa svg { width: 20px; height: 20px; }
.rdm-btn-call {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: #F3F4F6; color: #374151; border-radius: 12px;
  padding: .75rem 1rem; font-weight: 600; font-size: .88rem;
  text-decoration: none; transition: background .2s;
}
.rdm-btn-call:hover { background: #E5E7EB; }
.rdm-btn-call svg { width: 17px; height: 17px; }
.rdm-ctas { display: flex; flex-direction: column; gap: .55rem; }
.rdm-trust {
  display: flex; align-items: center; justify-content: center; gap: .35rem;
  font-size: .71rem; color: #9CA3AF; text-align: center;
}
.rdm-trust svg { width: 12px; height: 12px; color: #D4A017; }

/* ── Guest form + buttons ───────────────────────────────── */
.rdm-guests-info {
  display: flex; align-items: center; gap: .45rem;
  background: #F0F9FF; border: 1px solid #BAE6FD; border-radius: 8px;
  padding: .55rem .85rem; font-size: .8rem; color: #0369A1; margin-bottom: .55rem;
}
.rdm-guests-info strong { color: #0C4A6E; }
.rdm-avail-ok {
  background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0;
  border-radius: 10px; padding: .6rem .85rem; font-size: .81rem; font-weight: 600; margin-bottom: .6rem;
}
.rdm-form-grp { display: flex; flex-direction: column; gap: .28rem; margin-bottom: .5rem; }
.rdm-form-grp label { font-size: .72rem; font-weight: 600; color: #374151; }
.rdm-form-grp select,
.rdm-form-grp input, .rdm-form-grp textarea {
  border: 1.5px solid #E5E7EB; border-radius: 10px;
  padding: .5rem .65rem; font-size: .84rem; color: #0D0A05;
  background: #FAFAFA; outline: none; font-family: inherit;
  transition: border-color .2s; width: 100%; box-sizing: border-box;
}
.rdm-form-grp select:focus,
.rdm-form-grp input:focus, .rdm-form-grp textarea:focus { border-color: #D4A017; background: #fff; }
.rdm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.rdm-btn-reserve {
  width: 100%; padding: .76rem; border: none; border-radius: 11px;
  background: #D4A017; color: #2A2005; font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: filter .2s, transform .15s; margin-top: .2rem;
}
.rdm-btn-reserve:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.rdm-btn-reserve:disabled { background: #9CA3AF; cursor: not-allowed; transform: none; }
.rdm-btn-go-reserve {
  width: 100%; padding: .76rem; border: 2px solid #0E7A4B; border-radius: 11px;
  background: #0E7A4B; color: #fff; font-weight: 700; font-size: .9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background .18s; margin-bottom: .5rem;
}
.rdm-btn-go-reserve:hover { background: #149863; }
/* Unit selector */
.rdm-step-label { font-size: .8rem; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .7rem; }
/* Guest stepper */
.rdm-guests-stepper {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  background: #F8FAFC; border: 1.5px solid #E5E7EB; border-radius: 11px;
  padding: .65rem 1rem; margin-bottom: .75rem;
}
.rdm-guests-label {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; color: #374151; flex: 1;
}
.rdm-stepper-ctrl {
  display: flex; align-items: center; gap: .5rem;
}
.rdm-stepper-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid #D1D5DB; background: #fff;
  font-size: 1.1rem; font-weight: 700; color: #374151;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, background .15s;
  line-height: 1;
}
.rdm-stepper-btn:hover:not(:disabled) { border-color: #0E7A4B; background: #F0FDF4; color: #0E7A4B; }
.rdm-stepper-btn:disabled { opacity: .35; cursor: not-allowed; }
#rdm-guests-display {
  min-width: 28px; text-align: center;
  font-size: 1.05rem; font-weight: 800; color: #0E7A4B;
}
.rdm-guests-price-tag {
  font-size: .78rem; font-weight: 700; color: #0E7A4B;
  background: #FEF9EC; border: 1px solid #F0E0A0;
  border-radius: 8px; padding: .2rem .6rem;
  display: none;
}
.rdm-unit-list { display: flex; flex-direction: column; gap: .5rem; }
.rdm-unit-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem; border: 1.5px solid #E5E7EB; border-radius: 11px;
  cursor: pointer; transition: border-color .18s, background .18s;
  background: #fff;
}
.rdm-unit-card:hover { border-color: #D4A017; background: #FFFBF0; }
.rdm-unit-num { font-size: 1rem; font-weight: 700; color: #0E7A4B; }
.rdm-unit-desc { font-size: .78rem; color: #6B7280; margin-top: .1rem; }
.rdm-unit-arrow { color: #D4A017; font-size: 1.1rem; }
.rdm-step-nav {
  display: flex; align-items: center; justify-content: space-between;
  background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 10px;
  padding: .55rem .85rem; margin-bottom: 1rem;
}
.rdm-step-back {
  display: inline-flex; align-items: center; gap: .35rem;
  background: #1E3A5F; border: none; border-radius: 7px;
  cursor: pointer; font-size: .78rem; font-weight: 600; color: #fff;
  padding: .32rem .75rem; transition: background .15s;
}
.rdm-step-back:hover { background: #16304F; }
.rdm-step-back svg { flex-shrink: 0; }
.rdm-step-title {
  font-size: .75rem; font-weight: 600; color: #9CA3AF;
  text-transform: uppercase; letter-spacing: .05em;
}
.rdm-success-box {
  text-align: center; padding: 1.2rem;
  background: #F0FDF4; border: 1.5px solid #BBF7D0; border-radius: 14px;
}
.rdm-success-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: #16A34A; color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto .65rem;
}
.rdm-success-box h3 { font-size: 1rem; color: #0D0A05; margin-bottom: .4rem; }
.rdm-success-box p  { font-size: .8rem; color: #374151; margin-bottom: .8rem; }
.rdm-btn-wa-sm {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #25D366; color: #fff; border-radius: 10px;
  padding: .55rem 1.1rem; font-weight: 700; font-size: .83rem;
  text-decoration: none; transition: filter .2s;
}
.rdm-btn-wa-sm:hover { filter: brightness(1.08); }
.rdm-book-err {
  background: #FEF2F2; color: #DC2626; border: 1px solid #FEE2E2;
  border-radius: 9px; padding: .55rem .8rem; font-size: .8rem; margin-bottom: .5rem;
}
.rdm-btn-pay {
  width: 100%; padding: .78rem; border: none; border-radius: 11px;
  background: #0E7A4B; color: #fff; font-weight: 700; font-size: .9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background .18s, transform .15s; margin-top: .25rem;
}
.rdm-btn-pay:hover:not(:disabled) { background: #149863; transform: translateY(-1px); }
.rdm-btn-pay:disabled { background: #9CA3AF; cursor: not-allowed; transform: none; }
.rdm-pay-processing {
  display: none; align-items: center; justify-content: center; gap: .55rem;
  font-size: .83rem; color: #6B7280; padding: .6rem 0;
}
.rdm-pay-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid #E5E7EB; border-top-color: #D4A017;
  animation: rdm-spin .7s linear infinite; flex-shrink: 0;
}
@keyframes rdm-spin { to { transform: rotate(360deg); } }
.rdm-charge-id {
  font-size: .7rem; color: #9CA3AF; margin-top: .4rem;
  word-break: break-all; text-align: center;
}

/* Responsive */
@media (max-width: 720px) {
  .rdm-modal {
    grid-template-columns: 1fr;
    height: auto; max-height: 95vh;
    border-radius: 18px;
    overflow-y: auto;
  }
  .rdm-gallery-main {
    position: relative;
    height: 260px;
    flex: none;
  }
  .rdm-info { height: auto; overflow: visible; }
  .rdm-tab-panel.active { flex: none; overflow-y: visible; }
  .rdm-amenities-grid { grid-template-columns: 1fr; }
  .rdm-title { font-size: 1.55rem; }
}

/* ══ Hero slider: carrusel de tours en el banner principal ══ */
.hero-slider {
  height: clamp(540px, 78vh, 740px);
  position: relative;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; visibility: hidden;
  transition: opacity .9s ease, visibility 0s .9s;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1; visibility: visible; z-index: 2;
  transition: opacity .9s ease;
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,10,8,.6) 0%, rgba(6,10,8,.22) 45%, rgba(6,10,8,.7) 100%);
}
.hero-slide-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: calc(var(--topbar-h) + var(--nav-h) + 1rem) clamp(1rem, 4vw, 2rem) 4.2rem;
  max-width: 920px; margin-inline: auto;
}
.hero-slide.active .hero-slide-content > * { animation: heroFadeUp .7s ease both; }
.hero-slide.active .hero-slide-content > *:nth-child(2) { animation-delay: .12s; }
.hero-slide.active .hero-slide-content > *:nth-child(3) { animation-delay: .2s; }
.hero-slide.active .hero-slide-content > *:nth-child(4) { animation-delay: .28s; }
.hero-slide.active .hero-slide-content > *:nth-child(5) { animation-delay: .36s; }
.hero-slide.active .hero-slide-content > *:nth-child(6) { animation-delay: .44s; }

.hero-slide-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(212,160,23,.16); border: 1px solid rgba(212,160,23,.5);
  border-radius: 50px; padding: .4rem 1.2rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-gold-l); margin-bottom: 1.1rem;
}
.hero-slide-tour-title { font-size: clamp(2.1rem, 5vw, 3.9rem); }
.hero-slide-price {
  font-size: .95rem; color: rgba(255,255,255,.85);
  margin-top: 1rem; letter-spacing: .04em;
}
.hero-slide-price strong {
  font-family: var(--font-heading);
  font-size: 1.6rem; color: var(--c-gold-l); font-weight: 700;
  margin: 0 .2rem;
}
.hero-slider .hero-cta-row { margin-top: 1.4rem; }

/* Flechas */
.hero-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.hero-slider-arrow:hover { background: rgba(212,160,23,.75); border-color: rgba(212,160,23,.9); }
.hero-slider-arrow svg { width: 22px; height: 22px; }
.hero-slider-arrow.prev { left: clamp(.6rem, 2.5vw, 2rem); }
.hero-slider-arrow.next { right: clamp(.6rem, 2.5vw, 2rem); }

/* Puntos */
.hero-slider-dots {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; gap: .55rem;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50px; border: none; cursor: pointer;
  background: rgba(255,255,255,.38); padding: 0;
  transition: width .3s, background .3s;
}
.hero-dot.active { width: 26px; background: var(--c-gold); }

@media (max-width: 640px) {
  .hero-slider { height: clamp(480px, 82vh, 600px); }
  .hero-slide-desc { display: none; }
  .hero-slider-arrow { width: 38px; height: 38px; }
  .hero-slide-tour-title { font-size: 1.9rem; }
}

/* ══ Hero banner único con mini-carrusel de tours ══ */
.hero-banner {
  height: auto;
  min-height: clamp(440px, 58vh, 560px);
  background-size: cover; background-position: center;
  position: relative;
  display: flex; flex-direction: column;
}
.hero-banner-content {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--topbar-h) + var(--nav-h) + 1rem) clamp(1rem, 4vw, 2rem) 1.2rem;
  max-width: 920px; margin-inline: auto;
}
.hero-banner-content > * { animation: heroFadeUp .7s ease both; }
.hero-banner-content > *:nth-child(2) { animation-delay: .12s; }
.hero-banner-content > *:nth-child(3) { animation-delay: .2s; }
.hero-banner-content > *:nth-child(4) { animation-delay: .28s; }
.hero-banner-content > *:nth-child(5) { animation-delay: .36s; }

/* Franja de mini-tarjetas */
.hero-mini-wrap {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: .6rem;
  max-width: var(--max-w); width: 100%;
  margin: 0 auto;
  padding: 0 clamp(.8rem, 3vw, 2rem) 1.6rem;
  animation: heroFadeUp .7s .45s ease both;
}
.hero-mini-track {
  display: flex; gap: .8rem;
  overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  flex: 1; min-width: 0;
  padding: .2rem;
}
.hero-mini-track::-webkit-scrollbar { display: none; }
.hero-mini-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  display: flex; align-items: center; gap: .75rem;
  width: 300px;
  background: rgba(12,20,16,.55);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: .6rem .8rem .6rem .6rem;
  text-decoration: none;
  transition: background .22s, border-color .22s, transform .22s;
}
.hero-mini-card:hover {
  background: rgba(14,122,75,.5);
  border-color: rgba(212,160,23,.55);
  transform: translateY(-3px);
}
.hero-mini-card img {
  width: 62px; height: 62px; object-fit: cover;
  border-radius: 10px; flex-shrink: 0;
}
.hero-mini-info {
  display: flex; flex-direction: column; gap: .12rem;
  min-width: 0; flex: 1;
}
.hero-mini-cat {
  font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-gold-l);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-mini-name {
  font-family: var(--font-heading);
  font-size: 1.02rem; font-weight: 700; color: #fff; line-height: 1.15;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-mini-price { font-size: .72rem; color: rgba(255,255,255,.75); }
.hero-mini-price strong { color: var(--c-gold-l); font-size: .85rem; }
.hero-mini-go {
  flex-shrink: 0; color: rgba(255,255,255,.55);
  transition: color .2s, transform .2s;
}
.hero-mini-go svg { width: 17px; height: 17px; }
.hero-mini-card:hover .hero-mini-go { color: var(--c-gold-l); transform: translateX(3px); }

.hero-mini-arrow {
  flex-shrink: 0; z-index: 4;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.hero-mini-arrow:hover { background: rgba(212,160,23,.75); }
.hero-mini-arrow svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .hero-banner { min-height: clamp(430px, 64vh, 520px); }
  .hero-mini-card { width: 250px; }
  .hero-mini-arrow { display: none; }
  .hero-mini-wrap { padding-inline: .8rem; }
}

/* Tipografía compacta para el banner reducido */
.hero-banner .hero-big-title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.hero-banner .hero-sub { font-size: clamp(.88rem, 1.5vw, .98rem); margin-top: .8rem; max-width: 52ch; }
.hero-banner .hero-cta-row { margin-top: 1.4rem; }
.hero-banner .hero-eyebrow { font-size: .62rem; }

/* ══ Botón flotante lateral "Opina aquí" ══ */
.opina-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  background: var(--c-brown); /* púrpura de apoyo #4B2E83 */
  color: #fff;
  text-decoration: none;
  padding: .85rem .42rem;
  border-radius: 11px 0 0 11px;
  box-shadow: -4px 4px 18px rgba(75,46,131,.35);
  transition: background .2s, padding-right .2s, transform .25s;
}
.opina-tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
}
.opina-tab svg { width: 17px; height: 17px; flex-shrink: 0; }
.opina-tab:hover {
  background: #5C3AA0;
  padding-right: .7rem;
}
@media (max-width: 640px) {
  .opina-tab { padding: .7rem .38rem; gap: .45rem; }
  .opina-tab span { font-size: .7rem; }
  .opina-tab svg { width: 15px; height: 15px; }
}
