/* ================================================================
   Apart Hotel Katari — styles.css
   Paleta: Dorado #d69614 | Carbón #2b2b2b | Crema #f3ead7 | Gris #9e9e9e
   Tipografía: Playfair Display (títulos) + Montserrat (cuerpo)
================================================================ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --gold:     #d69614;
  --gold-lt:  #e8b84b;
  --carbon:   #2b2b2b;
  --cream:    #f3ead7;
  --cream-dk: #e8dcc4;
  --gray:     #9e9e9e;
  --white:    #ffffff;
  --dark-bg:  #1a1a1a;
  --ff-title: 'Playfair Display', Georgia, serif;
  --ff-body:  'Montserrat', sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--carbon);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── Pixel decorative elements ─────────────────────────────── */
.px-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  margin: 0 3px;
  vertical-align: middle;
}
.section-label {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 4px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--carbon);
  box-shadow: 4px 4px 0 var(--carbon);
}
.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: 6px 6px 0 var(--carbon);
  transform: translate(-2px, -2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 3px 3px 0 var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--carbon);
  box-shadow: 5px 5px 0 var(--carbon);
  transform: translate(-2px, -2px);
}
.btn-dark {
  background: var(--carbon);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--gold);
}
.btn-dark:hover {
  background: #3a3a3a;
  box-shadow: 6px 6px 0 var(--gold);
  transform: translate(-2px, -2px);
}

/* ─── Section & Container ───────────────────────────────────── */
.section { padding: 90px 0; }
.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--ff-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--carbon);
}
.section-title span { color: var(--gold); font-style: italic; }

/* ─── Pixel corner decorations ──────────────────────────────── */
.px-corner {
  position: absolute;
  width: 60px; height: 60px;
  pointer-events: none;
}
.px-corner.tl { top: 20px; left: 20px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); }
.px-corner.tr { top: 20px; right: 20px; border-top: 3px solid var(--gold); border-right: 3px solid var(--gold); }
.px-corner.bl { bottom: 20px; left: 20px; border-bottom: 3px solid var(--gold); border-left: 3px solid var(--gold); }
.px-corner.br { bottom: 20px; right: 20px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); }

/* ─── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Toast ─────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--gold);
  color: var(--carbon);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 14px 22px;
  box-shadow: 6px 6px 0 var(--carbon);
  transform: translateX(200%);
  transition: transform 0.4s cubic-bezier(0.17, 0.89, 0.32, 1.28);
  z-index: 9999;
}
.toast.show { transform: translateX(0); }

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(43,43,43,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
}
/* .nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-pixel { width: 28px; height: 28px; flex-shrink: 0; }
.logo-pixel svg { width: 100%; height: 100%; }
.logo-text .logo-main {
  font-family: var(--ff-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo-text .logo-main em { color: var(--gold); font-style: italic; }
.logo-text .logo-sub {
  font-family: var(--ff-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2px;
}*/
/* ── Logo con imágenes ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  height: 36px;        /* ajustá según tu imagen */
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 28px;        /* ajustá según tu imagen */
  width: auto;
  display: block;
}

.nav-logo-sub {
  font-family: var(--ff-body);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  /* separa el subtítulo del logo con una línea vertical */
  border-left: 1px solid #444;
  padding-left: 10px;
  margin-left: 2px;
}

/* En mobile, ocultá el logo-texto y mostrá solo el ícono */
@media (max-width: 768px) {
  .nav-logo-img  { display: none; }
  .nav-logo-sub  { display: none; }
  .nav-logo-icon { height: 32px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--carbon);
  padding: 20px 5%;
  border-top: 1px solid #333;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 10px 0;
  border-bottom: 1px solid #333;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; width: fit-content; }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--carbon);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(214,150,20,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(214,150,20,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #1a1a1a 0%, #2b2b2b 50%, #1f1b12 100%);
}
.hero-bg.has-image {
  background-size: cover;
  background-position: center;
}
.hero-bg.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,15,5,0.58);
}
.hero-pixel-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214,150,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,150,20,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-pixel-deco {
  position: absolute;
  right: 8%; top: 50%;
  transform: translateY(-50%);
  width: 380px;
  opacity: 0.12;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 5% 80px;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px; height: 2px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--ff-title);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: #b0a89a;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 36px; left: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-arrow {
  display: flex;
  flex-direction: column;
  gap: 3px;
  animation: bounceDown 1.4s infinite;
}
.scroll-arrow span {
  display: block;
  width: 8px; height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ════════════════════════════════════════════════════════════
   SOBRE NOSOTROS
════════════════════════════════════════════════════════════ */
#nosotros { background: var(--cream); position: relative; overflow: hidden; }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.nosotros-img-wrap { position: relative; }
.nosotros-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #c8b89a 0%, #a89070 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-title);
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  font-style: italic;
  border: 3px solid var(--gold);
  box-shadow: 8px 8px 0 var(--carbon);
  position: relative;
  overflow: hidden;
}
.nosotros-img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nosotros-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(214,150,20,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,150,20,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0 var(--carbon);
  z-index: 2;
}
.img-badge .badge-num {
  font-family: var(--ff-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--carbon);
  line-height: 1;
}
.img-badge .badge-txt {
  font-family: var(--ff-body);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--carbon);
  text-align: center;
}
.nosotros-text .section-title { margin-bottom: 1.5rem; }
.nosotros-text p { color: #5a5a5a; font-size: 0.93rem; line-height: 1.85; margin-bottom: 1rem; }
.nosotros-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 2rem; }
.pill {
  background: var(--carbon);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 2px solid var(--carbon);
  transition: all 0.2s;
}
.pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--carbon);
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--carbon);
}
/* ════════════════════════════════════════════════════════════
   CERTIFICACIONES
════════════════════════════════════════════════════════════ */
.section-cert {
  background: var(--carbon);
  padding: 60px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.cert-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.cert-header .section-label {
  justify-content: center;
}
.cert-header .section-label::before { display: none; }

.cert-intro {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}
.cert-intro strong {
  color: var(--cream);
  font-weight: 600;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cert-card {
  background: #2a2a2a;
  border: 1px solid #383838;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.25s, transform 0.25s;
}
.cert-card:hover {
  border-color: var(--gold);
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 rgba(214,150,20,0.2);
}

/* Card con acento dorado (energía solar) */
.cert-card--highlight {
  border-color: rgba(214,150,20,0.3);
  background: rgba(214,150,20,0.05);
}

.cert-icon-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid rgba(214,150,20,0.3);
  padding: 10px;
  box-shadow: 3px 3px 0 rgba(214,150,20,0.15);
}

.cert-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* respeta proporciones, nunca recorta */
  /* sin filter: los colores reales del logo se preservan */
}
.cert-logo:hover {
  transform: scale(1.05);
  transition: transform 0.2s;
}

.cert-logo-placeholder {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.cert-title {
  font-family: var(--ff-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.cert-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 768px) {
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .section-cert { padding: 50px 0; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .cert-grid { grid-template-columns: 1fr 1fr; }
}


/* ════════════════════════════════════════════════════════════
   HABITACIONES
════════════════════════════════════════════════════════════ */
#habitaciones { background: var(--carbon); color: var(--cream); position: relative; overflow: hidden; }
#habitaciones .section-title { color: var(--cream); }
#habitaciones .section-title span { color: var(--gold); }

.hab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hab-card {
  background: #222222;
  border: 2px solid #333;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hab-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.hab-card:hover::before { transform: scaleX(1); }
.hab-card:hover {
  border-color: var(--gold);
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--gold);
}
.hab-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #3a3020 0%, #2a2010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hab-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hab-img-icon {
  font-size: 3rem;
  opacity: 0.35;
  position: relative;
  z-index: 0;
}
.hab-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(214,150,20,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,150,20,0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  z-index: 2;
  pointer-events: none;
}
.hab-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--carbon);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 3;
}
.hab-body { padding: 22px; }
.hab-title { font-family: var(--ff-title); font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.hab-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.hab-features { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.hab-feat {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  background: #2e2e2e;
  padding: 4px 8px;
  border: 1px solid #3a3a3a;
}
.hab-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #333;
  padding-top: 16px;
}
.hab-price { font-family: var(--ff-title); font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.hab-price span { font-family: var(--ff-body); font-size: 0.65rem; color: var(--gray); font-weight: 400; }

/* Hint "ver más" al pie de cada card */
.hab-card-hint {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 10px 0 6px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.hab-card:hover .hab-card-hint { opacity: 1; }

/* ── Precio con nota de temporada ── */
.hab-price-wrap { display: flex; flex-direction: column; gap: 2px; }
.hab-price-note {
  font-size: 0.62rem;
  color: var(--gray);
  font-style: italic;
}

.hab-note {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  color: var(--gray);
  font-style: italic;
  text-align: center;
}
/* ════════════════════════════════════════════════════════════
   MODAL CARRUSEL
════════════════════════════════════════════════════════════ */
.apt-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,12,8,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.apt-modal-overlay.open { display: flex; }

.apt-modal {
  background: #1e1e1e;
  border: 2px solid var(--gold);
  box-shadow: 10px 10px 0 rgba(214,150,20,0.25);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.modal-carousel { position: relative; background: #111; min-height: 440px; }
.carousel-track { position: relative; width: 100%; height: 100%; min-height: 440px; overflow: hidden; }
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-slide .slide-placeholder {
  width: 100%; height: 100%; min-height: 440px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: rgba(214,150,20,0.4);
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-family: var(--ff-body);
  background:
    linear-gradient(rgba(214,150,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,150,20,0.04) 1px, transparent 1px),
    #181818;
  background-size: 24px 24px;
}
.slide-placeholder .slide-icon { font-size: 2.5rem; opacity: 0.5; }
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 28px 16px 14px;
  font-family: var(--ff-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); z-index: 2;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 38px; height: 38px;
  background: rgba(214,150,20,0.85);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--carbon);
  transition: background 0.2s;
}
.carousel-btn:hover { background: var(--gold); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-dots {
  position: absolute; bottom: 42px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; z-index: 3;
}
.carousel-dot {
  width: 7px; height: 7px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

.modal-info { padding: 36px 32px; display: flex; flex-direction: column; }
.modal-tag { font-family: var(--ff-body); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.modal-title { font-family: var(--ff-title); font-size: 1.6rem; font-weight: 700; color: var(--cream); line-height: 1.15; margin-bottom: 6px; }
.modal-model { font-family: var(--ff-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }
.modal-desc { font-size: 0.85rem; color: #aaa; line-height: 1.8; margin-bottom: 22px; }
.modal-why { background: rgba(214,150,20,0.07); border-left: 3px solid var(--gold); padding: 14px 16px; margin-bottom: 22px; }
.modal-why-title { font-family: var(--ff-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.modal-why-text { font-size: 0.82rem; color: #bbb; line-height: 1.7; }
.modal-feats { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.modal-feat { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); background: #2a2a2a; padding: 5px 10px; border: 1px solid #3a3a3a; }
.modal-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #333; padding-top: 20px; }
.modal-price { font-family: var(--ff-title); font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.modal-price span { font-family: var(--ff-body); font-size: 0.65rem; color: var(--gray); font-weight: 400; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: var(--gold); border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--carbon);
  display: flex; align-items: center; justify-content: center;
  z-index: 10; box-shadow: 3px 3px 0 var(--carbon);
  transition: transform 0.2s;
}
.modal-close:hover { transform: scale(1.1); }

/* ── Desglose de precios en el modal ── */

.modal-price-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.modal-price-tag {
  font-family: var(--ff-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  background: #2a2a2a;
  padding: 3px 8px;
  border: 1px solid #3a3a3a;
  white-space: nowrap;
}
.modal-price-tag--high {
  color: var(--carbon);
  background: var(--gold);
  border-color: var(--gold);
}
.modal-season-note {
  font-size: 0.68rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 8px;
}

/* ════════════════════════════════════════════════════════════
   SERVICIOS
════════════════════════════════════════════════════════════ */
#servicios { background: var(--cream); position: relative; }
.servicios-header { text-align: center; margin-bottom: 3.5rem; }
.servicios-header .section-label { justify-content: center; }
.servicios-header .section-label::before { display: none; }
.servicios-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.serv-card {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--cream-dk);
  transition: all 0.25s;
}
.serv-card:hover {
  border-color: var(--gold);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--gold);
}
.serv-icon {
  width: 56px; height: 56px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  box-shadow: 3px 3px 0 var(--carbon);
}
.serv-title { font-family: var(--ff-title); font-size: 1rem; font-weight: 700; color: var(--carbon); margin-bottom: 8px; }
.serv-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   UBICACIÓN
════════════════════════════════════════════════════════════ */
#ubicacion { background: var(--carbon); color: var(--cream); overflow: hidden; position: relative; }
.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
#ubicacion .section-title { color: var(--cream); margin-bottom: 1.2rem; }
#ubicacion .section-title span { color: var(--gold); }
.ubicacion-text > p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
.ubicacion-info { margin: 2rem 0; display: flex; flex-direction: column; gap: 14px; }
.ubic-row { display: flex; gap: 14px; align-items: flex-start; }
.ubic-icon {
  width: 38px; height: 38px;
  background: rgba(214,150,20,0.12);
  border: 1px solid rgba(214,150,20,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ubic-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.ubic-val { font-size: 0.85rem; color: #bbb; }

.map-placeholder {
  width: 100%;
  height: 460px;
  background: #1a1a1a;
  border: 3px solid var(--gold);
  box-shadow: 8px 8px 0 rgba(214,150,20,0.3);
  position: relative;
  overflow: hidden;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* ── Distancias: 3 columnas a lo ancho ── */
.dist-list {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.dist-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px;
  font-size: 0.76rem;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color 0.2s, background 0.2s;
}
.dist-item:hover {
  border-color: rgba(214,150,20,0.4);
  background: rgba(214,150,20,0.06);
}
.dist-item .dist-place { font-size: 0.76rem; }
.dist-item .dist-km {
  font-family: var(--ff-title);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.82rem;
}


/* ════════════════════════════════════════════════════════════
   GALERÍA
════════════════════════════════════════════════════════════ */
#galeria { background: var(--cream-dk); position: relative; }
.galeria-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 20px;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 180px;
  gap: 10px;
}
.gal-item { position: relative; overflow: hidden; cursor: pointer; }
.gal-item:first-child { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(4) { grid-column: span 2; }
.gal-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform 0.4s ease;
}
.gal-item:hover .gal-inner { transform: scale(1.04); }
.gal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Colores fallback por orden */
.gal-item:nth-child(1) .gal-bg { background-color: #c8a870; }
.gal-item:nth-child(2) .gal-bg { background-color: #a89060; }
.gal-item:nth-child(3) .gal-bg { background-color: #b8a878; }
.gal-item:nth-child(4) .gal-bg { background-color: #d0b880; }
.gal-item:nth-child(5) .gal-bg { background-color: #988060; }
.gal-item:nth-child(6) .gal-bg { background-color: #b09870; }
.gal-item::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(214,150,20,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,150,20,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(43,43,43,0);
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gal-item:hover .gal-overlay { background: rgba(43,43,43,0.35); }
.gal-overlay-icon { opacity: 0; color: var(--cream); font-size: 2rem; transition: opacity 0.3s; }
.gal-item:hover .gal-overlay-icon { opacity: 1; }
.gal-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(43,43,43,0.85);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIOS
════════════════════════════════════════════════════════════ */
#testimonios { background: var(--cream); position: relative; overflow: hidden; }
#testimonios::before {
  content: '"';
  position: absolute;
  top: -20px; left: 3%;
  font-family: var(--ff-title);
  font-size: 30rem;
  color: rgba(214,150,20,0.04);
  line-height: 1;
  pointer-events: none;
}
.test-header { text-align: center; margin-bottom: 3.5rem; }
.test-header .section-label { justify-content: center; }
.test-header .section-label::before { display: none; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card {
  background: var(--white);
  padding: 32px 28px;
  border: 2px solid var(--cream-dk);
  position: relative;
  transition: all 0.25s;
}
.test-card:hover {
  border-color: var(--gold);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--gold);
}
.test-quote { font-family: var(--ff-title); font-size: 2.5rem; color: var(--gold); line-height: 0.5; margin-bottom: 16px; }
.test-text { font-size: 0.87rem; color: #555; line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.test-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.test-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--cream-dk); padding-top: 16px; }
.test-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-title); font-weight: 700; color: var(--carbon); font-size: 1rem;
  flex-shrink: 0;
}
.test-name { font-family: var(--ff-body); font-size: 0.8rem; font-weight: 700; color: var(--carbon); }
.test-origin { font-size: 0.68rem; color: var(--gray); font-weight: 400; }

/* ══════════ Pedir reseña ════════════════════ */

.test-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 2px solid var(--cream-dk);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.test-cta-text {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.test-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
}

.test-cta-btn:hover {
  box-shadow: 6px 6px 0 var(--carbon);
  transform: translate(-2px, -2px);
}

/* ════════════════════════════════════════════════════════════
   CONTACTO
════════════════════════════════════════════════════════════ */
#contacto { background: var(--carbon); color: var(--cream); position: relative; overflow: hidden; }
#contacto::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 60px solid rgba(214,150,20,0.05);
  pointer-events: none;
}
.contacto-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; align-items: start; }
#contacto .section-title { color: var(--cream); margin-bottom: 1rem; }
#contacto .section-title span { color: var(--gold); }
.contacto-intro { color: var(--gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; margin-bottom: 2rem; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 18px;
  transition: all 0.2s; cursor: pointer;
}
.contact-channel:hover { border-color: var(--gold); background: rgba(214,150,20,0.07); }
.ch-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  box-shadow: 2px 2px 0 rgba(214,150,20,0.5);
}
.ch-info .ch-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.ch-info .ch-val { font-size: 0.85rem; color: var(--cream); }
.form-wrap { position: relative; z-index: 1; }
.form-title { font-family: var(--ff-title); font-size: 1.4rem; font-weight: 700; color: var(--cream); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
input, select, textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: rgba(214,150,20,0.05); }
select option { background: var(--carbon); }
textarea { resize: vertical; min-height: 100px; }
.form-send { margin-top: 18px; }
.form-send .btn { width: 100%; display: block; }
.form-note { margin-top: 10px; font-size: 0.65rem; color: var(--gray); text-align: center; }
.social-links { display: flex; gap: 10px; margin-top: 2rem; }
.soc-btn {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gray);
  cursor: pointer; transition: all 0.2s;
}
.soc-btn:hover {
  background: var(--gold); border-color: var(--gold); color: var(--carbon);
  transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--gold-lt);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
footer { background: #111111; border-top: 2px solid var(--gold); padding: 50px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .f-logo { font-family: var(--ff-title); font-size: 1.4rem; font-weight: 700; color: var(--cream); margin-bottom: 6px; }
.footer-brand .f-logo em { color: var(--gold); font-style: italic; }
.footer-brand .f-tagline { font-size: 0.72rem; color: var(--gray); line-height: 1.7; margin-top: 0.8rem; max-width: 220px; }
.footer-col h4 { font-family: var(--ff-body); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.8rem; color: var(--gray); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid #222; padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.7rem; color: #555; }
.footer-bottom p a { color: var(--gold); }
.footer-px { display: flex; gap: 4px; align-items: flex-end; }
.footer-px span { display: inline-block; background: var(--gold); }
.footer-px span:nth-child(1) { width: 8px; height: 8px; opacity: 0.5; }
.footer-px span:nth-child(2) { width: 6px; height: 6px; opacity: 0.3; }
.footer-px span:nth-child(3) { width: 4px; height: 4px; opacity: 0.15; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hab-grid { grid-template-columns: repeat(2, 1fr); }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gal-item:first-child { grid-column: span 2; height: 280px; }
  .gal-item:nth-child(4) { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .dist-list { grid-template-columns: repeat(2, 1fr); }
  .apt-modal { grid-template-columns: 1fr; }
  .modal-carousel { min-height: 300px; }
  .carousel-track { min-height: 300px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nosotros-grid { grid-template-columns: 1fr; gap: 40px; }
  .hab-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
  .ubicacion-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .dist-list { grid-template-columns: repeat(2, 1fr); }
  .hero-pixel-deco { display: none; }
  .section { padding: 60px 0; }
  .galeria-header { flex-direction: column; align-items: flex-start; }
  .modal-carousel, .carousel-track, .carousel-slide .slide-placeholder { min-height: 240px; }
  .modal-info { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .gal-grid { grid-template-columns: 1fr; }
  .gal-item:first-child { grid-column: span 1; }
  .servicios-grid { grid-template-columns: 1fr; }
  .dist-list { grid-template-columns: 1fr; }
}





