/* =========================================================
   EXPEDIÇÃO ALPES E LAGOS — Buena Vibra
   Sistema visual "Aventura aconchegante"
   ========================================================= */

:root {
  /* Olive / mountain greens */
  --olive-900: #2b3120;
  --olive-800: #383f27;
  --olive-700: #4b5436;   /* primary */
  --olive-600: #5d6740;
  --olive-500: #74804f;
  --olive-400: #97a06e;
  --olive-300: #bcc398;
  --olive-200: #dbe0c3;
  --olive-100: #ecefdd;

  /* Warm paper / sand */
  --sand-50:  #faf6ec;
  --sand-100: #f4eedd;
  --sand-200: #eae2cd;
  --sand-300: #ded0b3;

  /* Accent — terracotta / clay */
  --clay-600: #a8522d;
  --clay-500: #c2663b;
  --clay-400: #d3855b;
  --clay-100: #f3ddcc;

  /* Ink */
  --ink:       #2a2820;
  --ink-soft:  #5c5747;
  --ink-faint: #8b8675;

  --white: #ffffff;
  --card:  #fffdf7;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-xl: 36px;

  --shadow-sm: 0 2px 10px rgba(43, 49, 32, 0.06);
  --shadow-md: 0 14px 40px rgba(43, 49, 32, 0.10);
  --shadow-lg: 0 30px 70px rgba(43, 49, 32, 0.16);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --serif: "Spectral", Georgia, serif;
  --sans: "Figtree", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section > .wrap { position: relative; z-index: 1; }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-500);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--clay-400);
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--olive-900); letter-spacing: -0.01em; }
.h-display { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; line-height: 1.02; }
.h-section { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 500; }
.h-sub { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 600; }
em.accent { font-style: italic; color: var(--clay-500); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 60ch; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head .h-section { margin-top: 18px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--clay-500);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 24px rgba(168, 82, 45, 0.28);
  line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); background: var(--clay-600); box-shadow: 0 16px 30px rgba(168, 82, 45, 0.34); }
.btn svg { width: 20px; height: 20px; }
.btn.ghost {
  --bg: transparent; --fg: var(--olive-800);
  border: 1.5px solid var(--olive-300);
  box-shadow: none;
}
.btn.ghost:hover { background: var(--olive-100); border-color: var(--olive-400); }
.btn.olive { --bg: var(--olive-700); box-shadow: 0 10px 24px rgba(75,84,54,.28); }
.btn.olive:hover { --bg: var(--olive-800); }
.btn.lg { padding: 19px 36px; font-size: 1.08rem; }

/* ---------- Logo corner ---------- */
.logo-corner {
  position: fixed; top: 18px; left: 18px; z-index: 65;
  display: inline-flex; align-items: center;
  background: rgba(255, 253, 247, 0.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(75,84,54,0.12);
  padding: 8px; border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.logo-corner:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.logo-corner img { height: 38px; width: auto; border-radius: 8px; display: block; mix-blend-mode: multiply; }

/* ---------- Mountain graphics ---------- */
/* Layered range silhouette (sits at the foot of a section) */
.mtn-range { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; pointer-events: none; line-height: 0; }
.mtn-range svg { width: 100%; height: auto; display: block; }
.m-far  { fill: var(--olive-200); }
.m-mid  { fill: var(--olive-400); }
.m-near { fill: var(--olive-700); }
.m-snow { fill: var(--sand-50); }

/* Divider where a light section meets a dark one — peaks rise into the light */
.mtn-divider { position: absolute; left: 0; right: 0; top: 0; transform: translateY(-99%); z-index: 2; line-height: 0; pointer-events: none; }
.mtn-divider svg { width: 100%; height: clamp(70px, 9vw, 130px); display: block; }
.mtn-divider .peak-far  { fill: var(--olive-500); opacity: .55; }
.mtn-divider .peak-near { fill: currentColor; }
.stats .mtn-divider     { color: var(--olive-800); }
.pricing .mtn-divider   { color: var(--olive-900); }
.final-cta .mtn-divider { color: var(--olive-800); }

/* Small peak glyph for eyebrows */
.eyebrow .peak { display: inline-block; }
.eyebrow .peak svg { width: 16px; height: 12px; display: block; }

/* Corner peak watermark inside light sections */
.mtn-watermark { position: absolute; top: clamp(30px, 5vw, 64px); width: clamp(180px, 22vw, 300px); height: auto; pointer-events: none; z-index: 0; color: var(--olive-300); opacity: .45; }
.mtn-watermark.wm-right { right: clamp(10px, 3vw, 48px); }
.mtn-watermark.wm-left  { left: clamp(10px, 3vw, 48px); }
.mtn-watermark svg { width: 100%; height: auto; display: block; }
@media (max-width: 760px) { .mtn-watermark { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(70px, 8vw, 110px); padding-bottom: clamp(150px, 18vw, 250px); overflow: hidden; }
.hero .topo { opacity: 0.16; }
.hero .mtn-range svg { height: clamp(120px, 17vw, 230px); }
.topo {
  position: absolute; inset: 0; z-index: 0;
  color: var(--olive-300);
  opacity: 0.45;
  pointer-events: none;
}
.topo svg { width: 100%; height: 100%; }
.hero .wrap { position: relative; z-index: 2; }
.hero-logo-mobile { display: none; }
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}
.hero-top    { text-align: center; max-width: 680px; width: 100%; }
.hero-bottom { text-align: center; width: 100%; }
.hero-media  { width: 100%; max-width: 680px; }
.hero-flags { display: inline-flex; gap: 8px; font-size: 1.35rem; margin-bottom: 22px; justify-content: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .sm { display: block; font-size: 0.42em; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-500); font-family: var(--sans); margin-bottom: 14px; }
.hero .lead { margin-bottom: 0; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.hero-note { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--ink-soft); margin-top: 22px; font-weight: 600; justify-content: center; }
.hero-note .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--clay-500); box-shadow: 0 0 0 4px var(--clay-100); }

/* VTurb player wrapper */
.vturb-wrap {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  line-height: 0;
}

/* ---------- Facts strip ---------- */
.facts {
  background: var(--olive-800);
  color: var(--olive-100);
  position: relative;
  z-index: 3;
}
.facts .wrap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding-block: 34px; }
.fact { text-align: center; padding: 6px 10px; position: relative; }
.fact + .fact::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 42px; width: 1px; background: rgba(255,255,255,.14); }
.fact b { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2.1rem); color: #fff; font-weight: 500; line-height: 1; }
.fact span { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive-300); margin-top: 8px; }

/* ---------- Why cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.why-card {
  background: var(--card);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-badge {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--olive-100); color: var(--olive-700);
  display: grid; place-items: center; margin-bottom: 20px;
}
.icon-badge svg { width: 28px; height: 28px; }
.why-card h4 { font-size: 1.22rem; margin-bottom: 10px; font-weight: 600; }
.why-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Roteiro / timeline ---------- */
.roteiro { background: var(--sand-100); }
.timeline { margin-top: 60px; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(var(--olive-300), var(--olive-200));
}
.day { position: relative; padding-left: 86px; padding-bottom: 38px; }
.day:last-child { padding-bottom: 0; }
.day-marker {
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--olive-700); color: #fff;
  display: grid; place-items: center; text-align: center;
  box-shadow: 0 0 0 6px var(--sand-100), var(--shadow-sm);
  z-index: 2;
}
.day-marker small { display: block; font-size: 0.56rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; line-height: 1; }
.day-marker b { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; line-height: 1; }
.day-card {
  background: var(--card); border: 1px solid var(--sand-200);
  border-radius: var(--r-md); padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 1fr; gap: 4px;
}
.day-card.has-img { grid-template-columns: 200px 1fr; gap: 24px; overflow: hidden; padding: 0; }
.day-card.has-img .day-img { background-size: cover; background-position: center; min-height: 160px; }
.day-card.has-img .day-body { padding: 24px 26px; }
.day-flag { font-size: 0.78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-500); margin-bottom: 4px; }
.day-card h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 8px; }
.day-card p { color: var(--ink-soft); font-size: 0.95rem; }
.day-card p + p { margin-top: 10px; }

/* ---------- Experience blocks ---------- */
.exp-block { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 5vw, 76px); }
.exp-block + .exp-block { margin-top: clamp(60px, 8vw, 110px); }
.exp-block.flip .exp-media { order: 2; }
.exp-media {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4/3; position: relative;
}
.exp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.exp-block:hover .exp-media img { transform: scale(1.04); }
.exp-media .tag {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(43,49,32,.7); color: #fff; backdrop-filter: blur(6px);
  font-size: 0.78rem; font-weight: 600; padding: 8px 14px; border-radius: 999px;
}
.exp-text .num { font-family: var(--serif); font-size: 2.4rem; color: var(--olive-300); line-height: 1; margin-bottom: 10px; font-weight: 500; }
.exp-text h3 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 500; margin-bottom: 16px; }
.exp-text p { color: var(--ink-soft); font-size: 1.04rem; }

/* ---------- Stats ---------- */
.stats { background: var(--olive-800); color: #fff; }
.stats { position: relative; }
.stats .topo { color: var(--olive-600); opacity: .5; }
.stats .wrap { position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 48px; }
.stat { text-align: center; padding: 16px; }
.stat b { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 500; color: #fff; line-height: 1; display: block; }
.stat .ph { color: var(--olive-300); border-bottom: 2px dashed var(--olive-500); padding-bottom: 2px; }
.stat span { display: block; margin-top: 14px; font-size: 0.92rem; color: var(--olive-200); }
.stats .h-section { color: #fff; }
.stats .eyebrow { color: var(--clay-400); }

/* ---------- Included grid ---------- */
.incl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.incl-card {
  background: var(--card); border: 1px solid var(--sand-200);
  border-radius: var(--r-md); padding: 26px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.incl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--olive-300); }
.incl-ico {
  flex: none; width: 50px; height: 50px; border-radius: 12px;
  background: var(--olive-100); color: var(--olive-700);
  display: grid; place-items: center;
}
.incl-ico svg { width: 26px; height: 26px; }
.incl-card h4 { font-size: 1.08rem; font-weight: 600; margin-bottom: 5px; line-height: 1.2; }
.incl-card p { font-size: 0.88rem; color: var(--ink-soft); }
.incl-tag {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 40px;
  background: var(--olive-100); color: var(--olive-800);
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.tmix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: stretch;
}
.tmix-item { display: flex; flex-direction: column; }
.tmix-item.is-video { min-height: 260px; }
.yt-thumb {
  display: block;
  flex: 1;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}
.yt-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.yt-thumb:hover img { transform: scale(1.04); }
.yt-play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 60%);
  transition: background .3s;
}
.yt-play svg { width: 64px; height: 64px; filter: drop-shadow(0 3px 12px rgba(0,0,0,.5)); transition: transform .25s; }
.yt-thumb:hover .yt-play svg { transform: scale(1.1); }
.yt-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  color: rgba(255,255,255,.4);
  font-size: 0.88rem; font-family: var(--sans);
}
.yt-ph .yt-icon { width: 54px; height: 54px; }
.tcard {
  background: var(--card);
  border: 1px solid var(--olive-200);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  height: 100%;
  box-sizing: border-box;
}
.tcard .stars { color: var(--clay-500); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 18px; }
.tcard blockquote { font-family: var(--serif); font-size: 1.08rem; line-height: 1.7; color: var(--ink); font-style: italic; flex: 1; margin: 0; }
.tcard .who {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--sand-200);
  display: flex; align-items: center; gap: 14px;
}
.tcard .who-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sand-300); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: .5px;
  overflow: hidden;
}
.tcard .who-av img { width: 100%; height: 100%; object-fit: cover; }
.tcard .who .n { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.tcard .who .r { font-size: 0.8rem; color: var(--ink-faint); margin-top: 2px; }

/* ---------- Guides ---------- */
.s-guides { background: var(--olive-100); }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.guide-card {
  background: var(--card);
  border: 1px solid var(--olive-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.guide-photo {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--olive-200);
}
.guide-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.guide-card:hover .guide-photo img { transform: scale(1.04); }
.guide-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--olive-600);
  text-transform: uppercase; letter-spacing: 1px;
}
.guide-info { padding: 28px 28px 32px; }
.guide-role {
  font-size: 0.75rem; font-weight: 700;
  color: var(--clay-500);
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 8px;
}
.guide-name {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.guide-bio { font-size: 0.95rem; line-height: 1.65; color: var(--ink-soft); }

/* ---------- Unique ---------- */
.unique-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 50px; }
.unique-card {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--sand-200);
  border-radius: var(--r-md); padding: 30px 30px;
  box-shadow: var(--shadow-sm);
}
.unique-card .n { font-family: var(--serif); font-size: 2rem; color: var(--clay-400); line-height: 1; flex: none; width: 48px; }
.unique-card h4 { font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
.unique-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Pricing ---------- */
.pricing { background: var(--olive-900); color: #fff; position: relative; }
.pricing .topo { color: var(--olive-700); opacity: .6; }
.pricing .wrap { position: relative; z-index: 2; }
.pricing .h-section, .pricing .eyebrow { color: #fff; }
.pricing .eyebrow { color: var(--clay-400); }
.pricing .section-head p { color: var(--olive-200); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; align-items: start; }
.price-card {
  background: var(--card); color: var(--ink);
  border-radius: var(--r-lg); padding: 34px 30px;
  position: relative; box-shadow: var(--shadow-md);
}
.price-card.feature { transform: translateY(-12px); box-shadow: var(--shadow-lg); border: 2px solid var(--clay-400); }
.price-flag { font-size: 0.74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-500); }
.price-card h3 { font-size: 1.3rem; font-weight: 600; margin: 6px 0 18px; }
.price-best {
  position: absolute; top: -14px; right: 24px;
  background: var(--clay-500); color: #fff; font-size: 0.72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.price-was { color: var(--ink-faint); text-decoration: line-through; font-size: 0.95rem; }
.price-now { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--olive-900); line-height: 1; margin: 4px 0 2px; }
.price-now small { font-size: 0.9rem; color: var(--ink-soft); font-family: var(--sans); font-weight: 600; }
.price-per { font-size: 0.88rem; color: var(--ink-faint); margin-bottom: 22px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.93rem; color: var(--ink-soft); }
.price-list li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--olive-600); }
.price-card .btn { width: 100%; justify-content: center; }
.price-card.soon { opacity: .92; }
.price-card.soon .price-now { color: var(--ink-soft); }
.soon-pill { display: inline-block; background: var(--sand-200); color: var(--ink-soft); font-size: 0.74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; text-align: center; width: 100%; }

/* ---------- Payment & dates ---------- */
.pay-dates { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 28px; margin-top: 54px; align-items: stretch; }
.pay-card, .dates-card { background: var(--card); border: 1px solid var(--sand-200); border-radius: var(--r-lg); padding: 38px 36px; box-shadow: var(--shadow-sm); }
.pay-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 18px; color: var(--ink-soft); }
.dates-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 22px; }
.pay-steps { display: flex; flex-direction: column; gap: 12px; }
.pay-step { display: flex; gap: 14px; align-items: flex-start; }
.pay-step .pn { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--sand-200); color: var(--ink-soft); display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; font-family: var(--serif); }
.pay-step p { color: var(--ink-faint); font-size: 0.88rem; }
.pay-step b { color: var(--ink-soft); }
.dates-card { background: var(--olive-700); color: #fff; border: none; display: flex; flex-direction: column; }
.dates-card h3 { color: #fff; }
.dates-card .when { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; margin-bottom: 6px; }
.dates-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.date-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: rgba(255,255,255,.12); border-radius: 8px; padding: 13px 16px; }
.date-info { display: flex; flex-direction: column; gap: 3px; }
.date-label { font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; }
.date-range { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; opacity: .9; }
.date-avail { font-size: 0.82rem; font-weight: 700; background: rgba(255,255,255,.22); border-radius: 6px; padding: 5px 12px; white-space: nowrap; opacity: .95; }
.dates-card .remaining { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); color: #fff; padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: 0.86rem; margin-top: auto; }
.dates-card .remaining .blink { width: 9px; height: 9px; border-radius: 50%; background: var(--clay-400); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(211,133,91,.6);} 50%{ box-shadow: 0 0 0 7px rgba(211,133,91,0);} }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 50px auto 0; }
details.qa {
  background: var(--card); border: 1px solid var(--sand-200);
  border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
details.qa[open] { box-shadow: var(--shadow-sm); border-color: var(--olive-300); }
details.qa summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--serif); font-weight: 600; font-size: 1.12rem; color: var(--olive-900);
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary .chev { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--olive-100); color: var(--olive-700); display: grid; place-items: center; transition: transform .25s, background .2s; }
details.qa[open] summary .chev { transform: rotate(45deg); background: var(--clay-500); color: #fff; }
details.qa .qa-body { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.98rem; }
details.qa .qa-body p + p { margin-top: 10px; }
details.qa .qa-body ul { margin: 8px 0 0 18px; }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; background: var(--olive-800); color: #fff; text-align: center; }
.final-cta .topo { color: var(--olive-600); opacity: .55; }
.final-cta .wrap { position: relative; z-index: 2; max-width: 820px; }
.final-cta .hero-flags { justify-content: center; }
.final-cta h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 500; margin-bottom: 20px; }
.final-cta p { color: var(--olive-200); font-size: 1.1rem; max-width: 56ch; margin: 0 auto 32px; }
.final-cta .btn { font-size: 1.1rem; }
.final-cta .sub-note { margin-top: 18px; font-size: 0.86rem; color: var(--olive-300); }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-900); color: var(--olive-200); padding-block: 56px 30px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { max-width: 360px; }
.footer-brand img { height: 48px; border-radius: 8px; margin-bottom: 18px; }
.footer-brand p { color: var(--olive-300); font-size: 0.92rem; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--olive-400); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--olive-200); font-size: 0.94rem; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.82rem; color: var(--olive-400); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  background: #2bb04a; color: #fff; width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Reveal animation ---------- */
/* Visible by default (no-JS, reduced-motion, print, frozen-compositor captures). */
.reveal { opacity: 1; transform: none; }
/* Animate only when JS is on AND the user is fine with motion. */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  html.js .reveal.in { opacity: 1; transform: none; }
}
/* Hard lock to the visible end-state — never depends on a transition completing. */
html.js .reveal.shown { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .logo-corner { display: none; }
  .hero-logo-mobile {
    display: flex;
    justify-content: center;
    order: 1;
  }
  .hero-logo-mobile img {
    height: 44px;
    width: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    mix-blend-mode: multiply;
  }
  .hero-top    { order: 2; }
  .hero-media  { order: 3; }
  .hero-bottom { order: 4; }
  .facts .wrap { grid-template-columns: repeat(3, 1fr); gap: 18px 8px; }
  .fact:nth-child(4)::before, .fact:nth-child(n+4)::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .incl-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tmix-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .unique-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.feature { transform: none; }
  .pay-dates { grid-template-columns: 1fr; }
  .exp-block { grid-template-columns: 1fr; }
  .exp-block.flip .exp-media { order: -1; }
  .header-nav { display: none; }
}
@media (max-width: 768px) {
  .hero { padding-top: calc(clamp(70px, 8vw, 110px) - 30px); }
  .hero-logo-mobile { margin-top: -30px; }
}
@media (max-width: 560px) {
  .why-grid, .incl-grid, .stats-grid, .tmix-grid, .guide-grid { grid-template-columns: 1fr; }
  .facts .wrap { grid-template-columns: 1fr 1fr; }
  .fact::before { display: none !important; }
  .day { padding-left: 70px; }
  .day-card.has-img { grid-template-columns: 1fr; }
  .day-card.has-img .day-img { min-height: 180px; }
  .timeline::before { left: 24px; }
  .day-marker { width: 50px; height: 50px; }
  .brand-txt span { display: none; }
}
