:root {
  --navy: #0a1628;
  --teal: #009c8a;
  --teal-dark: #0e7c7b;
  --cyan: #3db8c5;
  --gold: #c9a75d;
  --orange: #e25a1a;
  --paper: #f7f4ee;
  --white: #ffffff;
  --muted: #5c675f;
  --line: #e8e4dc;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe57;
  --shadow: 0 8px 24px rgb(10 22 40 / 0.08);
  --radius: 14px;
  --header: 72px;
  --font: "Figtree", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
}

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

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--whatsapp);
  color: #083318;
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 100;
  font-weight: 700;
}

.skip:focus { top: 12px; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgb(247 244 238 / 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-compact { height: 64px; }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover { color: var(--teal-dark); }

.lang-switch {
  display: flex;
  gap: 4px;
  margin-left: 8px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.lang-switch button {
  border: 0;
  background: transparent;
  width: 38px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.lang-switch button.is-active {
  background: var(--navy);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.btn-wa {
  background: var(--whatsapp);
  color: #083318;
}

.btn-wa:hover { background: var(--whatsapp-dark); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 0.45);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover { background: #16263d; }

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-outline:hover { border-color: var(--navy); }

.header-cta { display: none; white-space: nowrap; font-size: 14px; padding-inline: 14px; }

.nav-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  display: grid;
  place-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  animation: kenburns 18s ease-out both;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(10 22 40 / 0.55) 0%, rgb(10 22 40 / 0.18) 58%),
    linear-gradient(180deg, rgb(10 22 40 / 0.38) 0%, rgb(10 22 40 / 0.58) 42%, rgb(10 22 40 / 0.88) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 48px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-dark);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow { color: var(--cyan); }

h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 12px; }

h1 {
  font-family: var(--display);
  font-size: clamp(40px, 7.5vw, 72px);
  max-width: 14ch;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2, h3 { font-family: var(--font); font-weight: 700; }

h2 { font-size: clamp(28px, 4vw, 44px); }

.lead { font-size: 18px; max-width: 42ch; margin: 0 0 24px; color: rgb(255 255 255 / 0.92); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

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

.chip {
  background: rgb(255 255 255 / 0.14);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
}

.chip-link { color: inherit; }

.chip-link:hover { background: rgb(255 255 255 / 0.24); }

.chip--accent {
  border-color: rgb(226 90 26 / 0.7);
  background: rgb(226 90 26 / 0.28);
}

.proof {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
}

.proof-grid {
  display: grid;
  gap: 18px;
}

.score {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
}

.stars { color: var(--gold); letter-spacing: 2px; }

.proof blockquote { margin: 0; font-size: 18px; }
.proof cite { color: rgb(255 255 255 / 0.7); font-style: normal; font-weight: 600; }

.google-link { color: var(--cyan); font-weight: 700; font-size: 14px; }

.proof-links { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 8px 0 0; }

section { padding: 72px 0; }

.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head .lead, .muted { color: var(--muted); }

.falls-grid {
  display: grid;
  gap: 18px;
}

.tour-card {
  container-type: inline-size;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tour-card picture,
.card-visual {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d9e4e0;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card .body { padding: 20px; }

.pill {
  display: inline-block;
  background: #e6fbf8;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.meta { color: var(--muted); font-size: 14px; margin: 0 0 14px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 18px; }

.chip-row span {
  background: #e6fbf8;
  color: var(--teal-dark);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
}

.combo {
  margin-top: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e6fbf8, var(--white));
  border: 1px solid rgb(0 156 138 / 0.18);
  display: grid;
  gap: 16px;
}

.combo h3 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 36px 0 16px;
}

.slider-head h3 { margin: 0; }

.slider-nav { display: flex; gap: 8px; }

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.slider-btn:hover { border-color: var(--teal); color: var(--teal-dark); }

.slider-btn:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
}

.tour-slider-window { overflow: hidden; }

.tour-slider-track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.tour-slider-track .tour-card {
  flex: 0 0 100%;
  min-width: 0;
}

.tour-slider-track .tour-card picture,
.tour-slider-track .tour-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mini h3 { font-size: 22px; }

.plain-visual {
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--navy), var(--teal-dark));
  color: var(--white);
  font-family: var(--display);
  font-size: 28px;
  padding: 16px;
  text-align: center;
}

.mid-cta {
  margin-top: 28px;
  text-align: center;
}

.steps { background: var(--navy); color: var(--white); }

.steps-grid { display: grid; gap: 14px; }

.step {
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius);
  padding: 22px;
}

.num {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.fleet-showcase {
  display: grid;
  gap: 14px;
}

.fleet-card {
  container-type: inline-size;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fleet-visual {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #d9e4e0;
}

.fleet-card--feature .fleet-visual {
  aspect-ratio: 1237 / 1271;
  background: #d5ddd8;
}

.fleet-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--crop-x, 50%) var(--crop-y, 50%);
}

.fleet-visual[data-crop="hotel"] img {
  object-fit: contain;
  object-position: center center;
  padding: 8px;
  box-sizing: border-box;
}

.fleet-card--feature {
  position: relative;
}

.fleet-card-body {
  padding: 14px 16px 16px;
}

.fleet-card--feature .fleet-card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 10px 16px 12px;
  background: rgb(10 22 40 / 0.72);
  color: var(--white);
}

.fleet-card--feature h3 {
  color: var(--white);
  margin-bottom: 4px;
}

.fleet-card--feature p {
  margin: 0;
  color: rgb(255 255 255 / 0.82);
  font-size: 14px;
}

.fleet-grid-compact {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82vw, 1fr);
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.fleet-grid-compact .fleet-card {
  scroll-snap-align: start;
}

.fleet-grid-compact .fleet-visual {
  aspect-ratio: 21 / 10;
  background: #d5ddd8;
}

.fleet-grid-compact .fleet-visual img {
  object-fit: cover;
  object-position: var(--crop-x, 50%) var(--crop-y, 52%);
}

.fleet-specs {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.fleet-specs li {
  background: #e6fbf8;
  color: var(--teal-dark);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
}

@container (min-width: 280px) {
  .fleet-card--feature h3 { font-size: 26px; }
  .tour-card h3 { font-size: 1.15em; }
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.mosaic img,
.mosaic picture { border-radius: 12px; aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }

.reviews-proof {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews-proof .score { color: var(--navy); }

.reviews-proof p { margin: 6px 0 0; color: var(--muted); }

.reviews-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.reviews-grid { display: grid; gap: 14px; }

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.faq-list { display: grid; gap: 10px; }

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 16px 4px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

details p { margin: 0 0 14px; color: var(--muted); }

.final {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.final-bg {
  position: absolute;
  inset: 0;
}

.final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38);
}

.final .container { position: relative; z-index: 1; }

.phone { font-weight: 700; font-size: 20px; display: inline-block; margin-top: 12px; }

footer {
  padding: 48px 0 120px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

footer .footer-grid img {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-switch,
.nav-toggle { flex-shrink: 0; }

.final { min-height: 420px; display: grid; align-items: center; }

.footer-grid { display: grid; gap: 24px; color: var(--muted); font-size: 15px; }

footer strong { display: block; color: var(--navy); margin-bottom: 8px; }

.privacy { font-size: 13px; max-width: 62ch; }

.copy { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: #8a9692; }

.wa-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgb(247 244 238 / 0.94);
  border-top: 1px solid var(--line);
}

.wa-bar .btn { width: 100%; }

.wa-float { display: none; }

.icon-wa {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (min-width: 760px) {
  .proof-grid { grid-template-columns: 200px 1fr; align-items: center; }
  .falls-grid { grid-template-columns: 1fr 1fr; }
  .tour-slider-track .tour-card { flex-basis: calc((100% - 14px) / 2); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-proof { grid-template-columns: auto 1fr; align-items: center; }
  .reviews-actions { justify-content: flex-end; }
  .mosaic { grid-template-columns: repeat(4, 1fr); }
  .combo { grid-template-columns: 1fr auto; align-items: center; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .fleet-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: stretch;
    gap: 14px;
  }
  .fleet-card--feature {
    grid-column: 1;
    grid-row: 1;
  }
  .fleet-card--feature .fleet-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 1237 / 1271;
  }
  .fleet-card--feature .fleet-visual img {
    height: 100%;
    object-fit: contain;
  }
  .fleet-grid-compact {
    display: grid;
    grid-column: 2;
    grid-row: 1;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  .fleet-grid-compact .fleet-card {
    position: relative;
    min-height: 0;
    overflow: hidden;
  }
  .fleet-grid-compact .fleet-visual {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    height: auto;
  }
  .fleet-grid-compact .fleet-visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: var(--crop-x, 50%) var(--crop-y, 52%);
  }
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .nav-links {
    position: static;
    display: flex;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  .header-cta { display: inline-flex; }
  .tour-slider-track .tour-card { flex-basis: calc((100% - 42px) / 4); }
  .wa-bar { display: none; }
  .wa-float {
    display: grid;
    place-items: center;
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #083318;
    box-shadow: var(--shadow);
    z-index: 50;
  }
  .wa-float svg { width: 26px; height: 26px; }
  footer { padding-bottom: 48px; }
}

@media (max-width: 979px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img { animation: none; }
  .tour-slider-track { transition: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .tour-card,
  .fleet-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .tour-card:hover,
  .fleet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgb(10 22 40 / 0.12);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

#frota {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
