:root {
  --navy: #172b62;
  --navy2: #0f1e45;
  --blue: #0d5b9b;
  --cyan: #2e83c7;
  --green: #12b76a;
  --white: #fff;
  --muted: #647086;
  --bg: #f4f7fb;
  --line: #dbe4f0;
  --shadow: 0 24px 60px rgba(15, 30, 69, .18);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: var(--bg);
  color: #111b33;
}
a { color: inherit; text-decoration: none; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 6%;
  background: rgba(15, 30, 69, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
}
.brand img {
  width: 86px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  font-weight: 800;
}
.nav a { opacity: .84; }
.nav a:hover { opacity: 1; }
.employee-link {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: .88rem;
}
.menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  align-items: center;
  gap: 48px;
  min-height: 100vh;
  padding: 120px 6% 72px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy2), var(--navy) 55%, var(--blue));
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 50%, rgba(255, 255, 255, .08) 50% 66%, transparent 66%),
    radial-gradient(circle at 76% 24%, rgba(46, 131, 199, .44), transparent 32%);
  opacity: .96;
}
.hero-content,
.quote-card { position: relative; }
.eyebrow {
  margin: 0 0 12px;
  color: #58a6e2;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 850px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.65rem, 7vw, 6.2rem);
  line-height: .95;
}
.hero-text {
  max-width: 640px;
  color: #dce8f8;
  font-size: 1.18rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font: inherit;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}
.primary {
  color: #fff;
  background: linear-gradient(135deg, #1f80d0, #0d5b9b);
  box-shadow: 0 14px 30px rgba(13, 91, 155, .28);
}
.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .36);
}
.full { width: 100%; }

.quote-card,
.reservation-form {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-trap { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.consent-field { display: flex; align-items: flex-start; gap: 10px; }
.consent-field input { width: auto; margin-top: 4px; }
.form-feedback { margin: 0; padding: 12px; border-radius: 10px; background: #fff7dd; color: #593d00; }
.form-feedback.error { background: #fff0f0; color: #8a1f1f; }
.request-confirmation { background: #fff; border-radius: 18px; padding: 28px; box-shadow: 0 14px 35px rgba(15, 30, 69, .12); }
.request-confirmation h3 { color: var(--navy); font-size: 1.35rem; }
.confirmation-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.quote-logo {
  width: 100%;
  height: 135px;
  margin-bottom: 16px;
  object-fit: cover;
  border-radius: 16px;
}
.quote-card h2 {
  margin: 0 0 18px;
  color: var(--navy);
}
label {
  display: block;
  margin: 0 0 14px;
  color: #26314d;
  font-weight: 900;
}
input,
select {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #111b33;
  font: inherit;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.section { padding: 88px 6%; }
#frota { scroll-margin-top: 92px; }
.intro {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 56px;
  background: #fff;
}
.intro h2,
.section-head h2,
.reservation h2,
.contact h2 {
  margin: 0;
  color: var(--navy2);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
}
.intro p,
.section-head p,
.reservation-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.section-head {
  max-width: 800px;
  margin-bottom: 34px;
}
.fleet-heading { margin-inline: auto; text-align: center; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.fleet-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  grid-column: span 2;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #f7f8fb, #eef1f6);
  box-shadow: 0 14px 40px rgba(15, 30, 69, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.fleet-card:nth-child(n+4) { grid-column: span 3; }
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.fleet-card-title { padding: 20px 20px 0; }
.fleet-card-title p {
  margin: 0 0 3px;
  color: #075ac6;
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
}
.fleet-card h3 {
  margin: 0 0 7px;
  color: #07142f;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
}
.fleet-card-title span {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 5px;
  color: #fff;
  background: #075fd1;
  font-size: .82rem;
  font-weight: 900;
}
.fleet-car-image {
  display: block;
  width: 100%;
  height: clamp(230px, 22vw, 340px);
  margin: 8px 0 0;
  padding: 8px 12px;
  object-fit: contain;
  object-position: center;
  background: #f7f8fb;
}
.fleet-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: auto 18px 0;
  padding: 14px 0;
  border-top: 1px solid rgba(13, 91, 155, .16);
}
.fleet-specs div { display: flex; align-items: center; gap: 7px; min-width: 0; }
.fleet-specs dt { color: #075fd1; font-size: 1.1rem; font-weight: 900; }
.fleet-specs dd { margin: 0; color: #123b7d; font-size: .84rem; font-weight: 800; }
.fleet-card .link-btn {
  width: calc(100% - 36px);
  margin: 0 18px 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #1f80d0, #0d5b9b);
  text-align: center;
}
.fleet-message { grid-column: 1 / -1; padding: 32px; color: var(--muted); text-align: center; }
.link-btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.car-illustration {
  position: relative;
  height: 108px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf2fb, #fff);
}
.car-illustration::before {
  position: absolute;
  right: 16px;
  bottom: 6px;
  font-size: 62px;
}
.compact::before { content: '🚗'; }
.auto::before { content: '🚙'; }
.sedan::before { content: '🚘'; }
.suv::before { content: '🚙'; }
.pickup::before { content: '🛻'; }

.benefits {
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  color: #fff;
}
.light h2 { color: #fff; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-grid div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
}
.benefit-grid span { font-size: 2rem; }
.benefit-grid p { color: #dce8f8; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.steps strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}
.steps p { color: var(--muted); }

.reservation {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 50px;
  align-items: start;
  background: #fff;
}

.destinations {
  background:
    radial-gradient(circle at 92% 8%, rgba(46, 131, 199, .12), transparent 26%),
    linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}
.trip-heading { max-width: 900px; }
.trip-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 30px;
}
.trip-guide span,
.trip-meta span,
.trip-extension-grid article > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: #e8f3fc;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .02em;
}
.trip-guide span::before { content: '·'; margin-right: 7px; font-size: 1.25rem; line-height: 0; }
.trip-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.trip-plan {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 30, 69, .1);
}
.trip-plan figure { position: relative; margin: 0; overflow: hidden; }
.trip-plan figure::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(15, 30, 69, .52));
  pointer-events: none;
}
.trip-plan figure img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .35s ease;
}
.trip-plan:hover figure img { transform: scale(1.025); }
.trip-plan figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  color: #fff;
  font-size: .66rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .7);
}
.trip-plan-content { padding: 26px; }
.trip-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.trip-plan h3,
.trip-extensions h3,
.trip-note h3 {
  margin: 0;
  color: var(--navy2);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.08;
}
.trip-plan-content > p {
  margin: 12px 0 22px;
  color: var(--muted);
  line-height: 1.65;
}
.route-stops { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.route-stops li { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; }
.route-stops li > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: .82rem;
  font-weight: 900;
}
.route-stops li:not(:last-child) > span::after {
  content: '';
  width: 2px;
  height: 38px;
  margin-top: 4px;
  background: #cbdced;
}
.route-stops strong { color: var(--navy); }
.route-stops p { margin: 4px 0 0; color: var(--muted); line-height: 1.5; }
.trip-plan details {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #31405e;
  background: #f1f6fb;
}
.trip-plan summary { color: var(--navy); font-weight: 900; cursor: pointer; }
.trip-plan details p { margin: 10px 0 0; line-height: 1.55; }
.trip-extensions { margin-top: 64px; }
.trip-extensions .section-head { max-width: 780px; margin-bottom: 24px; }
.trip-extensions h3 { font-size: clamp(1.5rem, 3vw, 2.35rem); }
.trip-extension-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.trip-extension-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
}
.trip-extension-grid h4 { margin: 14px 0 8px; color: var(--navy); font-size: 1.25rem; }
.trip-extension-grid p { margin: 0; color: var(--muted); line-height: 1.55; }
.trip-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
  padding: 28px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy2), var(--navy));
}
.trip-note h3 { color: #fff; }
.trip-note p:last-child { max-width: 760px; margin: 10px 0 0; color: #dce8f8; line-height: 1.55; }
.trip-note .btn { flex: 0 0 auto; background: #fff; color: var(--navy); box-shadow: none; }
.photo-credits { margin: 18px 0 0; color: var(--muted); font-size: .75rem; text-align: center; }
.photo-credits a { color: var(--blue); text-decoration: underline; }

.contact {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px;
  align-items: center;
}
.phones {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.phones a {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}
.card-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.floating-whats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(18, 183, 106, .35);
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 6%;
  background: var(--navy2);
  color: #fff;
}
.status {
  margin-top: 12px;
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 1220px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-card,
  .fleet-card:nth-child(n+4) { grid-column: span 1; }
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .reservation,
  .contact {
    grid-template-columns: 1fr;
  }
  .fleet-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trip-plan figure img { height: 260px; }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 20px 6%;
    flex-direction: column;
    align-items: flex-start;
    background: var(--navy2);
  }
  .nav.open { display: flex; }
  .menu { display: grid; place-items: center; }
}

@media (max-width: 620px) {
  .topbar {
    height: 66px;
    padding: 0 18px;
  }
  .brand span { display: none; }
  .brand img {
    width: 74px;
    height: 38px;
  }
  .nav { top: 66px; padding: 18px; }
  .hero { padding: 100px 18px 50px; }
  .hero h1 { font-size: clamp(2.45rem, 16vw, 3.7rem); }
  .hero-text { font-size: 1.05rem; }
  .section { padding: 64px 18px; }
  .fleet-grid,
  .benefit-grid,
  .steps,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .trip-plan-grid,
  .trip-extension-grid { grid-template-columns: 1fr; }
  .trip-note { align-items: flex-start; flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .quote-card,
  .reservation-form,
  .fleet-card,
  .steps div,
  .benefit-grid div {
    border-radius: 18px;
  }
  .quote-logo { height: 110px; }
  .fleet-car-image { height: auto; aspect-ratio: 3 / 2; }
  .trip-plan figure img { height: 220px; }
  .trip-plan-content { padding: 22px; }
  .floating-whats {
    right: 16px;
    bottom: 16px;
  }
  footer { flex-direction: column; }
}
