/* ════════════════════════════════════════════════════════════════
   Happy Viagens — site.css
   Paleta: teal #0c6975 · amarelo #ffd300 (da logo) · off-white
   Fontes: Fraunces (títulos) · Plus Jakarta Sans (texto)
   ════════════════════════════════════════════════════════════════ */

:root {
  --teal:       #0c6975;
  --teal-dark:  #084f58;
  --teal-ink:   #08333a;
  --yellow:     #ffd300;
  --yellow-soft:#fff6c7;
  --ink:        #17232a;
  --muted:      #5d6d75;
  --bg:         #ffffff;
  --tint:       #f4f6f4;
  --line:       #e7e5de;
  --white:      #ffffff;
  --radius:     14px;
  --shadow:     0 10px 40px rgba(23, 35, 42, .08);
  --font-head:  'Fraunces', Georgia, serif;
  --font-body:  'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }

/* ── Botões ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--solid { background: var(--teal); color: #fff; }
.btn--solid:hover { background: var(--teal-dark); }

.btn--yellow { background: var(--yellow); color: var(--teal-ink); }
.btn--yellow:hover { background: #ffde3d; }

.btn--ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn--line { border-color: var(--teal); color: var(--teal); background: transparent; padding: 11px 24px; }
.btn--line:hover { background: var(--teal); color: #fff; }

.btn--nav { background: var(--yellow); color: var(--teal-ink); padding: 10px 20px; font-size: 14px; }
.btn--nav:hover { background: #ffde3d; }

/* ── Navbar ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
body.is-inner .nav {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo img { height: 54px; width: auto; transition: height .3s ease; }
.nav.scrolled .nav__logo img, body.is-inner .nav__logo img { height: 44px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  opacity: .92;
  transition: opacity .2s;
}
.nav__links > a:not(.btn):hover { opacity: 1; }
.nav.scrolled .nav__links > a:not(.btn),
body.is-inner .nav__links > a:not(.btn) { color: var(--ink); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s, background .3s;
}
.nav.scrolled .nav__burger span, body.is-inner .nav__burger span { background: var(--ink); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  padding: 150px 0 110px;
  background: var(--teal-ink);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(8, 36, 42, .62), rgba(8, 36, 42, .38) 45%, rgba(8, 36, 42, .66));
}
/* borda na base do hero — listras em colunas, verde/amarelo lado a lado */
.hero::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 8px;
  z-index: 2;
  background: linear-gradient(
    to right,
    var(--teal)   0       16.666%,
    var(--yellow) 16.666% 33.333%,
    var(--teal)   33.333% 50%,
    var(--yellow) 50%     66.666%,
    var(--teal)   66.666% 83.333%,
    var(--yellow) 83.333% 100%
  );
}
.hero__content { position: relative; z-index: 3; }

.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 22px;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(42px, 6.5vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 800px;
}
.hero__title em { font-style: italic; color: var(--yellow); }

.hero__sub {
  margin-top: 26px;
  font-size: 18px;
  font-weight: 400;
  max-width: 520px;
  color: rgba(255,255,255,.85);
}

.hero__actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Bloco estático de cards de destino abaixo do hero ──────── */
.hero-cards {
  background: var(--bg);
  padding: 56px 0 0;
}
.hero-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hero-cards__grid img {
  width: 100%;
  height: auto;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(23, 35, 42, .10);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-cards__grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(23, 35, 42, .16);
}

/* ── Slider de cards logo abaixo do hero ────────────────────── */
.marquee-strip {
  position: relative;
  z-index: 5;
  background: var(--white);
  padding: 44px 0 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-strip__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 55s linear infinite;
  padding: 16px 0 28px;
}
.marquee-strip__track img {
  height: 140px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 18px;
  filter: drop-shadow(0 16px 26px rgba(23, 35, 42, .22));
  transition: transform .3s ease;
}
.marquee-strip__track img:hover { transform: scale(1.06); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-strip__track { animation: none; } }

/* ── Seções (base) ──────────────────────────────────────────── */
.section { padding: 110px 0; }
.section--tinted { background: var(--tint); }

.section__head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section__head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  max-width: none;
  gap: 24px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section__title em { font-style: italic; color: var(--teal); }

.section__sub { margin-top: 18px; color: var(--muted); font-size: 17px; }

/* ── Destinos (carrossel) ───────────────────────────────────── */
.destinos__carousel { position: relative; }

.destinos__track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 14px;          /* respiro pro hover levantar + sombra */
  margin: 0 -4px;
  scrollbar-width: none;          /* Firefox */
  -webkit-overflow-scrolling: touch;
}
.destinos__track::-webkit-scrollbar { display: none; }  /* WebKit */
.destinos__track:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; border-radius: var(--radius); }

/* 3,3 cards visíveis no desktop — o "meio card" sinaliza que dá pra arrastar */
.dest-card {
  flex: 0 0 calc((100% - 2 * 32px) / 3.3);
  scroll-snap-align: start;
  text-align: center;
}

/* Setas */
.destinos__arrow {
  position: absolute;
  top: 34%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--teal-ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}
.destinos__arrow:hover { background: var(--teal); color: #fff; }
.destinos__arrow--prev { left: -8px; }
.destinos__arrow--next { right: -8px; }
.destinos__arrow:disabled { opacity: 0; pointer-events: none; }

.dest-card__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dest-card__media img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dest-card:hover .dest-card__media img { transform: scale(1.05); }

.dest-card__chip {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--teal-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
}

.dest-card__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 24px;
  margin-top: 26px;
}
.dest-card__text {
  margin: 10px auto 0;
  max-width: 300px;
  color: var(--muted);
  font-size: 15px;
}

/* ── Roteiros / como funciona ───────────────────────────────── */
.roteiros__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.roteiro-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.roteiro-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.roteiro-card img { margin: 0 auto 22px; height: 56px; width: auto; }
.roteiro-card h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 21px;
  color: var(--teal);
  margin-bottom: 14px;
}
.roteiro-card p { color: var(--muted); font-size: 15px; }

.roteiros__cta { text-align: center; margin-top: 52px; }

/* ── Sobre ──────────────────────────────────────────────────── */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre__media video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sobre__text .section__title { margin-bottom: 26px; }
.sobre__text p { color: var(--muted); margin-bottom: 18px; }

/* ── Depoimentos ────────────────────────────────────────────── */
/* Carrossel de depoimentos — 3 por vez, loop infinito */
.depoimentos__carousel { position: relative; }
.depoimentos__track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 12px;
  margin: 0 -4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  align-items: stretch;
}
.depoimentos__track::-webkit-scrollbar { display: none; }
.depoimentos__track:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; border-radius: var(--radius); }

/* 3 cards inteiros por vez */
.depoimentos__track > .depo-card {
  flex: 0 0 calc((100% - 2 * 28px) / 3);
  scroll-snap-align: start;
}
/* as setas do carrossel de depoimentos ficam alinhadas ao meio do card */
.depoimentos__carousel .destinos__arrow { top: 50%; }

.depo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
}
.depo-card__quote { color: var(--yellow); margin-bottom: 20px; }
.depo-card blockquote {
  font-size: 15px;
  color: var(--muted);
  flex: 1;
}
.depo-card figcaption {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.depo-card figcaption img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.depo-card figcaption span {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--teal);
}

/* ── Blog cards ─────────────────────────────────────────────── */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.post-card__media { display: block; overflow: hidden; }
.post-card__media img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.post-card:hover .post-card__media img { transform: scale(1.05); }

.post-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }

.post-card__cat {
  display: inline-block;
  width: fit-content;
  background: var(--yellow-soft);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.post-card h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
}
.post-card h3 a { text-decoration: none; transition: color .2s; }
.post-card h3 a:hover { color: var(--teal); }

.post-card p { margin-top: 10px; color: var(--muted); font-size: 14.5px; flex: 1; }

.post-card__meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 6px;
}

/* ── CTA final ──────────────────────────────────────────────── */
.cta {
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.cta__inner { max-width: 620px; }
.cta h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
}
.cta h2 em { font-style: italic; color: var(--yellow); }
.cta p { margin-top: 20px; font-size: 17px; color: rgba(255,255,255,.85); }
.cta__actions { margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Páginas internas ───────────────────────────────────────── */
.page-hero {
  padding: 160px 0 60px;
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.page-hero__title em { font-style: italic; color: var(--teal); }
.page-hero__sub {
  margin: 18px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

/* ── Post (artigo) ──────────────────────────────────────────── */
.post__hero { padding: 160px 0 40px; text-align: center; }
.post__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.15;
  margin: 16px 0;
}
.post__hero .post-card__meta { justify-content: center; }

.post__cover {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}

.post__content { font-size: 17px; color: #2c3a42; }
.post__content h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 28px;
  color: var(--teal-ink);
  margin: 40px 0 14px;
}
.post__content h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 22px;
  margin: 32px 0 12px;
}
.post__content p { margin-bottom: 18px; }
.post__content ul, .post__content ol { margin: 0 0 18px 24px; }
.post__content blockquote {
  border-left: 3px solid var(--yellow);
  padding: 4px 0 4px 20px;
  color: var(--muted);
  font-style: italic;
  margin: 24px 0;
}
.post__content img { border-radius: var(--radius); margin: 24px 0; }
.post__content a { color: var(--teal); }

.post__footer { padding-bottom: 100px; }
.post__cta {
  margin-top: 56px;
  background: var(--tint);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.post__cta p { font-size: 17px; }

.post__related { margin-top: 64px; }
.post__related h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 24px;
}
.post__related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.rel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rel-card img { width: 84px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.rel-card span { font-weight: 600; font-size: 14.5px; line-height: 1.4; }

/* ── Contato ────────────────────────────────────────────────── */
.contato__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.contato__cards { display: flex; flex-direction: column; gap: 16px; }
.canal-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  text-decoration: none;
  color: var(--teal);
  transition: transform .2s ease, box-shadow .2s ease;
}
a.canal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.canal-card strong { display: block; color: var(--ink); font-size: 15px; }
.canal-card span { color: var(--muted); font-size: 14px; }

.contato__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.contato__form h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 26px;
}
.contato__form form { display: flex; flex-direction: column; gap: 18px; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contato__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.contato__form input,
.contato__form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  transition: border-color .2s;
  resize: vertical;
}
.contato__form input:focus,
.contato__form textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.contato__form .btn { align-self: flex-start; border: 0; }

.form-feedback { font-size: 14.5px; font-weight: 600; min-height: 22px; }
.form-feedback.ok { color: #15803d; }
.form-feedback.err { color: #b91c1c; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--teal-ink);
  color: rgba(255,255,255,.8);
  padding: 72px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__logo { height: 64px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.footer__tag {
  margin-top: 18px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,.65);
}

.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a, .footer__contact a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s;
  width: fit-content;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--yellow); }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__social { display: flex; gap: 14px; margin-top: 10px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  transition: all .2s;
}
.footer__social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--teal-ink); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  padding-bottom: 26px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ── WhatsApp flutuante ─────────────────────────────────────── */
.whats-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
  transition: transform .2s ease;
}
.whats-float:hover { transform: scale(1.08); }

/* ── Blog: listagem premium ─────────────────────────────────── */
.blog-hero { padding-bottom: 40px; }

.blog-cats {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.blog-cats__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.blog-cats__chip span {
  font-size: 11px;
  font-weight: 700;
  background: var(--tint);
  color: var(--muted);
  border-radius: 999px;
  padding: 1px 7px;
}
.blog-cats__chip:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.blog-cats__chip.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.blog-cats__chip.is-active span { background: rgba(255,255,255,.18); color: #fff; }

.blog-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: var(--teal-ink);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-featured:hover { transform: translateY(-6px); box-shadow: 0 18px 55px rgba(23,35,42,.18); }

.blog-featured__media { overflow: hidden; }
.blog-featured__media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-featured:hover .blog-featured__media img { transform: scale(1.04); }

.blog-featured__body {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.blog-featured__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.blog-featured__body .post-card__cat { background: rgba(255,255,255,.12); color: #fff; }
.blog-featured__body h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
}
.blog-featured__body p { margin-top: 14px; color: rgba(255,255,255,.75); font-size: 15px; }
.blog-featured__body .post-card__meta { color: rgba(255,255,255,.6); }
.blog-featured__link {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--yellow);
}
.blog-featured:hover .blog-featured__link svg { transform: translateX(4px); }
.blog-featured__link svg { transition: transform .25s ease; }

.blog-cta {
  margin-top: 72px;
  background: var(--teal);
  color: #fff;
  border-radius: calc(var(--radius) + 6px);
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.blog-cta h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
}
.blog-cta p { margin-top: 6px; color: rgba(255,255,255,.8); }

/* ── Post: hero imersivo ────────────────────────────────────── */
.post-hero {
  position: relative;
  min-height: 480px;
  padding: 180px 0 70px;
  display: flex;
  align-items: flex-end;
  background-color: var(--teal-ink);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.post-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,51,58,.35) 0%, rgba(8,51,58,.55) 55%, rgba(8,51,58,.88) 100%);
}
.post-hero__inner { position: relative; width: 100%; }

.post-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.72);
  margin-bottom: 18px;
}
.post-hero__crumbs a { color: rgba(255,255,255,.85); text-decoration: none; }
.post-hero__crumbs a:hover { color: var(--yellow); }
.post-hero__crumbs a:last-child { color: var(--yellow); }

.post-hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.post-hero__meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}

/* ── Post: compartilhar ─────────────────────────────────────── */
.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 0;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.post-share__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.post-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.post-share__btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}
.post-share__copied {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  opacity: 0;
  transition: opacity .25s ease;
}
.post-share__copied.show { opacity: 1; }

/* Primeiro parágrafo em destaque (lead) */
.post__content > p:first-child {
  font-size: 20px;
  line-height: 1.65;
  color: var(--teal-ink);
  font-weight: 500;
}

/* ── Post: CTA premium ──────────────────────────────────────── */
.post-cta {
  margin-top: 64px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border-radius: calc(var(--radius) + 6px);
  padding: 46px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.post-cta__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.post-cta__text { max-width: 480px; }
.post-cta h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
}
.post-cta h2 em { font-style: italic; color: var(--yellow); }
.post-cta p { margin-top: 10px; color: rgba(255,255,255,.8); font-size: 15px; }

.post__related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.post__related-head h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 0;
}
.blog__grid--related .post-card h3 { font-size: 17px; }

/* ── Instagram ──────────────────────────────────────────────── */
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.instagram__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  min-height: 420px;
}
/* o embed.js injeta um iframe — neutraliza a borda/sombra padrão dele */
.instagram__item .instagram-media {
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

/* ════════════════════════════════════════════════════════════
   Área do Cliente
   ════════════════════════════════════════════════════════════ */

/* ── Login ──────────────────────────────────────────────────── */
.cli-auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(12,105,117,.10), transparent 60%),
    var(--tint);
}
.cli-auth__card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 44px 40px 34px;
  text-align: center;
}
.cli-auth__logo img { height: 40px; margin: 0 auto 22px; }
.cli-auth__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 28px;
  color: var(--teal-ink);
}
.cli-auth__sub { margin-top: 6px; color: var(--muted); font-size: 15px; }
.cli-auth__alert {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fdecec;
  color: #b42318;
  font-size: 14px;
  text-align: left;
}
.cli-field { margin-top: 18px; text-align: left; }
.cli-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.cli-field input {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cli-field input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(12,105,117,.12);
}
.cli-auth__btn { width: 100%; justify-content: center; margin-top: 26px; }
.cli-auth__foot { margin-top: 22px; font-size: 14px; color: var(--muted); }
.cli-auth__foot a { color: var(--teal); font-weight: 600; }
.cli-auth__back {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.cli-auth__back:hover { color: var(--teal); }

/* ── Dashboard ──────────────────────────────────────────────── */
.cli-area { background: var(--tint); min-height: 100vh; display: flex; flex-direction: column; }

.cli-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.cli-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.cli-topbar__logo img { height: 30px; }
.cli-topbar__right { display: flex; align-items: center; gap: 18px; }
.cli-topbar__user {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.cli-topbar__logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: border-color .2s ease, color .2s ease;
}
.cli-topbar__logout:hover { border-color: var(--teal); color: var(--teal); }

.cli-hero { padding: 56px 0 8px; }
.cli-hero__eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.cli-hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  color: var(--teal-ink);
}
.cli-hero__sub { margin-top: 12px; color: var(--muted); font-size: 17px; max-width: 560px; }

.cli-trips { padding: 40px 0 72px; flex: 1; }
.cli-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cli-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cli-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.cli-card__media { position: relative; display: block; overflow: hidden; }
.cli-card__media img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cli-card:hover .cli-card__media img { transform: scale(1.05); }
.cli-card__media--ph {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: rgba(255,255,255,.7);
}
.cli-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8,51,58,.82);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.cli-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.cli-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
}
.cli-card__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.28;
  color: var(--teal-ink);
}
.cli-card__desc { margin-top: 10px; color: var(--muted); font-size: 14.5px; flex: 1; }

/* Card de guia: badge na cor da marca do livrete */
.cli-card--guia .cli-card__badge {
  background: var(--yellow);
  color: var(--teal-ink);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Atalhos para as seções do guia */
.cli-jump {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.cli-jump__label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.cli-jump__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cli-jump__tags a {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--tint);
  border: 1.5px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.cli-jump__tags a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}
.cli-jump__tags a:focus-visible {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(12,105,117,.18);
}

/* Vouchers é o atalho mais buscado em viagem — ganha destaque */
.cli-jump__tags a[href$="#vouchers"] {
  background: var(--yellow-soft);
  border-color: #f4e39b;
  color: var(--teal-ink);
}
.cli-jump__tags a[href$="#vouchers"]:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.cli-card__link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
  background: var(--teal);
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.cli-card__link:hover { background: var(--teal-dark); transform: translateY(-2px); }

.cli-empty {
  text-align: center;
  max-width: 460px;
  margin: 30px auto;
  padding: 56px 30px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: calc(var(--radius) + 6px);
}
.cli-empty__icon { color: var(--teal); opacity: .5; margin-bottom: 16px; }
.cli-empty h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 24px;
  color: var(--teal-ink);
}
.cli-empty p { margin: 10px 0 24px; color: var(--muted); }

.cli-foot {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: var(--white);
  margin-top: auto;
}
.cli-foot p { font-size: 13.5px; color: var(--muted); text-align: center; }
.cli-foot a { color: var(--teal); font-weight: 600; }

/* ── Menu interno ───────────────────────────────────────────── */
.cli-menu {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 68px;
  z-index: 19;
}
.cli-menu__inner { display: flex; gap: 6px; overflow-x: auto; }
.cli-menu__link {
  position: relative;
  white-space: nowrap;
  padding: 15px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.cli-menu__link:hover { color: var(--teal); }
.cli-menu__link.is-active { color: var(--teal); border-bottom-color: var(--teal); }

.cli-hero__title em { font-style: italic; color: var(--teal); }

/* ── Avisos ─────────────────────────────────────────────────── */
.cli-alert {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 20px;
}
.cli-alert--ok  { background: #e7f6ec; color: #1a7f42; }
.cli-alert--err { background: #fdecec; color: #b42318; }

/* Chamariz do perfil incompleto (em Minhas Viagens) */
.cli-nudge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--yellow-soft);
  border: 1px solid #f4e39b;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cli-nudge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.cli-nudge__icon { color: var(--teal); flex-shrink: 0; }
.cli-nudge__text { flex: 1; min-width: 0; }
.cli-nudge__text strong { display: block; color: var(--teal-ink); font-size: 15px; }
.cli-nudge__text span { font-size: 13.5px; color: var(--muted); }
.cli-nudge__cta { font-weight: 700; font-size: 14px; color: var(--teal); white-space: nowrap; }

/* ── Progresso do perfil ────────────────────────────────────── */
.cli-progress {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 26px;
}
.cli-progress__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.cli-progress__head strong { display: block; color: var(--teal-ink); font-size: 16px; }
.cli-progress__head span { font-size: 13.5px; color: var(--muted); }
.cli-progress__pct {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: var(--teal);
}
.cli-progress__bar {
  height: 9px;
  background: var(--tint);
  border-radius: 999px;
  overflow: hidden;
}
.cli-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, #17a2b8 100%);
  border-radius: 999px;
  transition: width .5s ease;
}

/* ── Brinde desbloqueado ────────────────────────────────────── */
.cli-gift {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border-radius: calc(var(--radius) + 6px);
  padding: 28px 32px;
  margin-bottom: 26px;
  box-shadow: var(--shadow);
}
.cli-gift__icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--yellow);
}
.cli-gift__text { flex: 1; min-width: 240px; }
.cli-gift__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.cli-gift h2 { font-family: var(--font-head); font-weight: 500; font-size: 24px; }
.cli-gift p { margin-top: 6px; font-size: 14.5px; color: rgba(255,255,255,.82); }

/* ── Formulário do perfil ───────────────────────────────────── */
.cli-form { padding-bottom: 70px; }

.cli-fs {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-bottom: 20px;
}
.cli-fs legend {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 21px;
  color: var(--teal-ink);
  padding: 0;
  margin-bottom: 20px;
}
.cli-fs__num {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}
.cli-fs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cli-fs .cli-field { margin-top: 0; }
.cli-field--full { grid-column: 1 / -1; margin-top: 18px; }
.cli-field label i { color: #c0392b; font-style: normal; }
.cli-field label em { color: var(--muted); font-style: normal; font-weight: 500; font-size: 12.5px; }
.cli-field select,
.cli-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cli-field textarea { min-height: 92px; resize: vertical; }
.cli-field select:focus,
.cli-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(12,105,117,.12);
}

/* chips de múltipla escolha */
.cli-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.cli-chip { cursor: pointer; }
.cli-chip input { position: absolute; opacity: 0; pointer-events: none; }
.cli-chip span {
  display: inline-block;
  padding: 9px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  transition: all .18s ease;
}
.cli-chip:hover span { border-color: var(--teal); color: var(--teal); }
.cli-chip input:checked + span {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.cli-chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(12,105,117,.2); }

.cli-form__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cli-form__hint { font-size: 13px; color: var(--muted); }
.cli-form__hint i { color: #c0392b; font-style: normal; }

/* ── Pacotes ────────────────────────────────────────────────── */
.cli-pkgs { display: flex; flex-direction: column; gap: 28px; }

.cli-pkg {
  display: grid;
  grid-template-columns: 42% 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cli-pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.cli-pkg__media { position: relative; overflow: hidden; min-height: 300px; }
.cli-pkg__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cli-pkg:hover .cli-pkg__media img { transform: scale(1.05); }
.cli-pkg__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--teal-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}

.cli-pkg__body { padding: 30px 34px; display: flex; flex-direction: column; }
.cli-pkg__dest {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.cli-pkg__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.22;
  color: var(--teal-ink);
}
.cli-pkg__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted);
}
.cli-pkg__meta span { display: inline-flex; align-items: center; gap: 6px; }
.cli-pkg__desc { margin-top: 14px; color: var(--muted); font-size: 15px; }

.cli-pkg__list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.cli-pkg__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14.5px;
  color: var(--ink);
}
.cli-pkg__list svg { color: var(--teal); flex-shrink: 0; margin-top: 3px; }

.cli-pkg__foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cli-pkg__price span {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cli-pkg__price strong {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  color: var(--teal);
}
.cli-pkg__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cli-pkg__actions .btn { padding: 11px 20px; font-size: 14px; }

.cli-pkgs__note {
  margin-top: 26px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ── Reveal on scroll ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Responsivo ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .section { padding: 80px 0; }

  .roteiros__grid,
  .instagram__grid,
  .blog__grid { grid-template-columns: 1fr 1fr; }

  /* carrosséis: ~2 cards visíveis */
  .dest-card { flex-basis: calc((100% - 32px) / 2.2); }
  .depoimentos__track > .depo-card { flex-basis: calc((100% - 28px) / 2); }

  .hero-cards__grid { grid-template-columns: repeat(3, 1fr); }

  .sobre__grid { grid-template-columns: 1fr; gap: 44px; }
  .sobre__media video { aspect-ratio: 16 / 10; }

  .contato__grid { grid-template-columns: 1fr; }

  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__media img { min-height: 260px; aspect-ratio: 16 / 9; }
  .blog-featured__body { padding: 34px 30px; }

  .cli-grid { grid-template-columns: 1fr 1fr; }
  .cli-pkg { grid-template-columns: 1fr; }
  .cli-pkg__media { min-height: 0; aspect-ratio: 16 / 9; }
  .cli-pkg__body { padding: 26px 24px; }
}

@media (max-width: 640px) {
  .roteiros__grid,
  .instagram__grid,
  .blog__grid,
  .post__related-grid,
  .form-row { grid-template-columns: 1fr; }

  /* carrosséis: ~1 card + espia do próximo */
  .dest-card { flex-basis: calc(100% - 52px); }
  .depoimentos__track > .depo-card { flex-basis: calc(100% - 52px); }
  .destinos__arrow { display: none; }   /* no touch, arrasta com o dedo */

  .hero { min-height: 82vh; padding: 130px 0 100px; }
  .hero-cards { padding: 32px 0 0; }
  .hero-cards__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .marquee-strip { padding: 26px 0 0; }
  .marquee-strip__track img { height: 96px; }
  .marquee-strip__track { gap: 20px; padding: 8px 0 20px; }

  .section__head--split { flex-direction: column; align-items: flex-start; }

  .post-hero { min-height: 380px; padding: 150px 0 46px; }
  .post-cta, .blog-cta { padding: 32px 26px; }
  .post-share { flex-wrap: wrap; }
  .blog-cats { gap: 8px; }
  .blog-cats__chip { padding: 8px 14px; font-size: 12.5px; }

  .cli-grid { grid-template-columns: 1fr; }
  .cli-auth__card { padding: 34px 26px 28px; }
  .cli-hero { padding: 40px 0 4px; }

  .cli-fs { padding: 22px 18px; }
  .cli-fs__grid { grid-template-columns: 1fr; }
  .cli-gift { padding: 24px 20px; gap: 16px; }
  .cli-nudge { flex-wrap: wrap; padding: 16px 18px; }
  .cli-nudge__cta { width: 100%; }
  .cli-pkg__foot { flex-direction: column; align-items: flex-start; }
  .cli-pkg__actions { width: 100%; }
  .cli-pkg__actions .btn { flex: 1; justify-content: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }

  .contato__form { padding: 26px 20px; }

  /* ── Header mobile ─────────────────────────────────────────
     Fixo, compacto e com fundo sólido (legível sobre qualquer seção).
     A logo fica bem menor para sobrar espaço. */
  .nav {
    padding: 10px 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--line);
  }
  .nav.scrolled, body.is-inner .nav { padding: 10px 0; }

  .nav__logo img,
  .nav.scrolled .nav__logo img,
  body.is-inner .nav__logo img { height: 34px; }

  /* burger sempre escuro (o header agora é claro em todo estado) */
  .nav__burger span,
  .nav.scrolled .nav__burger span,
  body.is-inner .nav__burger span { background: var(--ink); }

  /* logo e burger ficam ACIMA do painel do menu (que é irmão deles),
     então o header continua visível e o botão de fechar sempre à mão.
     z-index vai nos próprios elementos: colocá-lo no .nav__inner criaria
     um stacking context que prenderia o painel dentro dele. */
  .nav__logo   { position: relative; z-index: 2; }
  .nav__burger { display: flex; position: relative; z-index: 2; }

  /* ── Painel do menu ────────────────────────────────────────
     Abre abaixo do header (não engole a logo), com scroll próprio
     caso a lista não caiba na tela. */
  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1;
    max-height: 100dvh;
    overflow-y: auto;
    padding: 84px 24px 32px;
    background: var(--teal-ink);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 4px;
    opacity: 0;
    visibility: hidden;          /* tira do foco do teclado quando fechado */
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
  }
  .nav__links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: opacity .28s ease, transform .28s ease, visibility 0s;
  }
  .nav__links > a:not(.btn) {
    color: #fff !important;
    font-size: 17px;
    opacity: 1;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .nav__links > .btn { margin-top: 18px; justify-content: center; }
}
