/* =========================================================
   Luiz Bertoluci · táxi e transfer na Serra Gaúcha
   Tokens → base → componentes → seções → responsivo
   ========================================================= */

:root {
  --pine: #1B3A2F;
  --pine-deep: #142C23;
  --mist: #E8EEE9;
  --surface: #F3F6F2;
  --asphalt: #1A1C1B;
  --ink-soft: #3A403D;
  --amber: #C4A35A;
  --fog: #A8B5AE;
  --wa: #25D366;
  --wa-ink: #0B2018;

  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 12px;
  --shadow: 0 18px 40px -28px rgba(20, 44, 35, 0.55);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--mist);
  color: var(--asphalt);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4.9rem; /* espaço da barra fixa no mobile */
}

img,
video { display: block; max-width: 100%; height: auto; }

p { color: var(--ink-soft); margin: 0 0 1rem; }

a { color: inherit; }

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  left: 1rem; top: -4rem;
  z-index: 100;
  background: var(--pine);
  color: var(--mist);
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

/* ---------- Tipografia ---------- */

.section__title {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.5vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--asphalt);
  margin: 0 0 1.1rem;
  text-wrap: balance;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pine);
  margin: 0 0 0.9rem;
}

/* ---------- Seções ---------- */

.section { padding-block: clamp(3.75rem, 8vw, 7rem); }

section[id] { scroll-margin-top: 5.5rem; }

.section--dark {
  background: var(--pine);
  color: var(--mist);
}
.section--dark .section__title { color: var(--mist); }
.section--dark p { color: rgba(232, 238, 233, 0.82); }
.section--dark .eyebrow { color: var(--amber); }
.section--dark :focus-visible { outline-color: var(--mist); }

/* ---------- Botões ---------- */

.btn {
  --btn-bg: var(--pine);
  --btn-fg: var(--mist);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--pine);
  --btn-bd: rgba(27, 58, 47, 0.35);
}
.btn--ghost:hover { --btn-bg: rgba(27, 58, 47, 0.07); }

.btn--wa {
  --btn-bg: var(--wa);
  --btn-fg: var(--wa-ink);
}

.btn--sm { padding: 0.55rem 1.05rem; font-size: 0.9rem; }
.btn--lg { padding: 0.95rem 1.7rem; font-size: 1.02rem; }

.section--dark .btn {
  --btn-bg: var(--mist);
  --btn-fg: var(--pine);
}
.section--dark .btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--mist);
  --btn-bd: rgba(232, 238, 233, 0.45);
}
.section--dark .btn--ghost:hover { --btn-bg: rgba(232, 238, 233, 0.12); }

/* ---------- Topbar ---------- */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: 0.85rem;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.topbar--pinned {
  background: rgba(232, 238, 233, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(27, 58, 47, 0.12);
  padding-block: 0.55rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: block;
  flex: none;
  text-decoration: none;
  line-height: 0;
}

.brand__logo {
  display: block;
  width: auto;
  height: clamp(2.75rem, 8vw, 3.45rem);
  filter: drop-shadow(0 1px 3px rgba(255, 255, 255, 0.45));
}
.topbar--pinned .brand__logo { filter: none; }

.mainnav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.mainnav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.mainnav__list a {
  color: rgba(232, 238, 233, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding-block: 0.25rem;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.mainnav__list a:hover { border-bottom-color: var(--amber); }
.topbar--pinned .mainnav__list a { color: var(--ink-soft); }

.mainnav__actions { display: flex; gap: 0.5rem; }
.mainnav .btn--ghost {
  --btn-fg: var(--mist);
  --btn-bd: rgba(232, 238, 233, 0.45);
}
.topbar--pinned .mainnav .btn--ghost {
  --btn-fg: var(--pine);
  --btn-bd: rgba(27, 58, 47, 0.35);
}
.mainnav .btn:not(.btn--ghost) {
  --btn-bg: var(--mist);
  --btn-fg: var(--pine);
}
.topbar--pinned .mainnav .btn:not(.btn--ghost) {
  --btn-bg: var(--pine);
  --btn-fg: var(--mist);
}

.navtoggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: 1.5px solid rgba(232, 238, 233, 0.45);
  border-radius: 999px;
  color: var(--mist);
  padding: 0.5rem 0.95rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.topbar--pinned .navtoggle {
  color: var(--asphalt);
  border-color: rgba(27, 58, 47, 0.35);
}
.navtoggle__bars {
  position: relative;
  width: 16px; height: 2px;
  background: currentColor;
}
.navtoggle__bars::before,
.navtoggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px; height: 2px;
  background: currentColor;
}
.navtoggle__bars::before { top: -5px; }
.navtoggle__bars::after { top: 5px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(92vh, 860px);
  padding-top: clamp(7rem, 16vh, 10rem);
  padding-bottom: clamp(3rem, 8vh, 5.5rem);
  background: var(--pine); /* fallback enquanto o vídeo não carrega */
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: -1; }

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__video--ready { opacity: 1; }

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 44, 35, 0.58) 0%, rgba(20, 44, 35, 0.26) 40%, rgba(20, 44, 35, 0.86) 100%),
    linear-gradient(90deg, rgba(20, 44, 35, 0.5) 0%, rgba(20, 44, 35, 0) 58%);
}

.hero__inner { position: relative; }

.hero__title {
  font-family: var(--font-display);
  font-stretch: 100%;
  font-weight: 600;
  font-size: clamp(2.05rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--mist);
  max-width: 22ch;
  margin: 0 0 1.1rem;
  text-wrap: balance;
}

.hero__lead {
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: rgba(232, 238, 233, 0.88);
  margin-bottom: 1.9rem;
}
.hero__lead strong { color: var(--mist); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero .btn:not(.btn--ghost) { --btn-bg: var(--mist); --btn-fg: var(--pine); }
.hero .btn--ghost { --btn-fg: var(--mist); --btn-bd: rgba(232, 238, 233, 0.5); }

/* ---------- Rota: cobertura e credibilidade ---------- */

.rota__titulo { max-width: 32ch; }

.rota__lista {
  --rota-gap: clamp(1.5rem, 3.5vw, 2.75rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rota-gap);
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.75rem) 0 0;
  padding: 0;
}

.parada { position: relative; padding-top: 2.5rem; }

/* Marcador da parada */
.parada::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--pine);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Trecho até a próxima parada */
.parada:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 21px;
  right: calc(-1 * var(--rota-gap) - 7px);
  height: 2px;
  background: var(--amber);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.parada__medida {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pine);
  font-variant-numeric: tabular-nums;
}

.parada__nome {
  font-family: var(--font-display);
  font-stretch: 116%;
  font-weight: 700;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--asphalt);
  margin: 0 0 0.55rem;
}

.parada__nota { margin: 0; max-width: 32ch; font-size: 0.98rem; }

/* Reserva duas linhas para o nome, assim as descrições ficam na mesma altura. */
@media (min-width: 901px) {
  .parada__nome { min-height: 2.1em; }
}

.credencial {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.6rem);
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
  padding-top: 1.4rem;
  border-top: 2px solid var(--pine);
}

.credencial__num {
  flex: none;
  font-family: var(--font-display);
  font-stretch: 120%;
  font-weight: 700;
  font-size: clamp(3.4rem, 7vw, 5.2rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: var(--pine);
  font-variant-numeric: tabular-nums;
}

.credencial__txt {
  max-width: 68ch;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}
.credencial__forte {
  display: inline-block;
  font-weight: 600;
  color: var(--pine);
}

/* ---------- Serviços ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  list-style: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(27, 58, 47, 0.16);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -26px rgba(20, 44, 35, 0.6);
}
.card__title {
  font-family: var(--font-display);
  font-stretch: 108%;
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1.2;
  margin: 0 0 0.7rem;
}
.card p:last-child { margin-bottom: 0; }
.card a { color: var(--pine); font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ---------- Sobre ---------- */

.sobre__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Sem título nesta seção, o primeiro parágrafo abre o bloco. */
.sobre__lead {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.5;
  color: var(--mist);
}

.sobre__figure { margin: 0; }
.sobre__photo {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: 45% 28%;
  border-radius: var(--radius);
}
.sobre__caption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 238, 233, 0.7);
}

.checklist {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(232, 238, 233, 0.9);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--amber);
}

/* ---------- Orçamento ---------- */

.orcamento__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.orcamento__note {
  font-size: 0.92rem;
  color: var(--pine);
  border-left: 2px solid var(--amber);
  padding-left: 0.9rem;
}

.form {
  background: var(--surface);
  border: 1px solid rgba(27, 58, 47, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 3vw, 2.1rem);
  display: grid;
  gap: 1.05rem;
}

.field { display: grid; gap: 0.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }

.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--asphalt);
}
.req { color: #A2472F; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--asphalt);
  background: #fff;
  border: 1.5px solid rgba(27, 58, 47, 0.22);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.35);
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder { color: #8A9490; }

.field__hint { font-size: 0.85rem; color: #5C6360; margin: 0; }

.field__error {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #A2472F;
}
.field--invalid input,
.field--invalid select { border-color: #A2472F; }

.form__submit { width: 100%; margin-top: 0.3rem; }
.form__status { margin: 0; font-size: 0.9rem; min-height: 1.2em; }
.form__status--erro { color: #A2472F; font-weight: 600; }

/* ---------- Depoimentos ---------- */

.depoimentos { background: var(--surface); }

.depos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  list-style: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
}

.depo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(27, 58, 47, 0.1);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2vw, 1.6rem);
}
/* Dez depoimentos em três colunas deixariam o último card sozinho.
   O primeiro e o último ocupam duas colunas e todas as linhas fecham cheias. */
.depo:first-child,
.depo:last-child { grid-column: span 2; }
.depo:first-child blockquote p,
.depo:last-child blockquote p { font-size: 1.12rem; }

.depo blockquote { margin: 0; }
.depo blockquote p { margin: 0; }
.depo blockquote p::before { content: "“"; color: var(--amber); font-weight: 600; }
.depo blockquote p::after { content: "”"; color: var(--amber); font-weight: 600; }

.depo__who {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pine);
  display: grid;
  gap: 0.1rem;
}
.depo__who span {
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B736F;
}

/* ---------- FAQ ---------- */

.faq__grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.qa { list-style: none; margin: 0; padding: 0; }
.qa__item { border-top: 1px solid rgba(27, 58, 47, 0.18); }
.qa__item:last-child { border-bottom: 1px solid rgba(27, 58, 47, 0.18); }
.qa__item h3 { margin: 0; }

.qa__q {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-stretch: 105%;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--asphalt);
  text-align: left;
  cursor: pointer;
}
.qa__q::after {
  content: "+";
  flex: none;
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--pine);
  transition: transform 0.2s ease;
}
.qa__q[aria-expanded="true"]::after { content: "–"; }

.qa__a { overflow: hidden; }
.qa__a p { margin: 0; padding-bottom: 1.15rem; max-width: 62ch; }

/* ---------- Passeios ---------- */

.passeios {
  background: linear-gradient(180deg, var(--mist) 0%, rgba(196, 163, 90, 0.26) 100%);
  border-top: 1px solid rgba(196, 163, 90, 0.45);
}
.passeios .section__title { max-width: 24ch; }
.passeios__lead { max-width: 56ch; font-size: 1.06rem; margin-bottom: 1.7rem; }

/* ---------- Fechamento ---------- */

.fechamento__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.fechamento__avatar {
  width: 112px; height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 25%;
  border: 2px solid rgba(232, 238, 233, 0.35);
}

.fechamento__text .section__title { margin-bottom: 0.5rem; }
.fechamento__text p { margin: 0; }
.fechamento__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Footer ---------- */

.footer {
  background: rgba(232, 238, 233, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(27, 58, 47, 0.12);
  color: var(--ink-soft);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  font-size: 0.95rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.footer p { color: inherit; margin: 0 0 0.35rem; }
.footer a {
  color: var(--pine);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.footer a:hover { color: var(--asphalt); }

.footer__brandblock {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__logo {
  width: auto;
  height: 3.75rem;
  flex: none;
  opacity: 0.95;
}

.footer .footer__brand {
  font-family: var(--font-display);
  font-stretch: 118%;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--asphalt);
}

/* ---------- Barra fixa mobile ---------- */

.stickybar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 45;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(232, 238, 233, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(27, 58, 47, 0.15);
}
.stickybar .btn { flex: 1; white-space: nowrap; }

@media (max-width: 400px) {
  .stickybar .btn { padding-inline: 0.7rem; font-size: 0.85rem; }
}

/* ---------- Animação ---------- */

.js-motion .reveal { opacity: 0; }
.js-motion .topbar,
.js-motion .hero__title,
.js-motion .hero__lead,
.js-motion .hero__actions { opacity: 0; }

.js-motion .credencial__forte { opacity: 0; }

/* A rota se desenha parada por parada, como a própria viagem. */
.js-motion .parada::before { opacity: 0; transform: scale(0.3); }
.js-motion .parada::after { transform: scaleX(0); }
.js-motion .rota__lista.is-in .parada::before { opacity: 1; transform: scale(1); }
.js-motion .rota__lista.is-in .parada::after { transform: scaleX(1); }
.js-motion .rota__lista.is-in .parada:nth-child(1)::before { transition-delay: 0.05s; }
.js-motion .rota__lista.is-in .parada:nth-child(1)::after { transition-delay: 0.2s; }
.js-motion .rota__lista.is-in .parada:nth-child(2)::before { transition-delay: 0.6s; }
.js-motion .rota__lista.is-in .parada:nth-child(2)::after { transition-delay: 0.75s; }
.js-motion .rota__lista.is-in .parada:nth-child(3)::before { transition-delay: 1.15s; }

/* ---------- Responsivo ---------- */

@media (max-width: 1000px) {
  .cards,
  .depos { grid-template-columns: 1fr 1fr; }
  .sobre__grid,
  .orcamento__grid,
  .faq__grid { grid-template-columns: 1fr; }
  .sobre__figure { max-width: 460px; }
  .sobre__photo { aspect-ratio: 4 / 3; }
  .fechamento__inner { grid-template-columns: auto 1fr; }
  .fechamento__actions { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  /* A rota vira um itinerário vertical: cada parada abaixo da anterior. */
  .rota__lista { grid-template-columns: 1fr; gap: 0; }
  .parada { padding: 0 0 2rem 2.5rem; }
  .parada:last-child { padding-bottom: 0; }
  .parada::before { top: 0.3rem; }
  .parada:not(:last-child)::after {
    top: 1.6rem;
    left: 6px;
    right: auto;
    bottom: 0.4rem;
    width: 2px;
    height: auto;
    transform-origin: top center;
  }
  .parada__nota { max-width: 46ch; }
  .js-motion .parada::after { transform: scaleY(0); }
  .js-motion .rota__lista.is-in .parada::after { transform: scaleY(1); }

  .navtoggle { display: inline-flex; }
  .mainnav {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    background: var(--mist);
    border: 1px solid rgba(27, 58, 47, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.1rem;
  }
  .mainnav--open { display: flex; }
  .mainnav__list { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .mainnav__list a,
  .topbar--pinned .mainnav__list a {
    display: block;
    color: var(--asphalt);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(27, 58, 47, 0.1);
  }
  .mainnav__actions { display: none; }
}

@media (min-width: 761px) {
  body { padding-bottom: 0; }
}

@media (max-width: 760px) {
  .stickybar { display: flex; }
  .cards,
  .depos { grid-template-columns: 1fr; }
  .depo:first-child,
  .depo:last-child { grid-column: auto; }
  .depo:first-child blockquote p,
  .depo:last-child blockquote p { font-size: inherit; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .fechamento__inner { grid-template-columns: 1fr; }
  .fechamento__avatar { width: 88px; height: 88px; }
  .credencial { display: block; }
  .credencial__num { display: block; margin-bottom: 0.5rem; }
}

@media (max-width: 420px) {
  .hero { min-height: auto; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .btn:hover { transform: none; }
}
