/* ==========================================================================
   TRANSVIPCAR — LUXURY EXECUTIVE MOBILITY DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --navy-950: #050B14;
  --navy-900: #081426;
  --navy-850: #0D1E38;
  --navy-800: #122B4E;
  --navy-700: #1B3C6B;
  --navy-600: #25518F;
  
  --gold: #C6992F;
  --gold-light: #E7C471;
  --gold-glow: rgba(198, 153, 47, 0.25);
  --gold-gradient: linear-gradient(135deg, #F2D58E 0%, #C6992F 100%);
  
  --paper: #F8F9FA;
  --paper-card: #FFFFFF;
  --paper-dim: #F0F3F8;
  --paper-border: #E2E8F0;
  
  --ink: #0A1424;
  --ink-soft: #475569;
  --ink-muted: #64748B;
  
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-dark-hover: rgba(231, 196, 113, 0.4);
  --line-light: rgba(10, 20, 36, 0.08);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --maxw: 1220px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(8, 20, 38, 0.04);
  --shadow-md: 0 12px 30px rgba(8, 20, 38, 0.08);
  --shadow-lg: 0 20px 48px rgba(8, 20, 38, 0.14);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, .display {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

.mono {
  font-family: 'DM Mono', monospace;
}

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px 0;
  padding: 6px 14px;
  border-radius: 4px;
  width: fit-content;
  line-height: 1.2;
}

.eyebrow.gold {
  color: var(--gold-light);
  background: rgba(198, 153, 47, 0.12);
  border: 1px solid rgba(231, 196, 113, 0.35);
}

.eyebrow.navy {
  color: var(--navy-800);
  background: rgba(8, 20, 38, 0.06);
  border: 1px solid rgba(8, 20, 38, 0.16);
}

/* ---------- Buttons & Interactive ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy-950);
  box-shadow: 0 4px 18px var(--gold-glow);
}

.btn-gold:hover {
  box-shadow: 0 8px 26px rgba(198, 153, 47, 0.45);
  filter: brightness(1.05);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border-color: var(--line-dark);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
}

.btn-ink {
  background: var(--navy-900);
  color: #FFFFFF;
}

.btn-ink:hover {
  background: var(--navy-700);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

/* ---------- Header Navbar ---------- */
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 11, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.3s ease;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.92;
}

.brand-desc {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.brand-word {
  font-family: 'DM Mono', monospace;
  color: var(--gold-light);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-top: 3px;
}

nav.links {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav.links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

nav.links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

nav.links a:hover {
  color: #FFFFFF;
}

nav.links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ---------- Language Switcher (Luxury Single-Select Dropdown) ---------- */
.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.lang-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 12px 0 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: #FFFFFF;
  font-family: 'DM Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  outline: none;
}

.lang-select-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(231, 196, 113, 0.45);
  box-shadow: 0 0 12px rgba(231, 196, 113, 0.18);
}

.lang-dropdown.open .lang-select-btn {
  background: rgba(231, 196, 113, 0.12);
  border-color: var(--gold-light);
  box-shadow: 0 0 14px rgba(231, 196, 113, 0.28);
}

.lang-current-flag {
  font-size: 14px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  transform: translateY(-0.5px);
}

.lang-current-code {
  letter-spacing: 0.08em;
  color: #FFFFFF;
  font-weight: 700;
}

.lang-arrow {
  color: var(--gold-light);
  transition: transform 0.25s var(--ease);
  margin-left: 2px;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 154px;
  background: #081426;
  border: 1px solid rgba(231, 196, 113, 0.32);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.96);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-opt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.16s ease;
  outline: none;
}

.lang-opt .lang-opt-left {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lang-opt .lang-flag {
  font-size: 13.5px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.lang-opt .lang-name {
  letter-spacing: -0.01em;
}

.lang-opt .lang-code-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(231, 196, 113, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.lang-opt:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #FFFFFF;
}

.lang-opt.active {
  background: rgba(231, 196, 113, 0.16);
  color: #FFFFFF;
  font-weight: 700;
}

.lang-opt.active .lang-code-tag {
  background: var(--gold);
  color: var(--navy-950);
}

/* Mobile drawer lang dropdown */
.mnav .lang-dropdown {
  width: 100%;
  margin-bottom: 12px;
}

.mnav .lang-select-btn {
  width: 100%;
  justify-content: space-between;
  height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 13px;
}

.mnav .lang-dropdown-menu {
  position: static;
  width: 100%;
  margin-top: 6px;
  box-shadow: none;
}

/* Smooth language crossfade */
body.lang-transition main,
body.lang-transition header,
body.lang-transition footer {
  opacity: 0.6;
  transition: opacity 0.1s ease;
}

.menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  color: #FFFFFF;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
  color: #FFFFFF;
  overflow: hidden;
  padding: 160px 0 0;
}

.hero .wrap {
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 153, 47, 0.15);
  border: 1px solid rgba(231, 196, 113, 0.4);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 30px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #2ED573;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(46, 213, 115, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(46, 213, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0); }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  color: #FFFFFF;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  max-width: 520px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'DM Mono', monospace;
}

.hero-trust svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ---------- Boarding Pass Ticket ---------- */
.hero-ticket {
  background: rgba(8, 20, 38, 0.82);
  border: 1px solid rgba(231, 196, 113, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-dark);
}

.tk-stamp {
  position: absolute;
  top: 22px;
  right: -10px;
  background: var(--gold-gradient);
  color: var(--navy-950);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  transform: rotate(4deg);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.tk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-right: 90px;
}

.tk-code {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  font-weight: 700;
}

.tk-route {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
  line-height: 1;
}

.tk-route .arrow {
  color: var(--gold-light);
  font-size: 1.6rem;
}

.tk-sub {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.tk-divider {
  border: none;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.2);
  margin: 22px 0;
  position: relative;
}

.tk-divider::before, .tk-divider::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--navy-950);
}

.tk-divider::before { left: -38px; }
.tk-divider::after { right: -38px; }

.tk-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 22px;
}

.tk-fields div .lbl {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

.tk-fields div .val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

.tk-action {
  width: 100%;
}

/* ---------- Stat Strip ---------- */
.stat-strip {
  border-top: 1px solid var(--line-dark);
  background: rgba(5, 11, 20, 0.75);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 3;
}

.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 24px;
}

.stat-strip .stat {
  padding: 0 24px;
  border-left: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-strip .stat:first-child {
  border-left: none;
  padding-left: 0;
}

.stat .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.stat .lbl {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Quick Route Selector Strip ---------- */
.route-selector-strip {
  background: #FFFFFF;
  border-bottom: 1px solid var(--paper-border);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}

.route-selector-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.route-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
}

.route-label svg {
  color: var(--gold);
}

.route-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.route-pill {
  background: var(--paper-dim);
  border: 1px solid var(--paper-border);
  color: var(--ink-soft);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.route-pill:hover {
  background: var(--navy-900);
  color: #FFFFFF;
  border-color: var(--navy-900);
}

/* ---------- Section Standard Layouts ---------- */
section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 50px;
  max-width: 820px;
}

.section-head .eyebrow {
  margin-bottom: 2px;
  display: inline-flex;
}

.section-head h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--navy-900);
  line-height: 1.12;
  margin: 0;
}

.section-head p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.section-head.on-dark,
.servicos .section-head,
.depoimentos .section-head {
  color: #FFFFFF;
}

.section-head.on-dark h2,
.servicos .section-head h2,
.depoimentos .section-head h2 {
  color: #FFFFFF;
}

.section-head.on-dark p,
.servicos .section-head p,
.depoimentos .section-head p {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Sobre Section ---------- */
.sobre {
  background: #FFFFFF;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.pull {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.25;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin: 16px 0 28px;
}

.pull .hl {
  color: var(--gold);
}

.sobre-copy p {
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.sobre-timeline {
  margin-top: 32px;
  border-top: 1px solid var(--paper-border);
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sobre-timeline div {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--ink-muted);
}

.sobre-timeline strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.sobre-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--paper-border);
  box-shadow: var(--shadow-lg);
}

.sobre-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.sobre-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(8, 20, 38, 0.9);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(231, 196, 113, 0.3);
}

/* ---------- Serviços Section (Clean Executive Services) ---------- */
.servicos {
  background: var(--navy-950);
  color: #FFFFFF;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-item {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s var(--ease);
}

.service-item:hover {
  border-color: rgba(231, 196, 113, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  background: #0b1c36;
}

.service-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-item-num {
  font-family: 'DM Mono', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}

.service-item-category {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.service-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0 0 12px;
}

.service-item p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 22px;
}

.service-item-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.service-item-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.service-item-features li svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

.service-item-footer {
  margin-top: auto;
  padding-top: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-link:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.service-link svg {
  transition: transform 0.2s ease;
}

.service-link:hover svg {
  transform: translateX(3px);
}

/* ---------- Frota Section ---------- */
.frota {
  background: var(--paper);
}

.frota-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.fcard {
  background: #FFFFFF;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.fcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.fcard .fcard-media {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.fcard .fcard-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 20, 38, 0.7) 0%, transparent 60%);
}

.fcard-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(8, 20, 38, 0.85);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fcard .fcard-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.fcard .pax {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--navy-700);
  border-bottom: 1px solid var(--paper-border);
  padding-bottom: 10px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.fcard h3 {
  font-size: 1.3rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.fcard p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.fcard-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.fcard-spec-item {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  background: var(--paper-dim);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--ink-muted);
}

.fcard .fcard-cta {
  width: 100%;
}

/* ---------- Linha Blindada Showcase ---------- */
.blindados-strip {
  position: relative;
  color: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 50px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  border: 1px solid rgba(231, 196, 113, 0.4);
  box-shadow: var(--shadow-lg);
}

.blindados-strip h3 {
  font-size: 2.1rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.blindados-strip p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 480px;
}

.blindados-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Galeria ---------- */
.galeria {
  background: var(--navy-950);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gal-item {
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid var(--line-dark);
  transition: all 0.3s var(--ease);
}

.gal-item:hover {
  transform: scale(1.02);
  border-color: var(--gold-light);
}

.gal-item .gal-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(5, 11, 20, 0.8);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---------- Vídeos ---------- */
.videos {
  background: #FFFFFF;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vcard {
  position: relative;
  aspect-ratio: 9/13;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-900);
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--paper-border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease);
}

.vcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.vcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 11, 20, 0.9) 0%, rgba(5, 11, 20, 0.1) 60%);
}

.vcard .vc-body {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: #FFFFFF;
  width: 100%;
}

.vcard .vc-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.vcard h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: #FFFFFF;
}

.play-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(5, 11, 20, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.vcard:hover .play-ring {
  transform: translate(-50%, -50%) scale(1.1);
  border-color: var(--gold-light);
  background: var(--gold);
}

.play-ring svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
  margin-left: 3px;
  transition: fill 0.2s ease;
}

.vcard:hover .play-ring svg {
  fill: var(--navy-950);
}

.vcard iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}

/* ---------- Depoimentos ---------- */
.depoimentos {
  background: var(--navy-900);
  color: #FFFFFF;
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dcard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s var(--ease);
}

.dcard:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(231, 196, 113, 0.3);
}

.dcard .stars {
  color: var(--gold-light);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.dcard p {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.dcard cite {
  font-style: normal;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Instagram Strip ---------- */
.insta {
  background: #FFFFFF;
}

.insta-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--navy-900);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 36px 44px;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg);
}

.insta-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

.insta-mid .handle {
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.insta-mid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  max-width: 520px;
}

.insta-stats {
  display: flex;
  gap: 26px;
  margin-top: 14px;
}

.insta-stats div {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.insta-stats strong {
  display: block;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

/* ---------- Contato ---------- */
.contato {
  position: relative;
  color: #FFFFFF;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contato h2 {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  color: #FFFFFF;
  margin-bottom: 20px;
}

.contato p.lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 0 32px;
  font-size: 1.08rem;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
}

.cline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: #FFFFFF;
}

.cline svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--gold-light);
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.areas .tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  backdrop-filter: blur(8px);
}

.contato-panel {
  background: rgba(8, 20, 38, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(231, 196, 113, 0.35);
  border-radius: var(--radius-md);
  padding: 40px;
  color: #FFFFFF;
  box-shadow: var(--shadow-dark);
}

.contato-panel .eyebrow {
  color: var(--gold-light);
  display: block;
  margin-bottom: 12px;
}

.contato-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.contato-panel p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 34px;
  border-top: 1px solid var(--line-dark);
}

.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-dark);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.foot-brand img {
  height: 36px;
}

.foot-links {
  display: flex;
  gap: 28px;
}

.foot-links a {
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.foot-links a:hover {
  color: var(--gold-light);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.carris-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(10px);
}

.carris-badge strong {
  color: #FFFFFF;
  font-weight: 700;
}

.carris-badge .carris-url {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 3px 10px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.25s ease;
}

.carris-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.carris-badge:hover .carris-url {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  color: #FFFFFF;
  transform: scale(1.02);
}

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s var(--ease);
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy-900);
  color: #FFFFFF;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-dark);
  pointer-events: none;
}

/* ---------- Reveal on Scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile Drawer ---------- */
.mnav {
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 110px 32px 40px;
  gap: 22px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.mnav.open {
  transform: translateX(0);
}

.mnav a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mnav a:hover {
  color: var(--gold-light);
}

.mnav .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  color: #FFFFFF;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mnav .close-btn svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* ---------- Responsive Breakpoints ---------- */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-ticket { max-width: 500px; }
  .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .stat-strip .stat:nth-child(3) { border-left: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .frota-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .insta-card { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 32px 24px; }
  .insta-stats { justify-content: center; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav.links { display: none; }
  .menu-btn { display: block; }
  section { padding: 76px 0; }
  .hero { padding-top: 130px; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-item { padding: 26px 22px; }
  .frota-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-grid .vcard { aspect-ratio: 16/10; }
  .blindados-strip { flex-direction: column; align-items: flex-start; padding: 36px 24px; }
  .foot-row { flex-direction: column; align-items: flex-start; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .route-selector-inner { flex-direction: column; align-items: flex-start; }
}
