/* ================================================================
   HOTEL CAVOUR — Estilos v3
   ================================================================ */

:root {
  --gold:        #cf9f69;
  --gold-dark:   #b38e5d;
  --gold-darker: #8a6d3b;
  --gold-light:  #e8c99a;
  --dark:        #0a0a14;
  --dark-2:      #12121e;
  --dark-nav:    rgba(8,8,20,0.92);
  --text-dark:   #1e2a38;
  --text-mid:    #555;
  --bg:          #f9f6f3;
  --white:       #ffffff;
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
  --shadow-sm:   0 4px 18px rgba(0,0,0,0.07);
  --shadow-md:   0 12px 40px rgba(0,0,0,0.12);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.18);
  --gold-grad:   linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-darker));
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
img { max-width:100%; height:auto; display:block; }
main, header.encabezado { overflow-x: hidden; }
body {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: var(--bg);
  padding-top: 80px;
  overflow-x: hidden;
  max-width: 100%;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #ede9e4; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-darker); }

/* ================================================================
   SCROLL PROGRESS
   ================================================================ */
#scroll-progress {
  position: fixed; top:0; left:0;
  height: 3px; width: 0%;
  background: var(--gold-grad);
  z-index: 99999;
  transition: width 0.08s linear;
}

/* ================================================================
   LOADER
   ================================================================ */
#loader {
  position: fixed; inset:0;
  background: var(--dark);
  z-index: 99998;
  display: flex; align-items:center; justify-content:center;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
#loader.hidden { opacity:0; visibility:hidden; pointer-events:none; }

.loader-content {
  text-align:center;
  animation: fadeUp 0.6s ease both;
  display:flex; flex-direction:column; align-items:center;
  padding: 0 1.5rem;
  width: 100%;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

.loader-logo {
  width: min(370px, 80vw); margin-bottom: 1.8rem;
  animation: logoPulse 1.8s ease-in-out infinite alternate;
}
@keyframes logoPulse {
  from { filter: drop-shadow(0 0 6px  rgba(207,159,105,0.3)); }
  to   { filter: drop-shadow(0 0 30px rgba(207,159,105,0.9)); }
}

.loader-title {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 1.9rem; font-weight:400;
  letter-spacing: 10px; margin-bottom: 2.2rem;
}

.loader-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px; margin: 0 auto; overflow:hidden;
}
.loader-fill {
  height:100%;
  background: var(--gold-grad);
  border-radius: 10px;
  animation: loaderBar 1.3s var(--ease) forwards; width:0;
}
@keyframes loaderBar { to { width:100%; } }

/* ================================================================
   NAVEGACIÓN
   ================================================================ */
.encabezado { position:relative; }

.barra-navegacion {
  width:100%;
  background: rgba(4,4,18,0.94);
  backdrop-filter: blur(36px) saturate(1.9); -webkit-backdrop-filter: blur(36px) saturate(1.9);
  display: flex; justify-content:space-between; align-items:center;
  padding: 0 5%;
  height: 80px;
  position: fixed; top:0; left:0;
  z-index: 1000;
  box-shadow: 0 4px 40px rgba(0,0,0,0.28);
  transition: all 0.4s ease;
  border-bottom: none;
}
.barra-navegacion::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(207,159,105,0.12) 10%,
    rgba(207,159,105,0.65) 50%,
    rgba(207,159,105,0.12) 90%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0.7;
}
.barra-navegacion.scrolled {
  background: rgba(3,3,12,0.97);
  height: 66px;
  box-shadow: 0 4px 50px rgba(0,0,0,0.45);
}
.barra-navegacion.scrolled::after { opacity: 1; }

.logo-titulo { display:flex; align-items:center; gap:0; }

.logo {
  flex: 0 0 auto;
  transition: all 0.4s ease;
  animation: blurExpand 1s ease both;
}
.logo img {
  width: 115px; height:auto;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(1.8) saturate(0.4) drop-shadow(0 0 14px rgba(207,159,105,0.55));
}
.logo img:hover {
  transform: scale(1.06);
  filter: brightness(2) saturate(0.5) drop-shadow(0 0 28px rgba(232,201,154,0.9));
}

/* Divisor vertical entre logo e h1 */
.logo-divider {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, transparent, rgba(207,159,105,0.45), transparent);
  margin: 0 1.3rem;
  flex-shrink: 0;
}

.logo-titulo h1 {
  font-size: 2.1rem; letter-spacing: 8px; text-transform: uppercase;
  margin:0; font-weight:600; white-space:nowrap;
  font-family: 'Cinzel', serif;
  background: linear-gradient(135deg, #fff8e8 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(207,159,105,0.5));
  animation: trackingContract 1s ease both;
}

@keyframes blurExpand {
  0%   { transform:scale(0); filter:blur(12px); opacity:0; }
  100% { transform:scale(1); filter:blur(0);    opacity:1; }
}
@keyframes trackingContract {
  0%  { letter-spacing:.7em; opacity:0; }
  40% { opacity:.6; }
  100%{ letter-spacing:normal; opacity:1; }
}

.navegacion { display:flex; gap:0.15rem; align-items:center; }
.navegacion a {
  color: rgba(255,255,255,0.72);
  text-decoration:none; font-weight:400;
  font-size: 0.78rem; letter-spacing:1.5px; text-transform:uppercase;
  position:relative; padding: 0.45rem 0.85rem;
  border-radius: 7px;
  transition: all 0.28s ease; white-space:nowrap;
}
.navegacion a:hover {
  color: var(--gold-light);
  background: rgba(207,159,105,0.09);
}
.navegacion a::after { display:none; }
.navegacion a:hover::after { display:none; }

/* Botón CTA Reservar */
.nav-cta {
  margin-left: 0.7rem;
  padding: 0.48rem 1.25rem !important;
  border-radius: 50px !important;
  border: 1px solid rgba(207,159,105,0.45) !important;
  background: rgba(207,159,105,0.10) !important;
  color: var(--gold) !important;
  font-weight: 500 !important;
  letter-spacing: 1.8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  transition: all 0.35s ease !important;
  position: relative !important;
  overflow: hidden !important;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-darker));
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover {
  color: white !important;
  border-color: var(--gold-dark) !important;
  box-shadow: 0 6px 28px rgba(179,142,93,0.38) !important;
  background: transparent !important;
}
.nav-cta i, .nav-cta span { position: relative; z-index: 1; }

.menu-toggle {
  display:none; cursor:pointer; font-size:1.8rem;
  color:white; padding:0.5rem;
  transition: color 0.3s ease; z-index:1001;
  background:none; border:none;
}
.menu-toggle:hover { color: var(--gold); }

/* ================================================================
   HERO
   ================================================================ */
.wrap {
  position:relative; width:100%; height:100vh;
  background: #0a0a14;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; z-index:1;
  margin-top: -80px;
}
.wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../image/hotelcavour.png');
  background-size: cover;
  background-position: center var(--parallax-y, 0px);
  filter: brightness(0.95) saturate(0.82);
}

/* Canvas partículas injected by JS — z-index 2 */

/* Overlay hero */
.wrap-overlay {
  position:absolute; inset:0; z-index:3;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.52) 0%, transparent 70%),
    linear-gradient(to bottom,
      rgba(8,8,20,0.62) 0%,
      rgba(0,0,0,0.30) 50%,
      rgba(8,8,20,0.70) 100%
    );
}
@keyframes heroBreath {
  0%,100% { opacity:1; }
  50%      { opacity:0.88; }
}

/* Grid sutil decorativo */
.hero-grid-overlay {
  position:absolute; inset:0; z-index:5; pointer-events:none;
  background-image:
    linear-gradient(rgba(207,159,105,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207,159,105,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.wrap-texto {
  position:relative; z-index:6;
  color:white; text-align:center;
  padding: 0 2rem;
}

.hero-tag {
  font-size: 0.82rem; letter-spacing:5px; text-transform:uppercase;
  color: var(--gold); margin-bottom:1.6rem; font-weight:300;
  animation: heroIn 1s 0.2s ease both;
  text-shadow: 0 1px 6px rgba(0,0,0,1), 0 2px 20px rgba(0,0,0,0.9);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem,7.5vw,7rem);
  font-weight: 400; color:white;
  line-height:1.12; letter-spacing:2px; margin-bottom:1.4rem;
  text-shadow: 0 2px 4px rgba(0,0,0,1), 0 4px 30px rgba(0,0,0,0.9);
  animation: heroIn 1s 0.4s ease both;
}

.hero-title-gold {
  display:block;
  color: #e8c97a;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0,0,0,1), 0 4px 30px rgba(0,0,0,0.85), 0 0 60px rgba(220,170,50,0.15);
}

/* Gooey morphing text */
.gooey-svg { position:absolute; width:0; height:0; }

.gooey-container {
  position: relative;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  animation: heroIn 1s 0.6s ease both;
  overflow: hidden;
  width: 100%;
}

.gooey-texts {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.gooey-t1, .gooey-t2 {
  position: absolute;
  color: var(--gold-light);
  font-size: 2.1rem;
  letter-spacing: 12px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-align: center;
  user-select: none;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

.hero-divider {
  display:flex; align-items:center; justify-content:center;
  gap:16px; margin-bottom:2.2rem;
  animation: heroIn 1s 0.75s ease both;
}
.hero-divider span:not(.hero-diamond) {
  width:60px; height:1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-diamond { color:var(--gold); font-size:0.7rem; }

.btn.bordes {
  display:inline-flex; align-items:center; gap:12px;
  padding: 1rem 2.6rem;
  border: 1px solid rgba(207,159,105,0.7);
  font-size: 0.85rem; letter-spacing:2.5px; text-transform:uppercase;
  color:white;
  background: rgba(207,159,105,0.10);
  backdrop-filter: blur(12px);
  border-radius:50px; text-decoration:none; font-weight:400;
  transition: all 0.4s ease;
  animation: heroIn 1s 0.9s ease both;
  position:relative; overflow:hidden;
}
.btn.bordes::before {
  content:''; position:absolute; inset:0;
  background: var(--gold-grad);
  opacity:0; transition: opacity 0.4s ease;
  border-radius:50px;
}
.btn.bordes:hover::before { opacity:1; }
.btn.bordes:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 50px rgba(207,159,105,0.4);
  transform: translateY(-3px);
}
.btn.bordes span, .btn.bordes i { position:relative; z-index:1; }
.btn.bordes i { transition: transform 0.3s ease; }
.btn.bordes:hover i { transform: translateX(6px); }

/* Scroll hint */
.hero-scroll-hint {
  position:absolute; bottom:90px; left:50%;
  transform: translateX(-50%);
  z-index:6; color:rgba(255,255,255,0.5);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:0.7rem; letter-spacing:3px; text-transform:uppercase;
  animation: heroIn 1s 1.2s ease both, scrollHintBounce 2.5s 2s ease-in-out infinite;
}
@keyframes scrollHintBounce {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%    { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll-hint i { font-size:0.85rem; }


@keyframes heroIn {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
[data-reveal] {
  opacity:0;
  transition: opacity 0.9s ease, transform 0.9s var(--ease);
}
[data-reveal="up"]    { transform: translateY(60px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal].revealed { opacity:1; transform:translate(0,0); }

/* ================================================================
   SOBRE NOSOTROS
   ================================================================ */
.contenido-bajo-elegante {
  padding: 7rem 2rem 5rem;
  background: var(--bg);
  text-align:center; position:relative;
}

.contenedor-texto-hotel { max-width:800px; margin:0 auto; }

.titulo-elegante {
  font-size: 3rem; color: var(--text-dark);
  margin-bottom:1.5rem; font-weight:300;
  font-family:'Playfair Display',serif; letter-spacing:1px;
}

.separador-elegante {
  display:flex; align-items:center; justify-content:center; margin:2rem 0;
}
.linea-separador {
  width:80px; height:1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark));
  margin:0 15px;
}
.linea-separador:last-child { background: linear-gradient(90deg,var(--gold-dark),transparent); }
.icono-separador { color:var(--gold-dark); font-size:1.2rem; }

.descripcion-elegante {
  font-size:1.05rem; color:var(--text-mid);
  line-height:1.9; margin-bottom:1.5rem;
  font-family:'Lora',serif; text-align:center;
}

.destacado-elegante {
  font-size:1.2rem; color:var(--text-dark);
  line-height:1.8; margin:2.5rem auto 0;
  font-style:italic; max-width:700px;
  position:relative; padding:1.5rem 2rem;
  font-family:'Cormorant Garamond',serif;
}
.destacado-elegante::before {
  content:'\201C'; font-size:5rem; color:var(--gold-dark); opacity:0.18;
  position:absolute; left:0; top:-1rem; line-height:1;
}
.destacado-elegante::after {
  content:'\201D'; font-size:5rem; color:var(--gold-dark); opacity:0.18;
  position:absolute; right:0; bottom:-3rem; line-height:1;
}

/* ================================================================
   STATS — SECCIÓN OSCURA
   ================================================================ */
.stats-dark {
  background: var(--dark);
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(207,159,105,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(207,159,105,0.05) 0%, transparent 50%);
  padding: 5rem 2rem;
  position:relative; overflow:hidden;
}

.stats-dark::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-dark::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-inner {
  display:flex; justify-content:center; flex-wrap:wrap;
  gap:0; max-width:900px; margin:0 auto;
}

.stat-item {
  text-align:center; padding:2rem 3rem; flex:1; min-width:160px;
  position:relative;
}

.stat-divider {
  width:1px;
  background: linear-gradient(to bottom, transparent, rgba(207,159,105,0.3), transparent);
  margin: 1.5rem 0;
}

.stat-num-wrap {
  display:flex; justify-content:center; align-items:baseline; gap:2px;
}

.stat-number {
  font-size: 4rem; font-weight:300;
  font-family:'Playfair Display',serif;
  background: var(--gold-grad);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1;
}

.stat-suffix {
  font-size:2rem;
  background: var(--gold-grad);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  font-family:'Playfair Display',serif; font-weight:300;
}

.stat-label {
  font-size:0.75rem; text-transform:uppercase;
  letter-spacing:3px; color: rgba(255,255,255,0.45);
  margin-top:0.9rem; font-weight:500;
}

.stat-stars {
  font-size:1.6rem; color:var(--gold);
  display:flex; justify-content:center; gap:4px;
  margin-bottom:0.2rem;
  text-shadow: 0 0 15px rgba(207,159,105,0.6);
}

/* ================================================================
   CARRUSEL — Cinematic Edition
   ================================================================ */
.container-carousel {
  margin: 2.5rem auto;
  position: relative;
  width: 88%;
  max-width: 1200px;
  height: 520px;
  background: #0a0a14;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.carruseles {
  width: 400%;
  height: 100%;
  display: flex;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.slider-section {
  width: 25%;
  height: 100%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.slider-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.05) 35%,
    rgba(0,0,0,0.55) 65%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.slider-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: scale(1) translateZ(0);
  will-change: transform;
}

.slider-section.active img {
  animation: kenBurns 14s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1) translateZ(0); }
  to   { transform: scale(1.07) translateZ(0); }
}

/* Slide caption */
.slide-caption {
  position: absolute;
  bottom: 90px;
  left: 72px;
  z-index: 2;
  color: white;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
  max-width: 520px;
}
.slider-section.active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}
.slide-label::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 400;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 30px rgba(0,0,0,0.7);
  line-height: 1.2;
  color: white;
}

.slide-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 1.2px;
  font-weight: 300;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

/* Navigation arrows */
.btn-left, .btn-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  transition: all 0.35s ease;
  z-index: 10;
}
.btn-left:hover, .btn-right:hover {
  background: rgba(207,159,105,0.22);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 40px rgba(207,159,105,0.2);
}
.btn-left  { left: 30px; }
.btn-right { right: 30px; }

/* Carousel footer: counter + progress + dots */
.carousel-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 72px 34px;
}

.slide-counter {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  user-select: none;
}
.slide-counter .counter-current {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 500;
}

.carousel-progress-track {
  flex: 1;
  height: 1.5px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.carousel-progress-fill {
  height: 100%;
  background: var(--gold-grad);
  width: 0%;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: all 0.35s ease;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ================================================================
   CIUDAD
   ================================================================ */
.ciudad-elegante {
  padding: 100px 0; background: var(--bg);
  position:relative; overflow:hidden;
}
.ciudad-elegante::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ciudad-elegante .container {
  max-width:1200px; margin:0 auto; padding:0 20px;
}

.section-title {
  font-family:'Playfair Display',serif;
  font-size:2.8rem; color:var(--text-dark);
  margin-bottom:65px; text-align:center; font-weight:300; letter-spacing:1px;
}
.section-title::after {
  content:''; display:block; width:55px; height:2px;
  background: var(--gold-grad); margin:20px auto 0;
}

.ciudad-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:65px; align-items:center;
}

.ciudad-imagen {
  position:relative; border-radius:16px; overflow:hidden;
  box-shadow: var(--shadow-lg);
}
.imagen-destacada {
  width:100%; height:520px; object-fit:cover; display:block;
  transition: transform 0.7s ease;
}
.ciudad-imagen:hover .imagen-destacada { transform:scale(1.06); }

.imagen-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.45) 100%);
}

.ciudad-descripcion { color:var(--text-mid); line-height:1.9; }
.ciudad-descripcion p { margin-bottom:20px; font-size:1.05rem; }

.destacado {
  font-size:1.3rem !important; color:var(--text-dark);
  font-weight:300; font-family:'Playfair Display',serif; font-style:italic;
}

.ciudad-amenities { display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; }

.amenity {
  display:flex; align-items:center; gap:10px;
  background:white; padding:11px 20px; border-radius:50px;
  box-shadow: var(--shadow-sm); font-size:0.88rem; color:var(--gold-dark);
  transition: all 0.35s ease;
  border: 1px solid rgba(179,142,93,0.1);
}
.amenity:hover {
  transform:translateY(-4px);
  box-shadow: 0 15px 35px rgba(179,142,93,0.2);
  background: var(--gold-dark); color:white; border-color:var(--gold-dark);
}

/* ================================================================
   SERVICIOS
   ================================================================ */
.servicios-refinados {
  padding: 100px 0;
  background: white; position:relative;
}
.servicios-refinados::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.container { max-width:1200px; margin:0 auto; padding:0 20px; }

.titulo-seccion {
  font-family:'Playfair Display',serif;
  font-size:2.8rem; color:var(--text-dark);
  margin-bottom:65px; text-align:center; font-weight:300; letter-spacing:1px;
}
.titulo-seccion::after {
  content:''; display:block; width:55px; height:2px;
  background: var(--gold-grad); margin:20px auto 0;
}

.contenido-servicios {
  display:flex; flex-direction:column; align-items:center; gap:55px;
}

.imagen-servicios-container {
  width:100%; max-width:920px; border-radius:20px; overflow:hidden;
  box-shadow: var(--shadow-md);
}
.imagen-servicios { width:100%; display:block; transition: transform 0.6s ease; }
.imagen-servicios-container:hover .imagen-servicios { transform:scale(1.03); }

.lista-servicios {
  display:flex; justify-content:center; flex-wrap:wrap;
  gap:25px; width:100%; max-width:920px;
}

.servicio {
  flex:1; min-width:240px; max-width:280px;
  display:flex; gap:18px; padding:32px;
  background:white; border-radius:18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid rgba(179,142,93,0.08);
  position:relative; overflow:hidden;
}
.servicio::before {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:3px;
  background: var(--gold-grad);
  transition: width 0.4s ease;
}
.servicio:hover::before { width:100%; }
.servicio:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(179,142,93,0.14);
}

.icono-servicio {
  font-size:1.9rem; color:var(--gold-dark);
  margin-top:3px; transition: transform 0.35s ease;
}
.servicio:hover .icono-servicio { transform:scale(1.2) rotate(-8deg); }

.detalle-servicio h3 {
  color:var(--text-dark); margin-bottom:10px;
  font-size:1.1rem; font-family:'Playfair Display',serif; font-weight:400;
}
.detalle-servicio p { color:#777; font-size:0.95rem; line-height:1.6; margin-bottom:5px; }
.hora { color:var(--gold-dark); font-weight:500; }

/* ================================================================
   GALERÍA — SECCIÓN OSCURA
   ================================================================ */
.seccion-galeria {
  padding: 4rem 1.5rem 5rem;
  background: var(--dark-2);
  position:relative;
}
.seccion-galeria::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.titulo-seccion h2 {
  font-family:'Playfair Display',serif;
  font-size:2.8rem; color:white;
  margin-bottom:5px; text-align:center; font-weight:300; letter-spacing:1px;
}
.titulo-seccion h2::after {
  content:''; display:block; width:60px; height:1px;
  background: var(--gold); margin:18px auto 0;
}

.filtros {
  display:flex; justify-content:center; flex-wrap:wrap;
  gap:0.7rem; margin:2.2rem 0 2rem;
}
.filtro-btn {
  padding: 0.6rem 1.8rem;
  background: transparent; color:var(--gold);
  border: 1px solid rgba(207,159,105,0.4);
  border-radius:50px; cursor:pointer;
  transition: all 0.3s ease;
  font-size:0.8rem; letter-spacing:1.8px; text-transform:uppercase;
  font-family:'Montserrat',sans-serif; font-weight:400;
}
.filtro-btn:hover { background:rgba(207,159,105,0.15); border-color:var(--gold); }
.filtro-btn.active {
  background: var(--gold-dark); color:white;
  border-color: var(--gold-dark);
  box-shadow: 0 6px 24px rgba(179,142,93,0.3);
}

.galeria {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap:10px; padding:0.5rem 0;
  max-width:1400px; margin:0 auto;
}

.galeria-item {
  position:relative; overflow:hidden; border-radius:10px;
  aspect-ratio:4/3; cursor:pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: galleryIn 0.5s ease both;
}
@keyframes galleryIn {
  from { opacity:0; transform:scale(0.88); }
  to   { opacity:1; transform:scale(1); }
}

.galeria-item img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform 0.55s ease;
}
.galeria-item:hover img { transform:scale(1.09); }

.overlay-galeria {
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(207,159,105,0.1) 100%);
  opacity:0; transition: opacity 0.4s ease;
  display:flex; align-items:flex-end; padding:1.2rem;
}
.galeria-item:hover .overlay-galeria { opacity:1; }
.overlay-galeria i { color:white; font-size:1.4rem; margin-left:auto; }

/* Modal */
.modal {
  display:none; position:fixed; z-index:10000;
  inset:0; background:rgba(0,0,0,0.94);
  justify-content:center; align-items:center;
}
.imagen-modal {
  max-width:90vw; max-height:85vh;
  width:auto; height:auto; object-fit:contain; display:block;
  margin:0 auto; border-radius:4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cerrar {
  position:fixed; top:20px; right:25px;
  color:white; font-size:36px; font-weight:300;
  cursor:pointer;
  background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.15);
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  z-index:10001; transition: all 0.3s ease; line-height:1;
}
.cerrar:hover { background:rgba(207,159,105,0.3); border-color:var(--gold); }

.controles-modal {
  position:fixed; top:50%; left:0; right:0;
  display:flex; justify-content:space-between;
  transform:translateY(-50%); padding:0 1.5rem; z-index:10001;
}
.nav-btn {
  color:white; font-size:2.2rem; cursor:pointer;
  background:rgba(255,255,255,0.09); border:1px solid rgba(255,255,255,0.18);
  width:54px; height:54px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition: all 0.3s ease;
}
.nav-btn:hover {
  background:rgba(207,159,105,0.35); border-color:var(--gold);
  transform:scale(1.1);
}

/* ================================================================
   UBICACIÓN
   ================================================================ */
#Ubicacion {
  padding:100px 2rem; background:white; position:relative;
}
#Ubicacion::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contenedor-titulo { width:100%; text-align:center; margin-bottom:3rem; }
.contenedor-titulo h2 {
  font-family:'Playfair Display',serif;
  font-size:2.8rem; color:var(--text-dark);
  margin-bottom:1rem; font-weight:300;
  position:relative; display:inline-block;
}
.contenedor-titulo h2::after {
  content:''; position:absolute;
  bottom:-12px; left:50%; transform:translateX(-50%);
  width:55px; height:2px; background: var(--gold-grad);
}

.contenedor-ubicacion {
  display:flex; flex-wrap:wrap; gap:3rem;
  max-width:1200px; margin:0 auto;
  align-items:flex-start; justify-content:center;
}
.ubicaciones { flex:1 1 380px; text-align:left; }
.ubicaciones p {
  font-size:1.05rem; color:var(--text-mid);
  line-height:1.8; margin-bottom:1rem;
}
.ubicaciones ul { list-style:none; padding:0; margin-top:1.5rem; }
.ubicaciones ul li {
  font-size:1rem; color:#444;
  margin-bottom:0.75rem; padding:0.7rem 1rem 0.7rem 3rem;
  position:relative; background:var(--bg);
  border-radius:8px; transition: all 0.3s ease;
}
.ubicaciones ul li:hover { background:rgba(179,142,93,0.1); transform:translateX(6px); }
.ubicaciones ul li::before {
  content:"📍"; position:absolute; left:10px; top:50%; transform:translateY(-50%);
}

.mapa {
  flex:1 1 500px; height:450px; border-radius:20px; overflow:hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(207,159,105,0.12);
}

/* ================================================================
   CONTACTO
   ================================================================ */
.contacto-elegante {
  padding:7rem 2rem; background:var(--bg); position:relative;
}
.contacto-elegante::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contenedor-contacto { max-width:900px; margin:0 auto; text-align:center; }
.titulo-contacto {
  font-family:'Playfair Display',serif;
  font-size:2.8rem; color:var(--text-dark);
  margin-bottom:1rem; font-weight:300;
  position:relative; display:inline-block;
}
.titulo-contacto::after {
  content:''; position:absolute;
  bottom:-12px; left:50%; transform:translateX(-50%);
  width:55px; height:2px; background: var(--gold-grad);
}
.subtitulo-contacto {
  color:#777; font-size:0.95rem; margin:2rem 0 3rem;
  font-weight:300; letter-spacing:0.5px;
}

.formulario-elegante {
  background:white; padding:3rem; border-radius:22px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(179,142,93,0.08);
}

.grupo-formulario { margin-bottom:1.8rem; }
.grupo-formulario.doble { display:flex; gap:1.5rem; }

.campo-con-icono { position:relative; flex:1; }
.campo-con-icono i {
  position:absolute; top:50%; left:18px; transform:translateY(-50%);
  color:var(--gold-dark); font-size:1rem; transition: color 0.3s ease;
}
.campo-con-icono:focus-within i { color:var(--gold); }
.campo-con-icono input {
  width:100%; padding:1rem 1rem 1rem 3rem;
  font-size:0.95rem;
  border: 1.5px solid #eaeaea; border-radius:10px;
  transition: all 0.3s ease; background:#fafafa;
  font-family:'Montserrat',sans-serif;
}

.campo-fecha { flex:1; text-align:left; }
.campo-fecha label {
  display:block; margin-bottom:0.6rem;
  color:#666; font-size:0.8rem; font-weight:500;
  text-transform:uppercase; letter-spacing:1px;
}
.campo-fecha label i { color:var(--gold-dark); margin-right:8px; }
.campo-fecha input {
  width:100%; padding:1rem; font-size:0.95rem;
  border:1.5px solid #eaeaea; border-radius:10px;
  background:#fafafa; transition: all 0.3s ease;
  font-family:'Montserrat',sans-serif;
}
textarea {
  width:100%; padding:1.2rem; font-size:0.95rem;
  border:1.5px solid #eaeaea; border-radius:10px;
  resize:vertical; min-height:150px; background:#fafafa;
  transition: all 0.3s ease; font-family:'Montserrat',sans-serif;
}
input:focus, textarea:focus {
  outline:none; border-color:var(--gold-dark);
  background:white; box-shadow: 0 0 0 4px rgba(179,142,93,0.09);
}

.boton-enviar {
  background: linear-gradient(135deg,var(--gold-dark),var(--gold-darker));
  color:white; padding:1rem 3rem;
  font-size:0.85rem; letter-spacing:2.5px; text-transform:uppercase;
  border:none; border-radius:50px; cursor:pointer;
  transition: all 0.4s ease;
  display:inline-flex; align-items:center; gap:12px;
  font-family:'Montserrat',sans-serif; font-weight:400;
  position:relative; overflow:hidden;
}
.boton-enviar::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  opacity:0; transition: opacity 0.4s ease;
}
.boton-enviar:hover::before { opacity:1; }
.boton-enviar:hover { transform:translateY(-3px); box-shadow: 0 16px 45px rgba(179,142,93,0.35); }
.boton-enviar i, .boton-enviar span { position:relative; z-index:1; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer-elegante {
  background: linear-gradient(135deg,#0d0d1a 0%,#060610 100%);
  color:white; padding:4.5rem 2rem 0;
  position:relative; overflow:hidden;
}
.footer-elegante::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: var(--gold-grad);
}

.contenedor-footer {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem; padding-bottom:3.5rem; position:relative; z-index:1;
}
.titulo-footer {
  font-family:'Playfair Display',serif;
  font-size:1.4rem; margin-bottom:1.5rem;
  position:relative; padding-bottom:15px;
  font-weight:300; letter-spacing:2px; color:var(--gold);
}
.titulo-footer::after {
  content:''; position:absolute; left:0; bottom:0; width:40px; height:1px; background:var(--gold);
}
.detalle-contacto p {
  margin-bottom:1rem; display:flex; align-items:center; gap:12px;
  font-size:0.9rem; color:rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}
.detalle-contacto p:hover { color:rgba(255,255,255,0.92); }
.detalle-contacto i { color:var(--gold); width:20px; text-align:center; }

.iconos-redes { display:flex; gap:14px; }
.red-social {
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:1rem; transition: all 0.35s ease;
  text-decoration:none; border:1px solid rgba(255,255,255,0.1);
}
.red-social:hover { transform:translateY(-5px) scale(1.12); box-shadow: 0 10px 25px rgba(0,0,0,0.4); }
.facebook  { background:#3b5998; }
.instagram { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

.copyright {
  text-align:center; padding:1.5rem 0;
  border-top:1px solid rgba(255,255,255,0.05);
  font-size:0.78rem; color:rgba(255,255,255,0.28);
  letter-spacing:0.5px; position:relative; z-index:1;
}

/* ================================================================
   BOTONES FLOTANTES
   ================================================================ */
.btn-wsp {
  position:fixed; width:60px; height:60px;
  bottom:30px; right:30px;
  background:#25d366; color:#fff; border-radius:50%;
  font-size:28px; z-index:1000;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; transition: all 0.35s ease;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
}
.btn-wsp:hover { background:#1ebe5b; transform:scale(1.13); box-shadow:0 8px 32px rgba(37,211,102,0.55); }

.scroll-top-btn {
  position:fixed; bottom:30px; left:30px; z-index:999;
  width:50px; height:50px; border:none; border-radius:50%;
  background: linear-gradient(135deg,var(--gold-dark),var(--gold-darker));
  color:white; font-size:1.1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 5px 22px rgba(0,0,0,0.14);
  transition: all 0.35s ease;
  opacity:0; transform:translateY(20px); visibility:hidden;
}
.scroll-top-btn.visible { opacity:1; transform:translateY(0); visibility:visible; }
.scroll-top-btn:hover { transform:translateY(-4px) scale(1.1); box-shadow:0 10px 30px rgba(179,142,93,0.4); }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ---- 1400px ---- */
@media (max-width:1400px) {
  .logo-titulo h1 { font-size:1.7rem; }
}

/* ---- 1300px ---- */
@media (max-width:1300px) {
  .logo-titulo h1 { font-size:1.5rem; }
  .navegacion { gap:0; }
  .navegacion a { padding:0.4rem 0.65rem; font-size:0.74rem; }
  .nav-cta { margin-left:0.4rem !important; padding:0.4rem 1rem !important; }
}

/* ---- 992px — tablet, colapsa nav ---- */
@media (max-width:992px) {
  .menu-toggle { display:block; }
  .navegacion {
    position:fixed; top:0; right:-100%;
    width:300px; height:100vh;
    background:rgba(5,5,15,0.98); backdrop-filter:blur(20px);
    flex-direction:column; justify-content:flex-start; align-items:center;
    gap:0; transition:right 0.4s ease; z-index:1000;
    padding-top:90px; box-shadow:-5px 0 30px rgba(0,0,0,0.5);
  }
  .navegacion.active { right:0; }
  .navegacion a {
    width:100%; text-align:center; padding:1.2rem 0; margin:0;
    border-bottom:1px solid rgba(255,255,255,0.05);
    font-size:0.8rem; letter-spacing:2.5px;
    border-radius:0 !important; background:none !important;
  }
  .navegacion a:last-child { border-bottom:none; }
  .navegacion a:hover { background:rgba(207,159,105,0.08) !important; color:var(--gold) !important; }
  .navegacion a::after { display:none; }
  .nav-cta {
    margin:1.5rem 2rem 0 !important;
    border-radius:50px !important;
    border:1px solid rgba(207,159,105,0.45) !important;
    background:rgba(207,159,105,0.10) !important;
    color:var(--gold) !important;
    padding:0.65rem 1.5rem !important;
    width:auto !important; border-bottom:none !important;
  }

  /* Secciones */
  .contenido-bajo-elegante { padding:5rem 1.5rem 3.5rem; }
  .ciudad-elegante { padding:70px 0; }
  .servicios-refinados { padding:70px 0; }
  #Ubicacion { padding:70px 1.5rem; }
  .contacto-elegante { padding:5rem 1.5rem; }
  .stats-dark { padding:3.5rem 1.5rem; }

  /* Carrusel */
  .container-carousel { height:420px; width:92%; }
}

/* ---- 768px — móvil grande ---- */
@media (max-width:768px) {
  body { padding-top:70px; }
  .barra-navegacion { padding:0 4%; height:70px; }
  .navegacion { width:100%; right:-100%; }
  .wrap { margin-top:-70px; height:100svh; }
  .navegacion.active { right:0; }

  /* Logo */
  .logo-titulo h1 { font-size:1.25rem; letter-spacing:4px; }

  /* Loader */
  .loader-logo { width:290px; }
  .loader-title { font-size:1.4rem; letter-spacing:7px; }

  /* Gooey: desactivar filtro SVG en mobile (evita blur) */
  .gooey-texts { filter: none !important; }
  .gooey-t1, .gooey-t2 { font-size:1.5rem; letter-spacing:7px; }

  /* Hero */
  .hero-title { font-size:clamp(2.4rem,10vw,4rem); }
  .hero-tag { font-size:0.75rem; letter-spacing:4px; }
  .gooey-t1, .gooey-t2 { font-size:0.78rem; letter-spacing:4px; }
  .gooey-container { height:38px; }
  .btn.bordes { padding:0.85rem 2rem; font-size:0.8rem; }
  .wrap-texto { padding:0 1.2rem; }

  /* Sobre nosotros */
  .contenido-bajo-elegante { padding:4rem 1.2rem 3rem; }
  .titulo-elegante { font-size:2.2rem; }
  .descripcion-elegante { font-size:0.98rem; }

  /* Stats */
  .stat-divider { display:none; }
  .stats-inner { gap:0; flex-wrap:wrap; }
  .stat-item { padding:1.5rem 1rem; flex:1 1 33%; min-width:120px; }
  .stat-number { font-size:2.8rem; }
  .stat-label { font-size:0.68rem; }

  /* Carrusel */
  .container-carousel { height:280px; width:94%; border-radius:12px; }
  .slide-caption { left:18px; bottom:72px; max-width:calc(100% - 80px); }
  .slide-title { font-size:1.3rem; }
  .slide-desc { display:none; }
  .carousel-footer { padding:0 18px 16px; gap:12px; }
  .btn-left  { left:8px; width:38px; height:38px; font-size:1.1rem; }
  .btn-right { right:8px; width:38px; height:38px; font-size:1.1rem; }

  /* Ciudad */
  .ciudad-elegante { padding:50px 0; }
  .ciudad-grid { grid-template-columns:1fr; gap:30px; }
  .section-title { font-size:2rem; margin-bottom:40px; }
  .imagen-destacada { height:260px; }
  .ciudad-descripcion { padding:0 1.2rem; }
  .destacado { font-size:1.1rem !important; }
  .ciudad-amenities { justify-content:center; }

  /* Servicios */
  .servicios-refinados { padding:50px 0; }
  .titulo-seccion { font-size:2rem; margin-bottom:40px; }
  .contenido-servicios { gap:30px; }
  .imagen-servicios-container { max-width:100%; border-radius:12px; }
  .lista-servicios { flex-direction:column; align-items:center; }
  .servicio { min-width:100%; max-width:100%; }

  /* Galería */
  .seccion-galeria { padding:3rem 1rem 4rem; }
  .galeria { grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:8px; }
  .filtros { gap:0.5rem; }
  .filtro-btn { padding:0.5rem 1.2rem; font-size:0.72rem; }
  .nav-btn { width:44px; height:44px; font-size:1.5rem; }

  /* Ubicación */
  #Ubicacion { padding:50px 1.2rem; }
  .contenedor-titulo h2 { font-size:2rem; }
  .contenedor-ubicacion { flex-direction:column; gap:2rem; }
  .ubicaciones { flex:1 1 100%; }
  .mapa { flex:1 1 100%; height:300px; }

  /* Contacto */
  .contacto-elegante { padding:4rem 1rem; }
  .titulo-contacto { font-size:2rem; }
  .grupo-formulario.doble { flex-direction:column; gap:1rem; }
  .formulario-elegante { padding:1.8rem 1.2rem; }

  /* Footer */
  .contenedor-footer { grid-template-columns:1fr; text-align:center; }
  .titulo-footer::after { left:50%; transform:translateX(-50%); }
  .detalle-contacto p { justify-content:center; flex-wrap:wrap; text-align:center; }
  .detalle-contacto { text-align:center; }
  .iconos-redes { justify-content:center; }

  /* Flotantes */
  .btn-wsp { width:52px; height:52px; font-size:22px; bottom:20px; right:20px; }
  .scroll-top-btn { width:44px; height:44px; bottom:22px; left:22px; }
}

/* ---- 576px — móvil pequeño ---- */
@media (max-width:576px) {
  .logo-titulo h1 { font-size:1.05rem; letter-spacing:3px; }

  /* Hero */
  .hero-title { font-size:clamp(2rem,10vw,3rem); }
  .hero-tag { font-size:0.68rem; letter-spacing:3px; }
  .gooey-t1, .gooey-t2 { font-size:0.7rem; letter-spacing:3px; }
  .gooey-container { height:34px; }
  .btn.bordes { padding:0.75rem 1.6rem; font-size:0.75rem; letter-spacing:1.5px; }
  .hero-divider { margin-bottom:1.5rem; }

  /* Stats */
  .stat-item { flex:1 1 50%; }
  .stat-number { font-size:2.4rem; }

  /* Carrusel */
  .container-carousel { height:240px; }
  .slide-title { font-size:1.1rem; }
  .slide-caption { bottom:60px; }

  /* Títulos de secciones */
  .titulo-elegante { font-size:1.9rem; }
  .section-title { font-size:1.8rem; }
  .titulo-seccion { font-size:1.8rem; }
  .contenedor-titulo h2 { font-size:1.8rem; }
  .titulo-contacto { font-size:1.8rem; }

  /* Ciudad */
  .imagen-destacada { height:220px; }

  /* Galería */
  .galeria { grid-template-columns:repeat(auto-fill,minmax(120px,1fr)); gap:6px; }

  /* Mapa */
  .mapa { height:250px; }

  /* Formulario */
  .formulario-elegante { padding:1.4rem 1rem; }
  .boton-enviar { width:100%; justify-content:center; }

  /* Footer */
  .footer-elegante { padding:3rem 1rem 0; }
}

/* ---- 400px — móvil muy pequeño ---- */
@media (max-width:400px) {
  .hero-title { font-size:clamp(1.8rem,9vw,2.5rem); }
  .gooey-t1, .gooey-t2 { font-size:0.58rem; letter-spacing:1.5px; }
  .stat-item { flex:1 1 100%; }
  .galeria { grid-template-columns:repeat(2,1fr); }
  .filtro-btn { padding:0.45rem 0.9rem; font-size:0.68rem; }
  .wrap-texto { padding:0 0.8rem; }
  .btn.bordes { padding:0.7rem 1.3rem; font-size:0.72rem; letter-spacing:1px; }
}

/* ---- Altura baja (landscape móvil) ---- */
@media (max-height:600px) {
  .hero-title { font-size:clamp(1.6rem,5.5vw,2.8rem); }
  .hero-tag { display:none; }
  .hero-divider { margin-bottom:1rem; }
  .gooey-container { margin-bottom:1rem; }
  .btn.bordes { padding:0.65rem 1.8rem; }
  .navegacion a { padding:0.55rem 0; }
}

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
