/* Transportadores USCS */
:root {
  --azul: #007bb0;
  --azul-esc: #0b4f73;
  --ouro: #daa520;
  --texto: #2b3035;
  --cinza: #6b7378;
  --linha: #e3e7ea;
  --fundo: #f4f6f7;
  --wpp: #1faa55;
  --wpp-esc: #168a44;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--fundo); color: var(--texto); font: 16px/1.5 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
img { max-width: 100%; display: block; }
a { color: var(--azul); }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; background: #fff; padding: 8px; z-index: 10; }

/* Topo */
.top { background: #fff; border-bottom: 1px solid var(--linha); }
.top-in { display: flex; align-items: center; gap: 12px 24px; padding-top: 10px; padding-bottom: 10px; flex-wrap: wrap; }
.logo img { width: 300px; height: auto; border-radius: 6px; }
.top h1, .site-title { margin: 0; font-size: 1.9rem; font-weight: 800; color: var(--azul-esc); }
.site-title a { color: inherit; text-decoration: none; }
@media (max-width: 600px) {
  .top-in { justify-content: center; text-align: center; }
  .logo img { width: 100%; max-width: 340px; }
  .top h1, .site-title { font-size: 1.5rem; width: 100%; }
}

/* Filtros */
.finder { padding-top: 18px; }
.filtro { display: flex; align-items: center; gap: 8px 12px; margin-bottom: 10px; flex-wrap: wrap; }
.filtro-label { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; color: var(--cinza); min-width: 64px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button {
  appearance: none; font: inherit; font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 1.5px solid var(--linha); background: #fff; color: var(--texto);
  border-radius: 999px; padding: 8px 16px; min-height: 42px;
  display: inline-flex; align-items: center; gap: 6px;
}
.chips button svg { width: 16px; height: 16px; }
.chips button:hover { border-color: var(--azul); }
.chips button[aria-pressed="true"] { background: var(--azul); border-color: var(--azul); color: #fff; }
.chips button:focus-visible, .btn-wpp:focus-visible { outline: 3px solid var(--ouro); outline-offset: 2px; }
.count { color: var(--cinza); font-size: .9rem; margin: 6px 0 12px; }
.filtro, .count { scroll-margin-top: 12px; }

/* Cards */
.vans { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.van { background: #fff; border: 1px solid var(--linha); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.van-foto { position: relative; aspect-ratio: 4 / 3; background: #e9edf0; overflow: hidden; }
.van-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.van-per { position: absolute; left: 10px; top: 10px; font-size: .8rem; font-weight: 700; color: #fff; padding: 3px 10px; border-radius: 999px; background: var(--ouro); }
.van-per.van-noite { background: var(--azul-esc); }
.van-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.van h2 { margin: 0; font-size: 1.2rem; line-height: 1.25; }
.van-cid { margin: 0; font-weight: 600; color: var(--azul-esc); font-size: .95rem; }
.van-bairros { margin: 0; color: var(--cinza); font-size: .88rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.van-tel { margin: 0; font-size: .88rem; color: var(--cinza); }
.van-tel a { color: var(--texto); text-decoration: none; white-space: nowrap; }
.btn-wpp {
  margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--wpp); color: #fff; text-decoration: none; font-weight: 700;
  border-radius: 10px; padding: 12px; min-height: 48px; margin-top: 10px;
}
.btn-wpp:hover { background: var(--wpp-esc); }
.btn-wpp svg { width: 20px; height: 20px; }
.vazio { background: #fff; border: 1px solid var(--linha); border-radius: 12px; padding: 20px; text-align: center; color: var(--cinza); grid-column: 1 / -1; }

/* Páginas internas */
.page-head { padding-top: 20px; }
.page-head h1 { font-size: 1.6rem; margin: 0 0 6px; color: var(--azul-esc); }
.page-head p { margin: 0; color: var(--cinza); max-width: 60em; }
main section { padding-top: 18px; }
main section h2 { font-size: 1.25rem; margin: 0 0 8px; color: var(--azul-esc); }
.note { font-size: .9rem; color: var(--cinza); margin: 22px 0 0; }
.campus-list { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.box { background: #fff; border: 1px solid var(--linha); border-radius: 10px; padding: 12px 14px; }
.box h3 { margin: 0 0 4px; font-size: 1rem; }
.box p { margin: 0 0 4px; font-size: .92rem; }
.faq details { background: #fff; border: 1px solid var(--linha); border-radius: 10px; margin-bottom: 6px; }
.faq summary { cursor: pointer; padding: 10px 14px; font-weight: 600; }
.faq details > div { padding: 0 14px 10px; color: var(--cinza); }
.faq details p { margin: 0; }

/* Rodapé */
footer { margin-top: 36px; background: #fff; border-top: 1px solid var(--linha); padding: 16px 0 20px; font-size: .85rem; color: var(--cinza); }
footer p { margin: 0 0 6px; }
footer a { color: var(--cinza); }
