/* Via Blindada — static landing */
:root {
  --ink: #111111;
  --white: #ffffff;
  --bone: #f5f5f2;
  --bg: #ffffff;
  --fg: #111111;
  --muted: #6b6b66;
  --border: #e4e4df;
  --max: 72rem;
  --font: "Jost", ui-sans-serif, system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul { list-style: none; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.is-hidden { display: none !important; }

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section { padding-block: 5rem; }
@media (min-width: 768px) { .section { padding-block: 7rem; } }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: color-mix(in srgb, var(--ink) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .header-inner { height: 5rem; } }
.logo img { height: 1.75rem; width: auto; }
@media (min-width: 768px) { .logo img { height: 2rem; } }
.nav-desktop { display: none; align-items: center; gap: 1.25rem; }
.nav-desktop a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-desktop a:hover { color: #fff; }
@media (min-width: 1100px) { .nav-desktop { display: flex; } }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.lang-btn {
  color: rgba(255,255,255,0.45);
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
  border-radius: 2px;
}
.lang-btn:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }
.lang-btn.active {
  color: #fff;
  font-weight: 500;
}
.lang-sep { color: rgba(255,255,255,0.3); font-size: 0.7rem; pointer-events: none; }

.btn-outline {
  display: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: #fff; color: var(--ink); }
@media (min-width: 640px) { .btn-outline { display: inline-block; } }
.menu-toggle {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
.menu-toggle span { display: block; height: 1px; width: 1.25rem; background: #fff; }
@media (min-width: 1100px) { .menu-toggle { display: none; } }
.nav-mobile {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--ink);
  padding: 1rem 1.25rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.nav-mobile .btn-outline {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    color-mix(in srgb, var(--ink) 90%, transparent),
    color-mix(in srgb, var(--ink) 60%, transparent),
    var(--ink));
}
.hero-content {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .hero-content { padding-top: 10rem; padding-bottom: 9rem; }
}
.hero-content .eyebrow { color: rgba(255,255,255,0.45); }
.hero h1 {
  margin-top: 1.5rem;
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #fff;
}
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
.hero .lead {
  margin-top: 1.75rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.6);
}
@media (min-width: 768px) { .hero .lead { font-size: 1.125rem; } }
.btn-solid {
  display: inline-block;
  margin-top: 2.5rem;
  background: #fff;
  color: var(--ink);
  padding: 1rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.15s;
}
.btn-solid:hover { opacity: 0.85; }
.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover { opacity: 0.9; }
.hero .price {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

/* Proposta */
.proposta { border-bottom: 1px solid var(--border); background: var(--bg); }
.proposta-grid {
  display: grid;
  gap: 3.5rem;
}
@media (min-width: 768px) {
  .proposta-grid { grid-template-columns: 1fr 1fr; }
}
.proposta .eyebrow, .muted-eyebrow { color: var(--muted); }
h2 {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.25;
}
@media (min-width: 768px) { h2 { font-size: 2.25rem; } }
.proposta p.body, .text-muted {
  margin-top: 1.5rem;
  line-height: 1.625;
  color: var(--muted);
}
.proposta p.body + p.body { margin-top: 1rem; }
.stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.stats p:first-child { font-size: 0.875rem; font-weight: 500; }
.stats p:last-child { margin-top: 0.25rem; font-size: 0.75rem; color: var(--muted); }
.proposta img {
  width: 100%;
  min-height: 18rem;
  height: 100%;
  object-fit: cover;
}

/* Pillars */
.pillars { background: var(--bone); }
.pillars h2 { max-width: 42rem; }
.pillars-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}
@media (min-width: 768px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: 1fr 1fr 1fr; } }
.pillar {
  background: var(--bg);
  padding: 2rem;
}
@media (min-width: 768px) { .pillar { padding: 2.5rem; } }
.pillar .eyebrow { color: var(--muted); }
.pillar h3 { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 500; }
.pillar p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted); }

/* Frota */
.frota { background: var(--ink); color: #fff; }
.frota .eyebrow { color: rgba(255,255,255,0.45); }
.frota-head {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .frota-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.frota h2 { margin-top: 0; color: #fff; max-width: 42rem; }
.frota-intro {
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.5);
}

/* Carousel / grid */
.fleet-wrap { margin-top: 3.5rem; }
.fleet-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  padding-bottom: 0.25rem;
}
.fleet-track::-webkit-scrollbar { display: none; }
.fleet-card {
  flex: 0 0 min(85vw, 22rem);
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
}
.fleet-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}
.fleet-card .body { padding: 2rem; }
.fleet-card h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}
.fleet-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.5);
}
.tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.375rem 0.75rem;
  color: rgba(255,255,255,0.6);
}
.fleet-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.fleet-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  transition: background 0.15s, width 0.15s;
}
.fleet-dots button.active {
  background: #fff;
  width: 1.25rem;
}
@media (min-width: 768px) {
  .fleet-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow: visible;
    scroll-snap-type: none;
  }
  .fleet-card { flex: none; width: auto; }
  .fleet-dots { display: none; }
}

/* Rotas — premium list (mobile-first; desktop enhancements below) */
.rotas { background: var(--bone); }
.rotas h2 { max-width: 42rem; }
.rotas-intro {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--muted);
}
.routes-list {
  margin-top: 2.5rem;
  width: 100%;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.route-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.route-left {
  flex: 1 1 auto;
  min-width: 0;
}
.route-from {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.4;
}
.route-code { font-weight: 600; }
.route-arrow { margin-left: 0.25rem; }
.route-meta {
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.route-to {
  flex: 0 0 auto;
  text-align: right;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 0.1rem;
  max-width: 42%;
}
.note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Desktop: full-width elegant white card rows (Vippers-like) */
@media (min-width: 768px) {
  .routes-list {
    border: 1px solid var(--border);
    border-top: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(17, 17, 17, 0.04);
  }
  .route-row {
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2rem;
  }
  .route-row:hover {
    background: color-mix(in srgb, var(--bone) 55%, #fff);
  }
  .route-from { font-size: 0.875rem; }
  .route-to {
    font-size: 0.875rem;
    max-width: none;
    min-width: 10rem;
  }
}
@media (min-width: 1024px) {
  .route-row { padding: 1.85rem 2.5rem; }
}

/* Transfer booking widget — mobile stacked; desktop horizontal via min-width */
.transfer-widget { background: var(--bg); border-top: 1px solid var(--border); }
.transfer-widget h2 { max-width: 40rem; }
.widget-lead {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--muted);
}
.booking-bar {
  margin-top: 2.5rem;
  background: var(--bone);
  border: 1px solid var(--border);
  padding: 1.5rem 1.25rem 1.75rem;
}
.trip-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.trip-btn {
  min-width: 7.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.trip-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.booking-form {
  display: grid;
  gap: 1rem;
}
.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field select,
.field input[type="text"],
.field input[type="date"],
.field input[type="time"],
.flight-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.875rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-size: 0.875rem;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b66' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2rem;
}
.field select:focus,
.field input:focus,
.flight-input:focus {
  outline: 1px solid var(--ink);
  outline-offset: 0;
  border-color: var(--ink);
}
.field-cta { display: flex; flex-direction: column; justify-content: flex-end; }
.field-cta .sr-only { position: absolute; }
.btn-book {
  height: 2.75rem;
  width: 100%;
  padding: 0 1.75rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.15s;
  border-radius: 2px;
}
.btn-book:hover { opacity: 0.88; }
.field-flight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 0.25rem;
}
.check-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  cursor: pointer;
}
.check-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--ink);
}
.flight-input {
  max-width: 14rem;
}

/* Desktop: elevated Vippers-like horizontal booking bar */
@media (min-width: 768px) {
  .booking-bar {
    padding: 2rem 2rem 2.25rem;
    background: #fff;
    box-shadow: 0 8px 28px rgba(17, 17, 17, 0.06);
  }
}
@media (min-width: 900px) {
  .booking-form {
    grid-template-columns: 1.15fr 1.45fr 0.95fr 0.75fr auto;
    align-items: end;
    gap: 0.85rem 1rem;
  }
  .field-flight {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }
  .btn-book {
    width: auto;
    min-width: 9.5rem;
    height: 2.75rem;
  }
  .trip-toggle { margin-bottom: 1.75rem; }
}

/* Corporativo */
.corporativo { background: var(--bone); }
.corp-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .corp-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .corp-head h2 { margin-top: 1.25rem; max-width: 32rem; }
}
.corp-intro {
  max-width: 26rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--muted);
}
.corp-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}
@media (min-width: 768px) { .corp-grid { grid-template-columns: 1fr 1fr; } }
.corp-card {
  background: var(--bg);
  padding: 2rem;
}
@media (min-width: 768px) { .corp-card { padding: 2.5rem; } }
.corp-card .eyebrow { color: var(--muted); }
.corp-card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.corp-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}
.corp-cta {
  margin-top: 2.5rem;
  text-align: center;
}
.corp-cta .btn-solid { margin-top: 0; }

/* Serviços */
.servicos { background: var(--bg); }
.servicos h2 { max-width: 42rem; }
.svc-list {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.svc-row {
  display: grid;
  gap: 0.75rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--border);
}
.svc-row:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .svc-row {
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
  }
}
.svc-row h3 { font-size: 1.125rem; font-weight: 500; }
.svc-row p { line-height: 1.625; color: var(--muted); }

/* Como funciona */
.como { background: var(--bg); border-top: 1px solid var(--border); }
.como h2 { max-width: 42rem; }
.steps {
  margin-top: 3.5rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  border-top: 1px solid var(--fg);
  padding-top: 1.5rem;
}
.step .num { font-size: 0.875rem; color: var(--muted); }
.step h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 300;
}
.step p {
  margin-top: 0.75rem;
  line-height: 1.625;
  color: var(--muted);
}

/* FAQ */
.faq { background: var(--bone); }
.faq-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  max-width: 56rem;
}
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.faq summary .plus {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.15s;
  flex-shrink: 0;
}
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p {
  padding-bottom: 1.5rem;
  line-height: 1.625;
  color: var(--muted);
}

/* CTA */
.acesso {
  background: var(--ink);
  text-align: center;
  padding-block: 6rem;
}
@media (min-width: 768px) { .acesso { padding-block: 8rem; } }
.acesso .eyebrow { color: rgba(255,255,255,0.45); }
.acesso h2 {
  margin-top: 1.5rem;
  color: #fff;
  font-size: 1.875rem;
}
@media (min-width: 768px) { .acesso h2 { font-size: 3rem; } }
.acesso p {
  margin: 1.5rem auto 0;
  max-width: 32rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.55);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 2.5rem;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.site-footer img { height: 1.5rem; width: auto; }

.footer-credit {
  margin-top: 1.25rem;
  padding-bottom: 1.75rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
}
.footer-credit a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-credit a:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.7);
}
