/* ============================================================
   QUANDO VIAJAMOS — Landing "Egito + Hurghada"
   Sistema visual oficial (Poppins · Azul-Céu · Creme editorial)
   3 direções comutáveis: .dir-editorial / .dir-imersivo / .dir-sereno
   ============================================================ */

/* ---------- TOKENS DA MARCA ---------- */
:root {
  /* Cores primárias */
  --qv-blue: #30afff;
  --qv-blue-deep: #1e8ed4;
  --qv-blue-dark: #0d5a8a;
  --qv-blue-soft: #8fd4ff;
  --qv-blue-mist: #d6edff;
  --qv-cream: #fdfbf8;
  --qv-cream-warm: #f7f3ec;
  --qv-white: #ffffff;

  /* Neutros */
  --qv-ink: #12161d;
  --qv-charcoal: #1a2332;
  --qv-slate: #2b3545;
  --qv-muted: #6b7685;
  --qv-fog: #f1f4f7;
  --qv-smoke: #e8ecf0;

  --qv-success: #16a34a;
  --qv-danger: #c0392b;

  /* Papéis semânticos (sobrescritos por direção) */
  --accent: var(--qv-blue);
  --accent-deep: var(--qv-blue-deep);

  --page-bg: var(--qv-cream);
  --section-alt: var(--qv-cream-warm);
  --card-bg: var(--qv-white);
  --ink: var(--qv-ink);
  --fg-2: rgba(18, 22, 29, 0.66);
  --fg-3: rgba(18, 22, 29, 0.44);
  --border: rgba(18, 22, 29, 0.10);
  --border-soft: rgba(18, 22, 29, 0.07);

  --hero-overlay: linear-gradient(180deg, rgba(8,18,30,.18) 0%, rgba(8,18,30,.30) 45%, rgba(8,18,30,.74) 100%);
  --card-shadow: 0 18px 50px rgba(18, 22, 29, 0.10);
  --card-radius: 20px;
  --rule-style: thin; /* informativo */

  /* Tipografia */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: 22px;
  --section-y: clamp(56px, 9vw, 116px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- DIREÇÃO: SERENO (azul névoa, claro e arejado) ---------- */
body.dir-sereno {
  --page-bg: #f3f9ff;
  --section-alt: var(--qv-blue-mist);
  --card-bg: #ffffff;
  --border: rgba(13, 90, 138, 0.12);
  --border-soft: rgba(13, 90, 138, 0.08);
  --card-shadow: 0 20px 48px rgba(30, 142, 212, 0.14);
  --hero-overlay: linear-gradient(180deg, rgba(13,40,70,.12) 0%, rgba(13,40,70,.22) 50%, rgba(13,40,70,.62) 100%);
}

/* ---------- DIREÇÃO: IMERSIVO (foto protagonista, cinematográfico) ---------- */
body.dir-imersivo {
  --page-bg: #0f1620;
  --section-alt: #141d29;
  --card-bg: #18222f;
  --ink: #f4f7fb;
  --fg-2: rgba(244, 247, 251, 0.72);
  --fg-3: rgba(244, 247, 251, 0.48);
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.07);
  --card-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --hero-overlay: linear-gradient(180deg, rgba(6,12,20,.30) 0%, rgba(6,12,20,.42) 40%, rgba(6,12,20,.86) 100%);
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Tipos utilitários ---------- */
.eyebrow {
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.dir-imersivo .eyebrow { color: var(--qv-blue-soft); }

.rule {
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
}

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .rule.center { margin-inline: auto; }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.06; margin: 0; }

.section-title {
  font-size: clamp(2rem, 6vw, 3.3rem);
  margin: 0 0 14px;
}
.section-sub {
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  color: var(--fg-2);
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}
.accent { color: var(--accent); }
.dir-imersivo .accent { color: var(--qv-blue-soft); }

section { padding-block: var(--section-y); }
section.alt { background: var(--section-alt); }
.dir-imersivo section.alt { background: var(--section-alt); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--gutter);
  background: color-mix(in srgb, var(--page-bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: background .3s var(--ease);
}
.site-header .logo { height: 30px; width: auto; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(48,175,255,.28);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(48,175,255,.4); }
.header-cta svg { width: 17px; height: 17px; }
.header-cta .label-long { display: none; }
@media (min-width: 620px) { .header-cta .label-long { display: inline; } .header-cta .label-short { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(155deg, var(--accent-deep) 0%, #0d5a8a 58%, #08344e 100%);
}
.hero .hero-media,
.hero image-slot.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--hero-overlay);
}
.hero-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(40px, 8vw, 92px);
  color: #fff;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.chip.solid {
  background: rgba(255,255,255,0.95);
  color: var(--qv-blue-dark);
  border-color: transparent;
}
.chip .star { color: #ffc34d; letter-spacing: -1px; }
.hero h1 {
  font-size: clamp(3rem, 13vw, 6.4rem);
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-shadow: 0 4px 40px rgba(0,0,0,0.35);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(1.08rem, 3.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 640px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.04rem;
  padding: 17px 30px;
  border-radius: 999px;
  border: 0;
  line-height: 1;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  min-height: 54px;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 32px rgba(48,175,255,.36);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(48,175,255,.5); }
.btn-wa { background: #25D366; color: #07321b; box-shadow: 0 12px 32px rgba(37,211,102,.36); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37,211,102,.5); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.86);
}
.scroll-hint .dot {
  width: 30px; height: 30px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: grid; place-items: center;
  animation: bob 1.8s var(--ease) infinite;
}
.scroll-hint svg { width: 15px; height: 15px; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(5px);} }
@media (prefers-reduced-motion: reduce){ .scroll-hint .dot { animation: none; } }

/* ============================================================
   DESTAQUES — "Lugares que você vai conhecer"
   ============================================================ */
.places-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 760px){ .places-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.place {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  isolation: isolate;
  box-shadow: var(--card-shadow);
}
@media (min-width:760px){ .place { aspect-ratio: 3 / 2; } }
.place img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.place::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 32%, rgba(8,16,26,0.82) 100%);
}
.place-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 18px 20px; color: #fff; }
.place-name { font-size: 1.18rem; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 4px; }
.place-desc { font-size: 0.86rem; line-height: 1.4; color: rgba(255,255,255,0.86); margin: 0; }

/* ============================================================
   ROTEIRO DIA A DIA (accordion)
   ============================================================ */
.timeline { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.day {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.day[open] { box-shadow: var(--card-shadow); border-color: var(--border); }
.day-head {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}
.day-head::-webkit-details-marker { display: none; }
.day-num {
  flex: none;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  min-width: 42px;
}
.dir-imersivo .day-num { color: var(--qv-blue-soft); }
.day-titles { flex: 1; min-width: 0; }
.day-kicker { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--fg-3); margin: 0 0 2px; }
.day-title { font-size: 1.04rem; font-weight: 700; letter-spacing: -0.01em; margin: 0; line-height: 1.25; }
.day-chev {
  flex: none; width: 34px; height: 34px; border-radius: 999px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  transition: transform .3s var(--ease), background .2s var(--ease);
}
.dir-imersivo .day-chev { background: rgba(143,212,255,0.16); color: var(--qv-blue-soft); }
.day[open] .day-chev { transform: rotate(180deg); }
.day-chev svg { width: 16px; height: 16px; }
.day-body { padding: 0 20px 22px; }
.day-body-inner { padding-left: 58px; }
@media (max-width: 540px){ .day-body-inner { padding-left: 0; } }
.day-body p { margin: 0 0 12px; color: var(--fg-2); font-size: 1rem; line-height: 1.62; }
.day-meta {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px;
  padding-top: 14px; border-top: 1px dashed var(--border);
}
.meta-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 600; color: var(--fg-2);
}
.meta-tag svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.meta-tag.stay { color: var(--ink); font-weight: 700; }

/* ============================================================
   O QUE ESTÁ INCLUÍDO
   ============================================================ */
.incl-grid { margin-top: 44px; display: grid; gap: 20px; }
@media (min-width: 820px){ .incl-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
.incl-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--card-radius);
  padding: 30px 26px;
  box-shadow: var(--card-shadow);
}
.incl-card h3 { display: flex; align-items: center; gap: 12px; font-size: 1.28rem; margin: 0 0 22px; }
.incl-badge { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.incl-badge svg { width: 19px; height: 19px; }
.incl-badge.yes { background: rgba(22,163,74,.12); color: var(--qv-success); }
.incl-badge.no { background: rgba(192,57,43,.12); color: var(--qv-danger); }
.incl-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.incl-list li { display: flex; gap: 12px; font-size: 0.96rem; line-height: 1.5; color: var(--fg-2); }
.incl-list li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.incl-list.yes li svg { color: var(--qv-success); }
.incl-list.no li svg { color: var(--fg-3); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testi-grid { margin-top: 48px; display: grid; gap: 18px; }
@media (min-width: 720px){ .testi-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
.testi {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--card-radius);
  padding: 26px 24px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars { color: #f5b73f; font-size: 1rem; letter-spacing: 1px; }
.testi-quote { font-size: 1.04rem; line-height: 1.55; font-weight: 500; color: var(--ink); margin: 0; text-wrap: pretty; }
.testi-who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi-who image-slot { width: 50px; height: 50px; border-radius: 999px; flex: none; }
.testi-name { font-weight: 700; font-size: 0.98rem; margin: 0; line-height: 1.2; }
.testi-city { font-size: 0.84rem; color: var(--fg-3); margin: 0; }

/* ============================================================
   PLANOS / PREÇOS
   ============================================================ */
.plans { margin-top: 50px; display: grid; gap: 20px; align-items: stretch; }
@media (min-width: 940px){ .plans { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.plan {
  position: relative;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }
.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(48,175,255,.22);
}
@media (min-width: 940px){ .plan.featured { transform: scale(1.04); } .plan.featured:hover { transform: scale(1.04) translateY(-4px);} }
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; white-space: nowrap;
}
.plan-flag.popular { background: var(--accent); }
.plan-flag.premium { background: linear-gradient(135deg, #caa24a, #9a7521); }
.plan-stars { font-size: 0.92rem; color: #f5b73f; letter-spacing: 2px; margin-bottom: 8px; }
.plan-name { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 4px; }
.plan-tagline { font-size: 0.92rem; color: var(--fg-2); margin: 0 0 22px; }
.plan-price { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border-soft); }
.plan-from { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; color: var(--fg-3); }
.plan-value { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; color: var(--accent); line-height: 1.1; }
.dir-imersivo .plan-value { color: var(--qv-blue-soft); }
.plan-unit { font-size: 0.88rem; color: var(--fg-2); margin-top: 2px; }
.plan-hotels { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-hotels li { font-size: 0.9rem; line-height: 1.4; color: var(--fg-2); }
.plan-hotels b { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 800; margin-bottom: 2px; }
.dir-imersivo .plan-hotels b { color: var(--qv-blue-soft); }
.plan .btn { width: 100%; margin-top: auto; }
.plans-note { margin-top: 30px; text-align: center; font-size: 0.86rem; color: var(--fg-3); line-height: 1.6; }
.plans-note a { color: var(--accent); font-weight: 700; }
.dir-imersivo .plans-note a { color: var(--qv-blue-soft); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta { position: relative; overflow: hidden; isolation: isolate; text-align: center; background: linear-gradient(155deg, var(--accent-deep) 0%, #0d5a8a 58%, #08344e 100%); }
.final-cta .cta-media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.final-cta::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(8,16,26,.66), rgba(8,16,26,.82)); }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 6vw, 3.4rem); margin: 0 auto 16px; max-width: 720px; }
.final-cta p { color: rgba(255,255,255,0.9); font-size: clamp(1.05rem, 2.6vw, 1.3rem); max-width: 560px; margin: 0 auto 32px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 44px; max-width: 860px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
}
.faq[open] { border-color: var(--border); box-shadow: var(--card-shadow); }
.faq-q {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  font-weight: 700; font-size: 1.04rem; cursor: pointer;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .plus { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  top: 50%; left: 50%; transition: transform .3s var(--ease);
}
.faq-q .plus::before { width: 14px; height: 2.5px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 2.5px; height: 14px; transform: translate(-50%,-50%); }
.faq[open] .faq-q .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.dir-imersivo .faq-q .plus::before, .dir-imersivo .faq-q .plus::after { background: var(--qv-blue-soft); }
.faq-a { padding: 0 22px 22px; }
.faq-a p { margin: 0 0 10px; color: var(--fg-2); line-height: 1.62; font-size: 0.98rem; }
.faq-a ul { margin: 8px 0 0; padding-left: 18px; color: var(--fg-2); line-height: 1.6; font-size: 0.96rem; }
.faq-a li { margin-bottom: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--qv-ink);
  color: rgba(255,255,255,0.8);
  padding: 60px var(--gutter) 40px;
  text-align: center;
}
.site-footer .logo { height: 34px; margin: 0 auto 22px; }
.footer-tag { font-size: 1.15rem; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.9); margin: 0 0 26px; }
.footer-contact { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; font-size: 0.92rem; font-weight: 600; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.footer-contact svg { width: 17px; height: 17px; color: var(--qv-blue-soft); }
.footer-fine { margin-top: 30px; font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wa-float {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 80;
  display: inline-flex; align-items: center; gap: 0;
  height: 60px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), gap .25s var(--ease), padding .25s var(--ease);
  overflow: hidden;
}
.wa-float svg { width: 30px; height: 30px; flex: none; }
.wa-float .wa-text { max-width: 0; white-space: nowrap; opacity: 0; transition: max-width .35s var(--ease), opacity .25s var(--ease), margin .25s var(--ease); font-size: 0.96rem; }
.wa-float:hover { transform: translateY(-2px); }
@media (min-width: 720px){
  .wa-float { gap: 10px; }
  .wa-float .wa-text { max-width: 220px; opacity: 1; }
}
.wa-float.hidden { display: none; }
@keyframes wapulse { 0%{ box-shadow: 0 14px 36px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 14px 36px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 14px 36px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0);} }
.wa-float { animation: wapulse 2.8s infinite; }
@media (prefers-reduced-motion: reduce){ .wa-float { animation: none; } }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } }

/* ============================================================
   IMAGE-SLOT placeholder skin (combina com a marca)
   ============================================================ */
/* (placeholder skin do <image-slot> removido — agora usamos <img> reais) */

/* ============================================================
   HERO — EDITORIAL SPLIT (Header B)
   ============================================================ */
.split-hero { padding-block: clamp(26px, 5vw, 60px); }
.split-hero-inner { display: flex; flex-direction: column; gap: 26px; }
@media (min-width: 880px) {
  .split-hero-inner { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 52px; align-items: center; }
}
.split-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--card-shadow); order: -1; }
.split-photo img { width: 100%; height: clamp(240px, 54vw, 300px); object-fit: cover; display: block; }
@media (min-width: 880px) {
  .split-photo { order: 0; }
  .split-photo img { height: 540px; }
}
.split-title { font-size: clamp(2.8rem, 10vw, 4.8rem); letter-spacing: -0.035em; line-height: 0.96; margin: 16px 0; }
.split-sub { font-size: clamp(1.06rem, 2.6vw, 1.35rem); color: var(--fg-2); line-height: 1.5; max-width: 480px; margin: 0 0 26px; }
.split-hero .hero-tags { margin-bottom: 0; gap: 9px; }
.split-hero .chip { background: transparent; border: 1px solid rgba(18,22,29,.16); color: var(--accent-deep); backdrop-filter: none; }
.split-hero .chip.solid { background: #fff; color: var(--accent-deep); border-color: transparent; box-shadow: var(--shadow-sm); }
.split-scroll { display: inline-block; margin-top: 22px; font-weight: 700; font-size: .92rem; letter-spacing: .02em; color: var(--accent-deep); }
.dir-imersivo .split-hero .chip { color: var(--qv-blue-soft); border-color: rgba(255,255,255,.22); }
.dir-imersivo .split-hero .chip.solid { color: var(--qv-blue-dark); }
.dir-imersivo .split-scroll { color: var(--qv-blue-soft); }


/* ============================================================
   ROTEIRO — CARTÕES COM SELO AZUL (sem linha do tempo)
   ============================================================ */
.tl-hint{ font-size:.92rem; font-weight:600; color:var(--accent-deep); margin-top:14px; display:inline-flex; align-items:center; gap:8px; }
.tl-hint svg{ color:var(--accent); }
.dir-imersivo .tl-hint, .dir-imersivo .tl-hint svg{ color:var(--qv-blue-soft); }

.timeline{ padding-left:0 !important; }
.timeline::before{ content:none !important; }

.day{ border-radius:16px; }
.day[open]{ box-shadow:0 18px 46px rgba(18,22,29,.08); border-color:var(--border); }
.day-head{ padding:14px 18px; gap:16px; }
@media (max-width:560px){ .day-head{ padding:12px 14px; gap:12px; } }

.day-num{
  position:static !important;
  flex:none;
  width:48px; height:48px;
  border-radius:12px;
  background:var(--accent) !important;
  border:0 !important;
  color:#fff !important;
  font-size:1.32rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
  letter-spacing:-.03em;
  min-width:0;
  box-shadow:0 6px 18px rgba(48,175,255,.3);
}
@media (max-width:560px){
  .day-num{ width:42px; height:42px; border-radius:11px; font-size:1.12rem; box-shadow:0 4px 12px rgba(48,175,255,.28); }
}
.dir-imersivo .day-num{ background:var(--accent) !important; color:#fff !important; }

.day-title{ font-size:1.06rem; font-weight:700; }
@media (min-width:700px){ .day-title{ font-size:1.16rem; } }

.day-body{ padding:0 18px 20px; }
@media (max-width:560px){ .day-body{ padding:0 14px 18px; } }
.day-body-inner{ padding-left:0 !important; }
.day-body p{ font-size:.98rem; }

/* Fotos sempre horizontais (3:2) e iguais entre si — TODAS do mesmo tamanho independente de quantas */
.day-photos{
  display:grid !important;
  grid-template-columns:repeat(3, 1fr) !important;
  gap:10px;
  margin:4px 0 16px;
  height:auto !important;
  justify-content:start;
}
.day-photos.n1, .day-photos.n2, .day-photos.n3{ /* mesma grade, fotos do mesmo tamanho */ }
@media (max-width:620px){ .day-photos{ grid-template-columns:1fr !important; } }
.day-photos .ph{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  aspect-ratio:3 / 2;
  grid-row:auto !important;
  grid-column:auto !important;
}
.day-photos img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.day-photos .ph.filled::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(transparent 50%, rgba(8,16,26,.66));
  pointer-events:none;
}
.day-photos .pcap{
  position:absolute; left:12px; bottom:10px; z-index:2;
  color:#fff; font-size:12px; font-weight:700; letter-spacing:.02em;
  text-shadow:0 2px 8px rgba(0,0,0,.55);
}

/* Meta em pills */
.day-meta{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid var(--border-soft);
}
.meta-tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:color-mix(in srgb, var(--ink) 4%, transparent);
  font-size:.86rem; font-weight:500; color:var(--fg-2);
}
.meta-tag svg{ width:16px; height:16px; color:var(--accent); flex:none; }
.meta-tag.stay{ color:var(--ink); font-weight:700; background:color-mix(in srgb, var(--ink) 6%, transparent); }
.dir-imersivo .meta-tag{ background:rgba(255,255,255,.08); }
.dir-imersivo .meta-tag.stay{ background:rgba(255,255,255,.14); }