/* ===========================================================
   Vera Cruz Transporte — landing
   Paleta herdada do site atual: vinho #981E34 + amarelo #F4B937
   =========================================================== */
:root {
  --wine-950: #2a0610;
  --wine-900: #3f0a17;
  --wine-800: #5e1020;
  --wine-700: #7b1629;
  --wine: #981E34;
  --wine-500: #b02a42;
  --wine-100: #f8e7ea;
  --wine-50: #fcf4f5;
  --gold: #F4B937;
  --gold-600: #FCA726;
  --gold-100: #fdf1d4;

  --ink: #1f1216;
  --text: #3b2a2f;
  --muted: #6b585d;
  --line: #eadcdf;
  --bg: #fffdfb;
  --surface: #ffffff;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(63, 10, 23, .06), 0 2px 8px rgba(63, 10, 23, .05);
  --shadow: 0 10px 30px -10px rgba(63, 10, 23, .22);
  --shadow-lg: 0 30px 60px -20px rgba(63, 10, 23, .35);

  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --ease: cubic-bezier(.22, .8, .24, 1);
  --container: 1200px;

  /* z-index */
  --z-nav: 50;
  --z-dropdown: 30;
  --z-fab: 40;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.1; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
[hidden] { display: none !important; }

.ic { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.text-gold { color: var(--gold); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--gold); color: var(--wine-900); padding: 10px 16px; border-radius: 10px; font-weight: 600; }
.skip:focus { top: 16px; }

/* ---------- Botões ---------- */
.btn {
  --h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: var(--h); padding: 0 22px;
  border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; white-space: nowrap;
  cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
  transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--sm { --h: 42px; padding: 0 16px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--wine { background: var(--wine); color: #fff; box-shadow: 0 6px 18px -6px rgba(152, 30, 52, .6); }
.btn--wine:hover { background: var(--wine-700); }
.btn--gold { background: var(--gold); color: var(--wine-900); box-shadow: 0 8px 22px -8px rgba(244, 185, 55, .8); }
.btn--gold:hover { background: var(--gold-600); }
.btn--ghost-dark { border-color: var(--line); color: var(--wine); background: #fff; }
.btn--ghost-dark:hover { border-color: var(--wine); }
.btn--ghost-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn .ic { transition: transform .2s var(--ease); }
.btn:hover .ic:last-child:not(:first-child) { transform: translateX(3px); }

/* 21st.dev "shimmer button" */
.btn--shimmer::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer 3.2s var(--ease) infinite;
}
@keyframes shimmer { 0%, 55% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }

/* ---------- NAV flutuante ---------- */
.nav { position: fixed; top: 14px; left: 0; right: 0; z-index: var(--z-nav); padding-inline: 16px; }
.nav__inner {
  max-width: var(--container); margin-inline: auto;
  display: flex; align-items: center; gap: 24px;
  padding: 8px 8px 8px 20px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  box-shadow: 0 10px 30px -12px rgba(42, 6, 16, .35);
  transition: box-shadow .3s, background-color .3s;
}
.nav.is-scrolled .nav__inner { background: rgba(255,255,255,.96); box-shadow: 0 12px 34px -14px rgba(42, 6, 16, .45); }
.nav__logo img { height: 38px; width: auto; }
.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 10px 14px; border-radius: 999px; font-weight: 500; font-size: 15px; color: var(--text);
  transition: background-color .2s, color .2s;
}
.nav__links a:hover, .nav__links a.is-active { background: var(--wine-50); color: var(--wine); }
.nav__cta { display: flex; gap: 8px; }
.nav__burger { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--wine); color: #fff; align-items: center; justify-content: center; }
.nav__burger .ic { width: 22px; height: 22px; }
.mobile-menu {
  max-width: var(--container); margin: 8px auto 0; padding: 12px;
  background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg);
  display: grid; gap: 4px;
  animation: drop .25s var(--ease);
}
.mobile-menu a:not(.btn) { padding: 14px 16px; border-radius: 12px; font-weight: 500; }
.mobile-menu a:not(.btn):hover { background: var(--wine-50); color: var(--wine); }
.mobile-menu .btn { margin-top: 8px; }
@keyframes drop { from { opacity: 0; transform: translateY(-8px); } }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  color: #fff;
  background: radial-gradient(120% 90% at 80% 20%, var(--wine-700) 0%, var(--wine-900) 55%, var(--wine-950) 100%);
  padding: 140px 0 72px;
}
/* 21st.dev "aurora background" */
.hero__aurora { position: absolute; inset: -20%; z-index: -2; filter: blur(70px); opacity: .7; }
.hero__aurora span { position: absolute; border-radius: 50%; mix-blend-mode: screen; animation: aurora 18s ease-in-out infinite alternate; }
.hero__aurora span:nth-child(1) { width: 45%; height: 50%; left: 50%; top: 10%; background: #c12a47; }
.hero__aurora span:nth-child(2) { width: 30%; height: 35%; left: 70%; top: 45%; background: rgba(244, 185, 55, .45); animation-duration: 22s; }
.hero__aurora span:nth-child(3) { width: 40%; height: 40%; left: 10%; top: 55%; background: #6d1025; animation-duration: 26s; }
@keyframes aurora { to { transform: translate3d(-12%, 8%, 0) scale(1.15); } }
.hero__grid {
  position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.hero__copy { position: relative; z-index: 2; }


.hero__title { color: #fff; font-size: clamp(2.4rem, 4.3vw, 3.9rem); font-weight: 800; letter-spacing: -.035em; margin: 0 0 18px; }
.hero__lead { font-size: clamp(1rem, 1.3vw, 1.15rem); color: #f1d9de; max-width: 520px; }

/* ---------- Busca ---------- */
.search {
  margin-top: 30px; padding: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
  max-width: 580px;
}
/* 21st.dev "animated tabs" com pill deslizante */
.tabs { position: relative; display: inline-grid; grid-auto-flow: column; grid-auto-columns: 1fr; padding: 4px; border-radius: 999px; background: rgba(0,0,0,.25); }
.tabs__pill { position: absolute; top: 4px; bottom: 4px; left: 4px; border-radius: 999px; background: #fff; transition: transform .35s var(--ease), width .35s var(--ease); box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.tabs__btn {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 42px; padding: 0 18px; border: 0; border-radius: 999px; background: none;
  color: rgba(255,255,255,.8); font-family: var(--font-head); font-weight: 600; font-size: 15px;
  transition: color .25s;
}
.tabs__btn.is-active { color: var(--wine); }
.tabs--light { background: var(--wine-50); border: 1px solid var(--line); }
.tabs--light .tabs__btn { color: var(--muted); }
.tabs--light .tabs__btn.is-active { color: #fff; }
.tabs--light .tabs__pill { background: var(--wine); }
.count { display: inline-grid; place-items: center; min-width: 24px; height: 22px; padding: 0 6px; border-radius: 999px; font-size: 12px; background: rgba(0,0,0,.08); }
.tabs--light .is-active .count { background: rgba(255,255,255,.2); }

.search__form { display: flex; gap: 10px; margin-top: 12px; }
.combo { position: relative; flex: 1; min-width: 0; }
.combo__icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.combo__input {
  width: 100%; height: 54px; padding: 0 44px 0 46px;
  border-radius: 16px; border: 2px solid transparent; background: #fff; color: var(--ink);
  font-size: 16px; transition: border-color .2s, box-shadow .2s;
}
.combo__input::placeholder { color: #8a777c; }
.combo__input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(244,185,55,.25); }
.combo__kbd { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font: 600 12px var(--font-head); color: var(--muted); border: 1px solid var(--line); border-radius: 6px; padding: 1px 7px; background: var(--wine-50); }
.combo__list {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: var(--z-dropdown);
  margin: 0; padding: 6px; list-style: none;
  max-height: 320px; overflow-y: auto; overscroll-behavior: contain;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  animation: drop .18s var(--ease);
}
.combo__opt { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; cursor: pointer; color: var(--text); }
.combo__opt[aria-selected="true"], .combo__opt:hover { background: var(--wine-50); }
.combo__empty { padding: 14px; color: var(--muted); font-size: 15px; }
.line-num {
  flex: none; display: inline-grid; place-items: center;
  min-width: 48px; height: 34px; padding: 0 8px; border-radius: 9px;
  background: var(--wine); color: #fff; font: 700 15px var(--font-head); letter-spacing: -.01em;
  white-space: nowrap;
}
.line-num--gold { background: var(--gold); color: var(--wine-900); }
.search__submit { flex: none; --h: 54px; border-radius: 16px; }
.search__error { margin-top: 10px; font-size: 14px; color: #ffd6a0; }
.search__quick { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; align-items: center; }
.search__quick::before { content: 'Mais buscadas:'; font-size: 13px; color: #e8c6cd; margin-right: 2px; }
.qchip {
  text-align: left;
  display: inline-flex; align-items: center; gap: 6px; min-height: 34px; padding: 0 12px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06);
  color: #fff; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background-color .2s, border-color .2s;
}
.qchip b { font-family: var(--font-head); color: var(--gold); }
.qchip:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); }

/* ---------- Ônibus (imagem) ---------- */
.hero__visual { position: relative; display: grid; place-items: center; align-self: end; padding-bottom: 28px; }
.hero__glow {
  position: absolute; left: 5%; right: -5%; top: 18%; bottom: 8%; z-index: 0;
  background: radial-gradient(closest-side, rgba(244,185,55,.32), rgba(193,42,71,.18) 55%, transparent);
  filter: blur(30px);
}
/* órbita que ecoa o logo Vera Cruz */
.hero__orbit { position: absolute; inset: 8% -8% 14% 2%; z-index: 0; pointer-events: none; }
.hero__orbit span { position: absolute; inset: 0; border-radius: 50%; transform: rotate(-12deg); }
.hero__orbit span:first-child { border: 2px solid rgba(244,185,55,.55); mask-image: linear-gradient(100deg, #000 10%, transparent 55%, #000 90%); animation: orbit 14s linear infinite; }
.hero__orbit span:last-child { inset: 10% 6%; border: 1px solid rgba(255,255,255,.14); }
@keyframes orbit { to { transform: rotate(348deg); } }

.hero__bus-wrap {
  position: relative; z-index: 2; width: 126%; margin-right: -20%;
  animation: busIn 1.3s var(--ease) backwards .15s;
  transition: transform .4s var(--ease);
  will-change: transform;
}
.hero__bus { width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(20, 2, 8, .55)); }
.hero__shadow {
  position: absolute; z-index: 1; left: 6%; right: -8%; bottom: 24px; height: 44px;
  background: radial-gradient(closest-side, rgba(0,0,0,.6), transparent);
  filter: blur(6px);
  animation: fadeIn 1.3s var(--ease) both .4s;
}
@keyframes busIn { from { transform: translate3d(18%, 0, 0); opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; } }

/* ---------- Seções ---------- */
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section--tint { background: linear-gradient(180deg, var(--wine-50), #fff); }
.section--dark { background: var(--wine-950); color: #f1d9de; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section__head--left { text-align: left; margin: 0; }
.eyebrow { display: inline-block; font: 600 13px var(--font-head); letter-spacing: .14em; text-transform: uppercase; color: var(--wine); margin-bottom: 14px; }
.eyebrow--light { color: var(--gold); }
.section__title { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; }
.section__lead { margin-top: 14px; font-size: 1.075rem; color: var(--muted); }

/* ---------- Linhas ---------- */
.lines-toolbar { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.filter { position: relative; flex: 1; max-width: 380px; min-width: 240px; }
.filter .ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.filter input { width: 100%; height: 50px; padding: 0 16px 0 46px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 16px; transition: border-color .2s, box-shadow .2s; }
.filter input:focus { outline: none; border-color: var(--wine); box-shadow: 0 0 0 4px rgba(152,30,52,.12); }

.lines-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 14px; }
.line-card {
  position: relative; display: flex; align-items: center; gap: 14px;
  height: 100%; padding: 16px 16px 16px 14px;
  border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .25s, transform .25s var(--ease);
  animation: cardIn .4s var(--ease) both;
}
.line-card:hover { border-color: rgba(152,30,52,.35); box-shadow: var(--shadow); transform: translateY(-2px); }
.line-card .line-num { min-width: 56px; height: 48px; font-size: 18px; border-radius: 12px; }
.line-card__body { flex: 1; min-width: 0; }
.line-card__route { font: 600 15.5px/1.3 var(--font-head); color: var(--ink); }
.line-card__via { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.line-card__go { flex: none; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--wine-50); color: var(--wine); transition: background-color .2s, color .2s; }
.line-card:hover .line-card__go { background: var(--wine); color: #fff; }
@keyframes cardIn { from { opacity: 0; transform: translateY(8px); } }
.lines-empty { text-align: center; padding: 40px; color: var(--muted); }

.ticket-cta {
  margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  padding: 28px 32px; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--wine), var(--wine-800)); color: #f1d9de;
}
.ticket-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }

/* ---------- Spotlight card (21st.dev) ---------- */
.spotlight { position: relative; isolation: isolate; }
.spotlight::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: -1; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(244,185,55,.18), transparent 45%);
  opacity: 0; transition: opacity .3s;
}
.spotlight:hover::before { opacity: 1; }

/* ---------- Bento VC Card ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bento__item {
  padding: 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.bento__item h3 { font-size: 1.3rem; margin: 16px 0 8px; }
.bento__item p { color: var(--muted); }
.bento__item--hero {
  grid-column: span 2; display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: 12px;
  background: radial-gradient(120% 120% at 100% 0%, var(--wine-500), var(--wine) 45%, var(--wine-800));
  color: #f1d9de; border: 0;
}
.bento__item--hero h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.bento__item--hero p { color: #f1d9de; margin-bottom: 22px; }
.bento__card-img { width: 115%; max-width: none; margin-right: -20%; filter: drop-shadow(0 20px 30px rgba(0,0,0,.35)); transition: transform .5s var(--ease); }
.bento__item--hero:hover .bento__card-img { transform: rotate(-2deg) translateY(-4px); }
.bento__item--wide { grid-column: span 2; }
.bento__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--wine-50); color: var(--wine); }
.bento__icon .ic { width: 24px; height: 24px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; font: 600 13px var(--font-head); }
.chip--gold { background: var(--gold); color: var(--wine-900); }
.chip--wine { background: var(--wine-50); color: var(--wine); }

.timer { position: relative; width: 108px; height: 108px; margin-top: 18px; }
.timer svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.timer circle { fill: none; stroke-width: 9; }
.timer__bg { stroke: var(--wine-100); }
.timer__fg { stroke: var(--wine); stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset 2s var(--ease); }
.is-visible .timer__fg { stroke-dashoffset: 0; }
.timer span { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; font: 800 28px/1 var(--font-head); color: var(--wine); }
.timer small { font-size: 12px; font-weight: 600; color: var(--muted); }

.tag-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list li { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: var(--wine-50); color: var(--wine-700); font-size: 13.5px; font-weight: 500; }
.tag-list .ic { width: 14px; height: 14px; }

.sales { list-style: none; padding: 0; margin: 16px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sales li { padding: 16px; border-radius: 14px; background: var(--wine-50); }
.sales strong { display: block; font-family: var(--font-head); color: var(--ink); }
.sales span { display: block; font-size: 14px; color: var(--muted); }
.sales em { display: inline-block; margin-top: 8px; font-style: normal; font-size: 12.5px; font-weight: 600; color: var(--wine); }

/* ---------- App band ---------- */
.app-band { background: linear-gradient(120deg, var(--wine-900), var(--wine) 60%, var(--wine-700)); color: #f1d9de; overflow: hidden; }
.app-band__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; padding-block: 72px; }
.app-band h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; margin-bottom: 14px; }
.app-band__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.phone { width: 250px; margin-inline: auto; padding: 12px; border-radius: 40px; background: #120307; box-shadow: 0 40px 80px -20px rgba(0,0,0,.6), inset 0 0 0 2px rgba(255,255,255,.08); transform: rotate(-6deg); }
.phone__notch { width: 90px; height: 22px; margin: 0 auto 8px; border-radius: 0 0 14px 14px; background: #000; }
.phone__screen { background: #fff; border-radius: 28px; padding: 18px 14px; min-height: 380px; color: var(--text); }
.phone__label { font: 700 14px var(--font-head); color: var(--ink); margin-bottom: 12px; }
.eta { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 12px; background: var(--wine-50); margin-bottom: 8px; font-size: 13px; }
.eta__line { font: 700 13px var(--font-head); background: var(--wine); color: #fff; border-radius: 6px; padding: 2px 7px; }
.eta__name { flex: 1; }
.eta__time { font-weight: 700; color: var(--wine); }
.eta:first-of-type .eta__time { animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .4; } }
.phone__map { margin-top: 12px; height: 110px; border-radius: 14px; background: linear-gradient(#fdf1d4, #fdf1d4) 0 50%/100% 6px no-repeat, linear-gradient(90deg, #f8e7ea, #f8e7ea) 40% 0/6px 100% no-repeat, #fbf8f4; position: relative; }
.phone__map .dot { position: absolute; top: 42%; left: 10%; width: 14px; height: 14px; border-radius: 50%; background: var(--wine); box-shadow: 0 0 0 5px rgba(152,30,52,.2); animation: move 6s ease-in-out infinite alternate; }
@keyframes move { to { left: 80%; } }

/* ---------- Frota ---------- */
.fleet { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bus-card { border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s var(--ease); }
.bus-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.bus-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--wine-50); }
.bus-card__media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .5s, transform .6s var(--ease); }
.bus-card__media img + img { position: absolute; inset: 0; opacity: 0; }
.bus-card:hover .bus-card__media img + img { opacity: 1; }
.bus-card:hover .bus-card__media img { transform: scale(1.04); }
.bus-card__tag { position: absolute; left: 12px; top: 12px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.92); font: 700 12px var(--font-head); color: var(--wine); }
.bus-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bus-card__body h3 { font-size: 1.15rem; }
.bus-card__meta { display: flex; gap: 14px; font-size: 13.5px; color: var(--muted); }
.bus-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.bus-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; font-size: 14px; }
.bus-card li { display: flex; gap: 8px; align-items: flex-start; }
.bus-card li .ic { color: var(--wine); margin-top: 3px; width: 15px; height: 15px; }
.bus-card .btn { margin-top: auto; align-self: flex-start; }

.charter {
  margin-top: 28px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
  padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.charter h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 14px 0 10px; }
.charter p { color: var(--muted); }
.checks { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checks li { display: flex; gap: 8px; align-items: flex-start; font-weight: 500; font-size: 15px; }
.checks .ic { color: #fff; background: var(--wine); border-radius: 50%; padding: 3px; width: 20px; height: 20px; margin-top: 1px; }
.charter__clients { padding: 28px; border-radius: var(--radius); background: var(--wine-50); text-align: center; }
.charter__clients p { font: 600 13px var(--font-head); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.clients { display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap; }
.clients img { height: 64px; width: auto; filter: grayscale(1); opacity: .75; transition: filter .3s, opacity .3s; }
.clients img:hover { filter: none; opacity: 1; }

/* ---------- Empresa / Timeline ---------- */
.empresa { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.empresa__intro { position: sticky; top: 110px; }
.empresa__intro > p { margin-top: 16px; font-size: 1.05rem; }
.values { margin-top: 32px; }
.values h3 { font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold) !important; margin-bottom: 12px; }
.values ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.values li { padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); font-size: 13.5px; }
.timeline { position: relative; list-style: none; margin: 0; padding: 0 0 0 36px; }
.timeline::before, .timeline__progress { content: ''; position: absolute; left: 8px; top: 6px; width: 2px; border-radius: 2px; }
.timeline::before { bottom: 6px; background: rgba(255,255,255,.12); }
.timeline__progress { height: var(--progress, 0%); background: linear-gradient(var(--gold), var(--wine-500)); }
.timeline li { position: relative; padding-bottom: 36px; opacity: .45; transition: opacity .5s; }
.timeline li.is-visible { opacity: 1; }
.timeline li::before { content: ''; position: absolute; left: -34px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--wine-950); border: 2px solid rgba(255,255,255,.3); transition: border-color .4s, background-color .4s; }
.timeline li.is-visible::before { border-color: var(--gold); background: var(--gold); box-shadow: 0 0 0 5px rgba(244,185,55,.18); }
.timeline time { font: 800 clamp(1.8rem, 3vw, 2.4rem) var(--font-head); color: var(--gold); letter-spacing: -.03em; }
.timeline h3 { font-size: 1.2rem; margin: 4px 0 8px; }
.timeline p { color: #dcbfc5; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq-wrap .btn { margin-top: 24px; }
.faq { display: grid; gap: 12px; }
.faq__item { border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: border-color .2s, box-shadow .2s; }
.faq__item[open] { border-color: rgba(152,30,52,.3); box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; font: 600 1.05rem var(--font-head); color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .ic { color: var(--wine); transition: transform .3s var(--ease); }
.faq__item[open] summary .ic { transform: rotate(180deg); }
.faq__body { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Contato ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__list { list-style: none; padding: 0; margin: 28px 0 24px; display: grid; gap: 10px; }
.contact__list a, .contact__static { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 14px; transition: background-color .2s; }
.contact__list a:hover { background: #fff; }
.contact__list small { display: block; font-size: 12.5px; color: var(--muted); }
.contact__list span:last-child { font-weight: 600; color: var(--ink); overflow-wrap: anywhere; }
.contact__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--wine); color: #fff; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/9; }
.map iframe { width: 100%; height: 100%; border: 0; }

.form { padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; gap: 16px; }
.form h3 { font-size: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; position: relative; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg); font-size: 16px; transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; }
.field :is(input, select, textarea):focus { outline: none; border-color: var(--wine); box-shadow: 0 0 0 4px rgba(152,30,52,.12); background: #fff; }
.field .is-invalid { border-color: #c0392b; }
.field__count { font-size: 12.5px; color: var(--muted); justify-self: end; }
.form__error { color: #b3261e; font-size: 14px; font-weight: 500; }
.form__hint { font-size: 13px; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--wine-950); color: #dcbfc5; padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer__brand img { background: #fff; padding: 10px 14px; border-radius: 14px; height: 62px; width: auto; }
.footer__brand p { margin-top: 16px; max-width: 300px; font-size: 14.5px; }
.footer__col { display: grid; gap: 10px; align-content: start; }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 6px; }
.footer__col a { font-size: 14.5px; transition: color .2s; overflow-wrap: anywhere; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { margin-top: 48px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13.5px; }

.fab { position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: var(--z-fab); width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: #fff; box-shadow: 0 12px 28px -8px rgba(0,0,0,.4); opacity: 0; visibility: hidden; transform: translateY(16px) scale(.9); transition: opacity .25s, visibility .25s, transform .25s var(--ease); }
.fab.is-on { opacity: 1; visibility: visible; transform: none; }
.fab .ic { width: 28px; height: 28px; }
.fab.is-on:hover { transform: scale(1.06); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* rótulo longo/curto conforme a largura */
.lbl-sm { display: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 1100px) {
  .nav__links a { padding: 10px; }
  .nav__cta .btn--ghost-dark { display: none; }
  .fleet { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .hero { padding-top: 120px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; margin-top: 4px; max-width: 620px; justify-self: center; width: 100%; }
  .hero__bus-wrap { width: 100%; margin-right: 0; }
    .search { max-width: none; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__item--hero, .bento__item--wide { grid-column: span 2; }
  .app-band__inner, .charter, .empresa, .faq-wrap, .contact { grid-template-columns: 1fr; }
  .empresa__intro { position: static; }
  .app-band__phone { order: 2; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .lbl-lg { display: none; }
  .lbl-sm { display: inline; }
  .fab { width: 50px; height: 50px; right: 14px; }
  .fab .ic { width: 24px; height: 24px; }
  .lines-grid { grid-template-columns: 1fr; }
  .container { padding-inline: 16px; }
  .nav { padding-inline: 10px; top: 10px; }
  .hero__visual { margin-inline: -16px; }
  .search { padding: 10px; border-radius: 22px; }
  .tabs { display: grid; width: 100%; }
  .search__form { flex-direction: column; }
  .search__submit { width: 100%; }
  .combo__kbd { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento__item--hero, .bento__item--wide { grid-column: auto; }
  .bento__item--hero { grid-template-columns: 1fr; }
  .bento__card-img { width: 100%; margin: 0; }
  .sales, .checks, .form__row, .fleet { grid-template-columns: 1fr; }
  .lines-toolbar .tabs { width: 100%; }
  .filter { max-width: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .ticket-cta { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
