/* =====================================================
   Jaguar Trips — "diário de expedição"
   Tokens e fontes da marca extraídos do site oficial
   ===================================================== */
:root {
  --olive-950: #161B0C;
  --olive-900: #1C2010;
  --olive-800: #2A2E12;
  --olive-700: #353F17;
  --olive-600: #3F4523;
  --olive-500: #576727;
  --sand-100: #FBF7EE;
  --sand-200: #F3EBD6;
  --sand-300: #E8D5A3;
  --sand-400: #D8C58F;
  --gold: #D4980E;
  --gold-700: #B8840C;
  --ink: #161F11;
  --muted: #5F6552;
  --muted-light: #C9C3A8;

  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 20px 50px -20px rgba(22, 27, 12, .35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--olive-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }

/* grão de papel sobre tudo */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: .07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: 1.3rem; font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
h1 em, h2 em { font-style: italic; font-weight: 800; color: var(--gold); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--olive-500);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow.light { color: var(--sand-300); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.55; }
.stars { color: var(--gold); letter-spacing: .08em; font-size: .9em; }

.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 + p, .section-head p { margin-top: 1.1rem; color: var(--muted); font-size: 1.08rem; }
.section-head.left .eyebrow::before { order: -1; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: .98rem; line-height: 1; white-space: nowrap;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .35s;
}
.btn .ico { font-size: 1.05em; line-height: 1; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--olive-950); box-shadow: 0 10px 30px -10px rgba(212, 152, 14, .7); }
.btn-gold:hover { background: #E4A81C; box-shadow: 0 16px 34px -10px rgba(212, 152, 14, .8); }
.btn-olive { background: var(--olive-800); color: var(--sand-100); }
.btn-olive:hover { background: var(--olive-700); }
.btn-ghost { background: rgba(251, 247, 238, .08); color: var(--sand-100); border-color: rgba(251, 247, 238, .35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(251, 247, 238, .16); border-color: rgba(251, 247, 238, .6); }
.btn-outline { background: transparent; color: var(--olive-800); border-color: var(--olive-800); }
.btn-outline:hover { background: var(--olive-800); color: var(--sand-100); }
.btn-sm { padding: .7rem 1.15rem; font-size: .9rem; }
.btn-lg { padding: 1.2rem 2.1rem; font-size: 1.08rem; }

.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; display: inline-grid; place-items: center;
  color: var(--sand-100); border: 1.5px solid rgba(251, 247, 238, .25);
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.icon-btn i { font-size: 18px; line-height: 1; }
.icon-btn:hover { background: rgba(251, 247, 238, .1); border-color: var(--gold); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.site-header.scrolled {
  padding: .55rem 0;
  background: rgba(28, 32, 16, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .8);
}
.header-inner { display: flex; align-items: center; gap: 2rem; }
.brand img { width: 168px; height: auto; }
.nav { display: flex; gap: 2rem; margin-left: auto; }
.nav a {
  position: relative; color: var(--sand-100); font-weight: 600; font-size: .95rem; padding: .35rem 0;
  opacity: .88; transition: opacity .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: .7rem; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  place-items: center; border-radius: 50%; color: var(--sand-100); font-size: 1.35rem;
}
.nav-toggle i { transition: transform .35s var(--ease); }
.nav-toggle[aria-expanded="true"] i { transform: rotate(90deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 9rem 0 5rem; color: var(--sand-100); overflow: hidden; isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: url("img/hero.jpg") center 38% / cover no-repeat;
  animation: heroZoom 14s var(--ease) forwards;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 27, 12, .55) 0%, rgba(22, 27, 12, .15) 35%, rgba(22, 27, 12, .3) 60%, rgba(22, 27, 12, .94) 100%),
    linear-gradient(90deg, rgba(22, 27, 12, .45) 0%, rgba(22, 27, 12, 0) 60%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-inner { display: grid; grid-template-columns: 1.4fr .8fr; align-items: end; gap: 3rem; }
.hero-copy { max-width: 760px; }
.badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem .95rem .5rem .8rem; border-radius: 999px;
  border: 1px solid rgba(232, 213, 163, .45); background: rgba(22, 27, 12, .45); backdrop-filter: blur(8px);
  font-size: .85rem; font-weight: 600; color: var(--sand-200);
}
.hero h1 { margin: 1.4rem 0 1.3rem; text-wrap: balance; }
.hero .lead { max-width: 560px; color: var(--sand-200); opacity: .92; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-side {
  justify-self: end; max-width: 300px;
  padding: 1.2rem 1.3rem; border-radius: var(--radius);
  background: rgba(251, 247, 238, .08); border: 1px solid rgba(251, 247, 238, .18); backdrop-filter: blur(10px);
}
.hero-side img { width: 190px; margin-bottom: .75rem; }
.hero-side p { font-size: .95rem; line-height: 1.45; color: var(--sand-200); }
.hero-side strong { color: var(--gold); }
.scroll-hint {
  position: absolute; right: 2rem; top: 50%; transform: rotate(90deg) translateX(-50%); transform-origin: right center;
  display: none; align-items: center; gap: .8rem; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sand-300); opacity: .8;
}
.scroll-hint i { font-size: 14px; transform: rotate(-90deg); animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: rotate(-90deg) translateY(0); } 50% { transform: rotate(-90deg) translateY(4px); } }

/* entrada escalonada */
.hero-el { opacity: 0; transform: translateY(24px); animation: rise .9s var(--ease) forwards; animation-delay: calc(.15s + var(--d) * .12s); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Ticker ---------- */
.ticker { background: var(--gold); color: var(--olive-950); overflow: hidden; padding: .8rem 0; border-block: 1px solid rgba(22, 27, 12, .2); }
.ticker-track { display: flex; gap: 2.2rem; width: max-content; animation: ticker 40s linear infinite; }
.ticker span { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1rem; letter-spacing: -.01em; white-space: nowrap; }
.ticker i { font-style: normal; opacity: .55; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Seções ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section-sand { background: var(--sand-300); }
.section-cream { background: var(--sand-100); }
.section-olive { background: var(--olive-700); color: var(--sand-100); }
.section-olive-deep { background: var(--olive-900); color: var(--sand-100); }
.section-olive .eyebrow, .section-olive-deep .eyebrow { color: var(--sand-300); }
.section-olive-deep .section-head p { color: var(--muted-light); }
.section-foot { text-align: center; margin-top: 3rem; }

/* ---------- Trips ---------- */
.trips-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.trips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trip {
  display: flex; flex-direction: column; background: var(--sand-100); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 1px 0 rgba(22, 27, 12, .06), var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.trip:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -22px rgba(22, 27, 12, .45); }
.trip-media { position: relative; overflow: hidden; background: var(--olive-800); }
.trip-media img { width: 100%; height: auto; transition: transform .8s var(--ease); }
.trip:hover .trip-media img { transform: scale(1.04); }
.trip-tag {
  position: absolute; top: .8rem; left: .8rem;
  padding: .32rem .7rem; border-radius: 999px;
  background: rgba(22, 27, 12, .78); color: var(--sand-200); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.trip-body { display: flex; flex-direction: column; gap: .85rem; padding: 1.25rem 1.3rem 1.4rem; flex: 1; }
.trip-body h3 { font-size: 1.25rem; }
.trip-body h3 small { display: block; margin-top: .3rem; font-family: var(--font-body); font-weight: 600; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--olive-500); }
.trip-body p { color: var(--muted); font-size: .95rem; line-height: 1.5; }
.checks { display: flex; flex-wrap: wrap; gap: .4rem .5rem; margin-top: auto; }
.checks li { display: inline-flex; align-items: center; gap: .3rem; font-size: .76rem; font-weight: 600; color: var(--olive-700); background: var(--sand-200); border: 1px solid var(--sand-400); padding: .25rem .6rem; border-radius: 999px; }
.checks li::before { content: "✓"; color: var(--gold-700); font-weight: 800; }
.trip-body .btn { align-self: flex-start; margin-top: .4rem; }
.trip-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .4rem; }
.trip-actions .btn { margin-top: 0; }

.trip-wide .trip-body { padding: 1.6rem 1.8rem 1.8rem; }
.trip-wide .trip-body h3 { font-size: 1.6rem; }
.trip-wide .trip-body p { font-size: 1rem; }

/* ---------- Diferenciais ---------- */
.diff { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.diff-item { padding: 0 1.5rem; border-left: 1px solid rgba(251, 247, 238, .15); }
.diff-item:first-child { border-left: 0; padding-left: 0; }
.diff-ico { display: block; font-size: 2rem; line-height: 1; color: var(--gold); margin-bottom: 1.1rem; }
.diff-item h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.diff-item p { color: var(--muted-light); font-size: .95rem; }

/* ---------- Experiência ---------- */
.exp-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.exp-media { position: relative; }
.exp-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%; border-radius: var(--radius); box-shadow: var(--shadow); }
.exp-note {
  position: absolute; right: -1.2rem; bottom: 2rem; max-width: 240px;
  display: grid; gap: .3rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  background: var(--olive-900); color: var(--sand-100); box-shadow: var(--shadow); transform: rotate(-2deg);
}
.exp-note strong { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.05rem; line-height: 1.25; letter-spacing: -.01em; }
.exp-note > span:last-child { font-size: .8rem; color: var(--muted-light); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list li > i { flex: none; width: 46px; height: 46px; display: grid; place-items: center; font-size: 1.15rem; border-radius: 12px; color: var(--gold-700); background: var(--sand-300); }
.feature-list h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: .2rem; }
.feature-list p { color: var(--muted); font-size: .92rem; line-height: 1.45; }

/* ---------- Passos ---------- */
.steps { padding-bottom: clamp(3rem, 6vw, 5rem); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps-grid::before { content: ""; position: absolute; left: 4%; right: 4%; top: 24px; height: 1px; background: linear-gradient(90deg, transparent, rgba(232, 213, 163, .35) 15%, rgba(232, 213, 163, .35) 85%, transparent); }
.steps-grid li { position: relative; text-align: center; padding-top: 3.6rem; }
.step-n {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%;
  background: var(--olive-900); border: 1.5px solid var(--gold); color: var(--gold);
  font-family: var(--font-display); font-weight: 800; font-size: .95rem;
}
.steps-grid h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.steps-grid p { color: var(--muted-light); font-size: .95rem; }

/* ---------- Depoimentos ---------- */
.testi { padding-top: clamp(3rem, 6vw, 5rem); }
.testi::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 0%, rgba(212, 152, 14, .12), transparent 70%);
}
/* faixa infinita: o JS duplica os cards e a trilha anda 50% (um set inteiro) */
.testi-marquee {
  overflow: hidden; padding-block: .5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.testi-track { display: flex; width: max-content; animation: testiLoop 60s linear infinite; }
.testi-marquee:hover .testi-track { animation-play-state: paused; }
@keyframes testiLoop { to { transform: translateX(-50%); } }
.testi-card {
  flex: none; width: min(360px, 80vw); margin-right: 1.3rem;
  display: flex; flex-direction: column; gap: 1rem; padding: 1.6rem 1.6rem 1.4rem; border-radius: var(--radius);
  background: rgba(251, 247, 238, .05); border: 1px solid rgba(232, 213, 163, .16);
  transition: border-color .4s, transform .5s var(--ease), background .4s;
}
.testi-card:hover { border-color: rgba(212, 152, 14, .5); background: rgba(251, 247, 238, .07); transform: translateY(-4px); }
.testi-card blockquote { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.02rem; line-height: 1.45; color: var(--sand-100); flex: 1; }
.testi-card figcaption { display: flex; align-items: center; gap: .8rem; padding-top: 1rem; border-top: 1px solid rgba(232, 213, 163, .14); }
.testi-card figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-card figcaption strong { display: block; font-size: .95rem; }
.testi-card figcaption span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-light); }

/* ---------- Sobre ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about-copy p { color: var(--olive-700); margin-top: 1rem; font-size: 1.05rem; }
.pull {
  margin: 1.4rem 0; padding: .3rem 0 .3rem 1.3rem; border-left: 3px solid var(--gold);
  font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.2rem; line-height: 1.35; letter-spacing: -.01em; color: var(--olive-900);
}
.stats { display: flex; gap: 2.5rem; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid rgba(22, 27, 12, .15); }
.stats strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2.3rem; line-height: 1; letter-spacing: -.03em; color: var(--olive-900); }
.stats strong i { color: var(--gold); font-size: .5em; vertical-align: .35em; margin-left: .1em; }
.stats span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--olive-600); }
.about-media { position: relative; height: 560px; }
.about-media .ph { position: absolute; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.ph-1 { width: 62%; height: 78%; left: 0; top: 0; transform: rotate(-2.5deg); }
.ph-2 { width: 52%; height: 66%; right: 0; bottom: 0; transform: rotate(3deg); border: 6px solid var(--sand-100); }
.stamp {
  position: absolute; left: 52%; top: 8%;
  width: 118px; height: 118px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: var(--gold); color: var(--olive-950); border: 3px dashed var(--olive-900);
  font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: .95rem; line-height: 1.1; letter-spacing: -.01em;
  transform: rotate(12deg); box-shadow: var(--shadow);
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq details { border-bottom: 1px solid rgba(22, 27, 12, .14); }
.faq summary {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem 0; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.08rem; color: var(--olive-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .n { font-family: var(--font-display); font-weight: 800; color: var(--gold-700); font-size: .9rem; min-width: 2ch; }
.faq-ico {
  margin-left: auto; width: 32px; height: 32px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: .8rem; color: var(--olive-800);
  border: 1.5px solid var(--olive-800); transition: transform .4s var(--ease), background .3s, color .3s;
}
.faq details[open] .faq-ico { transform: rotate(45deg); background: var(--olive-800); color: var(--sand-100); }
.faq-a { padding: 0 0 1.3rem calc(2ch + 1rem); color: var(--muted); font-size: 1rem; line-height: 1.6; max-width: 62ch; }
.faq details[open] .faq-a { animation: faqIn .45s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- CTA ---------- */
.cta { position: relative; padding: clamp(6rem, 12vw, 9rem) 0; text-align: center; color: var(--sand-100); overflow: hidden; isolation: isolate; }
.cta-bg { position: absolute; inset: 0; z-index: -1; background: url("img/cta.jpg") center 40% / cover no-repeat; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 90% at 50% 50%, rgba(22, 27, 12, .55), rgba(22, 27, 12, .92)); }
.cta-inner { max-width: 720px; display: grid; justify-items: center; gap: 1.1rem; }
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.cta p { font-size: 1.15rem; color: var(--sand-200); }
.cta .btn { margin-top: .6rem; }
.cta small { font-size: .82rem; color: var(--muted-light); }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-950); color: var(--sand-200); padding: 4rem 0 1.8rem; border-top: 1px solid rgba(232, 213, 163, .1); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(232, 213, 163, .12); }
.footer-brand img { width: 160px; margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; color: var(--muted-light); font-size: .95rem; }
.site-footer h4 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links { display: grid; gap: .5rem; align-content: start; }
.footer-links a { color: var(--sand-200); font-size: .95rem; opacity: .85; transition: opacity .3s, transform .3s var(--ease); width: fit-content; }
.footer-links a:hover { opacity: 1; transform: translateX(3px); }
.social-row { display: flex; gap: .6rem; }
.footer-hint { margin-top: 1rem; font-size: .85rem; color: var(--muted-light); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.6rem; font-size: .82rem; color: var(--muted-light); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7);
  transition: transform .35s var(--ease);
}
.wa-float i { font-size: 1.85rem; line-height: 1; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }

/* ---------- Reveal no scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.trips-grid .reveal:nth-child(4n+2), .feature-list .reveal:nth-child(2n) { transition-delay: .1s; }
.trips-grid .reveal:nth-child(4n+3) { transition-delay: .2s; }
.trips-grid .reveal:nth-child(4n+4) { transition-delay: .3s; }
.steps-grid .reveal:nth-child(2) { transition-delay: .12s; }
.steps-grid .reveal:nth-child(3) { transition-delay: .24s; }
.steps-grid .reveal:nth-child(4) { transition-delay: .36s; }
.diff-grid .reveal:nth-child(2) { transition-delay: .12s; }
.diff-grid .reveal:nth-child(3) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .hero-el { opacity: 1; transform: none; }
  /* sem animação: vira rolagem manual e esconde as cópias */
  .testi-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .testi-track { padding-inline: 1.25rem; }
  .testi-card[aria-hidden="true"] { display: none; }
}

/* =====================================================
   Responsivo
   ===================================================== */
@media (min-width: 1100px) { .scroll-hint { display: flex; } }

@media (max-width: 1100px) {
  .trips-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: grid; }
  .site-header.menu-open { background: rgba(28, 32, 16, .96); }
  .nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: 100%;
    padding: .6rem 1.25rem 1.2rem; background: rgba(28, 32, 16, .96); backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 213, 163, .12);
  }
  .nav.open a { padding: .9rem 0; border-bottom: 1px solid rgba(232, 213, 163, .1); font-size: 1.05rem; }
  .nav.open a::after { display: none; }
  .header-actions { margin-left: auto; }
  .header-actions .icon-btn { display: none; }

  .hero { padding: 8rem 0 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-side { justify-self: start; }

  .trips-featured { grid-template-columns: 1fr; }
  .trips-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .diff-item { padding: 0; border-left: 0; border-top: 1px solid rgba(251, 247, 238, .15); padding-top: 1.4rem; }
  .diff-item:first-child { border-top: 0; padding-top: 0; }
  .exp-grid, .about-grid { grid-template-columns: 1fr; }
  .exp-media { max-width: 520px; width: 100%; margin-inline: auto; }
  .exp-note { right: 0; }
  .about-media { height: 460px; max-width: 520px; width: 100%; margin-inline: auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 2rem, var(--container)); }
  .header-inner { gap: 1rem; }
  .brand { flex: none; }
  .brand img { width: 140px; }
  .header-actions .btn { padding: .6rem .9rem; font-size: .85rem; }
  .hero { padding: 7rem 0 3.5rem; min-height: 92svh; }
  .hero-cta .btn { width: 100%; white-space: normal; line-height: 1.25; text-align: center; }
  .hero-side { max-width: none; width: 100%; }
  .trip-wide .trip-body { padding: 1.25rem 1.3rem 1.4rem; }
  .trip-wide .trip-body h3 { font-size: 1.35rem; }
  .trips-grid { grid-template-columns: 1fr; }
  .trip-body .btn { align-self: stretch; }
  .trip-actions { flex-direction: column; }
  .feature-list { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .steps-grid li { text-align: left; padding: 0 0 0 4rem; }
  .step-n { left: 0; transform: none; }
  .stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
  .stats strong { font-size: 2rem; }
  .stats span { display: block; margin-top: .35rem; font-size: .7rem; line-height: 1.3; }
  .about-media { height: 380px; }
  .ph-1 { left: 3%; width: 60%; }
  .ph-2 { right: 3%; width: 50%; }
  .stamp { width: 96px; height: 96px; font-size: .85rem; }
  .cta .btn { width: 100%; white-space: normal; padding: 1.1rem 1.25rem; font-size: 1rem; line-height: 1.25; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .site-footer { padding-bottom: 5.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { right: 1rem; bottom: 1rem; width: 54px; height: 54px; }
}

/* telas bem estreitas (iPhone SE, Androids pequenos) */
@media (max-width: 370px) {
  .brand img { width: 118px; }
  .header-actions { gap: .4rem; }
  .header-actions .btn .ico { display: none; }
  .badge { font-size: .76rem; gap: .45rem; }
  .hero-cta .btn { padding-inline: 1rem; font-size: .92rem; }
}
