/* ---------- Base ---------- */
:root {
  --ink: #1b2a22;
  --ink-soft: #3b4b42;
  --muted: #6e7a71;
  --paper: #faf5ec;
  --paper-2: #f3ead9;
  --cream: #fffbf1;
  --line: rgba(27, 42, 34, 0.12);
  --line-strong: rgba(27, 42, 34, 0.2);
  --green: #1f4a37;
  --green-2: #0f3326;
  --terracotta: #b35a3c;
  --terracotta-2: #8d4125;
  --sand: #e6d3a9;
  --gold: #c89b46;
  --wa: #25d366;
  --wa-dark: #128c4b;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 6px 18px rgba(18, 32, 25, 0.08);
  --shadow-md: 0 18px 40px rgba(18, 32, 25, 0.12);
  --shadow-lg: 0 30px 80px rgba(18, 32, 25, 0.22);
  --container: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--green-2);
}

.serif-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-lg {
  padding: 16px 26px;
  font-size: 16px;
}

.btn-whatsapp {
  background: var(--wa);
  color: white;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover { background: var(--wa-dark); }

.btn-ghost {
  background: transparent;
  color: var(--green-2);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--cream); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 2px 24px rgba(18, 32, 25, 0.08);
  padding: 10px 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}
.nav.is-scrolled .brand { color: var(--green-2); }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: white;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 20px;
}
.brand-name {
  font-size: 18px;
  font-family: "Fraunces", serif;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: color 0.3s ease;
}
.nav.is-scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--terracotta); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.lang-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.is-scrolled .lang-toggle {
  background: var(--paper-2);
  border-color: var(--line);
}
.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav.is-scrolled .lang-btn { color: var(--ink-soft); }
.lang-btn.is-active {
  background: white;
  color: var(--green-2);
}
.nav.is-scrolled .lang-btn.is-active { background: var(--green-2); color: white; }

.nav-cta { font-size: 14px; padding: 10px 16px; }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-burger span {
  width: 18px; height: 2px; background: white; border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav.is-scrolled .nav-burger {
  border-color: var(--line);
  background: var(--paper-2);
}
.nav.is-scrolled .nav-burger span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: white;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 51, 38, 0.45) 0%, rgba(15, 51, 38, 0.15) 35%, rgba(15, 51, 38, 0.85) 100%),
    linear-gradient(90deg, rgba(15, 51, 38, 0.4) 0%, rgba(15, 51, 38, 0) 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(179, 90, 60, 0.24);
}
.hero-title {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  font-weight: 500;
  color: white;
  letter-spacing: -0.02em;
  max-width: 1000px;
}
.hero-title-line {
  display: block;
  animation: fadeUp 0.9s ease both;
}
.hero-title-line:nth-child(2) { animation-delay: 0.1s; color: var(--sand); }

.hero-lead {
  margin: 24px 0 36px;
  max-width: 620px;
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  animation: fadeUp 1s ease both;
  animation-delay: 0.15s;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease both;
  animation-delay: 0.25s;
}
.hero-ctas .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.hero-ctas .btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 36px;
  animation: fadeUp 1.1s ease both;
  animation-delay: 0.35s;
}
.stat-num {
  font-family: "Fraunces", serif;
  font-size: 34px;
  font-weight: 500;
  color: white;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll .line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(1.4); opacity: 1; }
}

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

/* ---------- Sections ---------- */
.section {
  padding: 120px 0;
  position: relative;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 18px;
}
.section-eyebrow.light { color: var(--sand); }

.section-title {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.section-title > span { display: block; }
.section-title > span:nth-child(2) { font-style: italic; font-weight: 400; color: var(--terracotta); }

.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}
.section-lead {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
}

/* ---------- About ---------- */
.section-about {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-media:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 251, 241, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.badge-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 4px;
}
.badge-name {
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: var(--green-2);
  font-weight: 500;
}

.about-copy p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 560px;
}

.about-points {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-points li {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.point-ico {
  font-size: 22px;
  line-height: 1;
}
.about-points strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 16px;
  color: var(--green-2);
  font-weight: 500;
  margin-bottom: 2px;
}
.about-points span {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Tours ---------- */
.section-tours {
  background: var(--paper-2);
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.tour-card {
  grid-column: span 2;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.tour-card.tour-lg { grid-column: span 3; }
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tour-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.tour-lg .tour-media { aspect-ratio: 16 / 9; }
.tour-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.tour-card:hover .tour-media img { transform: scale(1.06); }
.tour-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tour-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.tour-tag {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(179, 90, 60, 0.1);
  color: var(--terracotta-2);
}
.tour-duration {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.tour-title {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
}
.tour-body p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.tour-link {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-2);
  letter-spacing: 0.02em;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tour-link:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

.tours-note {
  margin-top: 48px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--green-2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.tours-note .kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 6px;
  font-weight: 700;
}
.tours-note strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 4px;
}
.tours-note span:last-of-type {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Gallery ---------- */
.section-gallery {
  background: var(--paper);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  background: var(--paper-2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.95);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- TikTok ---------- */
.section-tiktok {
  background: var(--paper-2);
}
.tiktok-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.tiktok-profile-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  background: #000;
  color: white;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tiktok-profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(37, 244, 238, 0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(254, 44, 85, 0.24), transparent 50%);
  pointer-events: none;
}
.tiktok-profile-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.tiktok-profile-card > * { position: relative; z-index: 1; }
.tiktok-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: white;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tiktok-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
  font-weight: 700;
}
.tiktok-handle {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  color: white;
}
.tiktok-arrow {
  margin-left: auto;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, color 0.2s ease;
}
.tiktok-profile-card:hover .tiktok-arrow {
  color: white;
  transform: translateX(4px);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--green-2);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.video-card video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-card .tt-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}
.video-card .tt-badge svg { width: 12px; height: 12px; }

.videos-grid .tiktok-embed-wrap {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  min-height: 540px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.videos-grid blockquote.tiktok-embed {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
}

/* ---------- Contact ---------- */
.section-contact {
  position: relative;
  padding: 140px 28px;
  color: white;
  overflow: hidden;
}
.contact-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.contact-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 51, 38, 0.88) 0%, rgba(15, 51, 38, 0.6) 100%);
}
.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.contact-title {
  font-size: clamp(36px, 5vw, 62px);
  color: white;
  line-height: 1.05;
  margin: 10px 0 20px;
  letter-spacing: -0.02em;
}
.contact-title > span { display: block; }
.contact-title > span:nth-child(2) { color: var(--sand); }
.contact-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 36px;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.contact-sub {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-2);
  color: rgba(255, 255, 255, 0.78);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .brand-mark { background: var(--terracotta); }
.footer-name {
  font-family: "Fraunces", serif;
  font-size: 20px;
  color: white;
  font-weight: 500;
}
.footer-sub { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}
.footer-links a { color: rgba(255, 255, 255, 0.82); }
.footer-links a:hover { color: var(--sand); }
.footer-meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 16, 12, 0.94);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }

/* ---------- Floating WA ---------- */
.fab-whatsapp {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
  z-index: 40;
  transition: transform 0.2s ease, background 0.2s ease;
  animation: pulseWa 2.4s ease-in-out infinite;
}
.fab-whatsapp:hover { transform: scale(1.06); background: var(--wa-dark); }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav.mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
  }
  .nav.mobile-open .nav-links a {
    padding: 14px 28px;
    color: var(--ink);
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav.mobile-open .nav-links a::after { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 480px; margin: 0 auto; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-card, .tour-card.tour-lg { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .tiktok-head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
}

@media (max-width: 680px) {
  .section { padding: 80px 0; }
  .hero { padding: 120px 0 80px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-scroll { display: none; }
  .about-points { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .videos-grid { grid-template-columns: 1fr; }
  .tours-note { flex-direction: column; align-items: flex-start; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px; }
  .footer-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .fab-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
