/* ==================================================
   LA RUA 74 — PÁGINA EN CONSTRUCCIÓN
   ================================================== */

:root {
  --verde: #1B372C;
  --verde-oscuro: #0f2019;
  --verde-claro: #254d3e;
  --dorado: #896A42;
  --dorado-oscuro: #6e5435;
  --dorado-claro: #a8845a;
  --crema: #D7C2A3;
  --crema-oscuro: #c4ac8a;
  --lila: #BAB4E0;
  --blanco: #FFFFFF;
  --gris-claro: #f5f5f0;
  --texto: #2d2a24;
  --texto-claro: #6b6257;
  --sombra-suave: 0 15px 40px -10px rgba(27,55,44,0.15);
  --sombra-media: 0 20px 50px -12px rgba(27,55,44,0.25);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-lenta: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--blanco);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Cursor none para todos los dispositivos hover */
@media (hover: hover) and (pointer: fine) {
  body,
  body * {
    cursor: none !important;
  }
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; border: none; background: none; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ==================================================
   CURSOR PERSONALIZADO
   ================================================== */
@media (hover: hover) and (pointer: fine) {
  .cursor {
    position: fixed; top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(137,106,66,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    mix-blend-mode: difference;
  }
  .cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--dorado);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
  }
  .cursor-hover .cursor {
    width: 60px; height: 60px;
    background-color: rgba(137,106,66,0.1);
    border-color: var(--dorado);
  }
  .cursor-hover .cursor-dot { background: var(--crema); }
}

/* ==================================================
   PRELOADER
   ================================================== */
.preloader {
  position: fixed; inset: 0;
  background: var(--verde);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__content {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 30px;
}
.preloader__logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  animation: preloader-pulse 1.8s ease-in-out infinite;
}
@keyframes preloader-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.95); }
}
.preloader__progress {
  width: 200px; height: 2px;
  background: rgba(215,194,163,0.2);
  overflow: hidden;
  border-radius: 2px;
}
.preloader__bar {
  height: 100%; width: 0%;
  background: var(--dorado);
  transition: width 0.1s linear;
  border-radius: 2px;
}
.preloader__text {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(215,194,163,0.6);
}

/* ==================================================
   NAVBAR — BARRA VERDE CON LOGO CENTRADO
   ================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(27,55,44,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(137,106,66,0.25);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar__line {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar--scrolled {
  background: rgba(8,46,23,0.97) !important;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

/* Logo centrado — más grande, sin anillos */
.navbar__logo-wrap {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.navbar__logo {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.navbar__logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: transform 0.4s ease, filter 0.4s ease;
  position: relative; z-index: 2;
}
.navbar__logo:hover img {
  transform: scale(1.05);
  filter: brightness(1.25) drop-shadow(0 0 10px rgba(137,106,66,0.55));
}

/* Brillos / partículas doradas alrededor del logo (sin círculos) */
.navbar__logo::before,
.navbar__logo::after {
  content: '✦';
  position: absolute;
  color: var(--dorado);
  font-size: 0.55rem;
  opacity: 0;
  animation: logo-sparkle 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}
.navbar__logo::before {
  top: 2px; right: -18px;
  animation-delay: 0s;
}
.navbar__logo::after {
  bottom: 2px; left: -18px;
  animation-delay: 1.5s;
}
@keyframes logo-sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5) translateY(0); }
  50%       { opacity: 1; transform: scale(1.3) translateY(-5px); }
}

/* Pulso periódico del logo */
@keyframes logo-glow-pulse {
  0%, 100% { filter: brightness(1.1); }
  50%       { filter: brightness(1.3) drop-shadow(0 0 12px rgba(137,106,66,0.6)); }
}
.navbar__logo--glow img {
  animation: logo-glow-pulse 0.7s ease-in-out;
}


/* ==================================================
   HERO
   ================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 90px;
}
.hero__slideshow {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  will-change: opacity;
}
.hero__slide.active {
  opacity: 1;
  animation: hero-zoom 8s ease-in-out forwards;
  will-change: transform;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,32,25,0.78) 0%,
    rgba(15,32,25,0.65) 40%,
    rgba(15,32,25,0.82) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 5%;
  width: 100%;
}

/* hero__construction removed — element not used in current page */

.hero__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crema);
  margin-bottom: 18px;
  padding: 6px 18px;
  border: 1px solid rgba(215,194,163,0.4);
  border-radius: 30px;
}
.hero__title {
  margin-bottom: 20px;
  line-height: 1.1;
}
/* hero__sorry removed — element not in HTML */
.hero__main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--blanco);
  line-height: 1;
}
.hero__script {
  display: block;
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--crema);
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(215,194,163,0.25);
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--blanco);
  margin-bottom: 16px;
  font-weight: 300;
}
.hero__subtitle strong { color: var(--crema); font-weight: 600; }

.hero__divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 18px;
}
.hero__divider::before,
.hero__divider::after {
  content: '';
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215,194,163,0.4));
}
.hero__divider::after {
  background: linear-gradient(90deg, rgba(215,194,163,0.4), transparent);
}
.hero__divider-star { color: var(--crema); font-size: 0.8rem; }

.hero__desc {
  font-size: 0.95rem;
  color: var(--blanco);
  max-width: 500px;
  margin: 0 auto 35px;
  line-height: 1.8;
}
.hero__desc strong { color: var(--crema); }

.hero__actions {
  display: flex; gap: 15px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__dots {
  display: flex; gap: 8px; justify-content: center;
}
.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(215,194,163,0.3);
  transition: var(--transition);
}
.hero__dot.active {
  background: var(--dorado);
  width: 24px;
  border-radius: 3px;
}

/* ==================================================
   BUTTONS
   ================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: var(--transition);
}
.btn--primary {
  background: var(--dorado);
  color: var(--verde);
}
.btn--primary:hover {
  background: var(--dorado-claro);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(137,106,66,0.45);
}
.btn--outline {
  background: transparent;
  color: var(--crema);
  border: 1px solid rgba(215,194,163,0.4);
}
.btn--outline:hover {
  border-color: var(--dorado);
  color: var(--dorado);
  transform: translateY(-3px);
}
.btn--lg { padding: 18px 40px; font-size: 0.9rem; }

/* ==================================================
   MARQUEE
   ================================================== */
.marquee {
  background: var(--verde);
  border-top: 1px solid rgba(137,106,66,0.2);
  border-bottom: 1px solid rgba(137,106,66,0.2);
  padding: 14px 0;
  overflow: hidden;
}
.marquee__inner { overflow: hidden; }
.marquee__track {
  display: flex; gap: 40px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.marquee__track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(215,194,163,0.7);
}
.marquee__star { color: var(--lila) !important; font-size: 0.6rem !important; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==================================================
   SECCIONES GENERALES
   ================================================== */
.section { padding: 100px 0; }
.section--white { background: var(--blanco); }
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}
.section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 16px;
}
.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--verde);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section__title em { font-style: italic; color: var(--verde-claro); }
.section__subtitle {
  font-size: 1rem;
  color: var(--texto-claro);
  line-height: 1.7;
}

/* ==================================================
   SERVICIOS
   ================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.service__card {
  background: var(--blanco);
  border: 1px solid rgba(27,55,44,0.08);
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.4s ease;
}
.service__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde), var(--dorado));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-media);
  border-color: rgba(27,55,44,0.15);
}
.service__card:hover::before { transform: scaleX(1); }

.service__card--gold {
  background: var(--verde);
  color: var(--crema);
  border-color: transparent;
}
.service__card--gold::before {
  background: linear-gradient(90deg, var(--dorado), var(--dorado-claro));
}
.service__card--gold .service__icon {
  border-color: rgba(137,106,66,0.3);
  background: rgba(137,106,66,0.1);
}
.service__card--gold .service__icon svg { stroke: var(--dorado); }
.service__card--gold h3 { color: var(--crema); }
.service__card--gold p  { color: rgba(215,194,163,0.7); }

.service__number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700;
  color: rgba(27,55,44,0.06);
  position: absolute; top: 15px; right: 20px;
  line-height: 1;
}
.service__card--gold .service__number { color: rgba(215,194,163,0.08); }

.service__icon {
  width: 60px; height: 60px;
  background: rgba(27,55,44,0.06);
  border: 1px solid rgba(27,55,44,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service__icon svg { stroke: var(--verde); }
.service__card:hover .service__icon {
  background: var(--verde);
  border-color: var(--verde);
}
.service__card:hover .service__icon svg { stroke: var(--dorado); }
.service__card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--verde);
  margin-bottom: 10px;
}
.service__card p {
  font-size: 0.9rem;
  color: var(--texto-claro);
  line-height: 1.65;
}
.service__card--special {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-claro) 100%);
  border: 1px solid rgba(137,106,66,0.2);
  display: flex; align-items: center; justify-content: center;
}
.service__card--special:hover { transform: translateY(-6px); }
.service__special-content { text-align: center; }
.service__special-content p {
  color: rgba(215,194,163,0.7);
  font-size: 0.9rem; margin-bottom: 8px;
}
.service__special-content strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--crema);
  margin-bottom: 20px;
}
.service__special-content a {
  display: inline-block;
  color: var(--dorado);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid rgba(137,106,66,0.4);
  padding-bottom: 3px;
  transition: var(--transition);
}
.service__special-content a:hover {
  color: var(--dorado-claro);
  border-color: var(--dorado-claro);
}

/* ==================================================
   GALERÍA
   ================================================== */
.section--gallery { padding-bottom: 0; background: var(--blanco); }
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 6px;
  margin-top: 40px;
}
.gallery__col { display: flex; flex-direction: column; gap: 6px; }
.gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery__item--tall { aspect-ratio: unset; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
/* Posición explícita para los 2 items que llenan los huecos */
.gallery__item--col3-top    { grid-column: 3; grid-row: 1; }
.gallery__item--col3-bottom { grid-column: 3; grid-row: 3; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 16px;
  background: linear-gradient(transparent, rgba(15,32,25,0.75));
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(215,194,163,0.9);
  opacity: 0; transform: translateY(8px);
  transition: var(--transition);
}
.gallery__item:hover .gallery__caption {
  opacity: 1; transform: translateY(0);
}

/* ==================================================
   AMENIDADES
   ================================================== */
.section--amenities {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.amenities__bg {
  position: absolute; inset: 0; z-index: 0;
}
.amenities__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.15) saturate(0.5);
}
.amenities__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,32,25,0.7);
}
.section--amenities .container { position: relative; z-index: 1; }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.amenities__item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(137,106,66,0.18);
  border-radius: 12px;
  padding: 30px 22px;
  text-align: center;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}
.amenities__item:hover {
  background: rgba(137,106,66,0.08);
  border-color: rgba(137,106,66,0.35);
  transform: translateY(-5px);
}

/* ── ICONO DORADO ─────────────────────────────── */
.amenities__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: rgba(137,106,66,0.12);
  border: 1px solid rgba(137,106,66,0.3);
  color: var(--crema);
  transition: var(--transition);
}
.amenities__icon svg { stroke: var(--crema); }
.amenities__item:hover .amenities__icon {
  background: rgba(137,106,66,0.2);
  border-color: rgba(137,106,66,0.55);
  transform: scale(1.1);
  box-shadow: 0 0 22px rgba(137,106,66,0.2);
}
.amenities__item:hover .amenities__icon svg { stroke: var(--dorado-claro); }
/* ────────────────────────────────────────────── */

.amenities__item strong {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--blanco);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.amenities__item p {
  font-size: 0.8rem;
  color: var(--blanco);
  line-height: 1.5;
}

/* ==================================================
   CTA FINAL
   ================================================== */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 2s ease;
}
.cta__slide.active { opacity: 1; }
.cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,32,25,0.93) 0%, rgba(27,55,44,0.86) 100%);
  z-index: 1;
}
.cta .container { position: relative; z-index: 2; }
.cta__content { max-width: 620px; margin: 0 auto; }
.cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: #ffffff;
  line-height: 1.15; margin-bottom: 20px;
}
.cta__title em { color: #b8a0d4; font-style: italic; }
.cta__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 460px; margin: 0 auto 35px; line-height: 1.8;
}
.cta__text strong { color: #b8a0d4; }
.cta__buttons {
  display: flex; gap: 15px;
  justify-content: center; flex-wrap: wrap; margin-bottom: 30px;
}
.cta__trust { display: flex; gap: 25px; justify-content: center; flex-wrap: wrap; }
.cta__trust span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* Eyebrow en el CTA: dorado → lila */
.cta .section__eyebrow { color: #b8a0d4 !important; }

/* Botón primario dentro del CTA: dorado → lila */
.cta .btn--primary {
  background: #b8a0d4;
  color: #1a0a2e;
}
.cta .btn--primary:hover {
  background: #c9b3e0;
  box-shadow: 0 12px 30px rgba(184,160,212,0.4);
}

/* ==================================================
   UTILIDADES — reemplazan inline styles del HTML
   ================================================== */
/* Eyebrow dorado (para CTA y amenidades) */
.section__eyebrow--gold { color: var(--dorado); }

/* Título blanco (sección amenidades) */
.section__title--white { color: #ffffff; }

/* Em lila (sección amenidades y nosotros) */
.em--lila { color: var(--lila); font-style: italic; }

/* Texto crema (para h3 en tarjeta dorada de servicios) */
.text--crema { color: var(--crema); }

/* Link en footer con color heredado */
.footer__addr-link { color: inherit; }

/* ==================================================
   FOOTER
   ================================================== */
.footer {
  background: var(--verde-oscuro);
  color: var(--crema);
  padding: 60px 0 30px;
}
.footer__inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.footer__logo img {
  height: 52px; width: auto; object-fit: contain; filter: brightness(1.1); margin-bottom: 20px;
}
.footer__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 0.95rem;
  color: rgba(215,194,163,0.45); margin-bottom: 24px;
}
.footer__info {
  display: flex; gap: 30px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 24px;
}
.footer__info span {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(215,194,163,0.55);
}
.footer__info svg { color: var(--dorado); flex-shrink: 0; }
.footer__social { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.footer__social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(215,194,163,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(215,194,163,0.5);
  border-radius: 50%;
  transition: border-color 0.4s cubic-bezier(0.165,0.84,0.44,1), color 0.4s cubic-bezier(0.165,0.84,0.44,1), transform 0.4s cubic-bezier(0.165,0.84,0.44,1), background 0.4s cubic-bezier(0.165,0.84,0.44,1);
}
.footer__social-link svg { display: block; }
.footer__social-link:hover {
  border-color: var(--dorado); color: var(--dorado);
  transform: translateY(-3px);
}
/* TikTok — fondo negro propio */
.footer__social-link--tt {
  background: #000000;
  border-color: rgba(255,255,255,0.1);
  color: #ffffff;
}
.footer__social-link--tt:hover {
  background: #111111;
  border-color: rgba(255,255,255,0.25);
  color: #ffffff;
}
.footer__divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(137,106,66,0.2), transparent);
  margin-bottom: 24px;
}
.footer__copy { font-size: 0.75rem; color: rgba(215,194,163,0.3); }
.footer__copy strong { color: rgba(137,106,66,0.6); }

/* ==================================================
   WHATSAPP FLOTANTE
   ================================================== */
.wa-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25d366; color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.4s ease,
              opacity 0.3s ease;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(37,211,102,0.5);
}
.wa-float__tooltip {
  position: absolute; right: 70px;
  background: var(--verde); color: var(--crema);
  padding: 6px 15px; font-size: 0.7rem;
  white-space: nowrap; border-radius: 30px;
  opacity: 0; transform: translateX(10px);
  transition: var(--transition); pointer-events: none;
}
.wa-float:hover .wa-float__tooltip {
  opacity: 1; transform: translateX(0);
}

/* ==================================================
   ANIMACIONES REVEAL
   ================================================== */
[data-reveal] { opacity: 0; transition: var(--transition-lenta); }
[data-reveal="fade-up"]   { transform: translateY(40px); }
[data-reveal="fade-right"]{ transform: translateX(-40px); }
[data-reveal="clip"]      { clip-path: inset(0 100% 0 0); }
[data-reveal="zoom"]      { transform: scale(0.95); }
[data-reveal="flip"]      { transform: perspective(400px) rotateY(5deg) scale(0.95); opacity: 0; }
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0) scale(1) rotateY(0);
  clip-path: inset(0 0 0 0);
}
[data-reveal-delay="50"]  { transition-delay: 0.05s; }
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="150"] { transition-delay: 0.15s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="250"] { transition-delay: 0.25s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="350"] { transition-delay: 0.35s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }
[data-reveal-delay="450"] { transition-delay: 0.45s; }
[data-reveal-delay="500"] { transition-delay: 0.5s; }

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 1100px) {
  .services__grid   { grid-template-columns: repeat(2, 1fr); }
  .amenities__grid  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .navbar__contact span { display: none; }
  .navbar__contact { padding: 8px 14px; }
  .hero__construction { width: 120px; height: 120px; }
  .services__grid  { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery__col { display: contents; }
  .gallery__item--wide { grid-column: span 2; }
/* Posición explícita para los 2 items que llenan los huecos */
.gallery__item--col3-top    { grid-column: 3; grid-row: 1; }
.gallery__item--col3-bottom { grid-column: 3; grid-row: 3; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .cta__trust { flex-direction: column; align-items: center; gap: 8px; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .amenities__grid { grid-template-columns: 1fr; }
  .footer__info { flex-direction: column; gap: 12px; }
}

/* ==================================================
   ACCESIBILIDAD
   ================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible {
  outline: 2px solid var(--dorado);
  outline-offset: 3px;
}

/* ==================================================
   NAVBAR EXPANDIDO CON MENÚ
   ================================================== */
.navbar__actions { display: flex; align-items: center; gap: 16px; }

/* Nav centrado absolutamente en la pantalla — horizontal y vertical */
.navbar__nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}
.navbar__nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crema);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--crema);
  transition: width 0.35s cubic-bezier(0.165,0.84,0.44,1);
}
.navbar__nav a:hover { color: var(--crema); opacity: 1; }
.navbar__nav a:hover::after { width: 100%; }

/* Botón Contáctanos — beige con animación y tooltip hover */
.navbar__contact {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--crema);
  color: var(--verde);
  padding: 9px 22px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 30px;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  animation: contact-pulse 3s ease-in-out infinite;
}
/* Brillo deslizante interno */
.navbar__contact::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
/* Texto hover "En línea ahora" */
.navbar__contact::after {
  content: '● En línea ahora';
  position: absolute;
  bottom: -38px; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--verde-oscuro);
  color: #6dff9a;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  border: 1px solid rgba(109,255,154,0.25);
}
.navbar__contact:hover {
  background: var(--crema-oscuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(215,194,163,0.45);
}
.navbar__contact:hover::before { left: 150%; }
.navbar__contact:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@keyframes contact-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(215,194,163,0); }
  50%       { box-shadow: 0 0 0 7px rgba(215,194,163,0.2); }
}

/* WA móvil — oculto en desktop */
.navbar__mobile-wa { display: none; }
.navbar__wa-mobile { display: none; }

/* Botón hamburguesa móvil — moderno con animación X */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 40px; height: 40px;
  padding: 0;
  cursor: pointer;
  background: rgba(215,194,163,0.1);
  border: 1px solid rgba(215,194,163,0.2);
  border-radius: 10px;
  transition: background 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.navbar__toggle:hover {
  background: rgba(215,194,163,0.18);
  border-color: rgba(215,194,163,0.4);
}
.navbar__toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--crema);
  border-radius: 2px;
  position: absolute;
  transition: transform 0.35s cubic-bezier(0.165,0.84,0.44,1),
              opacity 0.25s ease,
              top 0.35s cubic-bezier(0.165,0.84,0.44,1);
}
.navbar__toggle span:nth-child(1) { top: 13px; }
.navbar__toggle span:nth-child(2) { top: 19px; }
.navbar__toggle span:nth-child(3) { top: 25px; }

/* Estado abierto — se convierte en X */
.navbar__toggle[aria-expanded="true"] span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* Botón WA solo icono en móvil */
.navbar__wa-mobile {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 10px;
  color: #25d366;
  transition: background 0.3s ease;
}
.navbar__wa-mobile:hover { background: rgba(37,211,102,0.25); }

@media (max-width: 900px) {
  /* Menú desplegable — fuera del flujo normal */
  .navbar__nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    transform: translateY(-120%);
    background: rgba(15,32,25,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid rgba(186,180,224,0.15);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.165,0.84,0.44,1), opacity 0.35s ease;
    pointer-events: none;
    z-index: 999;
  }
  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .navbar__nav li { width: 100%; text-align: center; }
  .navbar__nav a {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    color: var(--crema);
    border-bottom: 1px solid rgba(215,194,163,0.06);
    transition: background 0.2s ease;
  }
  .navbar__nav li:last-child a { border-bottom: none; }
  .navbar__nav a:hover { background: rgba(215,194,163,0.05); }

  /* Barra móvil */
  .navbar__line {
    height: 70px;
    padding: 0 16px;
    gap: 0;
  }

  /* Col izq — WA */
  .navbar__mobile-wa {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 44px;
  }

  /* Col centro — logo */
  .navbar__logo-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar__logo img { height: 40px; }

  /* Col der — toggle solamente */
  .navbar__actions {
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }
  .navbar__contact { display: none; }
  .navbar__wa-mobile { display: flex; }
  .navbar__toggle { display: flex; }
}

/* ==================================================
   SECCIÓN MAPA / UBICACIÓN
   ================================================== */
.section--ubicacion {
  padding: 100px 0;
  background: var(--blanco);
  border-top: 4px solid var(--lila);
}
.ubicacion__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.ubicacion__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ubicacion__detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ubicacion__detail-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--lila);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blanco);
}
.ubicacion__detail-text strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--verde);
  margin-bottom: 4px;
}
.ubicacion__detail-text span {
  font-size: 0.9rem;
  color: var(--texto-claro);
  line-height: 1.5;
}
.ubicacion__map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px -15px rgba(186,180,224,0.35);
  border: 2px solid rgba(186,180,224,0.5);
  position: relative;
}
.ubicacion__map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.ubicacion__map-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--lila);
  color: var(--blanco);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  display: flex; gap: 6px; align-items: center;
  box-shadow: 0 4px 16px rgba(186,180,224,0.5);
  pointer-events: none;
}
.ubicacion__map-badge span {
  width: 6px; height: 6px;
  background: var(--blanco);
  border-radius: 50%;
  animation: blink-pulse 2s ease-in-out infinite;
}
@keyframes blink-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(0.7); }
}
.ubicacion__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lila);
  text-decoration: none;
  border-bottom: 1px solid rgba(186,180,224,0.5);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}
.ubicacion__cta:hover {
  color: var(--verde);
  border-color: var(--verde);
  gap: 12px;
}
/* Título de la sección ubicación en lila */
.section--ubicacion .section__eyebrow { color: var(--lila); }
@media (max-width: 768px) {
  .ubicacion__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==================================================
   FOOTER MEJORADO
   ================================================== */
.footer__legal {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}
.footer__legal a {
  font-size: 0.72rem;
  color: rgba(215,194,163,0.45);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.footer__legal a:hover { color: var(--dorado); }
.footer__separator { color: rgba(215,194,163,0.25); font-size: 0.7rem; }
.footer__monster {
  margin-top: 12px;
  font-size: 0.72rem;
  color: rgba(215,194,163,0.35);
  letter-spacing: 0.05em;
}
.footer__monster a {
  color: rgba(137,106,66,0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__monster a:hover { color: var(--dorado); }

/* ==================================================
   MODALES DE POLÍTICAS
   ================================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,32,25,0.85);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--crema);
  color: var(--texto);
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px 40px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.35s ease;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--verde);
  margin-bottom: 20px;
}
.modal-box p, .modal-box li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--texto-claro);
  margin-bottom: 12px;
}
.modal-box ul { padding-left: 16px; list-style: disc; }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(27,55,44,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  color: var(--verde);
  transition: background 0.2s;
  border: none;
}
.modal-close:hover { background: rgba(27,55,44,0.2); }

/* ==================================================
   SECCIÓN NOSOTROS
   ================================================== */
.section--nosotros {
  background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section--nosotros::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137,106,66,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.nosotros__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nosotros__text { color: var(--crema); }
.nosotros__text .section__eyebrow { color: var(--dorado); }
.nosotros__text .section__title { color: var(--crema); }
.nosotros__text .section__title em { color: var(--lila); font-style: italic; }
.nosotros__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--blanco);
  margin-bottom: 20px;
}
.nosotros__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.nosotros__stat {
  padding: 24px 20px;
  border: 1px solid rgba(137,106,66,0.25);
  border-radius: 14px;
  text-align: center;
  background: rgba(137,106,66,0.05);
}
.nosotros__stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dorado);
  line-height: 1;
  margin-bottom: 6px;
}
.nosotros__stat span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crema);
}
.nosotros__img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.nosotros__img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.nosotros__img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--dorado);
  color: var(--verde-oscuro);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .nosotros__grid { grid-template-columns: 1fr; gap: 40px; }
  .nosotros__img { display: block; }
  .nosotros__img img { height: 300px; }
}