﻿/*
Theme Name: Vita Voyage ExperiÃªncias
Theme URI: https://vitavoyage.com.br
Author: Total Nex
Description: Tema de ExperiÃªncias de Viagem para o mÃ³dulo Vita Voyage (Total Nex OTA). Identidade oficial da marca: azul marinho #002855, champagne #F3E9DC, dourado #C89B3C, Libre Baskerville + Helvetica. Ver brand_identity_vitavoyage.md.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: Proprietary
Text Domain: vitavoyage
*/

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ TOKENS â€” identidade oficial Vita Voyage */
:root {
  /* Cores de Marca */
  --vv-color-navy: #002855;
  --vv-color-champagne: #F3E9DC;
  --vv-color-gold: #C89B3C;
  --vv-color-white: #FFFFFF;
  --vv-color-gray-light: #E8E8E8;
  --vv-color-text: #002855;
  --vv-overlay-dark: #000000AD;
  --vv-overlay-navy: #0028558A;

  /* Fontes */
  --vv-font-heading: "Libre Baskerville", Georgia, serif;
  --vv-font-body: "Helvetica", Arial, sans-serif;

  /* Efeitos */
  --vv-transition-smooth: all 0.3s ease;
  --vv-transition-zoom: transform 0.4s ease;

  /* Layout */
  --vv-radius: 4px;
}

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

body {
  font-family: var(--vv-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--vv-color-text);
  background-color: var(--vv-color-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vv-color-gold); text-decoration: none; transition: var(--vv-transition-smooth); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vv-font-heading);
  color: var(--vv-color-navy);
  font-weight: 700;
  line-height: 1.3;
}

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ HEADER â€” navy, sticky, hover dourado */
.site-header {
  background: var(--vv-color-navy);
  position: sticky;
  top: 0;
  z-index: 10;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(0, 40, 85, 0.96);
  box-shadow: 0 4px 18px rgba(0, 40, 85, 0.25);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 20px; }
.site-logo { display: flex; align-items: center; gap: 14px; }
.site-logo img,
.site-logo .custom-logo-link img,
.site-header .custom-logo {
  max-height: 68px;
  width: auto;
  border-radius: var(--vv-radius);
}
.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-logo .logo-text {
  font-family: var(--vv-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--vv-color-white);
  letter-spacing: 0.02em;
}
.site-logo .logo-text em { color: var(--vv-color-gold); font-style: normal; }

.site-nav ul { display: flex; gap: 6px; list-style: none; }
.site-nav a {
  display: block;
  position: relative;
  padding: 26px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--vv-color-white);
}
/* borda animada overline dourada (comportamento do site oficial) */
.site-nav a::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--vv-color-gold);
  transition: width 0.3s ease, left 0.3s ease;
}
.site-nav a:hover { color: var(--vv-color-gold); }
.site-nav a:hover::before { width: 100%; left: 0; }

/* menu hambÃºrguer (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--vv-radius);
  color: var(--vv-color-white);
  font-size: 22px;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ HERO (com vÃ­deo de fundo) */
.hero {
  background: var(--vv-color-navy);
  padding: 88px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* pelÃ­cula navy sobre o vÃ­deo â€” legibilidade fiel Ã  identidade */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 40, 85, 0.78) 0%,
    rgba(0, 40, 85, 0.55) 55%,
    rgba(0, 40, 85, 0.82) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vv-color-gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--vv-color-white);
  max-width: 760px;
  margin: 0 auto 18px;
}
.hero h1 em { color: var(--vv-color-gold); font-style: italic; }
.hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ FILTER BAR */
.filter-bar {
  background: var(--vv-color-white);
  border: 1px solid var(--vv-color-gray-light);
  border-radius: var(--vv-radius);
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -30px auto 0;
  max-width: 980px;
  position: relative;
  z-index: 5;
  box-shadow: 0 10px 32px rgba(0, 40, 85, 0.12);
}
.filter-bar select {
  flex: 1;
  min-width: 150px;
  padding: 11px 12px;
  border: 1px solid var(--vv-color-gray-light);
  border-radius: var(--vv-radius);
  font-family: var(--vv-font-body);
  font-size: 16px;
  color: var(--vv-color-text);
  background: var(--vv-color-white);
}
.filter-bar select:focus { outline: none; border-color: var(--vv-color-gold); }
.filter-bar button {
  padding: 11px 28px;
  background: var(--vv-color-navy);
  color: var(--vv-color-white);
  border: none;
  border-radius: var(--vv-radius);
  font-family: var(--vv-font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--vv-transition-smooth);
}
.filter-bar button:hover { background: var(--vv-color-gold); color: var(--vv-color-navy); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ SECTIONS */
.section { padding: 64px 0; }
.section-alternate, .vv-section-alternate { background-color: var(--vv-color-champagne); }
.section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vv-color-gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title { font-size: 32px; font-weight: 500; margin-bottom: 12px; }
.section-desc { color: var(--vv-color-navy); opacity: 0.75; max-width: 640px; margin-bottom: 32px; font-size: 18px; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ CARDS (zoom 0.4s + overlay navy + borda gold) */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exp-card {
  background: var(--vv-color-white);
  border: 1px solid var(--vv-color-gray-light);
  border-radius: var(--vv-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--vv-transition-smooth);
}
.exp-card:hover {
  border-color: var(--vv-color-gold);
  box-shadow: 0 14px 36px rgba(0, 40, 85, 0.14);
}
.exp-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--vv-color-champagne);
}
.exp-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--vv-transition-zoom);
}
.exp-card:hover .exp-card-img { transform: scale(1.07); }
/* pelÃ­cula: escura â†’ azul marinho institucional no hover */
.exp-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--vv-overlay-dark);
  opacity: 0;
  transition: var(--vv-transition-smooth);
  pointer-events: none;
}
.exp-card:hover .exp-card-media::after { opacity: 1; background: var(--vv-overlay-navy); }

.exp-card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.exp-card-meta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vv-color-gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.exp-card-title { font-size: 20px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.exp-card-title a { color: var(--vv-color-navy); }
.exp-card-title a:hover { color: var(--vv-color-gold); }
.exp-card-sub { font-size: 15px; color: var(--vv-color-navy); opacity: 0.7; margin-bottom: 16px; flex: 1; }
.exp-card-foot {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid var(--vv-color-gray-light);
  padding-top: 14px;
}
.exp-card-price { font-size: 19px; font-weight: 700; color: var(--vv-color-gold); font-family: var(--vv-font-heading); }
.exp-card-price small { font-size: 11px; color: var(--vv-color-navy); opacity: 0.55; font-weight: 400; display: block; font-family: var(--vv-font-body); }
.exp-card-days { font-size: 13px; color: var(--vv-color-navy); opacity: 0.65; }

/* tilt 3D sutil (parallax de cursor â€” comportamento do site oficial) */
.vv-tilt { transform-style: preserve-3d; will-change: transform; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ TAGS */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid var(--vv-color-gray-light);
  border-radius: var(--vv-radius);
  color: var(--vv-color-navy);
  background: var(--vv-color-white);
  transition: var(--vv-transition-smooth);
}
.tag:hover, .tag.active {
  border-color: var(--vv-color-gold);
  color: var(--vv-color-navy);
  background: var(--vv-color-champagne);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ SINGLE EXPERIÃŠNCIA */
/* Altura responsiva (não usar aspect-ratio + max-height juntos: encolhe a largura
   em telas largas e o banner aparece "pela metade"). Altura fixa reserva o espaço (CLS). */
.exp-hero { position: relative; overflow: hidden; width: 100%; height: clamp( 240px, 40vw, 460px ); background: var(--vv-color-champagne); }
.exp-hero-img { width: 100%; height: 100%; object-fit: cover; }

/* hero com vÃ­deo do YouTube em loop (cover, sem controles) */
.exp-hero-video { height: 460px; background: var(--vv-color-navy); }
.exp-hero-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;        /* hero decorativo: sem interaÃ§Ã£o/controles */
  /* cobre o container 16:9: nunca menor que a largura nem que a altura */
  width: 100vw;
  height: 56.25vw;             /* largura Ã— 9/16 */
  min-height: 460px;
  min-width: 818px;            /* 460 Ã— 16/9 */
}
.exp-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,40,85,0.15) 0%, rgba(0,40,85,0.45) 100%);
  pointer-events: none;
}
.exp-header { background: var(--vv-color-navy); padding: 38px 0; }
.exp-header h1 { font-size: clamp(28px, 4vw, 40px); color: var(--vv-color-white); }
.exp-header .exp-subtitle { font-size: 18px; color: rgba(255,255,255,0.82); margin-top: 10px; font-family: var(--vv-font-body); }
.exp-facts { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 22px; }
.exp-fact { font-size: 13px; color: rgba(255,255,255,0.65); }
.exp-fact strong { display: block; color: var(--vv-color-gold); font-size: 16px; font-family: var(--vv-font-heading); }
.exp-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; padding: 48px 0; }

/* roteiro */
.itinerary { display: flex; flex-direction: column; gap: 14px; }
.it-day {
  background: var(--vv-color-white);
  border: 1px solid var(--vv-color-gray-light);
  border-left: 3px solid var(--vv-color-gold);
  border-radius: var(--vv-radius);
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  transition: var(--vv-transition-smooth);
}
.it-day:hover { border-color: var(--vv-color-gold); }
.it-day-num { font-size: 13px; font-weight: 700; color: var(--vv-color-gold); min-width: 54px; font-family: var(--vv-font-heading); }
.it-day-title { font-weight: 700; font-size: 17px; color: var(--vv-color-navy); font-family: var(--vv-font-heading); }
.it-day-city { font-size: 13px; color: var(--vv-color-gold); margin: 3px 0 7px; }
.it-day-desc { font-size: 15px; color: var(--vv-color-navy); opacity: 0.75; }

/* inclusÃµes */
.inclusion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inc-col { border-radius: var(--vv-radius); padding: 20px 22px; }
.inc-col.inc { background: var(--vv-color-champagne); }
.inc-col.exc { background: var(--vv-color-white); border: 1px solid var(--vv-color-gray-light); }
.inc-col h3 { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; font-family: var(--vv-font-body); }
.inc-col.inc h3 { color: var(--vv-color-navy); }
.inc-col.exc h3 { color: var(--vv-color-navy); opacity: 0.6; }
.inc-col li { font-size: 15px; list-style: none; padding: 5px 0; color: var(--vv-color-navy); }
.inc-col.exc li { opacity: 0.65; }

/* pacotes */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pkg-card {
  background: var(--vv-color-white);
  border: 1px solid var(--vv-color-gray-light);
  border-radius: var(--vv-radius);
  padding: 26px 18px;
  text-align: center;
  position: relative;
  transition: var(--vv-transition-smooth);
}
.pkg-card:hover { border-color: var(--vv-color-gold); }
.pkg-card.featured { border: 2px solid var(--vv-color-gold); background: var(--vv-color-champagne); }
.pkg-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--vv-color-gold);
  color: var(--vv-color-navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--vv-radius);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pkg-tier { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vv-color-navy); opacity: 0.7; margin-bottom: 10px; }
.pkg-hotel { font-size: 15px; margin-bottom: 16px; line-height: 1.4; color: var(--vv-color-navy); }
.pkg-price { font-size: 26px; font-weight: 700; color: var(--vv-color-gold); font-family: var(--vv-font-heading); }
.pkg-price-note { font-size: 12px; color: var(--vv-color-navy); opacity: 0.55; margin-top: 4px; }

/* sidebar CTA */
.exp-sidebar {
  position: sticky;
  top: 96px;
  background: var(--vv-color-white);
  border: 1px solid var(--vv-color-gray-light);
  border-top: 3px solid var(--vv-color-gold);
  border-radius: var(--vv-radius);
  padding: 26px;
}
.exp-sidebar .from { font-size: 13px; color: var(--vv-color-navy); opacity: 0.6; }
.exp-sidebar .price { font-size: 32px; font-weight: 700; color: var(--vv-color-gold); font-family: var(--vv-font-heading); }
.exp-sidebar .per { font-size: 13px; color: var(--vv-color-navy); opacity: 0.6; margin-bottom: 20px; }
.btn-cta, .vv-btn-primary {
  display: block;
  text-align: center;
  background: var(--vv-color-navy);
  color: var(--vv-color-white);
  padding: 14px;
  border-radius: var(--vv-radius);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--vv-font-body);
  transition: var(--vv-transition-smooth);
}
.btn-cta:hover, .vv-btn-primary:hover { background: var(--vv-color-gold); color: var(--vv-color-navy); }
.btn-whats {
  display: block;
  text-align: center;
  border: 1px solid var(--vv-color-gray-light);
  color: var(--vv-color-navy);
  padding: 13px;
  border-radius: var(--vv-radius);
  font-weight: 600;
  font-size: 15px;
  margin-top: 10px;
  transition: var(--vv-transition-smooth);
}
.btn-whats:hover { border-color: var(--vv-color-gold); color: var(--vv-color-gold); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ ARCHIVE / LANDING */
.archive-header { background: var(--vv-color-navy); padding: 48px 0 36px; }
.archive-header h1 { font-size: 34px; color: var(--vv-color-white); }
.archive-header p { color: rgba(255,255,255,0.8); margin-top: 10px; max-width: 640px; }
.archive-layout { padding: 44px 0; }
.no-results { text-align: center; padding: 64px 0; color: var(--vv-color-navy); opacity: 0.7; }

/* paginaÃ§Ã£o */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; }
.pagination .page-numbers {
  padding: 9px 15px;
  border: 1px solid var(--vv-color-gray-light);
  border-radius: var(--vv-radius);
  font-size: 15px;
  color: var(--vv-color-navy);
  transition: var(--vv-transition-smooth);
}
.pagination .page-numbers:hover { border-color: var(--vv-color-gold); color: var(--vv-color-gold); }
.pagination .page-numbers.current { background: var(--vv-color-navy); color: var(--vv-color-white); border-color: var(--vv-color-navy); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ CONTENT (posts/pÃ¡ginas) */
.entry-content {
  background: var(--vv-color-white);
  border: 1px solid var(--vv-color-gray-light);
  border-radius: var(--vv-radius);
  padding: 40px;
  max-width: 820px;
  margin: 44px auto;
}
.entry-content h1, .entry-content h2 { margin: 0.8em 0 0.4em; }
.entry-content p { margin-bottom: 1em; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ DEPOIMENTOS (faixa navy) */
.testimonials {
  background: var(--vv-color-navy);
  padding: 64px 0;
  text-align: center;
  position: relative;
}
.quote-mark {
  font-family: var(--vv-font-heading);
  font-size: 64px;
  color: var(--vv-color-gold);
  line-height: 0.5;
  margin-bottom: 18px;
}
.quotes { position: relative; min-height: 130px; }
.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.quote.active { opacity: 1; pointer-events: auto; }
.quote p {
  font-family: var(--vv-font-heading);
  font-style: italic;
  font-size: 20px;
  line-height: 1.7;
  color: var(--vv-color-white);
  max-width: 720px;
  margin: 0 auto 16px;
}
.quote cite { font-style: normal; font-size: 14px; font-weight: 600; color: var(--vv-color-gold); letter-spacing: 0.1em; text-transform: uppercase; }
.quote-nav { margin-top: 20px; display: flex; gap: 12px; justify-content: center; }
.quote-nav button {
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--vv-color-white);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: var(--vv-transition-smooth);
}
.quote-nav button:hover { border-color: var(--vv-color-gold); color: var(--vv-color-gold); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ PILARES ("Tudo que vocÃª precisa") */
.needs-title { max-width: 680px; margin: 0 auto 14px; }
.needs-title::after {
  content: '';
  display: block;
  width: 64px; height: 2px;
  background: var(--vv-color-gold);
  margin: 16px auto 0;
}
.needs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; text-align: left; }
.need-card {
  background: var(--vv-color-white);
  border: 1px solid var(--vv-color-gray-light);
  border-top: 3px solid var(--vv-color-gold);
  border-radius: var(--vv-radius);
  padding: 30px 28px;
  transition: var(--vv-transition-smooth);
}
.need-card:hover { border-color: var(--vv-color-gold); box-shadow: 0 14px 36px rgba(0, 40, 85, 0.12); transform: translateY(-4px); }
.need-card .need-icon { color: var(--vv-color-gold); font-size: 22px; margin-bottom: 14px; }
.need-card h3 { font-size: 21px; margin-bottom: 10px; }
.need-card p { font-size: 15.5px; color: var(--vv-color-navy); opacity: 0.75; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ A JORNADA (timeline navy) */
.journey { background: var(--vv-color-navy); padding: 72px 0; }
.journey-title { color: var(--vv-color-white); text-align: center; font-size: 30px; margin-bottom: 12px; }
.journey-title::after {
  content: '';
  display: block;
  width: 64px; height: 2px;
  background: var(--vv-color-gold);
  margin: 16px auto 0;
}
.timeline { position: relative; max-width: 860px; margin: 44px auto 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.18);
  transform: translateX(-50%);
}
.tl-step { position: relative; width: 50%; padding: 0 36px 38px; }
.tl-step.left  { left: 0; text-align: right; }
.tl-step.right { left: 50%; text-align: left; }
.tl-step::before {
  content: '';
  position: absolute;
  top: 6px;
  width: 14px; height: 14px;
  background: var(--vv-color-gold);
  border: 3px solid var(--vv-color-navy);
  box-shadow: 0 0 0 2px var(--vv-color-gold);
  transform: rotate(45deg);
}
.tl-step.left::before  { right: -7px; }
.tl-step.right::before { left: -7px; }
.tl-card h3 { color: var(--vv-color-gold); font-size: 19px; margin-bottom: 6px; }
.tl-card p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.6; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ CONTATO / LEAD */
.lead-section {
  background: linear-gradient(135deg, var(--vv-color-navy) 0%, #001a3a 100%);
  padding: 72px 0;
}
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lead-form {
  background: var(--vv-color-white);
  border-radius: var(--vv-radius);
  border-top: 3px solid var(--vv-color-gold);
  padding: 34px;
}
.lead-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--vv-color-navy);
  margin-bottom: 14px;
}
.lead-form input, .lead-form select, .lead-form textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 11px 12px;
  border: 1px solid var(--vv-color-gray-light);
  border-radius: var(--vv-radius);
  font-family: var(--vv-font-body);
  font-size: 15px;
  color: var(--vv-color-navy);
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--vv-color-gold); }
.lead-form button { width: 100%; border: none; cursor: pointer; font-size: 16px; padding: 14px; }
.lead-ok {
  background: var(--vv-color-champagne);
  border-left: 3px solid var(--vv-color-gold);
  padding: 12px 14px;
  font-size: 14px;
  margin-bottom: 16px;
  border-radius: var(--vv-radius);
}
.lead-copy h2 { color: var(--vv-color-white); font-size: 32px; margin-bottom: 16px; }
.lead-copy p { color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.7; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ FOOTER â€” navy + dourado */
.site-footer {
  background: var(--vv-color-navy);
  color: rgba(255,255,255,0.75);
  padding: 48px 0;
  margin-top: 64px;
  font-size: 15px;
}
.site-footer strong { color: var(--vv-color-white); font-family: var(--vv-font-heading); }
.site-footer a { color: var(--vv-color-gold); }
.site-footer a:hover { color: var(--vv-color-white); }
.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
/* Losango decorativo só no menu do rodapé (escape CSS = à prova de encoding).
   O contato usa ícones SVG, então não recebe o marcador. */
.footer-menu-list li::before { content: '\25C6'; color: var(--vv-color-gold); font-size: 10px; margin-right: 8px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  opacity: 0.7;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; }
  .needs-grid { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 8px; }
  .tl-step, .tl-step.right { width: 100%; left: 0; text-align: left; padding: 0 0 32px 36px; }
  .tl-step.left { text-align: left; }
  .tl-step.left::before, .tl-step.right::before { left: 1px; right: auto; }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ RESPONSIVE */
@media (max-width: 900px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-layout { grid-template-columns: 1fr; }
  .exp-sidebar { position: static; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .exp-grid, .pkg-grid, .inclusion-grid { grid-template-columns: 1fr; }
  .filter-bar { margin-top: 16px; }

  /* menu hambÃºrguer centralizado (comportamento do site oficial) */
  .nav-toggle { display: block; }
  .site-header .wrap { justify-content: center; position: relative; }
  .nav-toggle { position: absolute; right: 24px; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--vv-color-navy);
    border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 30px rgba(0, 40, 85, 0.35);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; text-align: center; }
  .site-nav a { padding: 15px; }
  .site-nav a::before { display: none; }
}

/* Dropdown menu styles */
.site-nav li {
  position: relative;
}
.site-nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--vv-color-navy);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  border-top: 2px solid var(--vv-color-gold);
  min-width: 200px;
  padding: 8px 0;
  z-index: 9999;
  flex-direction: column;
  text-align: left;
}
.site-nav ul ul li {
  width: 100%;
}
.site-nav ul ul li a {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  white-space: nowrap;
}
.site-nav ul ul li a::before {
  display: none;
}
.site-nav li:hover > ul {
  display: flex;
}

/* Mobile dropdown responsiveness */
@media (max-width: 640px) {
  .site-nav ul ul {
    position: static;
    display: none;
    box-shadow: none;
    border-top: none;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .site-nav li:hover > ul {
    display: block;
  }
  .site-nav ul ul li a {
    padding: 10px;
    font-size: 15px;
  }
}




/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SOCIAL ICONS (header)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s ease, transform 0.25s ease;
  padding: 4px;
}
.social-icon:hover {
  color: var(--vv-color-gold, #C89B3C);
  transform: scale(1.15);
}
.social-icon svg {
  display: block;
}

/* Header layout: logo - nav - social */
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav {
  margin-left: auto;
  margin-right: 0;
}
.site-social {
  flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FILTER TABS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.filter-tabs-wrap {
  margin: -30px auto 0;
  max-width: 980px;
  position: relative;
  z-index: 5;
}
.filter-tabs {
  display: flex;
  gap: 0;
  margin-bottom: -1px;
}
.filter-tab {
  padding: 10px 24px;
  background: rgba(255,255,255,0.15);
  border: 1px solid #E8E8E8;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
.filter-tab:hover {
  background: rgba(255,255,255,0.85);
  color: var(--vv-color-navy, #002855);
}
.filter-tab.active {
  background: white;
  color: var(--vv-color-navy, #002855);
  border-color: #E8E8E8;
}

/* Filter panels */
.filter-panel {
  display: none;
}
.filter-panel.active {
  display: flex;
}
.filter-bar {
  border-radius: 0 4px 4px 4px;
}

/* External tab content (Voos/Pacotes) */
.filter-external {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 6px 0;
}
.filter-external p {
  margin: 0;
  font-size: 14px;
  color: #555;
  flex: 1;
}
.filter-external .vv-btn-primary {
  white-space: nowrap;
  padding: 11px 28px;
  background: var(--vv-color-navy, #002855);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.filter-external .vv-btn-primary:hover {
  background: var(--vv-color-gold, #C89B3C);
  color: var(--vv-color-navy, #002855);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DATE PICKER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.filter-date {
  flex: 1;
  min-width: 150px;
  padding: 11px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: white;
  cursor: pointer;
  font-family: inherit;
}
.filter-date:focus {
  border-color: var(--vv-color-gold, #C89B3C);
  outline: none;
  box-shadow: 0 0 0 2px rgba(200,155,60,0.15);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 640px) {
  .site-social {
    gap: 12px;
    margin-left: 0;
  }
  .site-header .wrap {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .filter-tabs-wrap {
    margin-top: 16px;
  }
  .filter-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .filter-tab {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
  .filter-external {
    flex-direction: column;
    text-align: center;
  }
}

