/* ============================================================
   ESCAPE POASITO — Stylesheet
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #1a3d2b;
  --green:       #2d6a4f;
  --green-mid:   #40916c;
  --green-light: #74c69d;
  --green-pale:  #d8f3dc;
  --cream:       #faf7f2;
  --white:       #ffffff;
  --gray-light:  #f4f4f0;
  --gray:        #888;
  --text:        #1c2b22;
  --text-light:  #4a5c52;
  --orange:      #e07b39;
  --wa-green:    #25d366;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.15);

  --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }
.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.container--split-rev { direction: rtl; }
.container--split-rev > * { direction: ltr; }

.section { padding: 96px 0; }
.section--dark  { background: var(--green-dark); color: var(--white); }
.section--gray  { background: var(--gray-light); }
.section--green { background: var(--green); color: var(--white); }

.section__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__header--center { text-align: center; }
.section__header p { color: var(--text-light); font-size: 1.05rem; margin-top: 14px; }
.section--dark  .section__header p,
.section--green .section__header p { color: rgba(255,255,255,.75); }

.section__tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section__tag--light { background: rgba(255,255,255,.15); color: var(--white); }

h1,h2,h3 { font-family: var(--font-serif); line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 99px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary  { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn--outline  { background: transparent; border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--green-dark); }

.btn--outline-dark { background: transparent; border-color: var(--green); color: var(--green); }
.btn--outline-dark:hover { background: var(--green); color: var(--white); }
.btn--white { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn--white:hover { background: var(--green-pale); }

.btn--cta { background: var(--green-light); color: var(--green-dark); font-weight: 700; }
.btn--cta:hover { background: var(--green-pale); transform: translateY(-1px); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(26,61,43,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav__logo-leaf { font-size: 1.4rem; }
.nav__logo-img { height: 44px; width: auto; display: block; }
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover { color: var(--green-light); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  letter-spacing: .05em;
}
.lang-toggle:hover { background: rgba(255,255,255,.25); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.60) 0%, rgba(10,30,20,.65) 50%, rgba(10,30,20,.45) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}
.hero__eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.65);
}
.hero__subtitle {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-hint span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.15); }
}

/* ---------- HIGHLIGHTS BAR ---------- */
.highlights {
  background: var(--green-dark);
  padding: 0;
}
.highlights__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
  color: var(--white);
}
.highlight:last-child { border-right: none; }
.highlight__icon { font-size: 2rem; flex-shrink: 0; }
.highlight strong { display: block; font-size: .95rem; font-weight: 600; }
.highlight small  { font-size: .8rem; color: var(--green-light); }

/* ---------- CARDS (Senderos) ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__img-wrap img { transform: scale(1.05); }
.card__body { padding: 28px; }
.card__body h3 { margin: 10px 0 14px; }

.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.badge--green  { background: var(--green-pale); color: var(--green-dark); }
.badge--orange { background: #fde8d4; color: #8b3a05; }

.trail-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: .9rem;
  color: var(--text-light);
}
.card__body p { font-size: .93rem; color: var(--text-light); }

/* ---------- SPLIT sections ---------- */
.split__text { display: flex; flex-direction: column; gap: 16px; }
.split__text h2 { margin-bottom: 4px; }
.split__text p { color: var(--text-light); font-size: 1rem; }
.section--dark .split__text p { color: rgba(255,255,255,.75); }

.split__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { font-size: .95rem; color: rgba(255,255,255,.85); }

/* ---------- MENU completo ---------- */
.menu-full { margin-top: 56px; }

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--gray-mid, #e5e7eb);
  margin-bottom: 32px;
}
.menu-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 18px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: color .2s, border-color .2s;
  border-radius: 4px 4px 0 0;
}
.menu-tab:hover { color: var(--green-dark); }
.menu-tab.active {
  color: var(--green-dark);
  border-bottom-color: var(--green-dark);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-cat-note {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 20px;
  padding: 10px 16px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--green-mid, #4a7c59);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}

.menu-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid rgba(0,0,0,.05);
  transition: box-shadow .2s;
}
.menu-card:hover { box-shadow: var(--shadow); }
.menu-card--special {
  border-color: var(--green-mid, #4a7c59);
  background: rgba(74,124,89,.07);
}
.menu-card__info { flex: 1; }
.menu-card__name {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.menu-card__desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.4;
}
.menu-card__price {
  font-weight: 700;
  font-size: .9rem;
  color: var(--green-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery__item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 16/7; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery__item:hover img { transform: scale(1.04); }

.gallery__social {
  margin-top: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.gallery__social p { color: var(--text-light); }
.gallery__social-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- LOCATION ---------- */
.location {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.location__info { display: flex; flex-direction: column; gap: 16px; }
.location__card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.location__card h3 { font-family: var(--font-sans); font-size: 1rem; margin-bottom: 8px; color: var(--green-dark); }
.location__card p  { font-size: .9rem; color: var(--text-light); }
.location__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

/* ---------- CONTACT ---------- */
.contact-options {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all .2s;
}
.contact-btn--wa { background: var(--wa-green); color: var(--white); }
.contact-btn--wa:hover { background: #1ebe5c; transform: translateY(-2px); }
.contact-btn--fb { background: #1877f2; color: var(--white); }
.contact-btn--fb:hover { background: #1464d0; transform: translateY(-2px); }
.contact-btn--ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #515bd4);
  color: var(--white);
}
.contact-btn--ig:hover { opacity: .9; transform: translateY(-2px); }
.contact-btn--tt { background: #010101; color: var(--white); }
.contact-btn--tt:hover { background: #333; transform: translateY(-2px); }

/* ---------- GRUPOS & PAQUETES ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.pkg-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .2s;
}
.pkg-card:hover { background: rgba(255,255,255,.16); }
.pkg-card--featured {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e87722;
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.pkg-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pkg-icon { font-size: 2rem; flex-shrink: 0; }
.pkg-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2px;
}
.pkg-tagline { font-size: .82rem; color: rgba(255,255,255,.65); }
.pkg-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pkg-includes li { font-size: .88rem; color: rgba(255,255,255,.85); }
.pkg-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.pkg-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.pkg-price-sub { font-size: .78rem; color: rgba(255,255,255,.6); margin-left: 6px; }
.pkg-savings {
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
}
.pkg-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pkg-min {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
@media (max-width: 640px) {
  .pkg-grid { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
  padding: 48px 24px 24px;
  text-align: center;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 20px;
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__brand p { font-family: var(--font-sans); font-size: .8rem; color: rgba(255,255,255,.5); margin-left: 4px; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links a { font-size: .85rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer__links a:hover { color: var(--green-light); }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.7);
  transition: all .2s;
}
.footer__social a:hover { background: var(--green-mid); border-color: var(--green-mid); color: var(--white); }
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px; height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .container--split,
  .container--split-rev { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .container--split-rev > * { direction: ltr; }
  .split__img { aspect-ratio: 16/9; }

  .location { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .highlights__inner { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; gap: 0; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--green-dark);
    padding: 16px 24px 24px;
  }
  .nav__links.open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hamburger { display: flex; }
  .nav__actions .btn--cta { display: none; }
  .nav.scrolled .nav__links.open { top: var(--nav-h); }
  .nav { background: rgba(26,61,43,.9); }

  .section { padding: 64px 0; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .hero__ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 520px) {
  .highlights__inner { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; aspect-ratio: 16/9; }
  .contact-options { flex-direction: column; align-items: stretch; }
  .contact-btn { justify-content: center; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__links { justify-content: center; }
}
