/* ============================================================
   SANTVAL LODGE — Lujo Tropical Boutique
   Referencia: Joya Zanzibar BeachSuites Villa
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;1,400&family=Pacifico&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Colores principales */
  --green-dark:   #7D9729;
  --green-mid:    #97AF22;
  --green-lime:   #AFC831;
  --terra-light:  #E19664;
  --terra-dark:   #B06432;

  /* Colores secundarios */
  --forest:       #2F4530;
  --sage:         #85B975;

  /* Neutros / base */
  --bg-light:     #ffffff;           /* Blanco puro */
  --bg-dark:      #1a1a1a;           /* Negro marca */
  --bg-footer:    #2f4530;           /* Verde muy oscuro marca */
  --text:         #1a1a1a;           /* Negro marca */
  --muted:        rgba(26,26,26,.55);/* Negro marca con opacidad */
  --white:        #FFFFFF;

  /* Gradientes */
  --grad-green:   linear-gradient(135deg, #7D9729 0%, #AFC831 100%);
  --grad-warm:    linear-gradient(135deg, #B06432 0%, #E19664 100%);
  --grad-full:    linear-gradient(135deg, #2F4530 0%, #97AF22 50%, #AFC831 100%);

  /* Tipografía */
  --f-serif:      'Montserrat', sans-serif;   /* Títulos — Montserrat SemiBold */
  --f-label:      'Montserrat', sans-serif;   /* Etiquetas — Montserrat */
  --f-sans:       'Montserrat', sans-serif;   /* Cuerpo — Montserrat Regular */
  --f-deco:       'Pacifico', cursive;        /* Decorativo — Pacifico */

  /* Espaciado */
  --sec-py:       7rem;

  /* Radio */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-pill: 50px;

  /* Sombras */
  --sh-card:  0 8px 40px rgba(0,0,0,.10);
  --sh-float: 0 16px 60px rgba(0,0,0,.16);
  --sh-hover: 0 20px 70px rgba(0,0,0,.22);

  --ease: .38s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--f-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.8;
}
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Contenedores ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--sm { max-width: 860px; margin: 0 auto; padding: 0 2rem; }

/* ── Etiqueta de sección (Lora + línea decorativa) ─────────── */
.sec-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-label);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.25rem;
}
.sec-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--green-mid);
  flex-shrink: 0;
}
.sec-label::after {
  content: '●';
  font-size: 0.45rem;
  color: var(--green-mid);
  flex-shrink: 0;
}

/* Variante cálida (terracota) */
.sec-label--warm       { color: var(--terra-light); }
.sec-label--warm::before { background: var(--terra-light); }
.sec-label--warm::after  { color: var(--terra-light); }

/* Variante blanca (sobre fondos oscuros) */
.sec-label--white       { color: var(--green-lime); }
.sec-label--white::before { background: var(--green-lime); }
.sec-label--white::after  { color: var(--green-lime); }

/* ── Headings ──────────────────────────────────────────────── */
.h1-hero {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.h2-section {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
.h2-section--light { color: var(--white); }

.h3-card {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.3;
}

/* Numeración decorativa */
.deco-num {
  font-family: var(--f-serif);
  font-size: clamp(5rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--green-lime);
  opacity: 0.18;
  line-height: 1;
  display: block;
  margin-bottom: -1.5rem;
}

.body-text {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ── Botones ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  border-radius: var(--r-md);
}

/* CTA principal */
.btn-primary {
  background: var(--terra-dark);
  color: var(--white);
  padding: 0.85rem 2rem;
}
.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(125,151,41,.3);
}

/* Botón fantasma blanco */
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Botón texto + flecha */
.btn-arrow {
  background: transparent;
  color: var(--white);
  padding: 0;
  gap: 0.55rem;
  font-size: 0.72rem;
}
.btn-arrow .arr { transition: transform var(--ease), color var(--ease); }
.btn-arrow:hover .arr { transform: translateX(5px); color: var(--green-lime); }

/* Icono flecha (cuadrado) */
.arrow-box {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--ease);
}
.btn-arrow:hover .arrow-box {
  background: var(--green-lime);
  color: var(--text);
}

/* ── Animaciones de entrada ─────────────────────────────────── */
.reveal       { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-l     { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.reveal-r     { opacity: 0; transform: translateX(36px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-f     { opacity: 0; transition: opacity .9s ease; }
.reveal.show, .reveal-l.show, .reveal-r.show, .reveal-f.show {
  opacity: 1; transform: translate(0);
}

/* ══════════════════════════════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════════════════════════════ */
#topbar {
  background: var(--forest);
  padding: 0.55rem 0;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-perks {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.7rem;
  color: #ffffff;
  font-family: var(--f-sans);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.topbar-perks .bullet {
  color: var(--green-lime);
  font-size: 0.45rem;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.topbar-email {
  font-size: 0.72rem;
  color: #ffffff;
  font-family: var(--f-sans);
  transition: color var(--ease);
}
.topbar-email:hover { color: var(--terra-dark); }
.topbar-social {
  display: flex;
  gap: 0.75rem;
}
.topbar-social a {
  color: #ffffff;
  font-size: 0.82rem;
  transition: color var(--ease);
}
.topbar-social a:hover { color: var(--green-lime); }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(176,100,50,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.2rem 0;
  overflow: visible;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}
#header.solid {
  background: rgba(176,100,50,.99);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  padding: 0.4rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 52px;
  overflow: visible;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; overflow: visible; }
.logo-svg  { height: 140px; width: auto; transition: height var(--ease); position: relative; z-index: 1; }
#header.solid .logo-svg { height: 100px; }
.logo-name {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-family: var(--f-label);
  font-size: 0.58rem;
  font-style: italic;
  color: var(--green-mid);
  letter-spacing: 0.06em;
  display: block;
}

/* Menú */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-link {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.73rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  padding: 0.45rem 0.8rem;
  position: relative;
  transition: color var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.8rem; right: 0.8rem;
  height: 1.5px;
  background: var(--green-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--green-lime); }
.nav-link.active::after { transform: scaleX(1); background: var(--green-lime); }

.nav-cta {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--terra-dark);
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); color: var(--white); } /* hover #7d9729 */

/* Toggle móvil */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1920&q=90')
              center/cover no-repeat;
  animation: kZoom 20s ease-in-out infinite alternate;
}
@keyframes kZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 880px;
}

.hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--f-label);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.4rem;
}
.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--green-mid);
}

.h1-hero {
  margin-bottom: 0.5rem;
  animation: fadeUp 1s .1s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-deco {
  font-family: var(--f-deco);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: var(--green-lime);
  display: block;
  margin-bottom: 1.75rem;
  animation: fadeUp 1s .25s cubic-bezier(.22,1,.36,1) both;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin: 0 auto 0;
  line-height: 1.85;
  font-weight: 300;
  animation: fadeUp 1s .4s cubic-bezier(.22,1,.36,1) both;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s .6s both;
}
.scroll-cue span {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .35; }
}

/* ══════════════════════════════════════════════════════════════
   BENEFIT CARDS — flotando bajo el hero
   ══════════════════════════════════════════════════════════════ */
#benefits {
  background: rgba(175,200,49,.06);
  padding: 0;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  gap: 1.25rem;
  transform: translateY(-50%);
  margin-bottom: -2.5rem;
}

.benefit-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--sh-card);
  border-bottom: 3px solid transparent;
  transition: all var(--ease);
  cursor: default;
}
.benefit-card:hover {
  border-bottom-color: var(--green-mid);
  transform: translateY(-4px);
  box-shadow: var(--sh-float);
}

.benefit-icon {
  font-size: 1.5rem;
  color: var(--terra-light);
  margin-bottom: 0.85rem;
}
.benefit-name {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.benefit-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT / NOSOTROS
   ══════════════════════════════════════════════════════════════ */
#nosotros {
  background: rgba(175,200,49,.04);
  padding: var(--sec-py) 0;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.nosotros-imgs { position: relative; }
.nosotros-img-main {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-float);
}
.nosotros-img-sm {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 48%; aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 5px solid var(--white);
  box-shadow: var(--sh-card);
}
.nosotros-years {
  position: absolute;
  top: 1.75rem; left: -1.75rem;
  background: var(--forest);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--sh-float);
}
.nosotros-years .ny-num {
  font-family: var(--f-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green-lime);
  line-height: 1;
  display: block;
}
.nosotros-years .ny-txt {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--f-sans);
  font-weight: 500;
  opacity: .75;
}

.nosotros-txt {}
.nosotros-txt .h2-section { margin: 0.5rem 0 1.5rem; }

.nosotros-p { margin-bottom: 1.25rem; }

/* Lista amenidades 2 col */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin: 2rem 0;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text);
  font-family: var(--f-sans);
}
.amenity-item::before {
  content: '⊙';
  color: var(--green-mid);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.link-warm {
  color: var(--terra-light);
  font-weight: 600;
  transition: color var(--ease);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}
.link-warm:hover {
  color: var(--terra-dark);
  text-decoration-color: var(--terra-dark);
}

.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--terra-light);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  transition: color var(--ease);
}
.cta-email:hover { color: var(--terra-dark); }
.cta-email i { font-size: 0.85rem; }

/* ══════════════════════════════════════════════════════════════
   ROOMS (fondo #2F4530)
   ══════════════════════════════════════════════════════════════ */
#habitaciones {
  background: var(--forest);
  padding: var(--sec-py) 0;
  position: relative;
  overflow: hidden;
}
#habitaciones::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=40')
              center/cover;
  opacity: .08;
}

.rooms-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rooms-header .sec-label { justify-content: center; }
.rooms-header .sec-label::before,
.rooms-header .sec-label::after { display: none; }
.rooms-header .sec-label {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--f-label); font-size: .75rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-lime); margin-bottom: 1rem;
}
.rooms-header .sec-label span.rl-line {
  display: inline-block; width: 24px; height: 1px;
  background: var(--green-lime);
}
.rooms-header .sec-label span.rl-dot {
  font-size: .4rem; color: var(--green-lime);
}

.rooms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.rooms-grid .room-card {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
}

.room-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: block;
  text-decoration: none;
  color: inherit;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-hover);
  border-color: rgba(175,200,49,.3);
}

.room-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.room-card:hover .room-img img { transform: scale(1.05); }

/* Badge */
.room-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: var(--r-pill);
  background: var(--green-mid);
  color: var(--white);
}
.room-badge--villa { background: var(--terra-light); }

/* Superficie m² */
.room-size {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.55);
  padding: 0.5rem 1rem;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--green-lime);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.room-body {
  padding: 1.5rem;
}
.room-body .h3-card {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.room-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,.58);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.room-price {
  font-family: var(--f-serif);
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.room-price strong {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1rem;
}
.room-arrow {
  color: var(--white);
  font-size: 1.2rem;
  transition: color var(--ease), transform var(--ease);
}
.room-card:hover .room-arrow {
  color: var(--green-lime);
  transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════════════
   FACILITIES — Alternado numerado (fondo blanco)
   ══════════════════════════════════════════════════════════════ */
#facilities {
  background: var(--white);
  padding: var(--sec-py) 0;
}

.fac-header {
  text-align: center;
  margin-bottom: 5rem;
}

.fac-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.fac-item:last-child { margin-bottom: 0; }
.fac-item.reverse { }
.fac-item.reverse .fac-img   { order: 2; }
.fac-item.reverse .fac-body  { order: 1; }

.fac-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.fac-img img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .65s ease;
}
.fac-item:hover .fac-img img { transform: scale(1.04); }

.fac-body {}
.fac-body .deco-num { display: block; }
.fac-body .sec-label { margin-top: 0; }
.fac-body .h2-section { margin: 0.4rem 0 1.25rem; }

/* ══════════════════════════════════════════════════════════════
   GALERÍA — Mosaico asimétrico
   ══════════════════════════════════════════════════════════════ */
#galeria {
  background: var(--bg-light);
  padding: var(--sec-py) 0;
}
.galeria-header { text-align: center; margin-bottom: 3rem; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 0.6rem;
}

/* Distribución editorial */
.m1  { grid-column: 1/6;  grid-row: 1/3; }
.m2  { grid-column: 6/9;  grid-row: 1/2; }
.m3  { grid-column: 9/13; grid-row: 1/3; }
.m4  { grid-column: 6/9;  grid-row: 2/3; }
.m5  { grid-column: 1/5;  grid-row: 3/4; }
.m6  { grid-column: 5/9;  grid-row: 3/4; }
.m7  { grid-column: 9/13; grid-row: 3/4; }

.mosaic-item {
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  position: relative;
}
.mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.mosaic-item:hover img { transform: scale(1.08); }
.mosaic-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(47,69,48,0);
  transition: background var(--ease);
}
.mosaic-item:hover::after { background: rgba(47,69,48,.18); }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIOS — fondo crema, sin fotos
   ══════════════════════════════════════════════════════════════ */
#testimonios {
  background: rgba(47,69,48,.04);
  padding: var(--sec-py) 0;
}
.testi-hdr { text-align: center; margin-bottom: 4rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--sh-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-float);
}

.testi-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--green-lime);
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
}
.testi-quote-mark {
  font-family: var(--f-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--green-lime);
  opacity: .35;
  margin-bottom: 0.5rem;
}
.testi-text {
  font-family: var(--f-label);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.75rem;
}
.testi-sep {
  width: 30px; height: 1.5px;
  background: var(--green-mid);
  margin-bottom: 1rem;
}
.testi-name {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.testi-origin {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.testi-google-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.testi-profile-link {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--terra-light);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.testi-profile-link:hover {
  text-decoration: underline;
}
.testi-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.testi-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  border: 1.5px solid var(--terra-light);
  border-radius: 40px;
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--terra-light);
  text-decoration: none;
  transition: background .22s, color .22s;
}
.testi-more-btn .testi-google-icon {
  width: 16px;
  height: 16px;
}
.testi-more-btn:hover {
  background: var(--terra-light);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════ */
#cta-banner {
  background: var(--forest);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&q=50') center/cover;
  opacity: .1;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner .h2-section { color: var(--white); margin: 0.5rem 0 1.25rem; }
.cta-inner .body-text  { color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto 2.5rem; text-align: center; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   CONTACTO
   ══════════════════════════════════════════════════════════════ */
#contacto {
  background: var(--white);
  padding: var(--sec-py) 0;
}
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contacto-info .h2-section { margin: 0.4rem 0 1.25rem; }
.contacto-info .body-text  { margin-bottom: 2.5rem; }

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-light);
}
.info-row:last-of-type { border-bottom: none; }

.info-ico {
  width: 44px; height: 44px;
  border: 1.5px solid var(--green-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all var(--ease);
}
.info-row:hover .info-ico {
  background: var(--green-mid);
  color: var(--white);
}

.info-lbl {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.2rem;
}
.info-val { font-size: 0.93rem; color: var(--text); line-height: 1.65; }
.info-val a { color: var(--forest); font-weight: 600; transition: color var(--ease); }
.info-val a:hover { color: var(--green-mid); }

/* Redes sociales en contacto */
.soc-row { display: flex; gap: 0.6rem; margin-top: 1.75rem; }
.soc-link {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(30,30,30,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all var(--ease);
}
.soc-link:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-3px);
}

/* Formulario */
.contacto-form {
  background: rgba(47,69,48,.03);
  border-radius: var(--r-lg);
  padding: 2.5rem;
}
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { margin-bottom: 1.1rem; }
.cf-group.full { grid-column: span 2; }
.cf-label {
  display: block;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.cf-input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid rgba(30,30,30,.12);
  border-radius: var(--r-md);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--ease);
}
.cf-input:focus { border-color: var(--green-mid); }
.cf-input::placeholder { color: rgba(26,26,26,.35); }
textarea.cf-input { resize: vertical; min-height: 110px; }

/* Mapa */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  height: 400px;
  margin-top: 2rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════════ */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9000;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; border-radius: var(--r-md); }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: none;
  color: var(--white); font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.lb-close:hover { background: rgba(255,255,255,.22); }

/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOTANTE
   ══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 0.6rem;
}
.wa-bubble {
  background: var(--forest);
  color: var(--white);
  font-family: var(--f-sans); font-weight: 500; font-size: 0.75rem;
  padding: 0.4rem 0.9rem;
  border-radius: 14px 14px 4px 14px;
  box-shadow: var(--sh-card);
  white-space: nowrap;
}
.wa-btn {
  position: relative;
  width: 54px; height: 54px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem;
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  transition: transform var(--ease), box-shadow var(--ease);
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.1); color: var(--white); }
.wa-btn::before {
  content: ''; position: absolute;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  from { transform: scale(1); opacity: 1; }
  to   { transform: scale(1.75); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
footer {
  background: var(--bg-footer);
  color: #ffffff;
}

/* Barra verde full-width encima del footer */
.footer-accent-bar {
  height: 3px;
  background: var(--terra-dark);
}

.footer-body {
  padding: 4.5rem 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Columna marca */
.ftr-brand .ftr-name {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
}
.ftr-brand .ftr-sub {
  font-family: var(--f-label);
  font-style: italic;
  font-size: 0.62rem;
  color: var(--green-mid);
  display: block;
  margin-bottom: 1.2rem;
}
.ftr-brand p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: #ffffff;
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.ftr-heading {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ftr-links { display: flex; flex-direction: column; gap: 0.55rem; }
.ftr-links a {
  font-size: 0.84rem;
  color: #ffffff;
  transition: color var(--ease), padding-left var(--ease);
}
.ftr-links a:hover { color: var(--terra-light); padding-left: 5px; }

.ftr-contact-row {
  display: flex; align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}
.ftr-contact-row i { color: var(--white); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.ftr-contact-row a { color: #ffffff; transition: color var(--ease); }
.ftr-contact-row a:hover { color: var(--terra-light); }

/* Social en footer */
.ftr-soc { display: flex; gap: 0.55rem; margin-top: 0.5rem; }
.ftr-soc a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.84rem;
  color: #ffffff;
  transition: all var(--ease);
}
.ftr-soc a:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.ftr-copy { font-size: 0.75rem; color: #ffffff; }
.ftr-legal { display: flex; gap: 1.5rem; }
.ftr-legal a { font-size: 0.73rem; color: #ffffff; transition: color var(--ease); }
.ftr-legal a:hover { color: var(--terra-light); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --sec-py: 5rem; }
  .benefits-row { grid-template-columns: repeat(2, 1fr); }
  .nosotros-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .nosotros-imgs { max-width: 520px; }
  .rooms-grid .room-card { flex: 0 0 calc(50% - 0.75rem); max-width: calc(50% - 0.75rem); }
  .fac-item, .fac-item.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .fac-item.reverse .fac-img  { order: 0; }
  .fac-item.reverse .fac-body { order: 0; }
  .mosaic { grid-template-columns: repeat(6,1fr); grid-auto-rows: 170px; }
  .m1 { grid-column:1/4; grid-row:1/3; }
  .m2 { grid-column:4/7; grid-row:1/2; }
  .m3 { grid-column:4/7; grid-row:2/3; }
  .m4 { grid-column:1/3; grid-row:3/4; }
  .m5 { grid-column:3/5; grid-row:3/4; }
  .m6 { grid-column:5/7; grid-row:3/4; }
  .m7 { grid-column:1/4; grid-row:4/5; }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid .testi-card:last-child { grid-column: span 2; }
  .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-body { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px (Mobile)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --sec-py: 3.5rem; }

  /* Top bar */
  .topbar-perks { gap: 0.75rem; font-size: 0.62rem; }
  .topbar-perks span:nth-child(n+3) { display: none; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: min(88vw, 320px);
    background: rgba(20,20,20,.97);
    backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start;
    padding: 5.5rem 2rem 2rem; gap: 0.2rem;
    transition: right var(--ease);
    box-shadow: -8px 0 40px rgba(0,0,0,.3);
  }
  .nav-menu.open { right: 0; }
  .nav-link {
    font-size: 0.88rem; padding: 0.65rem 0;
    width: 100%; border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.78);
  }
  .nav-cta { margin: 1rem 0 0; width: 100%; justify-content: center; }

  /* Benefits */
  .benefits-row {
    grid-template-columns: 1fr 1fr;
    transform: translateY(-30%);
    margin-bottom: -1.5rem;
  }
  .benefit-card { padding: 1.25rem 1rem; }

  /* Rooms */
  .rooms-grid .room-card { flex: 0 0 100%; max-width: 100%; }

  /* Gallery */
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .m1,.m2,.m3,.m4,.m5,.m6,.m7 { grid-column: span 1; grid-row: span 1; }
  .m1 { grid-column: span 2; }

  /* Testimonios */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-grid .testi-card:last-child { grid-column: span 1; }

  /* Footer */
  .footer-body { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ftr-legal { flex-wrap: wrap; justify-content: center; }

  /* CF */
  .cf-grid { grid-template-columns: 1fr; }
  .cf-group.full { grid-column: span 1; }
}

@media (max-width: 480px) {
  .benefits-row { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
