:root {
  --navy: #111874;
  --navy-dark: #090d4a;
  --navy-soft: #eef0ff;
  --white: #ffffff;
  --ivory: #ffffff;
  --paper: #ffffff;
  --espresso: #111874;
  --cocoa: #3a3a3a;
  --taupe: #6f7481;
  --line-warm: #d8dcec;
  --ink: #161826;
  --muted: #5f6472;
  --line: #dde3f4;
  --surface: #f1f5ff;
  --gold: #c9a24d;
  --brand-green: #009929;
  --brand-green-dark: #007a22;
  --brand-green-soft: #e7f8ed;
  --whatsapp: #25d366;
  --sky: #eaf5ff;
  --accent-blue: #4d7df0;
  --mint: #e8fbf3;
  --warm: #fff6e8;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Inter", "Segoe UI", Arial, sans-serif;
  --font-heading: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-elegant: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-accent: var(--font-elegant);
  --shadow: 0 18px 45px rgba(17, 24, 116, 0.13), 0 3px 12px rgba(17, 24, 116, 0.06);
  --shadow-soft: 0 12px 30px rgba(17, 24, 116, 0.08), 0 2px 8px rgba(17, 24, 116, 0.05);
  --shadow-card: 0 20px 44px rgba(17, 24, 116, 0.12), 0 4px 12px rgba(17, 24, 116, 0.06);
  --shadow-strong: 0 24px 58px rgba(17, 24, 116, 0.18), 0 8px 18px rgba(17, 24, 116, 0.08);
  --radius: 8px;
  --layout: 1180px;
  --anchor-offset: 96px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Offset global das âncoras: as seções param logo abaixo do header fixo.
     Atenção: usar APENAS scroll-padding-top aqui (não combinar com
     scroll-margin-top nas seções, pois os dois offsets se somariam). */
  scroll-padding-top: var(--anchor-offset);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbff 0%, #f4f7ff 42%, #ffffff 100%);
  letter-spacing: 0;
  width: 100%;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

img,
svg {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.layout {
  width: min(100% - 48px, var(--layout));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-green-dark);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(17, 24, 116, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 66px;
  height: 66px;
  overflow: hidden;
}

.brand-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  color: currentColor;
  opacity: 0.78;
}

.site-header .brand small {
  color: var(--brand-green-dark);
  opacity: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font-size: 18px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  color: var(--brand-green-dark);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.site-header .header-cta {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(17, 24, 116, 0.22);
}

.button:hover,
.header-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--espresso);
  color: var(--paper);
  box-shadow: 0 18px 34px rgba(17, 24, 116, 0.28);
}

.button-primary:hover {
  background: var(--navy-dark);
}

.button-secondary {
  color: var(--espresso);
  background: transparent;
  border: 1px solid var(--line-warm);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-light {
  color: var(--espresso);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.hero {
  position: relative;
  display: grid;
  min-height: 70svh;
  padding: 126px 0 68px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1200ms ease, transform 5800ms ease;
}

.hero-slide[data-hero-focus="facade"] {
  object-position: center 42%;
}

.hero-slide[data-hero-focus="team"] {
  object-position: center 40%;
}

.hero-slide[data-hero-focus="reception"] {
  object-position: center 50%;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 53, 0.9) 0%, rgba(17, 24, 116, 0.68) 46%, rgba(17, 24, 116, 0.1) 100%),
    linear-gradient(180deg, rgba(8, 11, 53, 0.18) 0%, rgba(8, 11, 53, 0.28) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #565c6b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 61px;
  font-weight: 700;
  line-height: 1.04;
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  line-height: 1.02;
}

.hero-title-accent {
  color: var(--accent-blue);
  text-shadow: 0 0 28px rgba(77, 125, 240, 0.4);
}

h1 em .hero-title-accent {
  display: inline;
}

.hero-title-nowrap {
  white-space: nowrap;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

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

.stars .icon {
  color: var(--gold);
}

.trust-band {
  background: linear-gradient(90deg, #f8fbff 0%, #eef4ff 48%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
}

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

.trust-grid > div {
  padding: 22px 22px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-stars,
.trust-icon {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 10px;
  min-height: 22px;
}

.trust-stars .icon {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.trust-icon .icon {
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.trust-icon-whatsapp .icon {
  color: var(--brand-green-dark);
}

.trust-value {
  display: block;
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.trust-grid > div:last-child .trust-value {
  color: var(--brand-green-dark);
}

.trust-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-label-google {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-label-google .icon {
  width: 15px;
  height: 15px;
}

.section,
.quote-section {
  padding: 74px 0;
  background: linear-gradient(180deg, #fbfcff 0%, #f6f8ff 100%);
}

.muted {
  background: linear-gradient(180deg, rgba(234, 245, 255, 0.8) 0%, #f3f7ff 48%, #f8fbff 100%);
}

.quote-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(201, 162, 77, 0.12), transparent 30%),
    linear-gradient(135deg, #f9fbff 0%, var(--sky) 58%, #f5f8ff 100%);
  border-bottom: 1px solid rgba(17, 24, 116, 0.06);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 34px;
  align-items: center;
}

.quote-form {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.85fr 0.85fr;
  grid-template-areas:
    "destino destino ida volta"
    "passageiros passageiros cta cta";
  gap: 10px;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, #17228f 62%, var(--navy-dark) 100%);
  box-shadow: 0 26px 58px rgba(17, 24, 116, 0.25), 0 7px 18px rgba(17, 24, 116, 0.12);
}

.quote-destination {
  grid-area: destino;
}

.quote-date-ida {
  grid-area: ida;
}

.quote-date-volta {
  grid-area: volta;
}

.quote-form .passenger-field {
  grid-area: passageiros;
}

.quote-form > .button {
  grid-area: cta;
  width: 100%;
}

.quote-field {
  position: relative;
}

.quote-form label,
.quote-field {
  display: grid;
  gap: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.quote-label {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.passenger-toggle,
.date-toggle {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  outline: none;
}

.quote-form input::placeholder {
  color: #747a8b;
}

.quote-form > .button.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 32px rgba(4, 8, 50, 0.24);
}

.quote-form > .button.button-primary:hover {
  color: var(--navy-dark);
  background: var(--navy-soft);
}

.quote-destination input {
  font-size: 16px;
  padding-inline: 18px;
}


.date-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.date-toggle .icon {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

.quote-date.is-open .date-toggle {
  border-color: var(--navy);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(17, 24, 116, 0.08);
}

.date-popover {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  z-index: 32;
  width: min(318px, calc(100vw - 48px));
  padding: 12px;
  border: 1px solid rgba(17, 24, 116, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 162, 77, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 52px rgba(17, 24, 116, 0.18), 0 6px 16px rgba(17, 24, 116, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.quote-date-volta .date-popover {
  right: 0;
  left: auto;
  transform-origin: top right;
}

.quote-date.is-open .date-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.date-head {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.date-head strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-transform: capitalize;
}

.date-nav {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.date-nav:hover {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
  transform: translateY(-1px);
}

.date-weekdays,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.date-weekdays {
  gap: 4px;
  margin-bottom: 5px;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.date-grid {
  gap: 4px;
}

.date-empty,
.date-day {
  min-height: 34px;
  aspect-ratio: 1;
}

.date-day {
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.date-day:hover {
  border-color: rgba(17, 24, 116, 0.18);
  background: var(--navy-soft);
  color: var(--navy);
  transform: translateY(-1px);
}

.date-day.is-disabled,
.date-day.is-disabled:hover {
  border-color: transparent;
  background: transparent;
  color: #b8bccb;
  cursor: not-allowed;
  transform: none;
}

.date-day.is-today {
  border-color: rgba(201, 162, 77, 0.55);
  color: var(--navy);
  background: rgba(201, 162, 77, 0.1);
}

.date-day.is-selected {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 9px 18px rgba(17, 24, 116, 0.22);
}

.passenger-field {
  position: relative;
  display: grid;
  gap: 6px;
}

.passenger-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.passenger-toggle::after {
  content: "▾";
  color: var(--navy);
  font-size: 14px;
}

.passenger-field.is-open .passenger-toggle::after {
  content: "▴";
}

.passenger-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
  min-width: 200px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.passenger-field.is-open .passenger-options {
  display: grid;
}

.passenger-options button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--navy-soft);
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.passenger-options button:hover,
.passenger-options button.is-selected {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.quote-form input:focus,
.passenger-toggle:focus,
.date-toggle:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: start;
}

.quote-section h2,
.testimonials-section h2,
.conversion-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--espresso);
  font-weight: 900;
  border-bottom: 2px solid rgba(0, 153, 41, 0.28);
}

.text-link:hover {
  border-color: currentColor;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 32px;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading p {
  max-width: 650px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.benefit-card,
.review-card,
.step,
.client-card {
  border: 1px solid rgba(17, 24, 116, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.benefit-card-featured {
  position: relative;
  overflow: hidden;
  padding: 26px;
  color: var(--white);
  border-color: rgba(17, 24, 116, 0.18);
  background: linear-gradient(135deg, var(--navy) 0%, #17228f 58%, #0b0f50 100%);
  box-shadow: var(--shadow-strong);
}

.benefit-card-featured::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -64px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.18);
}

.benefit-card-featured > * {
  position: relative;
  z-index: 1;
}

.benefit-card-featured .icon-wrap {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.benefit-card-featured h3,
.benefit-card-featured p {
  color: var(--white);
}

.payment-highlight {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.payment-label {
  color: var(--brand-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.payment-highlight strong {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
}

.payment-highlight small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.payment-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.benefit-card .payment-note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.45;
}

.benefit-card:hover,
.step:hover,
.review-card:hover,
.client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 24, 116, 0.16);
  box-shadow: var(--shadow-card);
}

.benefit-card p,
.step p,
.review-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.icon-wrap {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--espresso);
  background: var(--navy-soft);
}

.benefit-card:nth-child(2) .icon-wrap {
  background: var(--sky);
}

.benefit-card:nth-child(3) .icon-wrap {
  background: var(--warm);
}

.benefit-card:nth-child(4) .icon-wrap {
  background: var(--mint);
}

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

.step {
  min-height: 210px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.step span {
  display: block;
  margin-bottom: 22px;
  color: var(--espresso);
  font-size: 15px;
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.services-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #18207f 55%, #0a103f 100%);
}

.services-section h2,
.services-section .eyebrow,
.services-section p {
  color: var(--white);
}

.services-section p {
  opacity: 0.84;
}

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

.services-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  font-size: 15px;
  font-weight: 800;
}

.services-list .icon {
  width: 22px;
  height: 22px;
}

.clients-section {
  background:
    radial-gradient(circle at 14% 14%, rgba(201, 162, 77, 0.09), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef3ff 50%, #f7fbff 100%);
}

.testimonials-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(37, 211, 102, 0.08), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 46%, #f8fbff 100%);
}

.clients-shell {
  display: grid;
  gap: 14px;
}

.client-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  contain: paint;
  --carousel-fade-color: #f2f6ff;
}

.client-viewport::before,
.client-viewport::after,
.review-viewport::before,
.review-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(46px, 8vw, 112px);
  pointer-events: none;
}

.client-viewport::before,
.review-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--carousel-fade-color) 0%, rgba(255, 255, 255, 0) 100%);
}

.client-viewport::after,
.review-viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--carousel-fade-color) 0%, rgba(255, 255, 255, 0) 100%);
}

.client-track {
  display: flex;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  /* hidden: o carrossel só anda sozinho (via scrollLeft no script);
     o usuário não arrasta nem rola, e o scroll da página passa livre. */
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.client-track::-webkit-scrollbar {
  display: none;
}

.client-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 0;
  padding: 12px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  scroll-snap-align: start;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.client-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 18%, rgba(201, 162, 77, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(17, 24, 116, 0.08), rgba(37, 211, 102, 0.08));
}

.client-photo {
  display: grid;
  height: 100%;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 22px;
  color: var(--navy);
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.client-photo .icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

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

.client-card-copy {
  padding: 14px 4px 0;
}

.client-card-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.25;
}

.client-card-copy p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.review-carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-carousel-top.actions-only {
  justify-content: flex-end;
}

.review-carousel-top p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.review-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.carousel-button:hover {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}

.review-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  contain: paint;
  --carousel-fade-color: #f2f6ff;
}

.review-grid {
  display: flex;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  /* hidden: o carrossel só anda sozinho (via scrollLeft no script);
     o usuário não arrasta nem rola, e o scroll da página passa livre. */
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.review-grid::-webkit-scrollbar {
  display: none;
}

.client-track.is-marquee,
.review-grid.is-marquee {
  overflow-x: hidden;
  scroll-behavior: auto;
}

.client-track.is-marquee .client-card,
.review-grid.is-marquee .review-card {
  scroll-snap-align: none;
}

.review-card {
  display: flex;
  flex: 0 0 calc((100% - 28px) / 3);
  flex-direction: column;
  min-width: 0;
  padding: 22px;
  font-family: var(--font-heading);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  scroll-snap-align: start;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #3a46c8);
  box-shadow: 0 12px 22px rgba(17, 24, 116, 0.2);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
}

.whatsapp-avatar {
  background: linear-gradient(135deg, #0e766d, var(--whatsapp));
}

.review-avatar-orange {
  background: linear-gradient(135deg, #e8703a, #d4541f);
}

.review-avatar-photo {
  background: none;
  box-shadow: 0 10px 20px rgba(17, 24, 116, 0.16);
  padding: 0;
  overflow: hidden;
}

.review-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.review-top strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
}

.review-top span:not(.review-avatar) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.review-top .icon {
  width: 15px;
  height: 15px;
  color: var(--navy);
}

.review-top .review-avatar-photo + div .icon,
.review-top span .icon use[href="#icon-google"] {
  width: 16px;
  height: 16px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.stars .icon {
  width: 18px;
  height: 18px;
}

blockquote {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-accent);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
}

.review-card blockquote,
.review-card .review-top strong,
.review-card p {
  font-family: var(--font-heading);
}

.review-card blockquote {
  margin-bottom: 0;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #c8cedf;
  cursor: pointer;
  transition: width 160ms ease, background 160ms ease;
}

.review-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--navy), var(--brand-green));
}

.conversion-section {
  padding: 58px 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(17, 24, 116, 0.98) 0%, rgba(18, 28, 136, 0.94) 58%, rgba(201, 162, 77, 0.22) 100%);
}

.conversion-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.conversion-section h2,
.conversion-section p {
  color: var(--white);
}

.conversion-section p {
  max-width: 650px;
  margin-bottom: 0;
  opacity: 0.84;
}

.faq-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef3ff 100%);
}

.faq-section .button {
  margin-top: 10px;
}

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

.faq-whatsapp-note {
  margin: 10px 0 0;
  font-size: 15px;
}

details {
  border: 1px solid rgba(17, 24, 116, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--shadow-soft);
}

summary {
  position: relative;
  padding: 19px 52px 19px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--navy-soft);
  font-size: 20px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 15px;
}

.site-footer {
  position: relative;
  margin-top: 72px;
  padding: 36px 0 20px;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 68%, #075433 145%);
  border-top: 4px solid var(--brand-green);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 30px 40px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 16px;
  justify-items: start;
  min-width: 0;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22), 6px 6px 0 rgba(0, 153, 41, 0.16);
}

.footer-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.6);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-btn:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  transform: translateY(-2px);
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.footer-column h3 {
  margin: 0 0 4px;
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.4;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-address {
  max-width: 250px;
  line-height: 1.5;
}

.footer-map {
  width: min(100%, 260px);
  margin-top: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 130px;
  border: 0;
}

.footer-hours .hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-hours .hours-row span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-hours .hours-row strong {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.footer-dev {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  white-space: nowrap;
}

.footer-dev img {
  height: 30px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.scroll-reveal {
  opacity: 0;
  translate: 0 18px;
  transition: opacity 560ms ease, translate 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}

.scroll-reveal.is-visible {
  opacity: 1;
  translate: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-visible {
    opacity: 1;
    translate: none;
    transition: none;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand-green);
  box-shadow: 0 18px 36px rgba(0, 153, 41, 0.28);
  font-weight: 900;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.floating-whatsapp:hover {
  background: var(--brand-green-dark);
  box-shadow: 0 20px 40px rgba(0, 153, 41, 0.34);
  transform: translateY(-2px);
}

@media (min-width: 761px) {
  .floating-whatsapp {
    display: none;
  }
}

@media (min-width: 1081px) {
  .services-list {
    grid-template-columns: repeat(2, minmax(0, 250px));
    justify-content: end;
  }

  .services-list span {
    min-height: 50px;
    padding-inline: 14px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .site-nav {
    justify-content: flex-end;
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .quote-layout,
  .split,
  .conversion-layout {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .quote-form {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "destino destino"
      "ida volta"
      "passageiros passageiros"
      "cta cta";
  }

  .quote-form .button {
    grid-column: 1 / -1;
  }

  .benefits-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card-featured {
    grid-column: 1 / -1;
  }

  .review-grid,
  .client-track {
    gap: 14px;
  }

  .review-card,
  .client-card {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 760px) {
  :root {
    --anchor-offset: 82px;
  }

  body {
    padding-bottom: 78px;
  }

  .layout {
    width: min(100% - 34px, var(--layout));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 17px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .brand strong {
    font-size: 15px;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    padding: 0 4px;
    font-weight: 900;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 17px;
    left: auto;
    z-index: 55;
    display: none;
    width: max-content;
    min-width: 200px;
    max-width: calc(100vw - 24px);
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-visible {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .site-nav a {
    width: 100%;
    min-height: 40px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--ink);
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding: 86px 0 34px;
    color: var(--white);
    background: var(--navy-dark);
  }

  .hero-slide {
    object-position: 62% center;
  }

  .hero-slide[data-hero-focus="team"] {
    object-position: center 38%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 11, 53, 0.94) 0%, rgba(17, 24, 116, 0.76) 56%, rgba(17, 24, 116, 0.66) 100%),
      linear-gradient(90deg, rgba(8, 11, 53, 0.48) 0%, rgba(8, 11, 53, 0.08) 100%);
  }

  .hero-content {
    align-self: start;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(26px, calc(-4px + 9.6vw), 39px);
    line-height: 1.08;
  }

  .price-nowrap {
    white-space: nowrap;
  }

  h2 {
    font-size: 30px;
    line-height: 1.14;
  }

  h3 {
    font-size: 18px;
  }

  p,
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-subtitle {
    margin-bottom: 23px;
    margin-top: 23px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div {
    padding: 16px 12px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-right: 0;
  }

  .trust-value {
    font-size: 19px;
  }

  .trust-label {
    font-size: 12px;
  }

  .section,
  .quote-section {
    padding: 50px 0;
  }

  .quote-layout,
  .split {
    gap: 22px;
  }

  .quote-form,
  .benefits-grid,
  .services-list {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card-featured {
    grid-column: auto;
    padding: 20px;
  }

  .payment-highlight {
    padding: 12px;
  }

  .payment-highlight strong {
    font-size: 24px;
  }

  .quote-form {
    grid-template-areas:
      "destino"
      "ida"
      "volta"
      "passageiros"
      "cta";
  }

  .quote-form {
    padding: 12px;
  }

  .quote-form input,
  .passenger-toggle,
  .date-toggle {
    min-height: 44px;
  }

  .date-popover {
    width: min(100%, 318px);
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .benefit-card,
  .step,
  .review-card {
    padding: 18px;
  }

  .benefits-grid,
  .steps,
  .review-grid,
  .client-track {
    gap: 10px;
  }

  .review-carousel-top {
    align-items: flex-start;
  }

  .review-carousel-top p {
    max-width: 220px;
  }

  .review-controls {
    flex: 0 0 auto;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
  }

  .review-card {
    flex-basis: 88%;
  }

  .client-viewport::before,
  .client-viewport::after,
  .review-viewport::before,
  .review-viewport::after {
    width: 42px;
  }

  .client-card {
    flex-basis: 82%;
    padding: 10px;
  }

  .client-media {
    aspect-ratio: 4 / 4.75;
  }

  .step {
    min-height: auto;
  }

  .step span {
    margin-bottom: 14px;
  }

  .services-list .optional-mobile {
    display: none;
  }

  .center-action {
    margin-top: 20px;
  }

  .center-action .button,
  .conversion-layout .button,
  .faq-section .button,
  .footer-actions .button {
    width: 100%;
  }

  blockquote {
    font-size: 17px;
  }

  .conversion-section {
    padding: 44px 0;
  }

  summary {
    padding: 17px 48px 17px 17px;
  }

  details p {
    padding: 0 17px 17px;
  }

  .site-footer {
    margin-top: 60px;
    padding: 30px 0 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand {
    gap: 14px;
  }

  .footer-logo-card {
    width: 112px;
  }

  .footer-map {
    width: 100%;
    max-width: 320px;
  }

  .footer-map iframe {
    height: 150px;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
    gap: 14px;
    margin-top: 22px;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 56px;
    justify-content: center;
    border-radius: var(--radius);
  }

  body:has(.quote-date.is-open) .floating-whatsapp,
  body:has(.passenger-field.is-open) .floating-whatsapp {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 22px));
  }
}

@media (max-width: 380px) {
  h2 {
    font-size: 27px;
  }

  .button,
  .floating-whatsapp {
    padding-inline: 16px;
    font-size: 14px;
  }

}

