:root {
  --ink: #0B2027;
  --ink-soft: #123138;
  --pool: #1FA9A0;
  --pool-light: #8FE9DB;
  --sand: #EFE6D3;
  --paper: #FAF7F1;
  --coral: #E8654A;
  --text: #12262B;
  --muted: #55696C;
  --line: rgba(18, 38, 43, 0.12);

  --display: 'Fraunces', serif;
  --body: 'Work Sans', sans-serif;
  --mono: 'Space Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

em { font-style: italic; color: var(--pool); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pool-light);
  margin: 0 0 0.8rem;
}
.eyebrow--dark { color: var(--pool); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--coral); color: #fff; }
.btn--solid:hover { background: #d5573f; }
.btn--ghost { background: transparent; color: var(--paper); border: 1px solid rgba(250,247,241,0.4); }
.btn--ghost:hover { border-color: var(--pool-light); color: var(--pool-light); }
.btn--line { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--line:hover { border-color: var(--coral); color: var(--coral); }
.btn--block { width: 100%; }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5vw;
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.nav__mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--pool-light);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.8rem;
}
.nav__mark--light { background: var(--pool); color: var(--paper); }
.nav__name {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.footer .nav__name { color: var(--paper); }
.nav__name em { font-style: italic; font-size: 0.85em; color: var(--pool-light); }
.nav__right { display: flex; align-items: center; gap: 1.4rem; }
.nav__tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(250,247,241,0.75);
  letter-spacing: 0.06em;
  display: none;
}
@media (min-width: 700px) { .nav__tag { display: inline; } }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,32,39,0.55) 0%, rgba(11,32,39,0.25) 32%, rgba(11,32,39,0.92) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5vw 6.5rem;
  max-width: 780px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--paper);
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  line-height: 1.04;
  margin: 0 0 1.1rem;
}
.hero h1 em { color: var(--pool-light); font-style: italic; }
.hero__sub {
  color: rgba(250,247,241,0.82);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 46ch;
  margin: 0 0 2rem;
  line-height: 1.5;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__scroll {
  position: absolute;
  bottom: 1.6rem; right: 5vw;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(250,247,241,0.6);
  text-transform: uppercase;
}

/* Facts strip */
.facts {
  background: var(--sand);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.facts__item {
  padding: 2.4rem 1.6rem;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts__item:nth-child(2n) { border-right: none; }
@media (min-width: 760px) {
  .facts__item:nth-child(2n) { border-right: 1px solid var(--line); }
  .facts__item:last-child { border-right: none; }
  .facts__item { border-bottom: none; }
}
.facts__num {
  display: block;
  font-family: var(--mono);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.facts__item p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Plano */
.plano { background: var(--paper); padding: 6rem 5vw; }
.plano__head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.plano__head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 0 0 0.9rem;
  color: var(--ink);
}
.plano__intro { color: var(--muted); margin: 0; line-height: 1.6; }

.plano__body {
  display: grid;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .plano__body { grid-template-columns: 1.6fr 1fr; align-items: start; }
}

.plano__map {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(11,32,39,0.35);
}
.plano__map img { width: 100%; }

.hotspot {
  position: absolute;
  width: 34px; height: 34px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(250,247,241,0.92);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 10px rgba(11,32,39,0.25);
}
.hotspot:hover { transform: translate(-50%, -50%) scale(1.12); }
.hotspot.is-active {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(232,101,74,0.22);
}

.plano__panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: 18px;
  padding: 2.2rem;
  position: sticky;
  top: 6rem;
}
.panel__eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pool-light);
  margin: 0 0 0.6rem;
}
.plano__panel h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.7rem;
  margin: 0 0 0.9rem;
}
.panel__desc {
  color: rgba(250,247,241,0.78);
  line-height: 1.55;
  font-size: 0.94rem;
  margin: 0 0 1.6rem;
}
.panel__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 0.5rem;
  margin: 0 0 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(250,247,241,0.16);
}
.panel__specs dt {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250,247,241,0.55);
  margin-bottom: 0.25rem;
}
.panel__specs dd { margin: 0; font-weight: 600; }

/* Gallery */
.gallery { position: relative; }
.gallery img { width: 100%; height: 62vh; object-fit: cover; }
.gallery__caption {
  position: absolute;
  bottom: 2.4rem; left: 5vw;
  max-width: 420px;
  color: var(--paper);
}
.gallery__caption p:last-child {
  line-height: 1.55;
  color: rgba(250,247,241,0.9);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* Reservar */
.reservar {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 6rem 5vw;
}
.reservar__price {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin: 0.4rem 0 0.6rem;
  color: var(--pool-light);
}
.reservar__note { color: rgba(250,247,241,0.75); margin: 0 0 2.2rem; }
.reservar__cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.reservar__hint {
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(250,247,241,0.4);
}
.reservar__hint code { color: rgba(250,247,241,0.6); }

/* Footer */
.footer {
  background: var(--ink-soft);
  color: rgba(250,247,241,0.7);
  padding: 2.4rem 5vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
