:root {
  --bg: #0c0f14;
  --bg-alt: #12161d;
  --card: #171c25;
  --border: #262c38;
  --text: #eef1f6;
  --text-dim: #a7afbf;
  --gold: #c9a24b;
  --gold-light: #e4c977;
  --radius: 14px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold); display: inline-block; flex-shrink: 0; }
h1, h2, h3, h4 { font-family: 'Poppins', Inter, sans-serif; line-height: 1.15; margin: 0 0 16px; }
h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; }
p { color: var(--text-dim); margin: 0 0 16px; }
.lede { font-size: 18px; max-width: 640px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #000; }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold), #a3822f); color: #000; }
.btn-outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--gold); }
.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12,15,20,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: .02em; }
.brand span { color: var(--gold); }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a { font-size: 14px; font-weight: 600; color: var(--text-dim); }
.nav a:hover, .nav a.active { color: var(--gold-light); }
.nav a.btn-gold, .nav a.btn-gold:hover { color: #000; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 26px; cursor: pointer; }

@media (max-width: 860px) {
  .nav { position: fixed; top: 78px; left: 0; right: 0; height: calc(100vh - 78px); background: var(--bg); flex-direction: column; padding: 30px 24px; display: none; gap: 22px; overflow-y: auto; }
  .nav.open { display: flex; z-index: 100; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  position: relative;
  padding: 0 0 100px;
  background: #0c0f14;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-banner {
  position: relative;
  width: 100%;
  margin-bottom: 180px;
}
.hero-photo {
  position: relative;
  height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(201,162,75,.18), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(201,162,75,.12), transparent 45%),
    linear-gradient(160deg, #14181f 0%, #1b212b 55%, #0c0f14 100%);
}
.hero-banner-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,8,11,.7) 0%, rgba(6,8,11,.25) 40%, rgba(6,8,11,.05) 60%),
              linear-gradient(0deg, rgba(6,8,11,.5) 0%, rgba(6,8,11,0) 30%);
}
.book-card-float {
  position: absolute;
  top: 50%;
  right: max(24px, calc((100vw - var(--maxw)) / 2 + 24px));
  transform: translateY(-50%);
  width: min(380px, calc(100% - 48px));
  z-index: 3;
  margin: 0;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
@media (max-width: 860px) {
  .hero-banner { margin-bottom: 48px; }
  .hero-photo { height: 260px; }
  .book-card-float { position: static; width: 100%; margin: -40px auto 0; transform: none; box-shadow: none; }
}

.hero-text { max-width: 780px; }
.hero-text h1 { margin-bottom: 22px; }
.hero-text .lede { margin-top: 4px; }
@media (max-width: 860px) { .hero-text { padding: 0 4px; } }
.hero-visual {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(155deg, #1a2029, #0d1015 70%);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-visual svg { width: 62%; opacity: .92; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.35), transparent 50%);
}
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.tag { border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; font-size: 13px; color: var(--text-dim); }

/* Booking card */
.book-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.book-card h3 { margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid var(--border);
  background: #0f131a; color: var(--text); font-size: 14px; font-family: inherit;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }

/* Cards / grids */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; height: 100%; display: block;
}
.icon-badge {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(201,162,75,.14); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  transition: background .2s ease, color .2s ease;
}
a.card:hover .icon-badge { background: var(--gold); color: #000; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head .btn { flex-shrink: 0; }

/* Testimonials */
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-author { font-weight: 600; margin-top: 14px; }
.testimonial-role { font-size: 13px; color: var(--text-dim); }

/* Blog */
.post-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.post-cover { aspect-ratio: 16/10; background: linear-gradient(140deg, #232a36, #12151b); display:flex; align-items:center; justify-content:center; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-date { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; }
.post-excerpt { flex: 1; }
.post-article { max-width: 760px; margin: 0 auto; }
.post-article .post-cover { aspect-ratio: 16/8; border-radius: var(--radius); margin-bottom: 30px; border: 1px solid var(--border); }
.post-content { color: var(--text); font-size: 17px; white-space: pre-wrap; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 1; background: #12161d; position: relative; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption { position: absolute; left:0; right:0; bottom:0; padding: 10px 12px; font-size: 12px; background: linear-gradient(0deg, rgba(0,0,0,.75), transparent); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-alt); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); margin-bottom: 16px; }
.footer-grid a { display: block; color: var(--text-dim); font-size: 14px; margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; font-size: 13px; color: var(--text-dim); display:flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.whatsapp-float svg { width: 28px; height: 28px; }

.breadcrumb { color: var(--text-dim); font-size: 13px; margin-bottom: 18px; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold-light); }

.empty-state { color: var(--text-dim); border: 1px dashed var(--border); border-radius: var(--radius); padding: 40px; text-align: center; }

.badge {
  display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); color: var(--text-dim);
}

/* Map placeholder */
.map-box {
  border-radius: var(--radius); border: 1px solid var(--border);
  background: linear-gradient(145deg, #171c25, #0e1116);
  aspect-ratio: 16/7; display: flex; align-items: center; justify-content: center; color: var(--text-dim);
}

/* =========================================================
   Marca / logo
========================================================= */
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 40px; width: auto; display: block; transition: height .25s ease; }
.brand-word { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 19px; letter-spacing: .02em; }
.brand-word span { color: var(--gold); font-weight: 700; }
.site-footer .brand-logo { height: 60px; }

/* Header encolhe suavemente ao rolar a pagina */
.site-header { transition: height .25s ease, background .25s ease; }
.site-header .wrap { transition: height .25s ease; }
.site-header.is-scrolled { background: rgba(9,11,15,.96); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.site-header.is-scrolled .wrap { height: 62px; }
.site-header.is-scrolled .brand-logo { height: 32px; }

/* =========================================================
   Preloader (animacao de abertura com a logo)
========================================================= */
html.preloader-locked, html.preloader-locked body { overflow: hidden; height: 100%; }
.preloader {
  position: fixed; inset: 0; z-index: 999;
  background: #050608;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity .7s ease;
  cursor: pointer;
}
.preloader-glow {
  position: absolute; width: 60vmax; height: 60vmax; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,.16) 0%, transparent 65%);
  animation: preloaderPulse 2.6s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(.85); opacity: .6; }
  50% { transform: scale(1.05); opacity: 1; }
}
.preloader-video {
  position: relative; z-index: 1;
  width: min(46vw, 260px); height: auto;
}
.preloader-logo-fallback { display: none; }
.preloader-skip {
  position: relative; z-index: 1; margin-top: 22px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-dim); opacity: 0; animation: preloaderSkipIn .4s ease .9s forwards;
}
@keyframes preloaderSkipIn { to { opacity: .7; } }
.preloader.is-done { opacity: 0; pointer-events: none; }

/* Sem JS / video indisponivel: mostra a logo estatica animada */
.no-js .preloader-video, .preloader.video-failed .preloader-video { display: none; }
.no-js .preloader-logo-fallback, .preloader.video-failed .preloader-logo-fallback {
  display: block; position: relative; z-index: 1; width: min(60vw, 340px);
  animation: preloaderLogoIn 1.3s ease forwards;
}
@keyframes preloaderLogoIn {
  0% { opacity: 0; transform: scale(.82); filter: blur(6px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: scale(1); }
}

/* Ja visitou nesta sessao: nao renderiza o preloader (evita flash) */
html.intro-seen .preloader { display: none; }

/* =========================================================
   Reveal on scroll (fade + sobe levemente ao entrar na tela)
========================================================= */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .preloader-glow { animation: none; }
}

/* Cards ganham leve elevacao + brilho dourado na borda ao passar o mouse */
.card, .service-card, .testimonial-card, .post-card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover, .testimonial-card:hover, .post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,75,.55);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

/* =========================================================
   Video card + layout dividido (midia + texto)
========================================================= */
.split-media {
  display: grid; grid-template-columns: .78fr 1fr; gap: 56px; align-items: center;
}
.split-media.reverse { grid-template-columns: 1fr .78fr; }
.split-media.reverse .split-media-visual { order: 2; }
.split-media.reverse .split-media-text { order: 1; }
@media (max-width: 900px) {
  .split-media, .split-media.reverse { grid-template-columns: 1fr; }
  .split-media.reverse .split-media-visual { order: initial; }
  .split-media.reverse .split-media-text { order: initial; }
}

.video-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 9/16;
  max-width: 340px;
  margin: 0 auto;
  background: #0d1015;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  transition: transform .4s ease, box-shadow .4s ease;
}
.video-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.video-card::after {
  content: ""; position: absolute; inset: 0; border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(201,162,75,.25); pointer-events: none;
}
.video-card video, .video-card img.vc-poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-card-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 18px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.82), transparent 70%);
  font-size: 13px; color: var(--text-dim);
}

/* Video com som (clique para reproduzir) - usado em "Veltriz para elas" */
.video-card.click-to-play { cursor: pointer; }
.video-card.click-to-play video { opacity: 0; transition: opacity .3s ease; }
.video-card.click-to-play.is-playing video { opacity: 1; }
.video-card.click-to-play.is-playing img.vc-poster { display: none; }
.video-card.click-to-play.is-playing .video-card-caption { display: none; }
.play-button {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; z-index: 2;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  transition: opacity .3s ease, transform .3s ease;
}
.play-button svg { width: 22px; height: 22px; fill: #17130a; margin-left: 3px; }
.video-card.is-playing .play-button { opacity: 0; transform: translate(-50%, -50%) scale(.7); pointer-events: none; }
.video-card:hover .play-button { transform: translate(-50%, -50%) scale(1.06); }

/* Selo / eyebrow com linha decorativa dourada ja aplicado globalmente acima */

/* =========================================================
   Secao "Veltriz para elas"
========================================================= */
.women-section {
  position: relative;
  background:
    radial-gradient(circle at 85% 20%, rgba(201,162,75,.10), transparent 45%),
    var(--bg-alt);
}
.women-section .video-card::after { box-shadow: inset 0 0 0 1px rgba(224,180,190,.35); }
.women-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(224,180,190,.4); color: #e7c3ca;
  border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 600;
  letter-spacing: .04em; margin-bottom: 18px;
}

/* Botao de mudo/som usado nos video-cards em loop */
.mute-toggle {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(6,8,11,.55); border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  backdrop-filter: blur(6px);
}
.mute-toggle svg { width: 16px; height: 16px; fill: var(--text); }

/* Manifesto / brand statement */
.manifesto-kicker { font-family: 'Poppins', sans-serif; font-size: clamp(22px, 2.6vw, 30px); color: var(--text); font-weight: 600; line-height: 1.3; }
.manifesto-kicker .gold { color: var(--gold-light); }

/* =========================================================
   Autocomplete de endereco (origem/destino)
========================================================= */
.autocomplete-field { position: relative; }
.autocomplete-list {
  display: none;
  position: absolute; left: 0; right: 0; top: calc(100% + 4px); z-index: 20;
  background: #12161d; border: 1px solid var(--border); border-radius: 10px;
  max-height: 220px; overflow-y: auto;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.autocomplete-list.is-open { display: block; }
.autocomplete-item {
  padding: 11px 14px; font-size: 13px; color: var(--text-dim); cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover, .autocomplete-item.is-active { background: rgba(201,162,75,.12); color: var(--text); }
.autocomplete-item.is-empty { cursor: default; }
.autocomplete-item.is-empty:hover { background: none; color: var(--text-dim); }

/* Data + horario lado a lado */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* =========================================================
   Modal de reserva (veiculo + passageiros + WhatsApp)
========================================================= */
.booking-modal {
  position: fixed; inset: 0; z-index: 500;
  display: none; align-items: flex-start; justify-content: center;
  padding: 40px 20px; overflow-y: auto;
}
.booking-modal.is-open { display: flex; }
.booking-modal-backdrop {
  position: fixed; inset: 0; background: rgba(4,5,7,.78); backdrop-filter: blur(3px);
}
.booking-modal-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 720px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: 0 30px 80px rgba(0,0,0,.55);
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.booking-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  background: #0f131a; color: var(--text); font-size: 20px; line-height: 1; cursor: pointer;
}
.booking-modal-eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.booking-modal-card h3 { margin-bottom: 22px; }

.booking-summary {
  background: #0f131a; border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 26px; font-size: 13px; color: var(--text-dim);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px;
}
.booking-summary strong { color: var(--text); font-weight: 600; }
@media (max-width: 560px) { .booking-summary { grid-template-columns: 1fr; } }

.booking-step-title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  margin: 22px 0 14px;
}
.booking-step-title span {
  width: 22px; height: 22px; border-radius: 6px; background: var(--gold); color: #17130a;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}

.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 640px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
.vehicle-card {
  position: relative;
  border: 1px solid var(--border); border-radius: 12px; background: #0f131a;
  padding: 16px 12px; text-align: center; cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.vehicle-card:hover { transform: translateY(-2px); border-color: rgba(201,162,75,.5); }
.vehicle-card.is-selected { border-color: var(--gold); background: rgba(201,162,75,.08); }
.vehicle-card .vehicle-icon { width: 40px; height: 40px; margin: 0 auto 10px; color: var(--gold); }
.vehicle-card .vehicle-icon svg { width: 100%; height: 100%; }
.vehicle-card .vehicle-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.vehicle-card .vehicle-cap { font-size: 12px; color: var(--text-dim); }
.vehicle-card .vehicle-check {
  position: absolute; top: 8px; right: 8px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); color: #17130a; display: none; align-items: center; justify-content: center; font-size: 11px;
}
.vehicle-card.is-selected .vehicle-check { display: flex; }

.more-passengers-note {
  display: block; margin-top: 14px; font-size: 13px; color: var(--gold-light);
  text-decoration: underline; text-underline-offset: 3px;
}

#sendWhatsappBtn { margin-top: 26px; }
#sendWhatsappBtn:disabled, .field select:disabled { opacity: .5; cursor: not-allowed; }

/* =========================================================
   Seletor de idioma (menu)
========================================================= */
.lang-switcher { position: relative; }
.lang-switcher-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--border); border-radius: 999px;
  color: var(--text); font-size: 13px; font-weight: 600; letter-spacing: .02em;
  padding: 7px 12px; cursor: pointer; transition: border-color .2s ease;
}
.lang-switcher-btn:hover { border-color: rgba(201,162,75,.5); }
.lang-switcher-btn svg { transition: transform .2s ease; color: var(--gold); }
.lang-switcher.is-open .lang-switcher-btn svg { transform: rotate(180deg); }
.lang-switcher-list {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 40;
  background: #12161d; border: 1px solid var(--border); border-radius: 10px;
  min-width: 190px; padding: 6px; box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.lang-switcher.is-open .lang-switcher-list { display: block; }
.lang-switcher-list a {
  display: block; padding: 9px 12px; border-radius: 7px; font-size: 13px;
  color: var(--text-dim); text-decoration: none; white-space: nowrap;
}
.lang-switcher-list a:hover { background: rgba(201,162,75,.1); color: var(--text); }
.lang-switcher-list a.is-active { color: var(--gold); font-weight: 600; }
@media (max-width: 900px) {
  .lang-switcher { width: 100%; }
  .lang-switcher-btn { width: 100%; justify-content: space-between; }
  .lang-switcher-list { position: static; width: 100%; margin-top: 8px; box-shadow: none; }
}

/* Icones sociais no rodape (abaixo da logo) */
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--text-dim);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #000; transform: translateY(-2px); }

/* =========================================================
   Modal "Monte seu Tour" - grade de pontos turisticos
========================================================= */
.tour-points-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 22px; }
@media (max-width: 640px) { .tour-points-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .tour-points-grid { grid-template-columns: repeat(2, 1fr); } }
.tour-point-card {
  position: relative;
  border: 1px solid var(--border); border-radius: 10px; background: #0f131a;
  padding: 14px 8px 12px; text-align: center; cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.tour-point-card:hover { border-color: rgba(201,162,75,.5); transform: translateY(-2px); }
.tour-point-card.is-selected { border-color: var(--gold); background: rgba(201,162,75,.1); }
.tour-point-card svg { width: 20px; height: 20px; color: var(--gold); margin-bottom: 6px; }
.tour-point-card div { font-size: 12.5px; font-weight: 600; line-height: 1.25; }
.tour-point-check {
  position: absolute; top: 6px; right: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); color: #000; font-size: 10px;
  display: none; align-items: center; justify-content: center;
}
.tour-point-card.is-selected .tour-point-check { display: flex; }
