/* ═══════════════════════════════════════════════
   RUMO AO mar! — excursões retrô pro litoral
   azul royal ★ creme ★ amarelo ★ rosa ★ vermelho
   ═══════════════════════════════════════════════ */

:root {
  --blue: #2E45CE;
  --blue-deep: #1A2470;
  --cream: #F6EEDC;
  --cream-dim: #EFE3C8;
  --yellow: #F7E353;
  --yellow-deep: #D9C22E;
  --pink: #F49FBE;
  --pink-hot: #EF6FA5;
  --red: #E0392A;
  --ink: #17181C;
  --disp: "Passion One", sans-serif;
  --script: "Pacifico", cursive;
  --sans: "Oswald", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* reveals (JS liga) */
body:not(.no-js) .rv { opacity: 0; transform: translateY(24px); }

/* ── grão de filme ── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 60;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── loader ── */
.loader {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background: var(--blue);
  transition: opacity .55s ease, visibility .55s ease;
}
.loader__script {
  font-family: var(--script);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--pink);
  text-shadow: .06em .06em 0 var(--blue-deep);
  rotate: -6deg;
  animation: loaderPulse 1.1s ease-in-out infinite alternate;
}
.loader.is-done { opacity: 0; visibility: hidden; }
@keyframes loaderPulse { from { scale: .94; } to { scale: 1.05; } }

/* ── nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem clamp(1.2rem, 4vw, 3rem);
  background: var(--blue);
  border-bottom: 3px solid var(--blue-deep);
}
.nav__brand {
  font-family: var(--disp); font-weight: 900;
  font-size: 1.3rem; letter-spacing: .02em;
  color: var(--yellow); text-decoration: none;
  white-space: nowrap;
  position: relative; z-index: 52;
}
.nav__brand em {
  font-family: var(--script); font-style: normal; font-weight: 400;
  color: var(--pink); font-size: 1.15em; margin-left: .1em;
}
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.6vw, 2.2rem); }
.nav__links a {
  color: var(--cream); text-decoration: none;
  font-weight: 500; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .16em;
  translate: 0 0; transition: translate .25s ease, color .25s ease;
}
.nav__links a:hover { color: var(--yellow); translate: 0 -2px; }
.nav__cta {
  background: var(--yellow); color: var(--blue-deep) !important;
  padding: .5rem 1.2rem; border-radius: 999px;
  border: 2px solid var(--blue-deep);
  box-shadow: 3px 3px 0 var(--blue-deep);
  transition: box-shadow .25s ease, translate .25s ease;
}
.nav__cta:hover { translate: 2px 2px; box-shadow: 0 0 0 var(--blue-deep); }
.nav__burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 36px; position: relative; z-index: 52;
}
.nav__burger span {
  position: absolute; left: 6px; right: 6px; height: 3px;
  background: var(--cream); border-radius: 2px;
  transition: rotate .3s ease, translate .3s ease;
}
.nav__burger span:nth-child(1) { top: 12px; }
.nav__burger span:nth-child(2) { top: 22px; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--blue);
  background-image: radial-gradient(rgba(246, 238, 220, .13) 1.5px, transparent 2px);
  background-size: 26px 26px;
  padding: clamp(6.5rem, 12vh, 9rem) 1.4rem 0;
  overflow: hidden;
}
.hero__inner {
  width: min(1100px, 100%); margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(1.6rem, 3.4vh, 2.6rem);
  padding-bottom: clamp(5rem, 10vh, 7rem);
}

/* letras circuladas */
.hero__letters { display: flex; flex-wrap: wrap; justify-content: center; gap: .45rem; }
.cl {
  width: clamp(2rem, 4.2vw, 2.9rem); height: clamp(2rem, 4.2vw, 2.9rem);
  display: grid; place-items: center;
  background: var(--yellow); color: var(--red);
  border-radius: 50%;
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(1rem, 2.1vw, 1.45rem);
  border: 2px solid var(--blue-deep);
  box-shadow: 2px 3px 0 var(--blue-deep);
}
.cl--star { background: var(--pink); color: var(--blue-deep); }

/* fita dobrada + script */
.hero__title { position: relative; }
.hero__ribbon {
  position: relative;
  background: var(--yellow);
  rotate: -2.5deg;
  padding: clamp(.4rem, 1.2vw, .9rem) clamp(2rem, 5vw, 4rem);
  box-shadow: 0 12px 0 rgba(23, 24, 28, .18);
}
.hero__ribbon::before,
.hero__ribbon::after {
  content: ""; position: absolute; top: 14px; z-index: -1;
  width: clamp(2.4rem, 4vw, 3.6rem); height: 100%;
  background: var(--yellow-deep);
}
.hero__ribbon::before { left: calc(clamp(2.4rem, 4vw, 3.6rem) * -.62); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 38% 50%); }
.hero__ribbon::after { right: calc(clamp(2.4rem, 4vw, 3.6rem) * -.62); clip-path: polygon(0 0, 100% 0, 62% 50%, 100% 100%, 0 100%); }
.hero__ribbon span {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(3.4rem, 11vw, 8.6rem);
  line-height: .95; letter-spacing: .01em;
  color: var(--red);
  display: block;
}
.hero__script {
  font-family: var(--script);
  font-size: clamp(4rem, 13vw, 10rem);
  color: var(--pink-hot);
  text-shadow: .055em .055em 0 var(--blue-deep);
  rotate: -6deg;
  margin-top: clamp(-2.4rem, -4.5vw, -3.6rem);
  position: relative; z-index: 2;
  pointer-events: none;
}

.hero__sub {
  color: var(--cream);
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  font-weight: 400; letter-spacing: .04em;
  line-height: 1.75;
}

/* selos */
.hero__badges { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; justify-content: center; }
.badge-round {
  width: clamp(6.2rem, 10vw, 7.6rem); height: clamp(6.2rem, 10vw, 7.6rem);
  border-radius: 50%;
  background: var(--red); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .1rem;
  rotate: -12deg;
  border: 3px dashed var(--cream);
  outline: 4px solid var(--red);
}
.badge-round small { font-size: .68rem; letter-spacing: .3em; font-weight: 500; }
.badge-round strong { font-family: var(--disp); font-weight: 900; font-size: 2rem; line-height: 1; }
.badge-pill {
  background: var(--cream); color: var(--blue-deep);
  font-weight: 500; letter-spacing: .08em; font-size: .9rem;
  padding: .65rem 1.5rem; border-radius: 999px;
  border: 2px solid var(--blue-deep);
  box-shadow: 4px 4px 0 var(--blue-deep);
  rotate: 2deg;
}

/* fita marquee */
.tape {
  position: absolute; left: -4%; right: -4%; bottom: clamp(1rem, 3vh, 2rem);
  background: var(--yellow);
  border-top: 3px solid var(--blue-deep);
  border-bottom: 3px solid var(--blue-deep);
  rotate: -1.6deg;
  overflow: hidden;
  padding: .55rem 0;
}
.tape__track { display: flex; white-space: nowrap; width: max-content; animation: tapeMove 26s linear infinite; }
.tape__track span {
  font-family: var(--disp); font-weight: 700;
  font-size: 1.05rem; letter-spacing: .12em;
  color: var(--red);
}
@keyframes tapeMove { to { transform: translateX(-50%); } }

/* ═══ FAIXA DE ÍCONES ═══ */
.icones {
  background: var(--blue-deep);
  padding: clamp(2.2rem, 5vw, 3.4rem) 1.4rem;
}
.icones__lista {
  list-style: none;
  width: min(1100px, 100%); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
}
.icones__lista li {
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  color: var(--cream); text-align: center;
}
.icones__lista svg { width: clamp(2.6rem, 4.5vw, 3.4rem); height: auto; color: var(--yellow); }
.icones__lista span {
  font-size: .78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em;
}

/* ── rótulos de seção ── */
.slabel {
  font-family: var(--script);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--red);
  rotate: -2deg; display: inline-block;
}
.slabel--cream { color: var(--yellow); }

/* ═══ MAPA ═══ */
.mapa {
  background: var(--cream);
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.4rem, 4vw, 3rem);
}
.mapa__head {
  width: min(1200px, 100%); margin: 0 auto clamp(2.4rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 1.5rem 3rem;
}
.mapa__head h2, .destinos h2, .roteiro h2, .fotos h2 {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: .95; letter-spacing: .01em;
  color: var(--blue);
}
.mapa__head .slabel { grid-column: 1 / -1; }
.mapa__km { display: flex; align-items: baseline; gap: .9rem; }
.mapa__km strong {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(4rem, 9vw, 7.5rem); line-height: .9;
  color: transparent;
  -webkit-text-stroke: 3px var(--red);
}
.mapa__km span {
  font-size: .82rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .2em; line-height: 1.7; color: var(--ink);
}

.mapa__stage {
  position: relative;
  width: min(1200px, 100%); margin: 0 auto;
  border: 4px solid var(--blue-deep);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 10px 12px 0 var(--blue-deep);
}
.mapa__img { width: 100%; height: auto; }
.mapa__rota { position: absolute; inset: 0; width: 100%; height: 100%; }
.route-boat { animation: boatDash 1.4s linear infinite; }
@keyframes boatDash { to { stroke-dashoffset: -40; } }

.mapa__legenda {
  position: absolute; left: clamp(.8rem, 2.5vw, 1.6rem); bottom: clamp(.8rem, 2.5vw, 1.6rem);
  background: var(--cream);
  border: 3px solid var(--red); border-radius: 12px;
  padding: .8rem 1.1rem;
  display: flex; flex-direction: column; gap: .4rem;
  font-size: .78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em;
  box-shadow: 5px 5px 0 rgba(23, 24, 28, .25);
}
.mapa__legenda strong { font-family: var(--disp); color: var(--red); letter-spacing: .18em; }
.mapa__legenda span { display: flex; align-items: center; gap: .55rem; }
.lg { display: inline-block; }
.lg--linha { width: 26px; height: 4px; background: var(--red); border-radius: 2px; }
.lg--dash {
  width: 26px; height: 4px; border-radius: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0 5px, transparent 5px 10px);
}
.lg--star { color: var(--yellow-deep); font-size: 1rem; font-style: normal; }

/* ═══ DESTINOS ═══ */
.destinos {
  background: var(--blue);
  background-image: radial-gradient(rgba(246, 238, 220, .1) 1.5px, transparent 2px);
  background-size: 26px 26px;
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.4rem, 4vw, 3rem);
  overflow-x: clip;
}
.destinos__head { width: min(1100px, 100%); margin: 0 auto clamp(2.6rem, 5vw, 4rem); }
.destinos__head h2 { color: var(--cream); }

.dest {
  width: min(1100px, 100%);
  margin: 0 auto 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.4rem, 3.5vw, 2.8rem);
  border: 3px solid var(--blue-deep);
  border-radius: 20px;
  box-shadow: 7px 8px 0 var(--blue-deep);
  translate: 0 0; rotate: 0deg;
  transition: translate .3s ease, rotate .3s ease, box-shadow .3s ease;
}
.dest:hover { translate: 0 -5px; rotate: -.5deg; box-shadow: 10px 13px 0 var(--blue-deep); }
.dest--pink { background: var(--pink); }
.dest--yellow { background: var(--yellow); }
.dest--cream { background: var(--cream); }
.dest--blue { background: var(--pink-hot); }

.dest__num {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: transparent; -webkit-text-stroke: 2.5px var(--red);
  line-height: 1;
}
.dest__info h3 {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1; color: var(--blue-deep);
  letter-spacing: .01em;
}
.dest__info p {
  margin: .5rem 0 .8rem;
  font-size: .95rem; font-weight: 400; line-height: 1.65;
  max-width: 46ch;
}
.dest__tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.dest__tags span {
  background: var(--cream); color: var(--blue-deep);
  border: 2px solid var(--blue-deep);
  font-size: .72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  padding: .28rem .8rem; border-radius: 999px;
}
.dest__meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: .5rem;
}
.dest__stars { color: var(--red); font-size: 1.05rem; letter-spacing: .18em; }
.dest__preco {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  color: var(--red);
}
.dest__chip {
  width: clamp(4.6rem, 8vw, 6.4rem); height: clamp(4.6rem, 8vw, 6.4rem);
  border-radius: 14px;
  background-size: cover; background-position: center;
  border: 3px solid var(--blue-deep);
  rotate: 4deg;
  transition: rotate .3s ease, scale .3s ease;
}
.dest:hover .dest__chip { rotate: -3deg; scale: 1.06; }

/* ═══ ROTEIRO ═══ */
.roteiro {
  background: var(--cream);
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.4rem, 4vw, 3rem);
}
.roteiro__head { width: min(1100px, 100%); margin: 0 auto clamp(2.6rem, 5vw, 4rem); }
.roteiro__cols {
  width: min(1100px, 100%); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
}
.rot-col {
  background: var(--yellow);
  border: 3px solid var(--blue-deep);
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 8px 9px 0 var(--blue-deep);
  rotate: -1deg;
}
.rot-col--sun { background: var(--pink); rotate: 1.2deg; }
.rot-col h3 {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--red); line-height: 1;
  margin-bottom: 1.4rem;
  border-bottom: 3px dashed var(--blue-deep);
  padding-bottom: .8rem;
}
.rot-col ul { list-style: none; display: flex; flex-direction: column; gap: 1.05rem; }
.rot-col li { display: flex; gap: 1rem; align-items: baseline; }
.rot-col b {
  font-family: var(--disp); font-weight: 700;
  font-size: 1.25rem; color: var(--blue);
  min-width: 4.2rem;
}
.rot-col span { font-size: .95rem; font-weight: 400; line-height: 1.55; }

/* ═══ FOTOS ═══ */
.fotos {
  background: var(--blue-deep);
  background-image: radial-gradient(rgba(246, 238, 220, .08) 1.5px, transparent 2px);
  background-size: 26px 26px;
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.4rem, 4vw, 3rem) clamp(6rem, 11vw, 9rem);
}
.fotos__head { width: min(1100px, 100%); margin: 0 auto clamp(3rem, 6vw, 4.5rem); }
.fotos__head h2 { color: var(--cream); }
.fotos__mesa {
  width: min(1100px, 100%); margin: 0 auto;
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.pol {
  background: var(--cream);
  padding: 1rem 1rem 1.1rem;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  position: relative;
}
.pol::before {
  content: ""; position: absolute; top: -14px; left: 50%;
  translate: -50% 0; rotate: -3deg;
  width: 110px; height: 30px;
  background: rgba(247, 227, 83, .75);
  border-left: 2px dashed rgba(23, 24, 28, .18);
  border-right: 2px dashed rgba(23, 24, 28, .18);
}
.pol img { border-radius: 3px; width: 100%; height: auto; }
.pol figcaption {
  font-family: var(--script);
  font-size: 1.2rem; color: var(--blue);
  text-align: center; padding-top: .7rem;
}
.pol--1 { rotate: -3deg; }
.pol--2 { rotate: 2.5deg; width: min(340px, 90%); justify-self: center; }
.fotos__quote {
  grid-column: 2; margin-top: 1rem;
  font-family: var(--script);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--yellow); line-height: 1.6;
  rotate: -1.5deg;
}
.fotos__quote cite {
  display: block; margin-top: .8rem;
  font-family: var(--sans); font-style: normal;
  font-size: .85rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream);
}

/* ═══ FOOTER ═══ */
.footer { position: relative; background: var(--red); }
.footer__scallop {
  position: absolute; top: -30px; left: 0; right: 0; height: 32px;
  background-image: radial-gradient(circle at 50% 100%, var(--red) 21px, transparent 22px);
  background-size: 44px 32px;
  background-position: center bottom;
}
.footer__inner {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.4rem, 4vw, 3rem) 2.4rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(1.6rem, 3.5vw, 2.4rem);
}
.footer__chamada {
  font-family: var(--script);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  color: var(--cream); rotate: -1.5deg;
  max-width: 34ch; line-height: 1.65;
}
.footer__cta {
  display: inline-block;
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: .04em;
  color: var(--red); background: var(--yellow);
  text-decoration: none;
  padding: 1rem 2.6rem; border-radius: 999px;
  border: 3px solid var(--blue-deep);
  box-shadow: 6px 7px 0 var(--blue-deep);
  translate: 0 0;
  transition: translate .25s ease, box-shadow .25s ease;
}
.footer__cta:hover { translate: 3px 4px; box-shadow: 0 0 0 var(--blue-deep); }
.footer__wordmark {
  font-family: var(--disp); font-weight: 900;
  font-size: clamp(3.4rem, 13vw, 11rem);
  line-height: 1;
  color: var(--cream);
  letter-spacing: .01em;
  margin-top: 1rem;
  white-space: nowrap;
}
.footer__wordmark em {
  font-family: var(--script); font-style: normal; font-weight: 400;
  color: var(--yellow); font-size: .95em;
}
.footer__linhas {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem 2.4rem;
  font-size: .85rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream);
}
.footer__linhas a { color: var(--yellow); text-decoration: none; }
.footer__linhas a:hover { text-decoration: underline; }
.footer__legal {
  font-size: .72rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(246, 238, 220, .75);
  border-top: 2px dashed rgba(246, 238, 220, .4);
  padding-top: 1.4rem;
  width: min(760px, 100%);
}

/* ═══ RESPONSIVO ═══ */
@media (max-width: 1024px) {
  .icones__lista { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .fotos__mesa { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center;
    background: var(--blue-deep);
    opacity: 0; visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
  }
  .nav__links a { font-size: 1.3rem; }
  .nav__links.is-open { opacity: 1; visibility: visible; z-index: 49; }
  .nav__burger { display: block; }
  .nav__burger.is-x span:nth-child(1) { top: 17px; rotate: 45deg; }
  .nav__burger.is-x span:nth-child(2) { top: 17px; rotate: -45deg; }

  .mapa__head { grid-template-columns: 1fr; align-items: start; }
  .icones__lista { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .roteiro__cols { grid-template-columns: 1fr; }
  .rot-col, .rot-col--sun { rotate: 0deg; }
  .fotos__mesa { grid-template-columns: 1fr; }
  .fotos__quote { grid-column: 1; justify-self: center; text-align: center; }
  .pol--1 { width: min(480px, 100%); justify-self: center; }
  .dest { grid-template-columns: auto 1fr; }
  .dest__meta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
}

@media (max-width: 640px) {
  .hero { padding-top: 5.4rem; }
  .hero__inner { gap: 1.4rem; padding-bottom: 5.5rem; }
  .hero__letters { gap: .3rem; }
  .cl { width: 1.72rem; height: 1.72rem; font-size: .92rem; box-shadow: 1px 2px 0 var(--blue-deep); }
  .hero__sub br { display: none; }
  .badge-pill { font-size: .78rem; }
  .icones__lista { grid-template-columns: repeat(2, 1fr); }
  .mapa__legenda { position: static; margin-top: 1rem; box-shadow: none; border-radius: 0 0 12px 12px; }
  .mapa__stage { box-shadow: 6px 7px 0 var(--blue-deep); }
  .dest { gap: 1rem; }
  .dest__num { display: none; }
  .footer__wordmark { white-space: normal; }
}

/* movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tape__track, .route-boat, .loader__script { animation: none; }
  body:not(.no-js) .rv { opacity: 1; transform: none; }
}
