/* ============================================================
   VOE RJ — Design System v3.0
   Luxo Cinematográfico · Experiência Única · 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Inter:wght@300;400;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── CSS Custom Properties ──────────────────────────────── */
:root {
  --primary:       #FFD700;
  --primary-dark:  #E6C200;
  --primary-light: #FFE866;
  --dark:          #070709;
  --dark-surface:  #0D0D14;
  --dark-elevated: #131320;
  --dark-card:     #10101A;
  --white:         #FFFFFF;
  --cream:         #F5F5F7;
  --text-muted:    rgba(255,255,255,0.52);
  --text-muted-dark: rgba(0,0,0,0.52);

  --gold-glow:    rgba(255,215,0,0.12);
  --gold-glow-md: rgba(255,215,0,0.22);
  --gold-glow-lg: rgba(255,215,0,0.42);
  --glass-bg:     rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.10);
  --glass-bg-dark:rgba(7,7,9,0.75);

  --radius-sm:   1rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl:   3rem;
  --radius-pill: 9999px;

  --shadow-gold:    0 0 40px rgba(255,215,0,0.18), 0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold-lg: 0 0 80px rgba(255,215,0,0.25), 0 20px 60px rgba(0,0,0,0.65);
  --shadow-dark:    0 8px 32px rgba(0,0,0,0.55);
  --shadow-card:    0 4px 24px rgba(0,0,0,0.38);

  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-mono: 'Montserrat', monospace;

  --transition-fast:   150ms cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-base:   300ms cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-slow:   600ms cubic-bezier(0.22,1,0.36,1);
  --transition-bounce: 500ms cubic-bezier(0.34,1.56,0.64,1);

  --z-base:    1;
  --z-sticky:  100;
  --z-nav:     200;
  --z-overlay: 300;
  --z-modal:   400;
  --z-cursor:  9999;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
p { max-width: 600px; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ─── Film Grain Texture ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.038'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.45;
}

/* ─── Custom Scrollbar ───────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-surface); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  border-radius: var(--radius-pill);
}

/* ─── Scroll Progress Bar ────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, #B8860B, var(--primary), var(--primary-light), var(--primary));
  background-size: 300% 100%;
  animation: progressShimmer 2.5s linear infinite;
  z-index: calc(var(--z-cursor) + 1);
  box-shadow: 0 0 16px rgba(255,215,0,0.7), 0 0 4px rgba(255,215,0,0.4);
  transition: width 80ms linear;
}
@keyframes progressShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ─── Custom Cursor ──────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%,-50%);
  transition: transform 60ms linear, opacity 200ms ease;
  box-shadow: 0 0 10px rgba(255,215,0,0.9), 0 0 20px rgba(255,215,0,0.4);
  will-change: transform;
}
#cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255,215,0,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: calc(var(--z-cursor) - 1);
  transform: translate(-50%,-50%);
  transition: transform 180ms cubic-bezier(0.22,1,0.36,1),
              width 300ms cubic-bezier(0.22,1,0.36,1),
              height 300ms cubic-bezier(0.22,1,0.36,1),
              border-color 200ms ease,
              background-color 200ms ease;
  will-change: transform;
}
#cursor-ring.hovering {
  width: 60px;
  height: 60px;
  border-color: rgba(255,215,0,0.7);
  background: rgba(255,215,0,0.05);
}
/* Hide on touch devices */
@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none !important; }
}

/* ─── Typography ─────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }
.font-heading  { font-family: var(--font-heading); }
.font-mono     { font-family: var(--font-mono); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; }
.text-gold  { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-dark  { color: var(--dark); }
.italic     { font-style: normal; }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px)  { .container { padding-inline: 2.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 4rem; } }

.section    { padding-block: 6rem; }
.section-sm { padding-block: 6rem; }
.section-lg { padding-block: 6rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px)  { .grid-2 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.25rem; }
.gap-4 { gap: 2rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }  .mt-2 { margin-top: 1rem; }   .mt-3 { margin-top: 1.5rem; }  .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }.mb-2 { margin-bottom: 1rem; }.mb-3 { margin-bottom: 1.5rem; }.mb-4 { margin-bottom: 2rem; }
.w-full { width: 100%; }

/* ─── Section Headers ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--gold-glow);
  border: 1px solid rgba(255,215,0,0.22);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.section-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.section-header.dark h2 { color: var(--dark); }
.section-header h2 em {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--primary);
}
.section-header.dark h2 em { color: var(--primary-dark); }
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  font-weight: 300;
  line-height: 1.8;
}
.section-header.dark p  { color: var(--text-muted-dark); }
.section-header.dark .eyebrow {
  color: rgba(0,0,0,0.65);
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.14);
}

/* Gold animated underline on h2 */
.section-header h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ─── Keyframe Library ───────────────────────────────────── */
@keyframes glow-pulse    { 0%,100%{box-shadow:0 0 20px var(--gold-glow-md)} 50%{box-shadow:0 0 50px var(--gold-glow-lg),0 0 80px var(--gold-glow-md)}}
@keyframes float         { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes pulse-ring    { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.65);opacity:0} }
@keyframes spin          { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes spin-reverse  { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }
@keyframes sparkle       { 0%,100%{opacity:0;transform:scale(0) rotate(0deg)} 50%{opacity:1;transform:scale(1) rotate(180deg)} }
@keyframes heli-float    { 0%,100%{transform:translateY(0px) translateX(0px) rotate(0deg)} 25%{transform:translateY(-10px) translateX(8px) rotate(0.5deg)} 75%{transform:translateY(6px) translateX(-5px) rotate(-0.5deg)} }
@keyframes count-up      { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes reveal-up     { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
@keyframes reveal-left   { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes marquee-left  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes marquee-right { from{transform:translateX(-50%)} to{transform:translateX(0)} }
@keyframes dash-draw     { from{stroke-dashoffset:1000} to{stroke-dashoffset:0} }
@keyframes gradientShift { 0%,100%{background-position:0% center} 50%{background-position:100% center} }
@keyframes fadeIn        { from{opacity:0} to{opacity:1} }
@keyframes dotProgress   { from{width:0} to{width:100%} }
@keyframes statusPulse   { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,0.6)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,0)} }
@keyframes borderRotate  { from{--angle:0deg} to{--angle:360deg} }
@keyframes shimmerCard   { 0%{transform:translateX(-100%) skewX(-12deg)} 100%{transform:translateX(200%) skewX(-12deg)} }

/* ─── Scroll Reveal — progressive enhancement ───────────── */
/*
  REGRA DE OURO: conteúdo sempre visível por padrão.
  O JS adiciona body.js-reveal para habilitar a animação.
  Se JS não rodar, todo conteúdo fica visível.
*/
.reveal {
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
              transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
body.js-reveal .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(18px);
}
.reveal.visible,
body:not(.js-reveal) .reveal {   /* fallback: sem JS = tudo visível */
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.reveal-delay-1.visible { transition-delay: 0.07s; }
.reveal-delay-2.visible { transition-delay: 0.14s; }
.reveal-delay-3.visible { transition-delay: 0.21s; }
.reveal-delay-4.visible { transition-delay: 0.28s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 2.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform var(--transition-bounce), box-shadow var(--transition-base);
}

/* Button Micro-interactions */
.btn {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn:hover {
  transform: translateY(-2px);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.10);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn:hover::after { opacity: 1; }
.btn:hover        { transform: translateY(-3px); }
.btn:active       { transform: translateY(0) scale(0.98); }

/* Shimmer sweep on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: none;
  pointer-events: none;
}
.btn:hover::before { animation: shimmerCard 0.55s ease forwards; }

.btn-primary {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  background: linear-gradient(135deg, var(--primary) 0%, #FFC400 50%, var(--primary-dark) 100%);
  background-size: 200% 100%;
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(255,215,0,0.32), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn-primary:hover { box-shadow: 0 8px 40px rgba(255,215,0,0.55), 0 1px 0 rgba(255,255,255,0.15) inset; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 24px var(--gold-glow), inset 0 0 20px var(--gold-glow);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { box-shadow: 0 0 40px rgba(37,211,102,0.55); }

.btn-lg { padding: 0.85rem 3rem; font-size: 1.125rem; letter-spacing: 0.03em; }
.btn-sm { padding: 0.625rem 1.375rem; font-size: 0.875rem; }

/* ─── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.3rem 0.875rem; border-radius: var(--radius-pill);
  font-size: 0.7rem; font-weight: 500; font-family: var(--font-heading);
  letter-spacing: 0.04em; white-space: nowrap;
}
.badge-gold  { background: var(--primary); color: var(--dark); }
.badge-glass { background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--white); backdrop-filter: blur(12px); }
.badge-glow  { background: var(--gold-glow); border: 1px solid rgba(255,215,0,0.3); color: var(--primary); }

/* ─── Glass Panel ────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid var(--glass-border);
}
.glass-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ─── Wave Divider ───────────────────────────────────────── */
.wave-divider { display: block; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-nav);
  width: calc(100% - 3rem);
  max-width: 1140px;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all var(--transition-slow);
}
.navbar.hidden   { transform: translateX(-50%) translateY(-140%); }
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.navbar.scrolled .nav-link {
  color: rgba(0, 0, 0, 0.7) !important;
}
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: #000 !important;
  background: rgba(0,0,0,0.04) !important;
}
.navbar.scrolled .hamburger span {
  background: #000 !important;
}
.navbar.scrolled .navbar-logo img {
  filter: brightness(0); /* Adapts white logo to black text */
}

.navbar-logo { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
.navbar-logo img { height: 24px; width: auto; object-fit: contain; }

.navbar-nav { display: none; align-items: center; gap: 1.8rem; }
@media (min-width: 1024px) { .navbar-nav { display: flex; } }

.nav-link {
  position: relative;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-radius: var(--radius-pill);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: calc(100% - 1.75rem);
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}
.nav-link:hover       { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-link:hover::after{ transform: translateX(-50%) scaleX(1); }
.nav-link.active      { color: var(--primary); }
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.875rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 244px;
  background: rgba(10,10,16,0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 30px rgba(255,215,0,0.04);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-size: 0.8125rem; font-weight: 600;
  color: rgba(255,255,255,0.72);
  transition: all var(--transition-fast);
}
.nav-dropdown-item::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,215,0,0.3);
  transition: all var(--transition-fast);
}
.nav-dropdown-item:hover { background: var(--gold-glow); color: var(--primary); }
.nav-dropdown-item:hover::before {
  background: var(--primary);
  transform: scale(1.5);
}
.nav-dropdown-item .duration {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
}

/* Navbar actions */
.navbar-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

/* Lang Switcher */
.lang-switcher { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .lang-switcher { display: flex; } }

.lang-btn {
  position: relative;
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--gold-glow);
  border-color: rgba(255,215,0,0.3);
  color: var(--primary);
}
.lang-btn .flag { font-size: 0.9rem; }
.lang-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.92);
  color: #fff;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  font-size: 0.6875rem;
  font-family: var(--font-body);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 200;
  border: 1px solid rgba(255,255,255,0.08);
}
.lang-btn:hover::after { opacity: 1; }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.hamburger:hover { background: var(--gold-glow); border-color: rgba(255,215,0,0.3); }
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition-base); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: rgba(7,7,9,0.98);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu .mobile-nav-link {
  font-family: var(--font-heading); font-size: 1.75rem; font-weight: 600;
  color: rgba(255,255,255,0.65); padding: 0.5rem 2rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  transform: translateY(24px); opacity: 0;
}
.mobile-menu.open .mobile-nav-link { transform: translateY(0); opacity: 1; }
.mobile-menu .mobile-nav-link:hover { color: var(--primary); }
.mobile-menu .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu .mobile-nav-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu .mobile-nav-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu .mobile-nav-link:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu .mobile-cta {
  margin-top: 1.5rem;
  transition-delay: 0.35s !important;
  opacity: 0; transform: translateY(20px);
}
.mobile-menu.open .mobile-cta {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s 0.35s ease, transform 0.5s 0.35s ease;
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}

/* Slides */
.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.22,1,0.36,1);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.08);
  transition: transform 9s cubic-bezier(0.22,1,0.36,1);
}
.hero-slide.active img { transform: scale(1.01); }

/* Gradient overlays — more dramatic, asymmetric */
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    105deg,
    rgba(7,7,9,0.65) 0%,
    rgba(7,7,9,0.2) 30%,
    transparent 50%
  );
  z-index: 1;
}
.hero-overlay-side {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    to top,
    rgba(7,7,9,0.5) 0%,
    rgba(7,7,9,0.1) 12%,
    transparent 25%
  );
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 12vh;
}
.hero-slide-content { max-width: 900px; padding-left: 2vw; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-mono); font-size: 0.72rem;
  color: rgba(255,255,255,0.6); margin-bottom: 2rem;
  letter-spacing: 0.08em;
  animation: reveal-left 0.9s cubic-bezier(0.22,1,0.36,1) both;
  box-shadow: none;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.85rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  animation: premium-reveal-up 1.2s 0.1s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-title-sans {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.1;
}

.hero-title-serif {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  
  /* Golden/White gradient for extreme luxury */
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F7 35%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}


.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  animation: premium-reveal-up 1.2s 0.4s cubic-bezier(0.22,1,0.36,1) both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-mono); font-size: 0.5rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  animation: fadeIn 1s 1.8s both;
}
.hero-scroll-line {
  width: 1px; height: 30px;
  background: linear-gradient(to bottom, transparent, rgba(255,215,0,0.55));
  animation: float 2.5s ease-in-out infinite;
}

/* Dots */
.hero-dots {
  position: absolute; bottom: 2.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3; display: flex; gap: 0.5rem; align-items: center;
}
.hero-dot {
  position: relative; width: 8px; height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all var(--transition-base);
  overflow: hidden;
}
.hero-dot.active { width: 36px; background: rgba(255,255,255,0.2); }
.hero-dot.active::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--primary); border-radius: var(--radius-pill);
  animation: dotProgress 5s linear forwards;
  box-shadow: 0 0 8px rgba(255,215,0,0.6);
}

/* Sparkles */
.hero-sparkles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.sparkle {
  position: absolute; border-radius: 50%;
  background: var(--primary);
  animation: sparkle 3s infinite ease-in-out;
  box-shadow: 0 0 6px rgba(255,215,0,0.5);
}

/* Helicopter SVG */
.hero-helicopter {
  position: absolute; right: 6%; top: 32%;
  z-index: 3; opacity: 0.9;
  animation: heli-float 5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.3)) drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  display: none;
}
@media (min-width: 1024px) { .hero-helicopter { display: block; } }

/* Short viewport */
@media (max-height: 720px) {
  .hero-content { justify-content: center; }
  .hero-title { font-size: clamp(3rem, 7vw, 4.5rem); margin-bottom: 1rem; }
  .hero-badge { margin-bottom: 0.5rem; }
  .btn-lg { padding: 0.875rem 2rem; font-size: 0.9375rem; }
}
@media (max-height: 600px) {
  .hero-content { padding-top: 3.5rem; padding-bottom: 1rem; }
  .hero-title { font-size: clamp(2.5rem, 6vw, 3.5rem); margin-bottom: 1rem; }
  .hero-helicopter { display: none; }
}

/* Review Continuous Marquee transition override */
.reviews-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  position: relative;
  background: var(--dark-surface);
  padding-block: 0 0;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.25rem;
  padding: 4rem 0 1rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }

.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.stat-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.45), transparent);
}
.stat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255,215,0,0.18);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 24px rgba(255,215,0,0.07);
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.65rem;
  text-shadow: 0 0 48px rgba(255,215,0,0.35);
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-heading); font-size: 0.8125rem; font-weight: 600;
  color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============================================================
   FLIGHTS SECTION
   ============================================================ */
.flights-section {
  padding-block: 6rem;
  overflow: hidden;
  position: relative;
}
.flights-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,215,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Section header dark override */
.flights-section .section-header { text-align: center; }

/* Carousel Track */
.flights-carousel-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

/* Grid overridden to flex when in carousel */
.flights-section .flights-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  grid-template-columns: none !important;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  padding-block: 2rem;
}
.flights-section .flight-card {
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
}
@media (min-width: 1280px) {
  .flights-section .flight-card { min-width: 320px; max-width: 360px; }
}

/* Static grid (flights.html) */
.flights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 768px)  { .flights-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .flights-grid { grid-template-columns: repeat(3,1fr); } }

/* ─── Flight Card ─────────────────────────────────────────── */
.flight-card {
  background: rgba(14,14,18,0.85);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-base);
  display: flex; flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
.flight-card:hover {
  transform: translateY(-10px) scale(1.005);
  box-shadow: 0 24px 64px rgba(0,0,0,0.16), 0 0 40px rgba(255,215,0,0.1);
  border-color: rgba(255,215,0,0.38);
}
.flight-card.featured {
  border-color: rgba(255,215,0,0.5);
  box-shadow: 0 0 0 1px rgba(255,215,0,0.25), 0 8px 40px rgba(255,215,0,0.14);
}
.flight-card.featured::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,215,0,0.04), transparent 60%);
  pointer-events: none; z-index: 0;
}

.flight-card-img { position: relative; height: 210px; overflow: hidden; }
.flight-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.flight-card:hover .flight-card-img img { transform: scale(1.09); }
.flight-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
}
.flight-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.32rem 0.8rem; border-radius: var(--radius-pill);
  font-size: 0.7rem; font-weight: 500; font-family: var(--font-heading);
  letter-spacing: 0.06em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.flight-card-duration {
  position: absolute; bottom: 0.875rem; right: 0.875rem;
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem; border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.72); backdrop-filter: blur(10px);
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}

.flight-card-body {
  padding: 1.5rem; flex: 1;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; z-index: 1;
}
.flight-card-title {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600;
  color: var(--white); line-height: 1.2; letter-spacing: -0.02em;
}
.flight-card-subtitle {
  font-size: 0.8rem; color: var(--primary); font-weight: 500;
  margin-top: 0.15rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.flight-card-desc {
  font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65;
}
.flight-features { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.flight-feature-pill { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.25rem 0.5rem; border-radius: 6px; background: rgba(246,247,249,0.8); border: 1px solid rgba(23,23,23,0.05); font-size: 0.7rem; font-weight: 500; color: rgba(23,23,23,0.75); }
.flight-rating { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; }
.flight-stars  { color: var(--primary); letter-spacing: 1px; font-size: 0.875rem; }
.flight-reviews { color: rgba(255,255,255,0.45); }

.flight-pricing { display: flex; flex-direction: column; gap: 0.2rem; }
.flight-price-old {
  font-size: 0.875rem; color: rgba(255,255,255,0.38);
  text-decoration: line-through; font-family: var(--font-mono);
}
.flight-price-row { display: flex; align-items: baseline; gap: 0.375rem; }
.flight-price-new {
  font-family: var(--font-mono); font-size: 1.7rem; font-weight: 500;
  color: var(--white); letter-spacing: -0.03em;
}
.flight-price-note { font-size: 0.7rem; color: rgba(255,255,255,0.48); }
.flight-card-cta { margin-top: auto; }

.flights-cta-row { text-align: center; margin-top: 3rem; }

/* Badge type colors */
.badge-express   { background: rgba(255,100,40,0.88);  color: #fff; }
.badge-panoramic { background: rgba(0,180,200,0.88);   color: #fff; }
.badge-classic   { background: rgba(255,215,0,0.95);   color: var(--dark); }
.badge-doorsoff  { background: rgba(255,40,90,0.90);   color: #fff; }
.badge-vip       { background: rgba(120,40,220,0.88);  color: #fff; }
.badge-romantic  { background: rgba(230,20,130,0.88);  color: #fff; }

/* Featured CTA pulse */
.flight-card.featured .btn-primary { animation: glow-pulse 2.5s ease-in-out infinite; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  position: relative;
  padding-block: 6rem;
  overflow: hidden;
}
.video-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.28;
}
.blob-1 { width: 520px; height: 520px; background: rgba(255,215,0,0.16); top: -120px; left: -100px; animation: float 14s ease-in-out infinite; }
.blob-2 { width: 420px; height: 420px; background: rgba(100,40,220,0.14); bottom: -60px; right: -60px; animation: float 18s ease-in-out infinite reverse; }

.video-wrapper {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-gold-lg);
  border: 1px solid rgba(255,215,0,0.14);
  max-width: 920px; margin-inline: auto;
}
.video-wrapper video {
  width: 100%; display: block;
  aspect-ratio: 16/9; object-fit: cover;
}
.video-frame-decoration {
  position: absolute; inset: -2px; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,215,0,0.32), transparent 50%, rgba(255,215,0,0.18));
  pointer-events: none; z-index: 1;
}

/* ============================================================
   REVIEWS SWIPER
   ============================================================ */
.reviews-section {
  padding-block: 6rem;
  overflow: hidden;
  position: relative;
}
.reviews-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,215,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.reviews-swiper { overflow: hidden; padding-bottom: 3.5rem !important; }
.reviews-swiper .swiper-wrapper { transition-timing-function: linear !important; }
.reviews-swiper .swiper-slide { height: auto; width: 340px; max-width: 85vw; }

.review-card {
  height: 100%;
  background: var(--dark-elevated);
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  cursor: default;
  display: flex; flex-direction: column; gap: 0.875rem;
  position: relative; overflow: hidden;
}
/* Large quote mark */
.review-card::before {
  content: '"';
  position: absolute; top: -0.75rem; left: 1.5rem;
  font-family: var(--font-display); font-size: 7rem;
  color: rgba(255,215,0,0.055); line-height: 1;
  pointer-events: none; user-select: none;
}
/* Gold top line on hover */
.review-card::after {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0; transition: opacity var(--transition-base);
}
.review-card:hover {
  border-color: rgba(255,215,0,0.18);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 24px rgba(255,215,0,0.06);
  transform: translateY(-5px);
}
.review-card:hover::after { opacity: 1; }

.review-stars { font-size: 0.875rem; color: var(--primary); letter-spacing: 2px;   font-size: 0.8rem;
  opacity: 0.8;
}
.review-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.65); margin-top: auto;
}
.review-flag { width: 1.25em; height: 0.9375em; border-radius: 2px; }

.reviews-pagination { bottom: 0 !important; }
.reviews-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.28); opacity: 1; }
.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--primary); width: 22px; border-radius: var(--radius-pill);
  box-shadow: 0 0 8px rgba(255,215,0,0.5);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding-block: 6rem; }
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.875rem; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(0,0,0,0.065);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.faq-item:hover { border-color: rgba(255,165,0,0.2); box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.faq-item.open {
  border-color: rgba(255,165,0,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07), 0 0 24px rgba(255,215,0,0.06);
}

.faq-question {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.4rem 1.5rem;
  cursor: pointer; user-select: none;
  transition: background var(--transition-fast);
}
.faq-question:hover { background: rgba(0,0,0,0.018); }

.faq-icon-wrap {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,215,0,0.10); border: 1px solid rgba(255,215,0,0.20);
  display: flex; align-items: center; justify-content: center;
  color: #B8860B; font-size: 1.1rem;
  transition: background var(--transition-base), color var(--transition-base);
}
.faq-item.open .faq-icon-wrap { background: rgba(255,215,0,0.18); color: var(--primary-dark); }

.faq-question-text {
  flex: 1; font-family: var(--font-heading); font-weight: 500;
  font-size: 0.9375rem; color: var(--dark); line-height: 1.4;
}
.faq-toggle {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,0.055); display: flex; align-items: center;
  justify-content: center; color: rgba(0,0,0,0.5);
  transition: transform var(--transition-base), background var(--transition-base);
  font-size: 1rem;
}
.faq-item.open .faq-toggle {
  background: var(--primary); color: var(--dark);
  transform: rotate(45deg); box-shadow: 0 0 14px rgba(255,215,0,0.35);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.44s cubic-bezier(0.22,1,0.36,1); padding-inline: 1.5rem; }
.faq-answer-inner {
  padding-bottom: 1.5rem; padding-top: 1rem;
  font-size: 0.9375rem; color: rgba(0,0,0,0.62); line-height: 1.8;
  border-top: 1px solid rgba(0,0,0,0.055);
}
.faq-answer-inner strong { color: var(--dark); }
.faq-item.open .faq-answer { max-height: 500px; }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-layout { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .map-layout { grid-template-columns: 1fr 400px; } }

.map-wrapper { position: relative; height: 380px; overflow: hidden; }
@media (min-width: 768px) { .map-wrapper { height: 100%; min-height: 400px; } }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.65) contrast(1.08) brightness(0.92); }

.map-card {
  background: var(--dark-surface);
  border-left: 1px solid rgba(255,255,255,0.07);
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: 0;
  position: relative;
}
.map-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
@media (max-width: 767px) {
  .map-card { padding: 2rem 1.5rem; border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .map-card::before { display: none; }
}

.map-card-header {
  display: flex; align-items: center; gap: 0.875rem;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.map-card-icon {
  width: 52px; height: 52px;
  background: var(--gold-glow); border: 1px solid rgba(255,215,0,0.25);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: 1.4rem; flex-shrink: 0;
}
.map-card-title { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--white); line-height: 1.3; }
.map-card-subtitle { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.25rem; }

.map-info-row {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding-block: 0.75rem; font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.map-info-row:last-of-type { border-bottom: none; }
.map-info-row i { color: var(--primary); font-size: 0.9rem; margin-top: 0.15rem; flex-shrink: 0; width: 16px; }
.map-card .btn { width: 100%; margin-top: 1.5rem; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { padding-block: 6rem; }
.blog-header-row {
  display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; margin-bottom: 3rem;
}
.blog-nav { display: flex; gap: 0.5rem; }
.blog-nav-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 1rem;
  transition: all var(--transition-base); cursor: pointer;
}
.blog-nav-btn:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); transform: scale(1.06); }

.blog-swiper { overflow: hidden; }
.blog-card {
  background: var(--dark-elevated); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.055);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  height: 100%;
}
.blog-card:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 24px rgba(255,215,0,0.06); border-color: rgba(255,215,0,0.18); }
.blog-card-img { position: relative; height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 55%);
  opacity: 0; transition: opacity var(--transition-base);
}
.blog-card:hover .blog-card-img::after { opacity: 1; }

.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.875rem; }
.blog-card-category {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.6875rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.14);
  padding: 0.2rem 0.65rem; border-radius: var(--radius-pill);
}
.blog-card-title {
  font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 500;
  color: var(--white); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-family: var(--font-heading); font-size: 0.875rem; font-weight: 500;
  color: var(--primary); transition: gap var(--transition-fast);
}
.blog-card-link:hover { gap: 0.65rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding-top: 5rem; padding-bottom: 2rem;
  margin-top: -2rem;
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(255,215,0,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 100%, rgba(80,0,200,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.footer::after {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
}

.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.065);
  margin-bottom: 2rem; position: relative;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .footer-logo { height: 44px; margin-bottom: 1.25rem; }
.footer-tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.42); line-height: 1.75; max-width: 280px; margin-bottom: 1.75rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 1rem;
  transition: all var(--transition-base);
}
.social-btn:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(255,215,0,0.25); }

.footer-col-title {
  font-family: var(--font-heading); font-weight: 500; font-size: 0.8125rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary);
  margin-bottom: 1.25rem; opacity: 0.85;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  font-size: 0.9rem; color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-link:hover { color: var(--white); padding-left: 5px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.28); }
.footer-status { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.6875rem; color: rgba(255,255,255,0.32); }
.status-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: statusPulse 2s ease-in-out infinite; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 500;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.875rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.42), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform var(--transition-bounce), box-shadow var(--transition-base);
}
.whatsapp-float:hover { transform: scale(1.14) rotate(-6deg); box-shadow: 0 8px 40px rgba(37,211,102,0.6); }
.whatsapp-float::before {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: pulse-ring 2.2s ease-out infinite;
}

/* ============================================================
   FLIGHT DETAIL PAGES
   ============================================================ */
.page-hero {
  position: relative;
  height: 70vh; min-height: 480px;
  overflow: hidden; background: var(--dark);
}
.page-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,9,0.95) 0%, rgba(7,7,9,0.55) 50%, rgba(7,7,9,0.2) 100%);
}
.page-hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding-bottom: 4rem;
}
.page-hero-content .container { max-width: 900px; }
.page-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-family: var(--font-display); font-style: normal;
  color: var(--white); font-weight: 500; line-height: 1.1; margin-block: 1rem;
}
.page-title span { color: var(--primary); }

.flight-detail-layout { background: #FFFFFF; padding-block: 4.5rem 6.5rem; }
.flight-detail-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .flight-detail-grid { grid-template-columns: 1fr 380px; gap: 4rem; } }

/* Highlights */
.highlight-pills { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2rem; }
.highlight-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.125rem; border-radius: var(--radius-pill);
  font-size: 0.8125rem; font-weight: 500; font-family: var(--font-heading);
  background: var(--cream); border: 1px solid rgba(0,0,0,0.02); color: var(--dark);
}
.highlight-pill.gold { background: var(--primary); color: var(--dark); }

/* Prose section */
.prose-section { margin-bottom: 3rem; }
.prose-section h3 {
  font-family: var(--font-heading); font-size: 1.375rem; font-weight: 600;
  color: var(--dark); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.625rem;
}
.prose-section h3 i { color: var(--primary); font-size: 1.125rem; }
.prose-section p { font-size: 0.9375rem; color: rgba(0,0,0,0.68); line-height: 1.85; margin-bottom: 1rem; }

/* Route Timeline */
.route-timeline { position: relative; padding-left: 2rem; }
.route-timeline::before {
  content: ''; position: absolute; left: 9px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, var(--primary), rgba(255,215,0,0.2));
}
.route-stop { position: relative; padding: 0 0 1.75rem 1.75rem; }
.route-stop::before {
  content: ''; position: absolute; left: -0.5rem; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 12px rgba(255,215,0,0.55);
}
.route-stop:last-child { padding-bottom: 0; }
.route-stop-name  { font-family: var(--font-heading); font-weight: 500; font-size: 0.9375rem; color: var(--dark); margin-bottom: 0.25rem; }
.route-stop-desc  { font-size: 0.8125rem; color: rgba(0,0,0,0.55); line-height: 1.5; }

/* Animated Route SVG */
.route-svg-container { margin-block: 2rem; background: var(--dark-elevated); border-radius: var(--radius-md); padding: 1.5rem; }
.route-svg-container svg { width: 100%; height: auto; }
.route-path {
  fill: none; stroke: var(--primary); stroke-width: 2;
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  stroke-linecap: round; stroke-linejoin: round;
}
.route-path.animate { animation: dash-draw 3s ease forwards; }

/* Photo Gallery */
.photo-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; margin-bottom: 2rem; }
.photo-gallery img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; transition: all var(--transition-base); cursor: pointer; }
.photo-gallery img:hover { transform: scale(1.03); box-shadow: var(--shadow-gold); }
.photo-gallery img:first-child { grid-column: span 2; aspect-ratio: 16/7; }

/* Rules Box */
.rules-box { background: var(--dark); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 2rem; border: 1px solid rgba(255,255,255,0.08); }
.rules-box h4 { font-family: var(--font-heading); color: var(--white); font-weight: 500; margin-bottom: 1rem; }
.rule-item { display: flex; align-items: flex-start; gap: 0.75rem; padding-block: 0.45rem; padding-inline: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.72); border-bottom: 1px solid rgba(255,255,255,0.05); }
.rule-item:last-child { border-bottom: none; }
.rule-item i { color: var(--primary); margin-top: 0.1rem; flex-shrink: 0; }

/* Booking Card */
.booking-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.25rem; border: 1.5px solid rgba(0,0,0,0.04); box-shadow: 0 12px 48px rgba(0,0,0,0.03); position: sticky; top: 7rem; }
.booking-card.reveal { animation-name: floatUp; }
.booking-price-label { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(0,0,0,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.booking-price-amount { font-family: var(--font-mono); font-size: 2.5rem; font-weight: 600; color: var(--dark); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.25rem; }
.booking-price-note { font-size: 0.8125rem; color: rgba(0,0,0,0.4); margin-bottom: 1.5rem; }
.booking-divider { height: 1px; background: rgba(0,0,0,0.03); margin-block: 1.5rem; }
.booking-form-group { margin-bottom: 1.25rem; }
.booking-form-group label { display: block; font-family: var(--font-heading); font-size: 0.8125rem; font-weight: 500; color: var(--dark); margin-bottom: 0.5rem; }
.booking-input, .booking-select { width: 100%; padding: 0.875rem 1.125rem; border: 1.5px solid rgba(0,0,0,0.05); border-radius: var(--radius-md); font-size: 0.9375rem; color: var(--dark); background: var(--white); transition: all var(--transition-fast); appearance: none; -webkit-appearance: none; }
.booking-input option, .booking-select option { color: var(--dark); background: var(--white); }
.booking-input:focus, .booking-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,215,0,0.15); }
.booking-select-wrap { position: relative; }
.booking-select-wrap::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 1.125rem; top: 50%; transform: translateY(-50%); color: rgba(0,0,0,0.3); pointer-events: none; font-size: 0.7rem; }
.booking-summary { background: var(--cream); border-radius: var(--radius-md); padding: 1.25rem; margin-bottom: 1.75rem; border: 1px solid rgba(0,0,0,0.03); }
.booking-summary-row { display: flex; justify-content: space-between; font-size: 0.875rem; color: rgba(0,0,0,0.6); padding-block: 0.35rem; }
.booking-summary-row.total { border-top: 1px solid rgba(0,0,0,0.03); margin-top: 0.6rem; padding-top: 0.875rem; font-weight: 600; font-size: 1.0625rem; color: var(--dark); font-family: var(--font-heading); }
.booking-badge-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: rgba(0,0,0,0.6); margin-bottom: 1.125rem; font-weight: 500; }
.booking-badge-row i { color: #10B981; }

/* ============================================================
   FLIGHTS PAGE
   ============================================================ */
.flights-page-hero { position: relative; height: 50vh; min-height: 400px; overflow: hidden; }
.flights-page-hero img { width: 100%; height: 100%; object-fit: cover; }
.flights-page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,9,0.95) 0%, rgba(7,7,9,0.4) 60%, transparent 100%); }
.flights-page-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; text-align: center; padding-bottom: 4rem; }

/* Filter Pills */
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 3rem; }
.filter-pill { padding: 0.5rem 1.375rem; border-radius: var(--radius-pill); font-family: var(--font-heading); font-size: 0.875rem; font-weight: 500; border: 1.5px solid rgba(0,0,0,0.11); color: rgba(0,0,0,0.58); background: var(--white); cursor: pointer; transition: all var(--transition-fast); }
.filter-pill:hover { border-color: var(--primary); color: var(--dark); }
.filter-pill.active { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ============================================================
   BLOG ARTICLE PAGE
   ============================================================ */
.blog-hero { position: relative; height: 50vh; min-height: 380px; overflow: hidden; }
.blog-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,9,0.92) 0%, rgba(7,7,9,0.4) 60%, transparent 100%); }
.blog-hero-content { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: 3rem; }
.blog-article { max-width: 780px; margin-inline: auto; background: var(--white); border-radius: var(--radius-lg); padding: 3rem; margin-top: -3rem; position: relative; z-index: 5; box-shadow: 0 8px 60px rgba(0,0,0,0.15); }
@media (max-width: 767px) { .blog-article { padding: 1.5rem; } }
.blog-author-row { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.04); }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #ff9500); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.9rem; color: var(--dark); font-family: var(--font-heading); }
.author-name { font-weight: 500; font-size: 0.9rem; color: var(--dark); }
.author-date { font-size: 0.8rem; color: rgba(0,0,0,0.42); }
.blog-content h3 { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 600; color: var(--dark); margin: 2rem 0 0.875rem; }
.blog-content p { font-size: 1rem; color: rgba(0,0,0,0.68); line-height: 1.85; margin-bottom: 1.25rem; }
.blog-content blockquote { border-left: 4px solid var(--primary); padding: 1rem 1.5rem; background: rgba(255,215,0,0.05); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: normal; color: rgba(0,0,0,0.62); margin: 2rem 0; font-size: 1.0625rem; }
.blog-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.blog-content ul li { position: relative; font-size: 0.9375rem; color: rgba(0,0,0,0.68); line-height: 1.75; padding-left: 1rem; }
.blog-content ul li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.blog-cta-box { background: linear-gradient(135deg, var(--dark), var(--dark-surface)); border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin-top: 3rem; border: 1px solid rgba(255,215,0,0.14); }
.blog-cta-box h4 { font-family: var(--font-display); font-style: normal; font-size: 1.625rem; color: var(--white); margin-bottom: 0.75rem; }
.blog-cta-box p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.5rem; }

/* ============================================================
   BEST SELLER BADGE (flight pages)
   ============================================================ */
.best-seller-badge {
  position: fixed; top: 50%; right: 0;
  transform: rotate(90deg) translate(50%,-100%);
  transform-origin: right center;
  z-index: 10;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark); font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1.5rem;
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
  animation: glow-pulse 3s ease-in-out infinite;
}

/* ============================================================
   UTILITY & OVERRIDES
   ============================================================ */
/* Hide Google Translate toolbar */
.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-banner-frame { display: none !important; }

/* Swiper overrides */
.swiper-pagination-bullet { background: rgba(255,255,255,0.35); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--primary); }
.swiper-button-next, .swiper-button-prev { color: var(--primary); }

/* Card generic */
.card {
  background: var(--dark-surface); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition-base);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: rgba(255,215,0,0.2); }

/* ============================================================
   Premium Light Redesign
   White-led, luxury travel system
   ============================================================ */
:root {
  --primary: #c99a2e;
  --primary-dark: #9f741b;
  --primary-light: #efd58b;
  --dark: #151515;
  --dark-surface: #f5f6f7;
  --dark-elevated: #ffffff;
  --dark-card: #ffffff;
  --cream: #f6f7f9;
  --ink: #171717;
  --ink-soft: #343434;
  --muted: rgba(23,23,23,0.62);
  --text-muted: rgba(23,23,23,0.62);
  --text-muted-dark: rgba(23,23,23,0.58);
  --line: rgba(23,23,23,0.09);
  --gold-glow: rgba(201,154,46,0.10);
  --gold-glow-md: rgba(201,154,46,0.16);
  --gold-glow-lg: rgba(201,154,46,0.22);
  --glass-bg: rgba(255,255,255,0.76);
  --glass-border: rgba(23,23,23,0.08);
  --glass-bg-dark: rgba(255,255,255,0.88);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 16px 44px rgba(17,24,39,0.08);
  --shadow-dark: 0 18px 54px rgba(17,24,39,0.10);
  --shadow-gold: 0 16px 44px rgba(201,154,46,0.13);
  --shadow-gold-lg: 0 22px 70px rgba(201,154,46,0.16);
}

* { letter-spacing: 0 !important; }

html { background: #ffffff; }

body {
  background: #ffffff;
  color: var(--ink);
}

body::before,
#cursor-dot,
#cursor-ring,
.hero-sparkles,
.sparkle,
.hero-helicopter,
.video-blobs,
.wave-divider {
  display: none !important;
}

::-webkit-scrollbar-track { background: #f1f2f4; }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--primary-light), var(--primary-dark)); }

#scroll-progress {
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light), var(--primary));
  box-shadow: none;
}

h1, h2, h3, h4, h5, h6 { color: var(--ink); }
.text-muted { color: var(--muted); }
.text-white { color: var(--ink); }
.text-dark { color: var(--ink); }
.text-gold { color: var(--primary-dark); }

.section,
.section-sm,
.section-lg {
  background: transparent;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header .eyebrow,
.hero-badge {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(201,154,46,0.22);
  color: var(--primary-dark);
  box-shadow: 0 15px 40px rgba(17,24,39,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.section-header h2,
.section-header.dark h2 {
  color: var(--ink);
  font-size: 3.25rem;
  line-height: 1.04;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 em,
.section-header.dark h2 em {
  color: var(--primary-dark) !important;
  text-shadow: none;
}

.section-header p,
.section-header.dark p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 400;
}

.section-header h2::after {
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: none;
}

@media (max-width: 767px) {
  .section-header { margin-bottom: 2.75rem; }
  .section-header h2,
  .section-header.dark h2 { font-size: 2.3rem; line-height: 1.08; }
  .section-header p,
  .section-header.dark p { font-size: 1rem; }
}

/* Buttons */
.btn {
  border-radius: var(--radius-lg);
  font-weight: 600;
  white-space: normal;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.btn::before { display: none; }
.btn::after { background: rgba(255,255,255,0.16); }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #f0d889 0%, #c99a2e 48%, #a97916 100%);
  color: #171717;
  border: 1px solid rgba(126,84,8,0.12);
  box-shadow: 0 12px 26px rgba(201,154,46,0.22), inset 0 1px 0 rgba(255,255,255,0.38);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(201,154,46,0.28), inset 0 1px 0 rgba(255,255,255,0.48);
}

.btn-outline {
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  border: 1px solid rgba(23,23,23,0.16);
  box-shadow: 0 10px 24px rgba(17,24,39,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn-outline:hover {
  border-color: rgba(201,154,46,0.48);
  color: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(201,154,46,0.12);
}

.btn-whatsapp {
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 26px rgba(37,211,102,0.22);
}

.btn-lg { padding: 1.05rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.58rem 1rem; font-size: 0.86rem; }

/* Navbar */
/* Base navbar overrides removed to keep it dark on hero */

.navbar.scrolled {
  background: rgba(255,255,255,0.94);
  border-color: rgba(23,23,23,0.10);
  box-shadow: 0 16px 45px rgba(17,24,39,0.12);
}

.navbar.scrolled .navbar-logo img,
.footer-logo {
  filter: invert(1) brightness(0.18) saturate(0);
  opacity: 0.92;
}

.navbar.scrolled .nav-link {
  color: rgba(23,23,23,0.68);
  border-radius: var(--radius-lg);
}
.nav-link {
  border-radius: var(--radius-lg);
}

.navbar.scrolled .nav-link:hover {
  color: var(--ink);
  background: rgba(201,154,46,0.08);
}

.navbar.scrolled .nav-link.active { color: var(--primary-dark); }

.nav-link::after {
  background: var(--primary);
  box-shadow: none;
  height: 1px;
}

.navbar.scrolled .nav-dropdown-menu {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(23,23,23,0.09);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(17,24,39,0.14);
}

.navbar.scrolled .nav-dropdown-item {
  color: rgba(23,23,23,0.68);
  border-radius: 6px;
}

.nav-dropdown-item:hover {
  background: rgba(201,154,46,0.09);
  color: var(--primary-dark);
}

.nav-dropdown-item .duration {
  color: rgba(23,23,23,0.5);
  background: #f3f4f6;
}

.navbar.scrolled .lang-btn {
  color: rgba(23,23,23,0.58);
  border-radius: var(--radius-lg);
}
.lang-btn {
  border-radius: var(--radius-lg);
}

.lang-btn:hover,
.lang-btn.active {
  background: rgba(201,154,46,0.10);
  border-color: rgba(201,154,46,0.24);
  color: var(--primary-dark);
}

.navbar.scrolled .hamburger {
  border-radius: var(--radius-lg);
  background: #f4f5f7;
  border-color: rgba(23,23,23,0.08);
}

.navbar.scrolled .hamburger span { background: var(--ink); }

.mobile-menu {
  background: rgba(255,255,255,0.97);
}

.mobile-menu .mobile-nav-link {
  color: rgba(23,23,23,0.70);
  border-radius: var(--radius-lg);
}

.mobile-menu .mobile-nav-link:hover { color: var(--primary-dark); }

@media (max-width: 767px) {
  .navbar {
    top: 0.75rem;
    width: calc(100% - 1rem);
  }

  .navbar .btn-sm {
    padding-inline: 0.8rem;
  }
}

/* Hero */
.hero {
  height: 88svh;
  min-height: 560px;
  max-height: 820px;
  background: #ffffff;
}

.hero-slide img {
  opacity: 0.92;
  filter: saturate(0.95) contrast(1.03) brightness(1.05);
}

.hero-overlay {
  background:
    linear-gradient(108deg,
      rgba(255,255,255,0.78) 0%,
      rgba(255,255,255,0.52) 28%,
      rgba(255,255,255,0.14) 54%,
      rgba(255,255,255,0.02) 100%
    ),
    linear-gradient(to bottom, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
}

.hero-overlay-side {
  background: linear-gradient(to top,
    rgba(246,244,240,0.82) 0%,
    rgba(246,244,240,0.38) 18%,
    rgba(246,244,240,0.08) 38%,
    rgba(246,244,240,0.00) 58%
  );
}

.hero-content {
  justify-content: center;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.hero-slide-content {
  max-width: 760px;
  padding-left: 0;
}

.hero-badge {
  color: var(--primary-dark);
  margin-bottom: 1.4rem;
  font-size: 0.76rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

#hero-content-0 .hero-badge,
#hero-content-1 .hero-badge,
#hero-content-2 .hero-badge {
  font-size: 0;
}

#hero-content-0 .hero-badge::after,
#hero-content-1 .hero-badge::after,
#hero-content-2 .hero-badge::after {
  font-size: 0.76rem;
}

#hero-content-0 .hero-badge::after { content: "Mais de 15.000 voos | Nota 4.9 no Google"; }
#hero-content-1 .hero-badge::after { content: "Pilotos certificados | Operacao segura"; }
#hero-content-2 .hero-badge::after { content: "Atendimento premium | Roteiros exclusivos"; }

.hero-title {
  color: var(--ink);
  font-size: 5.7rem;
  line-height: 0.98;
  margin-bottom: 1.3rem;
  text-shadow: 0 12px 36px rgba(255,255,255,0.55);
}

.hero-title em {
  background: linear-gradient(135deg, #9d7117 0%, #c99a2e 48%, #edce72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: #828D9E;
  max-width: 480px;
  line-height: 1.5;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-ctas {
  gap: 1rem;
}

.hero-scroll {
  color: rgba(23,23,23,0.42);
}

.hero-scroll-line {
  background: linear-gradient(to bottom, transparent, rgba(201,154,46,0.60));
}

.hero-dots {
  bottom: 1.35rem;
}

.hero-dot {
  background: rgba(23,23,23,0.18);
}

.hero-dot.active {
  background: rgba(23,23,23,0.12);
}

.hero-dot.active::after {
  background: var(--primary);
  box-shadow: none;
}

@media (max-width: 767px) {
  .hero {
    height: 90svh;
    min-height: 560px;
  }

  .hero-content {
    padding-top: 5rem;
    padding-bottom: 3.75rem;
  }

  .hero-title {
    font-size: 3.15rem;
    line-height: 1.04;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.4rem;
  }

  .hero-ctas {
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-badge {
    font-size: 0.72rem;
    align-items: flex-start;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title { font-size: 4.5rem; }
}

@media (max-height: 650px) {
  .hero-title { font-size: 2.75rem; margin-bottom: 0.75rem; }
  .hero-subtitle { margin-bottom: 1rem; }
  .hero-badge { margin-bottom: 0.75rem; }
}

/* Trust stats — gradiente ponte do hero */
.stats-bar {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    #F6F4F0 0%,
    #F9F8F5 22%,
    #FFFFFF 52%
  );
  padding: 3.5rem 0 4.25rem;
  overflow: visible;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201,154,46,0.18) 20%,
    rgba(201,154,46,0.32) 50%,
    rgba(201,154,46,0.18) 80%,
    transparent 100%
  );
  pointer-events: none;
}

.stats-bar .wave-divider {
  display: none !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
  transform: none;
}

.stat-item {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 1.625rem 1rem 1.375rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(201,154,46,0.10);
  border-radius: 1.125rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 1px 0 rgba(255,255,255,0.9) inset;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,154,46,0.28), transparent);
  pointer-events: none;
}

.stat-item::after {
  display: none;
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201,154,46,0.20);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07), 0 1px 0 rgba(255,255,255,0.9) inset;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin-bottom: 0.45rem;
  color: #B38900;
  text-shadow: none;
  -webkit-text-fill-color: unset;
  background: none;
}

.stat-label {
  max-width: 14ch;
  color: rgba(17,24,39,0.52);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .stats-bar {
    padding: 3.5rem 0 4.25rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1100px) {
  .stats-bar {
    padding: 3.5rem 0 4.25rem;
  }
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .stat-item {
    padding-inline: 1.25rem;
  }
}

@media (max-width: 767px) {
  .stats-bar {
    padding: 2.25rem 0 3rem;
  }
  .stats-grid {
    gap: 0.75rem;
  }
  .stat-item {
    padding: 1.25rem 0.875rem 1.125rem;
  }
  .stat-number {
    font-size: 2.25rem;
  }
  .stat-label {
    max-width: none;
    font-size: 0.8125rem;
    line-height: 1.42;
  }
}

/* Flights */
.flights-section {
  background: #f6f7f9;
  padding-block: 6rem;
}

.flights-section::before { display: none; }
.flights-carousel-track { overflow: visible; -webkit-mask-image: none; mask-image: none; }

.flights-section .flights-grid,
.flights-grid {
  display: grid !important;
  align-items: stretch;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: auto;
  transform: none !important;
  padding-block: 0;
}

.flights-section .flight-card {
  min-width: 0;
  max-width: none;
}

@media (min-width: 768px) {
  .flights-section .flights-grid,
  .flights-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (min-width: 1120px) {
  .flights-section .flights-grid,
  .flights-grid { grid-template-columns: repeat(5, 1fr) !important; gap: 1.25rem; }
}

.flight-card {
  background: #ffffff;
  border: 1px solid rgba(23,23,23,0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(17,24,39,0.05);
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.flight-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 40px 80px rgba(17,24,39,0.08);
}

.flight-card.featured {
  border-color: rgba(201,154,46,0.34);
  box-shadow: 0 22px 60px rgba(201,154,46,0.13);
}

.flight-card.featured::before {
  background: linear-gradient(180deg, rgba(201,154,46,0.16), transparent 18%);
}

.flight-card-img {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.flight-card-img img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flight-card:hover .flight-card-img img {
  transform: scale(1.08);
}

.flight-card-img-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.36) 0%, rgba(0,0,0,0.02) 62%);
}

.flight-card-badge {
  font-size: 0;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgba(255,255,255,0.88) !important;
  border: 1px solid rgba(255,255,255,0.66);
  box-shadow: 0 10px 24px rgba(17,24,39,0.12);
}

.flight-card-badge::after {
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ink);
}








.flight-card-duration {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.88);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.68);
  box-shadow: 0 10px 24px rgba(17,24,39,0.12);
}

.flight-card-body {
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.flight-card-title {
  color: var(--ink);
  font-size: 1.28rem;
}

.flight-card-subtitle {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.flight-card-desc {
  color: rgba(23,23,23,0.62);
  font-size: 0.92rem;
}

.flight-feature-pill { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.25rem 0.5rem; border-radius: 6px; background: rgba(246,247,249,0.8); border: 1px solid rgba(23,23,23,0.05); font-size: 0.7rem; font-weight: 500; color: rgba(23,23,23,0.75); }

.flight-rating strong { color: var(--ink); }
.flight-stars { color: var(--primary-dark); }
.flight-reviews { color: rgba(23,23,23,0.48); }

.flight-card-cta {
  margin-top: auto;
  padding-top: 1.5rem;
}
.flight-pricing {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(23,23,23,0.08);
}

.flight-price-old { color: rgba(23,23,23,0.38); }
.flight-price-new {
  color: var(--ink);
  font-size: 2rem;
}

.flight-price-note {
  color: rgba(23,23,23,0.52);
}

.flight-card.featured .btn-primary { animation: none; }
.flights-cta-row .btn-outline { background: #ffffff; }

/* Experience video */
.video-section {
  background: #ffffff;
  padding-block: 6rem;
}

.video-wrapper {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23,23,23,0.08);
  box-shadow: 0 24px 70px rgba(17,24,39,0.12);
}

.video-frame-decoration {
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 48%, rgba(201,154,46,0.16));
}

/* Reviews */
.reviews-section {
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
  padding-block: 6.25rem;
  overflow: visible;
}

.reviews-section::before { display: none; }

.reviews-header-wrap {
  max-width: 760px;
  margin: 0 auto 3.6rem;
}

.reviews-section .section-header {
  text-align: center;
  margin-bottom: 0;
}

.reviews-eyebrow {
  justify-content: center;
  gap: 0.55rem;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  color: rgba(17,24,39,0.48) !important;
}

.google-wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.google-g1 { color: #4285f4; }
.google-o1 { color: #ea4335; }
.google-o2 { color: #fbbc05; }
.google-g2 { color: #4285f4; }
.google-l  { color: #34a853; }
.google-e  { color: #ea4335; }

.reviews-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.4rem;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(17,24,39,0.08);
  box-shadow: 0 12px 24px rgba(17,24,39,0.05);
  color: rgba(17,24,39,0.62);
  font-size: 0.88rem;
  font-weight: 600;
}

.reviews-trust-stars {
  color: #ffc300;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.reviews-section .section-header h2 {
  color: var(--ink);
}

.reviews-section .section-header p {
  color: rgba(17,24,39,0.6);
  max-width: 620px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(17,24,39,0.07);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17,24,39,0.06);
  padding: 2rem 1.9rem;
  min-height: 100%;
}

.review-card::before,
.review-card::after { display: none; }

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,195,0,0.16);
  box-shadow: 0 22px 48px rgba(17,24,39,0.08);
}

.review-stars {
  color: #ffc300;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.review-text {
  margin: 1rem 0 1.5rem;
  color: rgba(17,24,39,0.74);
  font-size: 1rem;
  line-height: 1.78;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  opacity: 0.65;
  font-size: 0.85rem;
}

.review-avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(17,24,39,0.08);
}

.review-person-meta {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.review-person-meta strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.review-person-meta span {
  color: rgba(17,24,39,0.52);
  font-size: 0.84rem;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }
}

@media (min-width: 1120px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
  }
}

@media (max-width: 767px) {
  .reviews-header-wrap {
    margin-bottom: 2.4rem;
  }

  .review-card {
    padding: 1.55rem 1.25rem;
  }

  .review-text {
    margin-bottom: 1.3rem;
    font-size: 0.96rem;
  }
}

/* FAQ */
.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 82%, #f8f9fb 100%);
  padding-block: 6.25rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.faq-intro {
  max-width: 390px;
  padding-top: 0.35rem;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(17,24,39,0.48);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.faq-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(255,195,0,0.85);
}

.faq-microcopy {
  margin: 0 0 0.9rem;
  color: rgba(17,24,39,0.52);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.faq-title {
  margin: 0 0 1.05rem;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.faq-copy {
  margin: 0;
  color: rgba(17,24,39,0.62);
  font-size: 0.98rem;
  line-height: 1.82;
}

.faq-trust {
  margin-top: 1.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.1rem 0 0 0.1rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq-trust-marker {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #ffc300;
  box-shadow: 0 0 0 4px rgba(255,195,0,0.10);
  flex-shrink: 0;
}

.faq-trust-text {
  color: rgba(17,24,39,0.56);
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 500;
}

.faq-list {
  max-width: none;
  margin-inline: 0;
  width: min(100%, 760px);
  justify-self: end;
  gap: 0.95rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(17,24,39,0.035);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,195,0,0.18);
  box-shadow: 0 14px 28px rgba(17,24,39,0.05);
}

.faq-item.open {
  border-color: rgba(255,195,0,0.16);
  box-shadow: 0 16px 30px rgba(17,24,39,0.045);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.82rem;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

.faq-question:hover {
  background: rgba(17,24,39,0.012);
}

.faq-question:focus-visible {
  outline: 2px solid rgba(255,195,0,0.55);
  outline-offset: -2px;
}

.faq-marker {
  width: 2px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255,195,0,0.22), rgba(255,195,0,0.92));
  box-shadow: none;
  flex-shrink: 0;
}

.faq-question-text {
  flex: initial;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17,24,39,0.022);
  border: 1px solid rgba(17,24,39,0.06);
  color: rgba(17,24,39,0.5);
  font-size: 0.92rem;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(255,195,0,0.1);
  border-color: rgba(255,195,0,0.18);
  color: #8d6d00;
  box-shadow: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-inline: 1.25rem;
  transition: max-height 0.44s cubic-bezier(0.22,1,0.36,1);
}

.faq-answer-inner {
  padding: 0 0 1.2rem;
  border-top: 1px solid rgba(17,24,39,0.045);
  padding-top: 0.92rem;
  color: #667085;
  font-size: 0.92rem;
  line-height: 1.8;
}

.faq-answer-inner strong {
  color: var(--ink);
}

.faq-item.open .faq-answer {
  max-height: 520px;
}

@media (max-width: 1023px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.35rem;
  }

  .faq-intro {
    max-width: 100%;
    padding-top: 0;
  }

  .faq-title {
    max-width: 14ch;
  }

  .faq-list {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding-block: 4.2rem;
  }

  .faq-layout {
    gap: 1.7rem;
  }

  .faq-title {
    max-width: none;
    font-size: 2.1rem;
  }

  .faq-copy {
    font-size: 0.93rem;
    line-height: 1.7;
  }

  .faq-trust {
    width: 100%;
    align-items: flex-start;
  }

  .faq-list {
    gap: 0.75rem;
  }

  .faq-question {
    padding: 1rem 1rem;
    gap: 0.74rem;
  }

  .faq-question-text {
    font-size: 0.92rem;
  }

  .faq-toggle {
    width: 26px;
    height: 26px;
  }

  .faq-answer {
    padding-inline: 1rem;
  }

  .faq-answer-inner {
    padding-bottom: 1rem;
    font-size: 0.88rem;
  }
}

/* Location */
#localizacao {
  background: #f6f7f9;
  padding: 5rem 0;
}

.map-layout {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 64px rgba(17,24,39,0.10);
  background: #ffffff;
}

.map-wrapper iframe {
  filter: saturate(0.78) contrast(1.02) brightness(1.03);
}

.map-card {
  background: #ffffff;
  border-left: 1px solid rgba(23,23,23,0.08);
}

.map-card::before {
  background: linear-gradient(90deg, var(--primary-dark), transparent);
}

.map-card-header {
  border-bottom-color: rgba(23,23,23,0.08);
}

.map-card-icon {
  border-radius: var(--radius-lg);
  color: var(--primary-dark);
  background: rgba(201,154,46,0.10);
}

.map-card-title { color: var(--ink); }
.map-card-subtitle,
.map-info-row { color: rgba(23,23,23,0.64); }
.map-info-row { border-bottom-color: rgba(23,23,23,0.07); }
.map-info-row i { color: var(--primary-dark); }

@media (max-width: 767px) {
  #localizacao { padding: 3rem 0; }
  .map-layout { width: calc(100% - 1.5rem); }
}

/* Blog listing */
.blog-section {
  background: #ffffff;
  padding-block: 6rem;
}

.blog-nav-btn {
  border-radius: var(--radius-lg);
  background: #f6f7f9;
  border-color: rgba(23,23,23,0.08);
  color: rgba(23,23,23,0.62);
}

.blog-card {
  background: #ffffff;
  border-color: rgba(23,23,23,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 44px rgba(17,24,39,0.06);
}

.blog-card:hover {
  border-color: rgba(201,154,46,0.24);
  box-shadow: 0 22px 56px rgba(17,24,39,0.10);
}

.blog-card-category {
  color: var(--primary-dark);
  border-color: rgba(201,154,46,0.18);
  background: rgba(201,154,46,0.08);
  border-radius: var(--radius-lg);
}

.blog-card-title { color: var(--ink); }
.blog-card-link { color: var(--primary-dark); }

/* Footer */
.footer {
  background: #f6f7f9;
  border-radius: 0;
  margin-top: 0;
  border-top: 1px solid rgba(23,23,23,0.08);
}

.footer::before,
.footer::after { display: none; }

.footer-grid {
  border-bottom-color: rgba(23,23,23,0.08);
}

.footer-tagline,
.footer-link,
.footer-copy,
.footer-status {
  color: rgba(23,23,23,0.56);
}

.footer-col-title {
  color: var(--primary-dark);
}

.footer-link:hover {
  color: var(--ink);
}

.social-btn {
  border-radius: var(--radius-lg);
  background: #ffffff;
  border-color: rgba(23,23,23,0.08);
  color: rgba(23,23,23,0.62);
}

.social-btn:hover {
  background: var(--primary);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(201,154,46,0.18);
}

.whatsapp-float {
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(37,211,102,0.28);
}

.whatsapp-float::before { display: none; }

/* Listing and detail page heroes */
.flights-page-hero,
.page-hero,
.blog-hero {
  background: #ffffff;
}

.flights-page-hero { height: 500px; min-height: 400px; }
.page-hero { height: 560px; min-height: 560px; }
.blog-hero { height: 460px; min-height: 460px; }

.flights-page-hero img,
.page-hero img,
.blog-hero img {
  filter: saturate(0.9) contrast(1.02) brightness(1.05);
}

.flights-page-hero-overlay,
.page-hero-overlay,
.blog-hero-overlay {
  background:
    linear-gradient(to top, #ffffff 0%, rgba(255,255,255,0.82) 28%, rgba(255,255,255,0.20) 72%),
    linear-gradient(90deg, rgba(255,255,255,0.84), rgba(255,255,255,0.16));
}

.flights-page-hero-content {
  justify-content: flex-end;
  padding-bottom: 3rem;
}

.page-hero-content,
.blog-hero-content {
  padding-bottom: 3rem;
}

.flights-page-hero-content h1,
.page-title,
.blog-hero-content h1 {
  color: var(--ink) !important;
  font-family: var(--font-heading) !important;
  font-style: normal !important;
  font-size: 4rem !important;
  line-height: 1.04 !important;
  text-shadow: 0 12px 36px rgba(255,255,255,0.55);
}

.flights-page-hero-content h1 span,
.page-title span {
  color: var(--primary-dark) !important;
}

.flights-page-hero-content p,
.page-hero-content p,
.blog-hero-content p {
  color: rgba(23,23,23,0.68) !important;
  font-weight: 500 !important;
}

.badge-glass {
  color: var(--primary-dark);
  background: rgba(255,255,255,0.82);
  border-color: rgba(201,154,46,0.24);
}

@media (max-width: 767px) {
  .flights-page-hero,
  .page-hero,
  .blog-hero {
    height: 430px;
    min-height: 430px;
  }

  .flights-page-hero-content h1,
  .page-title,
  .blog-hero-content h1 {
    font-size: 2.45rem !important;
  }
}

/* Internal content */
.flight-detail-layout {
  background: #ffffff;
  padding-block: 4rem 6rem;
}

.highlight-pill {
  border-radius: var(--radius-lg);
  background: #f6f7f9;
  color: var(--ink);
}

.highlight-pill.gold {
  background: rgba(201,154,46,0.14);
  color: var(--primary-dark);
  border-color: rgba(201,154,46,0.24);
}

.route-svg-container {
  background: #f6f7f9;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: var(--radius-lg);
}

.route-svg-container text {
  fill: rgba(23,23,23,0.58) !important;
}

.route-stop::before {
  background: var(--primary);
  box-shadow: none;
}

.photo-gallery img,
.rules-box,
.booking-card,
.booking-summary,
.booking-input,
.booking-select,
.blog-article,
.blog-cta-box {
  border-radius: var(--radius-lg);
}

.rules-box {
  background: #f6f7f9;
  border-color: rgba(23,23,23,0.08);
}

.rules-box h4 { color: var(--ink); }
.rule-item {
  color: rgba(23,23,23,0.68);
  border-bottom-color: rgba(23,23,23,0.07);
}

.booking-card {
  border-color: rgba(23,23,23,0.08);
  box-shadow: 0 22px 64px rgba(17,24,39,0.10);
}

.booking-price-amount {
  color: var(--primary-dark);
}

.booking-summary {
  background: #f6f7f9;
}

.blog-article {
  border: 1px solid rgba(23,23,23,0.08);
  box-shadow: 0 22px 64px rgba(17,24,39,0.10);
}

.blog-content blockquote {
  background: rgba(201,154,46,0.08);
  border-left-color: var(--primary);
}

.blog-cta-box {
  background: linear-gradient(135deg, rgba(201,154,46,0.10), rgba(255,255,255,0.96));
  border-color: rgba(201,154,46,0.20);
}

.blog-cta-box h4 { color: var(--ink); }
.blog-cta-box p { color: rgba(23,23,23,0.64); }

section[style*="background:var(--dark)"] {
  background: #f6f7f9 !important;
}

section[style*="background:var(--dark)"] .grid-3 {
  gap: 1.4rem !important;
}

section[style*="background:var(--dark)"] .card {
  padding: 2rem !important;
  text-align: left !important;
}

section[style*="background:var(--dark)"] .card > div:first-child {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(201,154,46,0.10);
  color: var(--primary-dark);
  font-size: 0 !important;
  margin-bottom: 1.25rem !important;
}

section[style*="background:var(--dark)"] .card > div:first-child::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.25rem;
}

section[style*="background:var(--dark)"] .card:nth-child(1) > div:first-child::before { content: "\f3ed"; }
section[style*="background:var(--dark)"] .card:nth-child(2) > div:first-child::before { content: "\f005"; }
section[style*="background:var(--dark)"] .card:nth-child(3) > div:first-child::before { content: "\f562"; }

section[style*="background:var(--dark)"] .card h3 {
  color: var(--ink) !important;
  margin-bottom: 0.75rem !important;
}

section[style*="background:var(--dark)"] .card p {
  color: rgba(23,23,23,0.64) !important;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 44px rgba(17,24,39,0.06);
}

.card:hover {
  box-shadow: 0 22px 56px rgba(17,24,39,0.10);
  border-color: rgba(201,154,46,0.24);
}

.card [style*="color:var(--white)"],
.flight-detail-grid [style*="color:var(--white)"] {
  color: var(--ink) !important;
}

.card [style*="color:var(--text-muted)"],
.flight-detail-grid [style*="color:rgba(255,255,255"] {
  color: rgba(23,23,23,0.64) !important;
}

.flight-detail-grid [style*="background:var(--dark-surface)"],
.flight-detail-grid [style*="background:linear-gradient(135deg,var(--dark)"] {
  background: #ffffff !important;
  border: 1px solid rgba(23,23,23,0.08) !important;
  box-shadow: 0 16px 44px rgba(17,24,39,0.06);
}

/* ============================================================
   Polish Round 2
   Dark cinematic heroes + vivid original gold + flight pages
   ============================================================ */
:root {
  --primary: #ffd700;
  --primary-dark: #c99a00;
  --primary-light: #fff1a6;
  --gold-glow: rgba(255,215,0,0.12);
  --gold-glow-md: rgba(255,215,0,0.20);
  --gold-glow-lg: rgba(255,215,0,0.30);
}

.btn-primary {
  background: linear-gradient(135deg, #fff4ad 0%, #ffd700 46%, #d6a900 100%);
  border-color: rgba(153,116,0,0.18);
  box-shadow: 0 14px 30px rgba(255,215,0,0.28), inset 0 1px 0 rgba(255,255,255,0.48);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(255,215,0,0.36), inset 0 1px 0 rgba(255,255,255,0.54);
}

.navbar {
  border-radius: var(--radius-lg);
}

.nav-link.active,
.nav-dropdown-item:hover,
.blog-card-link,
.blog-card-category,
.footer-col-title {
  color: var(--primary-dark);
}

/* Home hero: cinematic at the top, white handoff below */
.hero {
  height: auto;
  min-height: 0;
  max-height: none;
  background: #111111;
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
}

.hero-slide img {
  opacity: 1;
  filter: saturate(0.98) contrast(1.08) brightness(0.82);
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.58) 35%, rgba(0,0,0,0.20) 72%, rgba(0,0,0,0.12) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.04) 58%, rgba(255,255,255,0.92) 100%);
}

.hero-overlay-side {
  background: linear-gradient(to top, #ffffff 0%, rgba(255,255,255,0.82) 12%, rgba(0,0,0,0.16) 46%, rgba(0,0,0,0.36) 100%);
}

.hero-title,
.hero-subtitle,
.hero-scroll {
  color: #ffffff;
}

.hero-content {
  height: auto;
  min-height: clamp(680px, 92svh, 860px);
  padding-top: 6.5rem;
  padding-bottom: 6.75rem;
  justify-content: center;
}

.hero-slide-content {
  max-width: 760px;
  padding-left: 0;
}

.hero-title {
  text-shadow: 0 18px 48px rgba(0,0,0,0.46);
}

.hero-title em {
  background: linear-gradient(135deg, #fff1a6 0%, #ffd700 42%, #d6a900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255,255,255,0.82);
}

.hero-badge {
  background: rgba(10,10,10,0.48);
  border-color: rgba(255,215,0,0.28);
  color: var(--primary);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.hero .btn-outline {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.32);
  color: #ffffff;
}

.hero .btn-outline:hover {
  border-color: rgba(255,215,0,0.75);
  color: var(--primary);
}

.hero-dot {
  background: rgba(255,255,255,0.36);
}

.hero-dot.active {
  background: rgba(255,255,255,0.22);
}

.hero-dots {
  bottom: 1.65rem;
}

/* Flight and blog heroes: dark premium cover, fading cleanly into white */
.flights-page-hero,
.page-hero,
.blog-hero {
  height: 600px;
  min-height: 600px;
  background: #111111;
  margin-bottom: 0;
  isolation: isolate;
}

.page-hero img,
.flights-page-hero img,
.blog-hero img {
  filter: saturate(0.98) contrast(1.08) brightness(0.76);
  transform: none !important;
}

.page-hero-overlay,
.page-hero-overlay[style],
.flights-page-hero-overlay,
.blog-hero-overlay {
  background:
    linear-gradient(to top, #ffffff 0%, rgba(255,255,255,0.86) 10%, rgba(10,10,10,0.30) 45%, rgba(0,0,0,0.76) 100%) !important;
}

.page-hero-content,
.flights-page-hero-content,
.blog-hero-content {
  justify-content: flex-end;
  padding-bottom: 7.25rem;
}

.page-hero-content .container,
.flights-page-hero-content .container,
.blog-hero-content .container {
  position: relative;
  z-index: 2;
}

.page-title,
.flights-page-hero-content h1,
.blog-hero-content h1 {
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-style: normal !important;
  font-size: 4.2rem !important;
  line-height: 1.02 !important;
  text-shadow: 0 16px 46px rgba(0,0,0,0.55) !important;
}

.page-title span,
.flights-page-hero-content h1 span,
.romantic-hero-title span {
  color: var(--primary) !important;
}

.page-hero-content p,
.flights-page-hero-content p,
.blog-hero-content p {
  color: rgba(255,255,255,0.84) !important;
  font-weight: 500 !important;
  text-shadow: 0 12px 30px rgba(0,0,0,0.34);
}

.page-hero .badge,
.page-hero .badge-glass,
.flights-page-hero .hero-badge,
.blog-hero .badge,
.blog-hero .badge-glass {
  background: rgba(10,10,10,0.52) !important;
  border: 1px solid rgba(255,215,0,0.30) !important;
  color: var(--primary) !important;
  border-radius: 8px !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.24);
}

.romantic-badge {
  top: 6.25rem !important;
  background: linear-gradient(135deg, #fff1a6, #ffd700, #d6a900) !important;
  color: #171717 !important;
  border-radius: 8px !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28) !important;
  animation: none !important;
}

.flight-detail-layout {
  padding-block: 5.75rem 7rem;
}

.flight-detail-grid {
  align-items: start;
  gap: clamp(2rem, 4vw, 4.5rem);
}

@media (min-width: 1024px) {
  .flight-detail-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
  }
}

.highlight-pills {
  margin-top: 0;
  margin-bottom: 3rem;
  gap: 0.75rem;
}

.highlight-pill,
.highlight-pill[style] {
  min-height: 42px;
  border-radius: 8px !important;
  background: #f6f7f9 !important;
  border: 1px solid rgba(23,23,23,0.09) !important;
  color: rgba(23,23,23,0.78) !important;
  box-shadow: 0 8px 20px rgba(17,24,39,0.04);
}

.highlight-pill.gold,
.highlight-pill.gold[style] {
  background: rgba(255,215,0,0.18) !important;
  border-color: rgba(255,215,0,0.38) !important;
  color: #8d6d00 !important;
}

.highlight-pill i {
  color: var(--primary-dark) !important;
}

.prose-section {
  margin-bottom: 3.6rem;
}

.prose-section h3 {
  font-size: 1.45rem;
  margin-bottom: 1.35rem;
}

.prose-section h3 i {
  color: var(--primary-dark);
}

.prose-section p,
.route-stop-desc,
.rule-item,
.blog-content p {
  color: rgba(23,23,23,0.70);
}

.route-svg-container {
  background: #f7f8fa;
  border-color: rgba(23,23,23,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.route-path,
.route-path[style] {
  stroke: var(--primary-dark) !important;
}

.route-svg-container circle {
  fill: var(--primary-dark) !important;
}

.route-timeline::before {
  background: linear-gradient(to bottom, var(--primary), rgba(255,215,0,0.18));
}

.route-stop::before {
  background: var(--primary-dark);
}

.photo-gallery {
  gap: 1rem;
}

.photo-gallery img {
  box-shadow: 0 14px 34px rgba(17,24,39,0.10);
}

.rules-box {
  background: #f7f8fa !important;
}

.rules-box h4,
.flight-detail-grid [style*="color:var(--white)"] {
  color: var(--ink) !important;
}

.flight-detail-grid [style*="color:rgba(255,255,255"] {
  color: rgba(23,23,23,0.66) !important;
}

.flight-detail-grid [style*="#FF6B8A"],
.flight-detail-grid [style*="#E0415E"] {
  color: var(--primary-dark) !important;
  border-color: rgba(255,215,0,0.34) !important;
}

.flight-detail-grid [style*="background:linear-gradient(135deg,#FF6B8A"],
.flight-detail-grid [style*="background:linear-gradient(135deg,rgba(255,107,138"],
.flight-detail-grid [style*="background:rgba(255,107,138"] {
  background: linear-gradient(135deg, rgba(255,215,0,0.16), rgba(255,255,255,0.92)) !important;
  border-color: rgba(255,215,0,0.30) !important;
}

.booking-card,
.booking-card[style] {
  border: 1px solid rgba(23,23,23,0.08) !important;
  box-shadow: 0 24px 70px rgba(17,24,39,0.13) !important;
  border-radius: 8px !important;
}

.booking-price-amount,
.booking-price-amount[style] {
  color: var(--primary-dark) !important;
}

.booking-card .btn[style*="#FF6B8A"] {
  background: linear-gradient(135deg, #fff1a6, #ffd700, #d6a900) !important;
  color: #171717 !important;
  animation: none !important;
}

/* Blog title and cards */
.blog-section .section-header h2,
.blog-section .section-header h2 em {
  font-family: var(--font-heading) !important;
  font-style: normal !important;
  font-weight: 800 !important;
}

.blog-section .section-header h2 em {
  color: var(--primary-dark) !important;
}

.blog-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23,23,23,0.08);
  box-shadow: 0 18px 50px rgba(17,24,39,0.08);
  background: #ffffff;
}

.blog-card-img {
  height: 245px;
}

.blog-card-img::after {
  opacity: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.32), transparent 62%);
}

.blog-card-body {
  padding: 1.55rem;
  gap: 1rem;
}

.blog-card-category {
  align-self: flex-start;
  color: #8d6d00;
  background: rgba(255,215,0,0.14);
  border-color: rgba(255,215,0,0.28);
  font-weight: 600;
}

.blog-card-title {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.38;
}

.blog-card-link {
  color: var(--primary-dark);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(23,23,23,0.08);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,215,0,0.34);
  box-shadow: 0 26px 70px rgba(17,24,39,0.14);
}

@media (max-width: 767px) {
  .hero {
    min-height: 620px;
  }

  .flights-page-hero,
  .page-hero,
  .blog-hero {
    height: 520px;
    min-height: 520px;
  }

  .page-hero-content,
  .flights-page-hero-content,
  .blog-hero-content {
    padding-bottom: 5.5rem;
  }

  .page-title,
  .flights-page-hero-content h1,
  .blog-hero-content h1 {
    font-size: 2.7rem !important;
  }

  .flight-detail-layout {
    padding-block: 3.75rem 5rem;
  }

  .highlight-pills {
    margin-bottom: 2rem;
  }
}

/* ============================================================
   Hero Glass Navbar + Natural Image Fade
   ============================================================ */
.navbar:not(.scrolled) {
  background: rgba(10,14,16,0.34);
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 18px 54px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.navbar:not(.scrolled) .navbar-logo img {
  filter: none;
  opacity: 0.96;
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.78);
}

.navbar:not(.scrolled) .nav-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
}

.navbar:not(.scrolled) .nav-link.active {
  color: var(--primary);
}

.navbar:not(.scrolled) .lang-btn {
  color: rgba(255,255,255,0.78);
}

.navbar:not(.scrolled) .lang-btn:hover,
.navbar:not(.scrolled) .lang-btn.active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,215,0,0.36);
  color: var(--primary);
}

.navbar:not(.scrolled) .hamburger {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}

.navbar:not(.scrolled) .hamburger span {
  background: #ffffff;
}

.hero-slide img {
  filter: saturate(1.12) contrast(1.02) brightness(1.03);
}

.hero-overlay {
  background:
    linear-gradient(94deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.68) 26%, rgba(255,255,255,0.26) 54%, rgba(255,255,255,0.04) 82%),
    linear-gradient(to bottom, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 58%, rgba(247,248,250,0.34) 100%);
}

.hero-overlay-side {
  background: linear-gradient(to top, rgba(247,248,250,0.90) 0%, rgba(247,248,250,0.38) 18%, rgba(255,255,255,0.08) 46%, rgba(255,255,255,0.00) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(246,247,249,0.26) 70%, #ffffff 100%);
}

.hero-content,
.hero-scroll,
.hero-dots {
  z-index: 2;
}

.hero-title,
.hero-subtitle,
.hero-scroll {
  color: var(--ink);
}

.hero-title {
  text-shadow: none;
}

.hero-subtitle {
  color: rgba(23,23,23,0.74);
}

.hero-badge {
  background: rgba(255,255,255,0.58);
  border-color: rgba(255,195,0,0.26);
  color: #8b6508;
  box-shadow: 0 14px 30px rgba(255,255,255,0.14);
}

.hero .btn-outline {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.46);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(23,23,23,0.06);
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,195,0,0.70);
  color: #8b6508;
  box-shadow: 0 14px 30px rgba(255,195,0,0.12);
}

.hero-scroll {
  color: rgba(23,23,23,0.42);
}

.hero-dot {
  background: rgba(23,23,23,0.18);
}

.hero-dot.active {
  background: rgba(23,23,23,0.10);
}

.hero-ctas {
  align-items: center;
}

.hero-ctas .btn {
  min-height: 56px;
  padding: 1rem 1.45rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-ctas .btn-primary {
  background: #FFC300;
  border: 1px solid rgba(146,110,0,0.16);
  color: #171717;
  box-shadow: 0 14px 28px rgba(255,195,0,0.22), inset 0 1px 0 rgba(255,255,255,0.44);
}

.hero-ctas .btn-primary:hover {
  box-shadow: 0 18px 34px rgba(255,195,0,0.28), inset 0 1px 0 rgba(255,255,255,0.5);
}

.hero-ctas .btn-outline {
  background: rgba(255,255,255,0.24);
  border: 1px solid rgba(255,255,255,0.58);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(23,23,23,0.05);
}

.hero-ctas .btn-outline:hover {
  background: rgba(255,255,255,0.34);
  border-color: rgba(255,195,0,0.58);
  color: #8b6508;
  box-shadow: 0 14px 28px rgba(255,195,0,0.1);
}

/* ============================================================
   Mobile Final Pass
   Compact, readable, touch-friendly
   ============================================================ */
@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
  }

  .container {
    padding-inline: 1rem;
  }

  .navbar,
  .navbar:not(.scrolled) {
    top: 0.5rem;
    width: calc(100% - 0.75rem);
    min-height: 58px;
    padding: 0.42rem 0.45rem 0.42rem 0.55rem;
    gap: 0.35rem;
    border-radius: var(--radius-lg);
  }

  .navbar.hidden {
    transform: translateX(-50%) translateY(-140%);
  }

  .navbar-logo img,
  .navbar:not(.scrolled) .navbar-logo img {
    height: 44px;
    max-width: 140px;
    object-fit: contain;
  }

  .navbar-actions {
    gap: 0.28rem;
    min-width: 0;
  }

  .lang-switcher {
    display: flex !important;
    align-items: center;
    gap: 0.12rem;
    flex-shrink: 0;
  }

  .lang-btn {
    width: 27px;
    height: 28px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }

  .lang-btn .fi {
    font-size: 0.95rem;
  }

  .lang-btn::after {
    display: none;
  }

  .navbar .btn-sm {
    width: 38px;
    height: 36px;
    padding: 0 !important;
    font-size: 0 !important;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .navbar .btn-sm i {
    margin: 0;
    font-size: 1rem;
  }

  .hamburger {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .mobile-menu {
    padding: 5rem 1rem 2rem;
    justify-content: flex-start;
    gap: 0.45rem;
    overflow-y: auto;
    background: rgba(255,255,255,0.97);
  }

  .mobile-lang-switcher {
    display: flex !important;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.5s 0.04s ease, transform 0.5s 0.04s ease;
  }

  .mobile-menu.open .mobile-lang-switcher {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-lang-switcher .lang-btn {
    width: 66px;
    height: 38px;
    gap: 0.35rem;
    background: #f5f6f7;
    border: 1px solid rgba(23,23,23,0.09);
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
  }

  .mobile-menu .mobile-nav-link {
    width: min(100%, 340px);
    padding: 0.82rem 1rem;
    font-size: 1.25rem;
    line-height: 1.15;
    text-align: center;
    color: rgba(23,23,23,0.78);
  }

  .mobile-menu .mobile-cta {
    width: min(100%, 340px);
    margin-top: 0.8rem;
    padding: 1rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
  }

  .hero {
    height: auto;
    min-height: 670px;
    max-height: none;
    overflow-x: clip;
    overflow-y: visible;
  }

  .hero-content {
    min-height: 670px;
    padding-top: 6rem;
    padding-bottom: 6rem;
    justify-content: center;
  }

  .hero-slide img {
    object-position: center center;
  }

  .hero-slide-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.6rem, 11.5vw, 3.25rem);
    line-height: 1.03;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    max-width: 96%;
    font-size: 0.98rem;
    line-height: 1.58;
    margin-bottom: 1.25rem;
  }

  .hero-badge {
    max-width: 100%;
    padding: 0.45rem 0.7rem;
    white-space: normal;
    line-height: 1.25;
  }

  #hero-content-0 .hero-badge::after,
  #hero-content-1 .hero-badge::after,
  #hero-content-2 .hero-badge::after {
    font-size: 0.68rem;
  }

  .hero-ctas {
    width: 100%;
    gap: 0.7rem;
  }

  .hero-ctas .btn {
    width: 100%;
    min-height: 49px;
  }

  .btn-lg {
    padding: 0.9rem 1rem;
    font-size: 0.94rem;
  }

  .hero-scroll {
    display: none;
  }

  .hero-dots {
    bottom: 1.35rem;
  }

  .stats-bar {
    padding-block: 2rem 3rem;
  }

  .stats-grid {
    transform: none;
    margin-bottom: 0;
    padding: 0;
    gap: 1.15rem;
  }

  .stat-item {
    min-height: 0;
    padding: 0;
  }

  .stat-number {
    font-size: 2.55rem;
  }

  .stat-label {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2,
  .section-header.dark h2 {
    font-size: 2.2rem;
  }

  .flights-section,
  .video-section,
  .reviews-section,
  .faq-section,
  .blog-section {
    padding-block: 6rem;
  }

  .flights-section .flights-grid,
  .flights-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .flight-card {
    border-radius: var(--radius-lg);
  }

  .flight-card-img {
    height: 220px;
  }

  .flight-card-body {
    padding: 1.15rem;
  }

  .flight-card-title {
    font-size: 1.15rem;
  }

  .flight-card-desc {
    font-size: 0.88rem;
  }

  .flight-price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .flight-price-new {
    font-size: 1.75rem;
  }

  .page-hero,
  .flights-page-hero,
  .blog-hero {
    height: 520px;
    min-height: 520px;
  }

  .page-hero-content,
  .flights-page-hero-content,
  .blog-hero-content {
    padding-bottom: 4.75rem;
  }

  .page-title,
  .flights-page-hero-content h1,
  .blog-hero-content h1 {
    font-size: 2.55rem !important;
  }

  .page-hero-content p,
  .flights-page-hero-content p,
  .blog-hero-content p {
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
  }

  .flight-detail-layout {
    padding-block: 3.25rem 4.5rem;
  }

  .flight-detail-grid {
    gap: 2.2rem;
  }

  .highlight-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-bottom: 2.35rem;
  }

  .highlight-pill,
  .highlight-pill[style] {
    min-height: 40px;
    padding: 0.55rem 0.6rem;
    font-size: 0.72rem;
    justify-content: center;
    text-align: center;
  }

  .prose-section {
    margin-bottom: 2.4rem;
  }

  .prose-section h3 {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .prose-section p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .route-svg-container {
    padding: 0.85rem;
    overflow: hidden;
  }

  .route-timeline {
    padding-left: 1.1rem;
  }

  .route-stop {
    padding-left: 1.15rem;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .photo-gallery img:first-child {
    grid-column: span 1;
    aspect-ratio: 16 / 10;
  }

  .rules-box {
    padding: 1.15rem;
  }

  .rule-item {
    font-size: 0.86rem;
  }

  .booking-card,
  .booking-card[style] {
    position: static;
    top: auto;
    padding: 1.25rem !important;
  }

  .booking-price-amount,
  .booking-price-amount[style] {
    font-size: 2rem;
  }

  .booking-card .btn-lg {
    width: 100%;
  }

  .flight-detail-grid [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  #localizacao {
    padding: 3rem 0;
  }

  .map-layout {
    width: calc(100% - 1rem);
    grid-template-columns: 1fr !important;
  }

  .map-wrapper {
    height: 300px;
    min-height: 300px;
  }

  .map-card {
    padding: 1.35rem;
    border-left: none;
    border-top: 1px solid rgba(23,23,23,0.08);
  }

  .faq-list {
    gap: 0.65rem;
  }

  .faq-question {
    padding: 0.92rem 0.95rem;
    gap: 0.68rem;
  }

  .faq-toggle {
    width: 25px;
    height: 25px;
  }

  .faq-answer {
    padding-inline: 0.95rem;
  }

  .blog-header-row {
    align-items: center;
    margin-bottom: 2rem;
  }

  .blog-nav {
    margin-left: auto;
  }

  .blog-card-img {
    height: 205px;
  }

  .blog-card-body {
    padding: 1.15rem;
  }

  .blog-card-title {
    font-size: 1rem;
  }

  .blog-article {
    margin-top: -2rem;
    padding: 1.25rem;
  }

  .footer {
    padding-top: 3rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-status {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 0.85rem;
    bottom: 0.85rem;
    font-size: 1.55rem;
  }
}

@media (max-width: 380px) {
  .navbar-logo img,
  .navbar:not(.scrolled) .navbar-logo img {
    height: 36px;
    max-width: 100px;
  }

  .lang-btn {
    width: 25px;
  }

  .navbar .btn-sm {
    width: 34px;
  }

  .hamburger {
    width: 34px;
  }

  .hero-title {
    font-size: 2.45rem;
  }

  .highlight-pills {
    grid-template-columns: 1fr;
  }
}

/* Hide only the legacy progress artifact */
#scroll-progress {
  display: none !important;
}

/* Hero editorial refresh */
.hero {
  background: #f7f8fa;
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 62%, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.00) 52%, rgba(15,17,21,0.08) 100%),
    linear-gradient(90deg, rgba(15,17,21,0.24) 0%, rgba(15,17,21,0.08) 8%, rgba(15,17,21,0.00) 20%, rgba(15,17,21,0.00) 80%, rgba(15,17,21,0.10) 92%, rgba(15,17,21,0.20) 100%),
    linear-gradient(180deg, rgba(15,17,21,0.14) 0%, rgba(15,17,21,0.00) 18%, rgba(15,17,21,0.00) 76%, rgba(15,17,21,0.10) 100%);
}

.hero-slide img {
  transform: scale(1.02);
  object-position: center 42%;
  filter: saturate(1.18) contrast(1.14) brightness(0.97);
}

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

.hero-overlay {
  background:
    linear-gradient(96deg, rgba(247,248,250,0.48) 0%, rgba(247,248,250,0.28) 18%, rgba(247,248,250,0.10) 38%, rgba(255,255,255,0.02) 62%, rgba(255,255,255,0.00) 100%),
    radial-gradient(circle at 17% 46%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.00) 36%);
  backdrop-filter: blur(0.45px) saturate(102%);
  -webkit-backdrop-filter: blur(0.45px) saturate(102%);
}

.hero-overlay-side {
  background:
    linear-gradient(to top, rgba(245,246,248,0.72) 0%, rgba(245,246,248,0.22) 14%, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.00) 52%),
    linear-gradient(180deg, rgba(15,17,21,0.00) 62%, rgba(15,17,21,0.10) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 138px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(15,17,21,0.00) 0%, rgba(31,38,48,0.04) 48%, rgba(245,246,248,0.16) 78%, rgba(255,255,255,0.72) 100%);
}

.hero-content {
  min-height: clamp(680px, 90svh, 840px);
  padding-top: clamp(6.2rem, 10vh, 8rem);
  padding-bottom: 6rem;
  justify-content: center;
}

.hero-editorial {
  max-width: 440px;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  margin-right: auto;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(23,23,23,0.52);
  opacity: 0.8;
}

.hero-kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  border-radius: 999px;
  background: rgba(201,154,46,0.85);
}

.hero-title,
.hero-subtitle,
.hero-scroll {
  color: var(--ink);
}

.hero-title {
  max-width: 11ch;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-bottom: 1.125rem;
  text-shadow: 0 2px 24px rgba(255,255,255,0.60);
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #936800 0%, #c89605 52%, #f0c845 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
}

.hero-subtitle {
  max-width: 26rem;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.68;
  font-weight: 400;
  color: rgba(23,23,23,0.62);
  text-shadow: 0 1px 14px rgba(255,255,255,0.50);
}

.hero-ctas {
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-ctas .btn {
  min-height: 58px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-ctas .btn-primary {
  background: #FFC300;
  border: 1px solid rgba(148,109,0,0.16);
  color: #171717;
  box-shadow: 0 12px 28px rgba(255,195,0,0.18), inset 0 1px 0 rgba(255,255,255,0.45);
}

.hero-ctas .btn-primary:hover {
  box-shadow: 0 16px 34px rgba(255,195,0,0.24), inset 0 1px 0 rgba(255,255,255,0.5);
}

.hero-ctas .btn-outline {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(23,23,23,0.12);
  color: rgba(23,23,23,0.80);
  box-shadow: 0 4px 16px rgba(23,23,23,0.03);
  backdrop-filter: blur(3px) saturate(108%);
  -webkit-backdrop-filter: blur(3px) saturate(108%);
}

.hero-ctas .btn-outline:hover {
  background: rgba(255,255,255,0.46);
  border-color: rgba(255,195,0,0.34);
  color: #8b6508;
  box-shadow: 0 12px 26px rgba(15,17,21,0.07), inset 0 1px 0 rgba(255,255,255,0.30);
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(23,23,23,0.56);
}

.hero-trust::before {
  content: '';
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #FFC300;
  box-shadow: 0 0 0 6px rgba(255,195,0,0.12);
}

.hero-scroll {
  display: flex !important;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 0.55rem;
  color: rgba(23,23,23,0.42);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
}

.hero-scroll-line {
  display: block !important;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,195,0,0.12), rgba(255,195,0,0.8), rgba(255,195,0,0.12));
  animation: float 2.4s ease-in-out infinite;
}

.hero-dots,
.hero-badge,
.hero-sparkles,
.hero-helicopter {
  display: none !important;
}

@media (max-width: 1023px) {
  .hero-content {
    min-height: clamp(620px, 88svh, 760px);
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-title {
    max-width: 11ch;
    font-size: clamp(2.8rem, 9vw, 4.4rem);
    line-height: 0.96;
  }

  .hero-subtitle {
    max-width: 24rem;
    font-size: 0.9375rem;
  }

  .hero-ctas {
    width: 100%;
    align-items: stretch;
  }

  .hero-trust {
    max-width: 28rem;
  }
}

@media (max-width: 767px) {
  .hero-slide img {
    object-position: 62% center;
    filter: saturate(1.16) contrast(1.12) brightness(0.98);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(248,249,251,0.58) 0%, rgba(248,249,251,0.34) 30%, rgba(255,255,255,0.10) 64%, rgba(255,255,255,0.01) 100%),
      radial-gradient(circle at 14% 38%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.00) 36%);
    backdrop-filter: blur(0.35px) saturate(101%);
    -webkit-backdrop-filter: blur(0.35px) saturate(101%);
  }

  .hero-overlay-side {
    background:
      linear-gradient(to top, rgba(245,246,248,0.74) 0%, rgba(245,246,248,0.26) 16%, rgba(255,255,255,0.05) 36%, rgba(255,255,255,0.00) 58%),
      linear-gradient(180deg, rgba(15,17,21,0.00) 60%, rgba(15,17,21,0.08) 100%);
  }

  .hero-editorial {
    max-width: 100%;
  }

  .hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
  }

  .hero-title {
    max-width: 10ch;
    font-size: clamp(2.7rem, 11vw, 3.7rem);
    margin-bottom: 0.95rem;
  }

  .hero-subtitle {
    max-width: 94%;
    margin-bottom: 1.25rem;
    line-height: 1.58;
  }

  .hero-ctas {
    gap: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .hero-ctas .btn {
    width: 100%;
    min-height: 52px;
    padding: 0.95rem 1rem;
  }

  .hero-trust {
    max-width: 92%;
    font-size: 0.9rem;
  }

  .hero-scroll {
    display: none !important;
  }
}


/* 5-Column Compact Override */
@media (min-width: 1200px) {
  .flights-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 1.25rem !important;
  }
  .flight-card-body {
    padding: 1.2rem 1rem !important;
    gap: 0.85rem !important;
  }
  .flight-card-img {
    height: 180px !important;
  }
  .flight-card-title {
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
  }
  .flight-card-subtitle {
    font-size: 0.8rem !important;
  }
  .flight-card-desc {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .flight-card-badge {
    padding: 0.2rem 0.6rem !important;
    font-size: 0.65rem !important;
  }
  .flight-card-duration {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.5rem !important;
  }
  .flight-rating {
    font-size: 0.75rem !important;
  }
  .flight-price-old {
    font-size: 0.8rem !important;
  }
  .flight-price-new {
    font-size: 1.3rem !important;
  }
  .flight-price-note {
    font-size: 0.65rem !important;
  }
  .flight-card-cta .btn {
    padding: 0.7rem !important;
    font-size: 0.85rem !important;
  }
  .flight-feature-pill {
    padding: 0.15rem 0.45rem !important;
    font-size: 0.65rem !important;
  }
}

/* Guided Home Flights */
.flights-section #flightsGrid {
  display: none !important;
}

.flights-section .section-header {
  margin-bottom: 3rem;
}

.guided-flights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.guided-flight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #ffffff 100%);
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17,24,39,0.08);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  -webkit-tap-highlight-color: transparent;
}

.guided-flight-card:is(:hover, :focus-within) {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(17,24,39,0.12);
  border-color: rgba(17,24,39,0.12);
}

.guided-flight-card-entry {
  background: #ffffff;
  border-color: rgba(17,24,39,0.07);
  box-shadow: 0 12px 30px rgba(17,24,39,0.06);
}

.guided-flight-card-primary {
  background: #ffffff;
  border-color: rgba(214,169,0,0.22);
  box-shadow: 0 30px 70px rgba(17,24,39,0.12), 0 12px 30px rgba(255,215,0,0.12);
}

.guided-flight-card-premium {
  background: #ffffff;
  border-color: rgba(17,24,39,0.07);
  box-shadow: 0 12px 30px rgba(17,24,39,0.06);
}

.guided-flight-card-primary::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,215,0,0), rgba(255,215,0,0.74), rgba(214,169,0,0));
}

.guided-flight-card-entry::before,
.guided-flight-card-premium::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(17,24,39,0.06);
}

.guided-flight-card-entry:is(:hover, :focus-within),
.guided-flight-card-premium:is(:hover, :focus-within) {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(17,24,39,0.08);
}

.guided-flight-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1.35rem 1.35rem 0;
}

.guided-flight-group {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  background: rgba(255,215,0,0.14);
  border: 1px solid rgba(214,169,0,0.22);
  color: #7f5b00;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guided-flight-card-primary .guided-flight-group {
  padding: 0.32rem 0.7rem;
  background: rgba(255,248,214,0.92);
  color: #8f6900;
  border-color: rgba(214,169,0,0.2);
  box-shadow: 0 8px 18px rgba(255,215,0,0.1);
}

.guided-flight-helper {
  color: rgba(17,24,39,0.58);
  font-size: 0.88rem;
  line-height: 1.55;
}

.guided-flight-card-entry .guided-flight-helper,
.guided-flight-card-premium .guided-flight-helper {
  font-size: 0.9rem;
  color: rgba(17,24,39,0.64);
  line-height: 1.45;
  max-width: 24ch;
}

.guided-flight-media {
  position: relative;
  display: block;
  margin: 1rem 1.05rem 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  background: #e9edf2;
  box-shadow: 0 14px 30px rgba(17,24,39,0.08);
}

.guided-flight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,24,39,0.03) 10%, rgba(17,24,39,0.26) 100%);
}

.guided-flight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
  filter: saturate(1.06) contrast(1.02);
}

.guided-flight-card:is(:hover, :focus-within) .guided-flight-media img {
  transform: scale(1.04);
}

.guided-flight-duration {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.74rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.guided-flight-duration {
  left: 0.9rem;
  top: 0.9rem;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.74);
  box-shadow: 0 8px 20px rgba(17,24,39,0.12);
}

.guided-flight-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem 1.05rem 1.1rem;
}

.guided-flight-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.guided-flight-card-primary .guided-flight-copy h3 {
  font-size: 1.96rem;
  font-weight: 600;
}

.guided-flight-card-primary .guided-flight-copy p {
  max-width: 30ch;
  color: rgba(17,24,39,0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.guided-flight-copy p {
  margin: 0.7rem 0 0;
  color: rgba(17,24,39,0.68);
  font-size: 0.94rem;
  line-height: 1.72;
}

.guided-flight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.guided-flight-list li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(17,24,39,0.82);
  font-size: 0.88rem;
  line-height: 1.55;
}

.guided-flight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: rgba(17,24,39,0.28);
}

.guided-flight-card-primary .guided-flight-list li::before {
  background: rgba(214,169,0,0.82);
}

.guided-flight-price-block {
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(17,24,39,0.08);
  display: flex;
  align-items: flex-end;
}

.guided-flight-price-label {
  color: rgba(17,24,39,0.5);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.guided-flight-price {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.guided-flight-card-primary .guided-flight-price {
  color: #8f6900;
  font-size: 2.85rem;
}

.guided-flight-card-primary .guided-flight-media {
  margin-top: 0.9rem;
  aspect-ratio: 16 / 10;
  box-shadow: 0 18px 40px rgba(17,24,39,0.1);
}

.guided-flight-card-entry .guided-flight-media,
.guided-flight-card-premium .guided-flight-media {
  margin-top: 0.85rem;
  aspect-ratio: 16 / 9.6;
  box-shadow: 0 10px 24px rgba(17,24,39,0.07);
}

.guided-flight-card-primary .guided-flight-body {
  gap: 1.3rem;
  padding: 1.55rem;
}

.guided-flight-card-entry .guided-flight-body,
.guided-flight-card-premium .guided-flight-body {
  gap: 0.95rem;
  padding: 1.2rem;
}

.guided-flight-card-primary .guided-flight-list {
  gap: 0.75rem;
}

.guided-flight-card-entry .guided-flight-list,
.guided-flight-card-premium .guided-flight-list {
  gap: 0.55rem;
}

.guided-flight-card-primary .guided-flight-list li {
  font-size: 0.92rem;
}

.guided-flight-card-entry .guided-flight-list li,
.guided-flight-card-premium .guided-flight-list li {
  font-size: 0.84rem;
  color: rgba(17,24,39,0.78);
}

.guided-flight-card-primary .guided-flight-price-block {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(214,169,0,0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf4 0%, #ffffff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.guided-flight-card-entry .guided-flight-price-block,
.guided-flight-card-premium .guided-flight-price-block {
  padding-top: 0.9rem;
  border-top-color: rgba(17,24,39,0.06);
}

.guided-flight-card-primary .guided-flight-price-label {
  color: rgba(143,105,0,0.72);
}

.guided-flight-card-entry .guided-flight-price,
.guided-flight-card-premium .guided-flight-price {
  font-size: 1.95rem;
}

.guided-flight-card-entry .guided-flight-price-note,
.guided-flight-card-premium .guided-flight-price-note {
  font-size: 0.78rem;
}

.guided-flight-card-primary .btn-primary {
  min-height: 56px;
  box-shadow: 0 18px 36px rgba(255,215,0,0.26), inset 0 1px 0 rgba(255,255,255,0.48);
}

.guided-flight-card-primary .btn-primary:hover {
  box-shadow: 0 22px 42px rgba(255,215,0,0.34), inset 0 1px 0 rgba(255,255,255,0.52);
}

.guided-flight-price-note {
  color: rgba(17,24,39,0.56);
  font-size: 0.82rem;
}

.guided-flight-card .btn {
  width: 100%;
  min-height: 52px;
  margin-top: 0.15rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.guided-flight-card .btn-outline {
  background: rgba(255,255,255,0.92);
  border-color: rgba(17,24,39,0.12);
  color: var(--ink);
}

.guided-flight-card-entry .btn-outline,
.guided-flight-card-premium .btn-outline {
  min-height: 48px;
  background: #ffffff;
  border-color: rgba(17,24,39,0.1);
  box-shadow: 0 10px 22px rgba(17,24,39,0.04);
}

.guided-flight-card .btn-outline:hover {
  border-color: rgba(255,215,0,0.42);
  color: #8f6900;
}

.guided-flight-card:is(:hover, :focus-within) .btn-primary {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(255,215,0,0.34), inset 0 1px 0 rgba(255,255,255,0.56);
}

.guided-flight-card:is(:hover, :focus-within) .btn-outline {
  transform: translateY(-1px);
  border-color: rgba(255,215,0,0.44);
  color: #8f6900;
  box-shadow: 0 16px 30px rgba(255,215,0,0.12);
}

.guided-flight-card .btn:focus-visible,
.guided-flight-media:focus-visible {
  outline: 2px solid rgba(255,215,0,0.7);
  outline-offset: 3px;
}

.flights-cta-row {
  margin-top: 2.4rem;
}

.flights-overview-btn {
  min-height: 54px;
  padding-inline: 1.6rem;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  border-color: rgba(17,24,39,0.12);
  box-shadow: 0 16px 34px rgba(17,24,39,0.06);
}

.flights-overview-btn:hover {
  border-color: rgba(255,215,0,0.42);
  color: #8f6900;
  box-shadow: 0 25px 50px rgba(255,215,0,0.12);
}

.experiences-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.experiences-header .eyebrow {
  gap: 0;
  padding: 0;
  margin-bottom: 1rem;
  background: transparent;
  border: none;
  border-radius: 0;
  color: rgba(23,23,23,0.46);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.experiences-header h2::after {
  display: none;
}

.experiences-header p {
  max-width: 38rem;
  margin-inline: auto;
}

.guided-flights {
  gap: 1.4rem;
}

.guided-flight-card-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border-color: rgba(17,24,39,0.06);
  box-shadow: 0 14px 28px rgba(17,24,39,0.05);
}

.guided-flight-card-primary {
  border-color: rgba(214,169,0,0.26);
  box-shadow: 0 40px 80px rgba(17,24,39,0.10), 0 10px 26px rgba(255,195,0,0.10);
}

.guided-flight-card-primary:is(:hover, :focus-within) {
  box-shadow: 0 40px 78px rgba(17,24,39,0.14), 0 16px 36px rgba(255,195,0,0.14);
}

.guided-flight-card-secondary .guided-flight-media {
  aspect-ratio: 16 / 9.2;
}

.guided-flight-card-secondary .guided-flight-media::after {
  background: linear-gradient(180deg, rgba(17,24,39,0.02) 12%, rgba(17,24,39,0.14) 100%);
}

.guided-flight-card-primary .guided-flight-media {
  margin-top: 1rem;
  aspect-ratio: 16 / 10.4;
}

.guided-flight-primary .guided-flight-media::after,
.guided-flight-card-primary .guided-flight-media::after {
  background: linear-gradient(180deg, rgba(17,24,39,0.02) 10%, rgba(17,24,39,0.22) 100%);
}

.guided-flight-kicker {
  color: rgba(23,23,23,0.44);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guided-flight-badge {
  position: absolute;
  z-index: 1;
  right: 0.9rem;
  top: 0.9rem;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  background: rgba(255,248,214,0.96);
  border: 1px solid rgba(214,169,0,0.22);
  color: #8f6900;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 20px rgba(255,195,0,0.12);
}

.guided-flight-meta {
  display: grid;
  gap: 0.45rem;
}

.guided-flight-meta span {
  color: rgba(17,24,39,0.58);
  font-size: 0.88rem;
  line-height: 1.5;
}

.guided-flight-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.guided-flight-signature span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,248,214,0.68);
  border: 1px solid rgba(214,169,0,0.16);
  color: rgba(143,105,0,0.92);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.guided-flight-card-primary .guided-flight-copy h3 {
  max-width: 11ch;
  font-size: 2.1rem;
}

.guided-flight-card-secondary .guided-flight-copy h3 {
  font-size: 1.34rem;
}

.guided-flight-card-secondary .guided-flight-copy p {
  margin-top: 0.55rem;
  color: rgba(17,24,39,0.7);
  line-height: 1.58;
}

.guided-flight-card-primary .guided-flight-copy p {
  max-width: 31ch;
  margin-top: 0.65rem;
}

.guided-flight-card-primary .guided-flight-price-block {
  justify-content: space-between;
  gap: 1rem;
}

.guided-flight-price-context {
  color: rgba(143,105,0,0.68);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: right;
}

.guided-flight-card-secondary .guided-flight-price-block {
  padding-top: 0.95rem;
  border-top-color: rgba(17,24,39,0.05);
}

.guided-flight-card-secondary .guided-flight-price {
  font-size: 1.84rem;
}

.guided-flight-card-secondary .btn-outline {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17,24,39,0.04);
}

.flights-overview-btn {
  min-height: 52px;
  padding-inline: 1.35rem;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .guided-flights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .guided-flight-card-primary {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .experiences-header {
    margin-bottom: 3.25rem;
  }

  .guided-flights {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr);
    gap: 1.55rem;
    align-items: center;
  }

  .guided-flight-card-primary {
    grid-column: auto;
    transform: translateY(-16px) scale(1.05);
    z-index: 2;
  }

  .guided-flight-card-primary:is(:hover, :focus-within) {
    transform: translateY(-22px) scale(1.06);
    box-shadow: 0 40px 82px rgba(17,24,39,0.16), 0 18px 36px rgba(255,215,0,0.16);
  }

  .guided-flight-card-entry,
  .guided-flight-card-premium {
    margin-top: 1.2rem;
  }
}

@media (max-width: 767px) {
  .experiences-header {
    margin-bottom: 2.2rem;
    text-align: center;
  }

  .experiences-header p {
    margin-inline: auto;
  }

  .flights-section .section-header {
    margin-bottom: 2.2rem;
  }

  .guided-flight-head,
  .guided-flight-body {
    padding-inline: 1.1rem;
  }

  .guided-flight-media {
    margin-inline: 1.1rem;
  }

  .guided-flight-copy h3 {
    font-size: 1.35rem;
  }

  .guided-flight-card-primary .guided-flight-copy h3 {
    font-size: 1.8rem;
  }

  .guided-flight-price {
    font-size: 2rem;
  }

  .guided-flight-card-primary .guided-flight-price {
    font-size: 2.45rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .guided-flight-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .guided-flight-card:active {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(17,24,39,0.1);
  }

  .guided-flight-card-primary:active {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 62px rgba(17,24,39,0.14), 0 14px 30px rgba(255,215,0,0.16);
  }

  .guided-flight-card .btn {
    min-height: 54px;
    box-shadow: 0 12px 24px rgba(17,24,39,0.06);
  }

  .guided-flight-card .btn:active {
    transform: scale(0.985);
  }

  .guided-flight-card .btn-primary:active {
    box-shadow: 0 16px 30px rgba(255,215,0,0.26), inset 0 1px 0 rgba(255,255,255,0.5);
  }

  .guided-flight-card .btn-outline:active {
    border-color: rgba(255,215,0,0.38);
    color: #8f6900;
    box-shadow: 0 12px 24px rgba(255,215,0,0.1);
  }
}

/* Storytelling experience block */
.story-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  padding-block: 6rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: center;
}

.story-copy {
  max-width: 34rem;
}

.story-copy h2 {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: clamp(2.4rem, 4.8vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.story-copy p {
  margin: 0;
  color: rgba(17,24,39,0.68);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 31rem;
}

.story-visual {
  position: relative;
}

.story-image-shell {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  background: #e7ebf0;
  box-shadow: 0 28px 68px rgba(17,24,39,0.12);
}

.story-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 700ms cubic-bezier(0.22,1,0.36,1), filter 320ms ease;
  filter: saturate(1.03) contrast(1.01) brightness(1.02);
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 34%, rgba(17,24,39,0.12) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 38%);
  pointer-events: none;
}

.story-visual:hover .story-image-shell img,
.story-visual:focus-within .story-image-shell img {
  transform: scale(1.04);
}

.story-loop-shell {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  width: min(35%, 210px);
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.22);
  box-shadow: 0 18px 38px rgba(17,24,39,0.18);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
}

.story-loop-shell::before {
  content: "No ar";
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: rgba(17,24,39,0.78);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-loop-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

@media (max-width: 1023px) {
  .story-section {
    padding-block: 5rem;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-copy {
    max-width: 100%;
  }

  .story-copy h2 {
    max-width: 12ch;
  }

  .story-copy p {
    max-width: 42rem;
  }

  .story-image-shell {
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .story-section {
    padding-block: 6rem;
  }

  .story-copy h2 {
    max-width: none;
    font-size: clamp(2.05rem, 9vw, 3rem);
    margin-bottom: 1rem;
  }

  .story-copy p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .story-image-shell {
    min-height: 380px;
  }

  .story-loop-shell {
    width: min(42%, 155px);
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .story-loop-shell::before {
    left: 0.6rem;
    top: 0.6rem;
  }
}

/* ============================================================
   LAYOUT & RHYTHM REFACTOR
   ============================================================ */
.bg-white {
  background-color: #ffffff;
}
.bg-offwhite {
  background-color: var(--cream, #f6f7f9);
}
.bg-subtle-gray {
  background-color: #f1f2f4;
}

/* Break Sections */
.break-section {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.break-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.5s cubic-bezier(0.22,1,0.36,1);
}
.break-section:hover img {
  transform: scale(1.02);
}
.break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,9,0.58) 0%, rgba(7,7,9,0.18) 50%, rgba(7,7,9,0.52) 100%);
  z-index: 1;
}
.break-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff !important;
  font-weight: 600;
  text-align: center;
  max-width: 900px;
  padding-inline: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* ============================================================
   LUXURY FLIGHT BLOCKS (VERTICAL STACK)
   ============================================================ */
.luxury-flights-stack {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 900px;
  margin-inline: auto;
  padding-block: 2rem;
}

.luxury-flight-block {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.03);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  cursor: pointer;
}
@media (min-width: 768px) {
  .luxury-flight-block {
    padding: 2.5rem;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .luxury-flight-block {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.luxury-flight-block:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 64px rgba(0,0,0,0.04);
}

.luxury-flight-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.luxury-flight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.luxury-flight-block:hover .luxury-flight-image img {
  transform: scale(1.05);
}

.luxury-flight-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.luxury-flight-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.luxury-flight-emotion {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.luxury-flight-price {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.luxury-price-note {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.25rem;
}

.luxury-flight-cta {
  min-width: 220px;
}

/* Featured Block Variations */
.luxury-flight-block.featured {
  padding-block: 4rem;
  padding-inline: 3rem;
  background: var(--cream);
  border: 1px solid rgba(201,154,46,0.12);
  box-shadow: 0 16px 48px rgba(201, 154, 46, 0.08);
  margin-block: 2rem;
  position: relative;
}
.luxury-flight-block.featured:hover {
  transform: scale(1.03);
  box-shadow: 0 32px 80px rgba(201,154,46,0.08);
}

.luxury-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(201, 154, 46, 0.12);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 154, 46, 0.2);
}

.luxury-microcopy-row {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--primary-dark);
  margin-block: 1rem;
  font-style: italic;
  font-weight: 600;
  position: relative;
}
.luxury-microcopy-row::before,
.luxury-microcopy-row::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--primary-dark);
  vertical-align: middle;
  margin-inline: 1rem;
  opacity: 0.5;
}

/* ============================================================
   DESIRE SECTION
   ============================================================ */
.desire-section {
  position: relative;
  padding-block: 7rem;
  background: var(--dark);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

.desire-section::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,7,9,0.85) 0%, rgba(7,7,9,0.65) 60%, rgba(7,7,9,0.4) 100%);
  z-index: 1;
}

.desire-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1483729558449-99ef09a8c325?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.desire-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 700px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.desire-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.desire-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.desire-bigline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.desire-subtext {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.6;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Desire section: usa o sistema padrão body.js-reveal */
.desire-content .reveal.visible {
  transition-delay: 0s;
}
.desire-content .reveal-delay-1.visible { transition-delay: 0.12s; }
.desire-content .reveal-delay-2.visible { transition-delay: 0.24s; }
.desire-content .reveal-delay-3.visible { transition-delay: 0.36s; }

/* ============================================================
   STORYTELLING ENHANCEMENT
   ============================================================ */
.story-headline-massive {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 2rem;
}

.text-italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary-dark);
  font-weight: 500;
}

.story-lead-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 90%;
}

.story-emotional-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-emotional-bullets li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
}

.bullet-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(201, 154, 46, 0.5);
}

/* Overlapping Visuals */
.story-visual-overlap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.story-img-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.04);
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.story-img-front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  z-index: 2;
  border: 4px solid var(--white);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.story-img-back img, .story-img-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float-subtle {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes float-subtle-reverse {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(15px) rotate(-1deg); }
}

@media (max-width: 991px) {
  .story-visual-overlap {
    min-height: 400px;
    margin-top: 3rem;
  }
}

/* ============================================================
   PREMIUM UI REFINEMENTS (Micro-interactions)
   ============================================================ */
/* Button Hover Lift */
.btn {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast) !important;
}
.btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}
.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25) !important;
}

/* Image Hover Zoom */
/* Target images inside cards, articles, and figures that don't already have complex transforms */
article img:not(.review-avatar),
.card img,
figure img {
  transition: transform var(--transition-slow) !important;
}
article:hover img:not(.review-avatar),
.card:hover img,
figure:hover img {
  transform: scale(1.03) !important;
}

/* Fix any paragraphs inside centered containers to have auto margin so they remain centered despite max-width */
.section-header p,
.desire-content p,
.story-copy p {
  margin-inline: auto;
}
.story-copy p {
  margin-inline: 0; /* Keep left aligned for story section */
}


/* ============================================================
   PREMIUM HORIZONTAL GRID
   ============================================================ */
.premium-flights-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 1140px;
  margin-inline: auto;
  padding-block: 2rem;
}

.premium-flight-card {
  width: calc(33.333% - 1.34rem);
  min-width: 320px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
  position: relative;
}

@media (max-width: 1060px) {
  .premium-flight-card {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 767px) {
  .premium-flight-card {
    width: 100%;
  }
}

.premium-flight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.04);
}

.premium-flight-card.featured {
  transform: scale(1.05);
  box-shadow: 0 40px 80px rgba(0,0,0,0.04);
  border: 1px solid rgba(201,154,46,0.12);
  z-index: 2;
}
.premium-flight-card.featured:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 40px 80px rgba(201,154,46,0.08);
}

.premium-featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-dark);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.premium-flight-duration {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  background: rgba(255,195,0,0.92);
  color: #0d0b08;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.275rem 0.625rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.premium-flight-duration i { font-size: 0.625rem; }

.premium-flight-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.premium-flight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.premium-flight-card:hover .premium-flight-img img {
  transform: scale(1.04);
}

.premium-flight-content {
  padding: 1.25rem 1.25rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  align-items: center;
}

.premium-flight-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}

.premium-flight-desc {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.premium-flight-price {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-top: auto;
  margin-bottom: 0.85rem;
}
.premium-price-note {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  font-weight: 500;
}

.premium-flight-cta {
  width: 100%;
  padding-block: 0.45rem; padding-inline: 1.5rem;
  font-size: 0.875rem;
}

.premium-flight-card:not(.featured) {
  opacity: 0.8;
  filter: grayscale(15%);
  transition: all var(--transition-base);
}
.premium-flight-card:not(.featured):hover {
  opacity: 1;
  filter: grayscale(0%);
}

h1, h2, h3, .hero-title, .story-headline-massive, .premium-flight-title {
  letter-spacing: -0.03em !important;
}

/* Premium Hero CTAs */
.hero-ctas .btn {
  padding: 0.55rem 2.4rem !important;
}
.hero-ctas .btn-primary {
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.08) !important;
}
.hero-ctas .btn-primary:hover {
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.15) !important;
}
.hero-ctas .btn-outline {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}
.hero-ctas .btn-outline:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
}

/* Navbar CTA Refinement */
.navbar-actions .btn {
  padding: 0.45rem 1.4rem !important;
  font-size: 0.75rem !important;
  border-radius: 9999px !important;
  height: auto !important;
}

@keyframes premium-reveal-up {
  0% { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}


/* ============================================================
   TRANSITION DIVIDER
   ============================================================ */
.transition-divider {
  position: relative;
  width: 100%;
  height: 64px;
  background: linear-gradient(to bottom, rgba(7,7,9,0.08) 0%, rgba(245,244,240,0.60) 60%, #F5F4EF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.transition-microcopy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  margin-top: 30px;
}

/* ════════════════════════════════════════════════════════════
   Booking Strip — bk-*
   ════════════════════════════════════════════════════════════ */
.bk-wrap {
  background: linear-gradient(to bottom, #E9E6DD 0%, #F0EDE4 100%);
  padding: 0 2rem 3rem;
}
.bk-strip {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 18px 52px rgba(0,0,0,.10);
  border: 1px solid rgba(7,7,9,.06);
  padding: 1.875rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1px 1fr 1px auto;
  align-items: center;
  gap: 0 2.5rem;
}
.bk-vline {
  align-self: stretch;
  width: 1px;
  background: rgba(7,7,9,.07);
  margin-block: .25rem;
}
.bk-section-title {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(7,7,9,.38);
  margin-bottom: .75rem;
}

/* Passenger selector */
.bk-pax-row {
  display: flex;
  gap: .5rem;
}
.bk-pax-btn {
  width: 3rem;
  height: 3rem;
  border-radius: .875rem;
  border: 1.5px solid rgba(7,7,9,.10);
  background: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(7,7,9,.50);
  cursor: pointer;
  transition:
    background 180ms cubic-bezier(0.34,1.56,0.64,1),
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 200ms cubic-bezier(0.34,1.56,0.64,1);
}
.bk-pax-btn:hover:not(.active) {
  border-color: rgba(7,7,9,.22);
  color: #070709;
  background: rgba(7,7,9,.03);
  transform: translateY(-1px);
}
.bk-pax-btn.active {
  background: #FFD700;
  border-color: #D4A800;
  color: #070709;
  box-shadow: 0 4px 18px rgba(255,215,0,.42);
  transform: translateY(-2px) scale(1.05);
}

/* Price columns */
.bk-price-cols {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: .375rem;
}
.bk-price-col { flex: 1; min-width: 0; }
.bk-price-sep {
  font-size: 1.25rem;
  color: rgba(7,7,9,.18);
  font-weight: 300;
  flex-shrink: 0;
}

/* Animated amount */
.bk-amount {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.75rem;
  color: #070709;
  letter-spacing: -0.03em;
  line-height: 1;
  overflow: hidden;
  height: 1em;
  position: relative;
}
.bk-amount-inner {
  display: block;
  transition:
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity   180ms ease;
}
.bk-amount-inner.bk-exit  { transform: translateY(-110%); opacity: 0; }
.bk-amount-inner.bk-enter { transform: translateY(110%);  opacity: 0; }
.bk-note {
  font-size: .8125rem;
  color: rgba(7,7,9,.38);
}
.bk-savings { color: #16A34A; font-weight: 700; }

/* CTA */
.bk-cta-section { text-align: center; }
.bk-cta {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: #FFD700;
  color: #070709;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .9375rem;
  padding: .9375rem 1.875rem;
  border-radius: 9999px;
  box-shadow: 0 6px 24px rgba(255,215,0,.38);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.bk-cta:hover {
  background: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,215,0,.48);
}
.bk-trust-row {
  display: flex;
  gap: .75rem;
  justify-content: center;
  margin-top: .625rem;
  flex-wrap: wrap;
}
.bk-trust-row span {
  font-size: .75rem;
  color: rgba(7,7,9,.40);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.bk-trust-row i { color: #B89200; font-size: .625rem; }

/* Fixed-mode (casal/VIP) */
.bk-fixed-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #FFFBEE;
  border: 1px solid rgba(184,146,0,.2);
  border-radius: 9999px;
  padding: .5rem 1.125rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .875rem;
  color: #7A5A00;
  margin-bottom: .25rem;
}

/* Responsive */
@media (max-width: 860px) {
  .bk-wrap { padding: 0 1.25rem 2rem; }
  .bk-strip {
    grid-template-columns: 1fr;
    gap: 1.375rem 0;
    padding: 1.5rem;
  }
  .bk-vline { width: 100%; height: 1px; align-self: auto; margin-block: 0; }
  .bk-cta-section { text-align: left; }
  .bk-trust-row { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .bk-pax-btn { width: 2.75rem; height: 2.75rem; font-size: .9375rem; }
  .bk-amount { font-size: 1.5rem; }
  .bk-cta { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   Gallery Premium — pg-*
   ════════════════════════════════════════════════════════════ */
.pg-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: .625rem;
  height: clamp(320px, 38vw, 480px);
  margin-bottom: 2.5rem;
  border-radius: 1.125rem;
  overflow: hidden;
}
.pg-item {
  position: relative;
  overflow: hidden;
  border-radius: .875rem;
  background: #EDECE8;
}
.pg-main { grid-row: 1 / 3; }
.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 650ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pg-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,9,.28) 0%, rgba(7,7,9,.04) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 380ms ease;
  pointer-events: none;
}
.pg-item:hover::after { opacity: 1; }
.pg-item:hover img { transform: scale(1.055); }

@media (max-width: 680px) {
  .pg-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 160px 160px;
    height: auto;
    border-radius: .875rem;
  }
  .pg-main { grid-row: auto; }
}

/* ════════════════════════════════════════════════════════════
   Booking Card Premium — bc-*
   ════════════════════════════════════════════════════════════ */

/* Desktop card */
.bc-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.875rem;
  border: 1px solid rgba(7,7,9,.07);
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 16px 48px rgba(0,0,0,.10);
  position: sticky;
  top: 5.5rem;
}

.bc-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: #FFFBEE;
  color: #7A5A00;
  font-family: var(--font-heading);
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 9999px;
  margin-bottom: 1.125rem;
}

.bc-price-label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(7,7,9,.38);
  margin-bottom: .2rem;
}
.bc-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.375rem;
  color: #070709;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: .25rem;
}
.bc-per {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(7,7,9,.38);
}
.bc-pix-note {
  font-size: .8125rem;
  color: rgba(7,7,9,.38);
}

.bc-divider {
  height: 1px;
  background: rgba(7,7,9,.07);
  margin-block: 1.125rem;
}

/* Specs */
.bc-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
}
.bc-spec {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.bc-spec-icon {
  width: 2rem;
  height: 2rem;
  background: #FFFBEE;
  border-radius: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B89200;
  font-size: .8125rem;
  flex-shrink: 0;
}
.bc-spec-value {
  display: block;
  font-weight: 700;
  font-size: .875rem;
  color: #070709;
  line-height: 1.1;
}
.bc-spec-label {
  display: block;
  font-size: .625rem;
  color: rgba(7,7,9,.4);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Highlights */
.bc-highlights {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.bc-hl {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .8125rem;
  color: rgba(7,7,9,.62);
  font-weight: 500;
}
.bc-hl i {
  width: 1.25rem;
  height: 1.25rem;
  background: #FFFBEE;
  border-radius: .375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B89200;
  font-size: .5625rem;
  flex-shrink: 0;
}

/* CTA */
.bc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  background: #FFD700;
  color: #070709;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .9375rem;
  padding: 1rem;
  border-radius: 9999px;
  margin-top: 1.375rem;
  margin-bottom: .625rem;
  box-shadow: 0 6px 24px rgba(255,215,0,.38);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  text-decoration: none;
}
.bc-cta:hover {
  background: #E6C200;
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(255,215,0,.48);
}
.bc-response {
  text-align: center;
  font-size: .75rem;
  color: rgba(7,7,9,.35);
  margin: 0;
}

/* Other flights */
.bc-other-flights {
  margin-top: 1rem;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.25rem 1.375rem;
  border: 1px solid rgba(7,7,9,.07);
}
.bc-other-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .6875rem;
  color: rgba(7,7,9,.38);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.bc-other-link {
  display: flex;
  align-items: center;
  padding: .575rem 0;
  border-bottom: 1px solid rgba(7,7,9,.06);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .8125rem;
  color: rgba(7,7,9,.62);
  transition: color 150ms ease;
  text-decoration: none;
}
.bc-other-link:last-child { border-bottom: none; padding-bottom: 0; }
.bc-other-link:hover { color: #070709; }
.bc-other-price {
  margin-left: auto;
  font-weight: 700;
  color: #B89200;
  font-size: .8125rem;
  padding-left: .5rem;
  flex-shrink: 0;
}

/* ── Mobile sticky bar ─────────────────────────────────────── */
.bc-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: #fff;
  border-top: 1px solid rgba(7,7,9,.09);
  box-shadow: 0 -8px 32px rgba(0,0,0,.12);
  padding: .875rem 1.25rem;
  padding-bottom: calc(.875rem + env(safe-area-inset-bottom, 0px));
  align-items: center;
  gap: 1rem;
}
.bc-mobile-info { flex: 1; min-width: 0; }
.bc-mobile-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.375rem;
  color: #070709;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bc-mobile-sub {
  font-size: .75rem;
  color: rgba(7,7,9,.42);
  margin-top: .1rem;
}
.bc-mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #FFD700;
  color: #070709;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .9375rem;
  padding: .875rem 1.375rem;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(255,215,0,.38);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.bc-mobile-cta:hover { background: #E6C200; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .bc-card { display: none; }
  .bc-other-flights { display: none; }
  .bc-mobile-bar { display: flex; }
  .flight-detail-layout { padding-bottom: calc(4rem + env(safe-area-inset-bottom, 64px)); }
}
@media (min-width: 1024px) {
  .bc-mobile-bar { display: none !important; }
}

/* ════════════════════════════════════════════════════════════
   Flight Hero Split — componente compartilhado entre voos
   ════════════════════════════════════════════════════════════ */
.fh-split {
  background: #E9E6DD;
  padding: 4.75rem 2rem 4rem;
  overflow: hidden;
  position: relative;
  /* Tokens de cor: cada página sobrescreve via <style> no head */
  --fh-accent:      #FFD700;
  --fh-accent-dark: #B89200;
  --fh-accent-hov:  #E6C200;
  --fh-shadow:      rgba(255,215,0,.32);
  --fh-shadow-hov:  rgba(255,215,0,.48);
  --fh-badge-fg:    #070709;
}

/* Vinheta premium nas bordas da seção hero */
.fh-split::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 90% at 50% 50%, transparent 42%, rgba(0,0,0,.11) 100%),
    radial-gradient(ellipse 55% 70% at 88% 50%, rgba(255,210,80,.06) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 0%  50%, rgba(0,0,0,.04) 0%, transparent 50%);
}

/* Blob atmosférico — profundidade dourada atrás da imagem */
.fh-split::after {
  content: '';
  position: absolute;
  width: 46%;
  height: 68%;
  right: 2%;
  top: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,50,.08) 0%, transparent 70%);
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}

.fh-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Badge ── */
.fh-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--fh-accent);
  color: var(--fh-badge-fg);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .375rem .9rem;
  border-radius: 9999px;
  margin-bottom: 1.75rem;
}

/* ── Title ── */
.fh-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.75rem, 4.5vw, 4.25rem);
  line-height: 1.0;
  color: #070709;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.fh-title em {
  font-style: normal;
  color: var(--fh-accent-dark);
}

/* ── Subheadline ── */
.fh-sub {
  font-size: 1.0625rem;
  color: rgba(7,7,9,.5);
  font-weight: 400;
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 1.75rem;
}

/* ── Info line ── */
.fh-info {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.fh-info-item {
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(7,7,9,.55);
  display: flex;
  align-items: center;
  gap: .325rem;
}
.fh-info-item i { color: var(--fh-accent-dark); font-size: .75rem; }
.fh-info-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(7,7,9,.2);
  flex-shrink: 0;
}

/* ── Price ── */
.fh-price-block { margin-bottom: 2rem; }
.fh-price-from {
  font-size: .6875rem;
  color: rgba(7,7,9,.38);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .2rem;
}
.fh-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.875rem;
  color: #070709;
  letter-spacing: -0.025em;
  line-height: 1;
}
.fh-price-unit {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(7,7,9,.38);
}
.fh-price-note {
  font-size: .8125rem;
  color: rgba(7,7,9,.38);
  margin-top: .3rem;
}

/* ── CTAs ── */
.fh-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.fh-cta {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: var(--fh-accent);
  color: var(--fh-badge-fg);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .9375rem;
  padding: .9375rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 6px 28px var(--fh-shadow);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.fh-cta:hover {
  background: var(--fh-accent-hov);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px var(--fh-shadow-hov);
}
.fh-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(7,7,9,.58);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .875rem;
  padding: .9375rem 1.375rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(7,7,9,.14);
  transition: all 180ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.fh-cta-ghost:hover {
  border-color: rgba(7,7,9,.32);
  color: #070709;
  background: rgba(7,7,9,.04);
}

/* ── Right — image ── */
.fh-right { position: relative; }

.fh-img-wrap {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 48px 120px rgba(0,0,0,.26),
    0 16px 40px rgba(0,0,0,.16),
    0 0 0 1px rgba(255,255,255,.07);
  transform: translateZ(0); /* GPU layer */
}

/* Vignette interna — bordas da imagem */
.fh-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 130% 110% at 50% 50%, transparent 28%, rgba(0,0,0,.52) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.18) 0%, transparent 22%);
  pointer-events: none;
}

/* Acento dourado + fade lateral esquerdo */
.fh-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top,  rgba(255,190,0,.16) 0%, transparent 30%),
    linear-gradient(to right, rgba(0,0,0,.12) 0%, transparent 20%);
  pointer-events: none;
}

/* Parallax wrapper — JS move este, CSS anima img */
.fh-img-parallax {
  position: absolute;
  inset: -8% 0;  /* 8% extra topo+base p/ travel */
  will-change: transform;
}

.fh-img-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  animation: fh-ken-burns 16s ease-in-out infinite alternate;
  will-change: transform;
  filter: saturate(1.22) contrast(1.07) brightness(1.02);
}

@keyframes fh-ken-burns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.042); }
}

/* ── Rating card (floating) ── */
.fh-rating-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 1rem;
  padding: .875rem 1.125rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.13);
  min-width: 148px;
  animation: fh-card-glow 4s ease-in-out infinite;
}

@keyframes fh-card-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(0,0,0,.13); }
  50%       { box-shadow: 0 8px 36px rgba(0,0,0,.22), 0 0 28px rgba(255,215,0,.16); }
}
.fh-rating-stars {
  display: flex;
  align-items: center;
  gap: .375rem;
  margin-bottom: .15rem;
}
.fh-rating-score {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.125rem;
  color: #070709;
  line-height: 1;
}
.fh-rating-icons {
  display: flex;
  gap: .1rem;
  color: #F5A623;
  font-size: .6875rem;
}
.fh-rating-count {
  font-size: .75rem;
  color: rgba(7,7,9,.45);
  margin-bottom: .5rem;
}
.fh-rating-tag {
  font-size: .6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--fh-accent-dark);
  background: rgba(7,7,9,.06);
  padding: .2rem .65rem;
  border-radius: 9999px;
  display: inline-block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .fh-split { padding: 4rem 1.25rem 3rem; }
  .fh-split-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .fh-right { order: -1; }
  .fh-img-wrap { aspect-ratio: 16 / 10; border-radius: 1.25rem; box-shadow: 0 24px 60px rgba(0,0,0,.18); }
  .fh-img-parallax { inset: -5% 0; }
  .fh-title { font-size: clamp(2.25rem, 7vw, 3rem); }
  .fh-price { font-size: 2.25rem; }
  .fh-rating-card { bottom: 1rem; left: 1rem; }
}
@media (max-width: 480px) {
  .fh-actions { flex-direction: column; align-items: stretch; }
  .fh-cta, .fh-cta-ghost { text-align: center; justify-content: center; }
  .fh-info { gap: .4rem; }
}

/* Hero editorial typography override */
.hero-content {
  align-items: flex-start;
  padding-top: clamp(6.85rem, 11vh, 8.3rem);
  padding-bottom: 6.35rem;
}

.hero-editorial {
  position: relative;
  z-index: 2;
  isolation: isolate;
  width: min(100%, 28.75rem);
  max-width: 28.75rem;
  padding: 1.05rem 0 1.2rem clamp(0rem, 2.3vw, 1.45rem);
  display: grid;
  justify-items: start;
  align-content: start;
  row-gap: 0;
}

.hero-editorial::before {
  content: "";
  position: absolute;
  inset: -1.9rem -2rem -1.7rem -3rem;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(106deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.10) 34%, rgba(255,255,255,0.04) 62%, rgba(255,255,255,0.00) 100%),
    radial-gradient(circle at 24% 28%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.07) 40%, rgba(255,255,255,0.00) 72%),
    radial-gradient(circle at 32% 74%, rgba(255,195,0,0.06) 0%, rgba(255,195,0,0.00) 42%);
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 52px rgba(15,17,21,0.08), inset 0 1px 0 rgba(255,255,255,0.20);
  backdrop-filter: blur(4px) saturate(110%);
  -webkit-backdrop-filter: blur(4px) saturate(110%);
  opacity: 0.96;
}

.hero-kicker {
  margin-bottom: 1rem;
  color: rgba(23,23,23,0.62);
  opacity: 0.78;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 7.4ch;
  margin-bottom: 0.62rem;
  line-height: 0.84 !important;
  letter-spacing: -0.065em !important;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
  text-wrap: balance;
  transform-origin: left center;
}

.hero-title-line-sans {
  font-family: "Plus Jakarta Sans", var(--font-heading), system-ui, sans-serif;
  color: rgba(7,7,9,0.88);
  text-shadow: 0 12px 24px rgba(255,255,255,0.14);
}

.hero-title-line-intro {
  margin-left: 0.06rem;
  font-size: clamp(1.55rem, 2.45vw, 2.3rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.058em;
  color: rgba(7,7,9,0.76);
}

.hero-title-line-focus {
  margin-top: -0.04em;
  font-size: clamp(4.35rem, 7.8vw, 6.85rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.09em;
  color: rgba(7,7,9,0.95);
  text-shadow:
    0 14px 30px rgba(255,255,255,0.10),
    0 18px 34px rgba(15,17,21,0.05);
}

.hero-title-line-serif {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  margin-top: -0.12em;
  margin-left: 0.14rem;
  font-size: clamp(3.95rem, 7.1vw, 6.55rem);
  font-weight: 600;
  line-height: 0.72;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #7d5a00 0%, #c89605 42%, #f0c845 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 30px rgba(255,255,255,0.08), 0 20px 40px rgba(17,24,39,0.06);
  filter: drop-shadow(0 12px 24px rgba(255,255,255,0.10));
}

.hero-title-line-ending {
  font-family: "Plus Jakarta Sans", var(--font-heading), system-ui, sans-serif;
  margin-top: -0.08em;
  margin-left: 0.2rem;
  font-size: clamp(3.15rem, 5.95vw, 5.2rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: var(--ink);
  text-shadow: 0 12px 24px rgba(255,255,255,0.14), 0 1px 0 rgba(255,255,255,0.32);
}

.hero-subtitle {
  max-width: 22.9rem;
  margin-bottom: 1rem;
  line-height: 1.52;
}

.hero-ctas {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-bottom: 0.8rem;
}

.hero-ctas .btn {
  min-height: 56px;
  padding: 0.98rem 1.5rem;
}

.hero-trust {
  max-width: 24rem;
}

@media (max-width: 1023px) {
  .hero-content {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }

  .hero-editorial {
    width: min(100%, 26.5rem);
    max-width: 26.5rem;
    padding-left: 0.15rem;
  }

  .hero-editorial::before {
    inset: -1.65rem -1.35rem -1.45rem -1.8rem;
    backdrop-filter: blur(3.5px) saturate(108%);
    -webkit-backdrop-filter: blur(3.5px) saturate(108%);
  }

  .hero-title {
    max-width: 7.15ch;
    gap: 0;
  }

  .hero-title-line-intro {
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  }

  .hero-title-line-focus {
    font-size: clamp(3.65rem, 7.9vw, 5.2rem);
  }

  .hero-title-line-serif {
    font-size: clamp(3.25rem, 8.2vw, 5.45rem);
  }

  .hero-title-line-ending {
    font-size: clamp(2.55rem, 6.2vw, 4.15rem);
  }

  .hero-subtitle {
    max-width: 20.8rem;
  }

  .hero-ctas {
    width: auto;
    align-items: flex-start;
    gap: 0.68rem;
  }
}

@media (max-width: 767px) {
  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 4.8rem;
  }

  .hero-editorial {
    max-width: 100%;
    width: 100%;
    padding: 0.1rem 0 0.25rem;
  }

  .hero-editorial::before {
    inset: -0.9rem -0.65rem -0.85rem -0.8rem;
    border-radius: 1.45rem;
    backdrop-filter: blur(2.5px) saturate(106%);
    -webkit-backdrop-filter: blur(2.5px) saturate(106%);
    opacity: 0.94;
  }

  .hero-kicker {
    margin-bottom: 0.9rem;
  }

  .hero-title {
    max-width: 7.2ch;
    margin-bottom: 0.66rem;
    line-height: 0.86 !important;
  }

  .hero-title-line-intro {
    font-size: clamp(1.18rem, 5.5vw, 1.5rem);
    line-height: 0.95;
  }

  .hero-title-line-focus {
    font-size: clamp(3rem, 13vw, 4.2rem);
  }

  .hero-title-line-serif {
    margin-top: -0.1em;
    margin-left: 0.08rem;
    font-size: clamp(2.95rem, 12vw, 4.15rem);
    line-height: 0.76;
  }

  .hero-title-line-ending {
    margin-left: 0.1rem;
    font-size: clamp(2.15rem, 9.6vw, 3rem);
    line-height: 0.86;
  }

  .hero-subtitle {
    max-width: 18.5rem;
    margin-bottom: 0.95rem;
    line-height: 1.5;
  }

  .hero-ctas {
    gap: 0.65rem;
    margin-bottom: 0.74rem;
  }

  .hero-trust {
    max-width: 21.5rem;
  }
}

@keyframes heroLetterEnter {
  0%   { opacity: 0; transform: translateY(0.5em); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-title {
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
  font-kerning: normal;
}

.hero-title-line {
  position: relative;
}

.hero-title-line-sans {
  color: rgba(7,7,9,0.90);
  text-shadow:
    0 10px 24px rgba(255,255,255,0.14),
    0 1px 0 rgba(255,255,255,0.28);
}

.hero-title-line-serif {
  color: #be8d05;
  background: linear-gradient(135deg, #7b5900 0%, #b98500 34%, #f0c94f 72%, #fff0a6 100%);
  background-size: 140% 140%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    0 12px 30px rgba(255,255,255,0.08),
    0 16px 32px rgba(17,24,39,0.06);
  filter: drop-shadow(0 10px 18px rgba(255,214,87,0.08));
}

.hero-title-line-ending {
  color: #111111;
  background: linear-gradient(180deg, #111111 0%, #1d1d1d 68%, #7d5b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    0 12px 24px rgba(255,255,255,0.12),
    0 1px 0 rgba(255,255,255,0.34);
}

.hero-title-overlay {
  position: absolute;
  inset: 0;
  display: block;
  white-space: pre;
  pointer-events: none;
}

.hero-title-line-sans .hero-title-overlay {
  color: rgba(7,7,9,0.92);
  text-shadow:
    0 8px 20px rgba(255,255,255,0.12),
    0 0 14px rgba(255,255,255,0.05);
}

.hero-title-line-serif .hero-title-overlay {
  color: rgba(196,144,0,0.92);
  text-shadow:
    0 10px 22px rgba(255,255,255,0.10),
    0 0 16px rgba(255,214,87,0.08);
}

.hero-title-line-ending .hero-title-overlay {
  color: rgba(17,17,17,0.94);
  text-shadow:
    0 8px 20px rgba(255,255,255,0.10),
    0 0 14px rgba(125,91,0,0.06);
}

.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  will-change: transform, opacity;
  animation: heroLetterEnter 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-letter-space {
  width: 0.26em;
}

/* Premium trust stats — gradiente ponte do hero */
.stats-bar {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    #F4F2ED 0%,
    #F8F7F3 18%,
    #FAFAF8 40%,
    #FFFFFF 66%
  );
  padding: 3.25rem 0 4.25rem;
  overflow: visible;
}

.stats-bar .container {
  max-width: 1260px;
}

.stats-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 2rem, 960px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201,154,46,0.24) 22%,
    rgba(201,154,46,0.40) 50%,
    rgba(201,154,46,0.24) 78%,
    transparent 100%
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.stat-item {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  justify-items: start;
  min-height: 0;
  height: 100%;
  min-width: 0;
  padding: 1.5rem 1.5rem 1.375rem;
  text-align: left;
  border: 1px solid rgba(201,154,46,0.10);
  border-radius: 1.25rem;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.88) 0%,
    rgba(252,250,246,0.82) 100%
  );
  box-shadow:
    0 2px 16px rgba(0,0,0,0.04),
    0 1px 0 rgba(255,255,255,0.92) inset;
  backdrop-filter: blur(8px) saturate(115%);
  -webkit-backdrop-filter: blur(8px) saturate(115%);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,154,46,0.30), transparent);
  pointer-events: none;
}

.stat-item::after {
  display: none;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201,154,46,0.20);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.07),
    0 1px 0 rgba(255,255,255,0.92) inset;
}

.stat-icon,
.stat-number,
.stat-label {
  position: relative;
  z-index: 1;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.95rem;
  height: 1.95rem;
  margin-bottom: 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255,195,0,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.74) 100%);
  color: #b48100;
  box-shadow: 0 8px 20px rgba(255,195,0,0.08);
  font-size: 0.76rem;
  opacity: 1;
  transform: none;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease;
}

body.js-reveal .stat-item:not(.visible) .stat-icon {
  opacity: 0.68;
  transform: translateY(12px) scale(0.97);
}

/* stat-number: visível por padrão; animação só com .visible */
.stat-number {
  display: block;
  min-width: 100%;
  padding-block: 0.08em 0.12em;
  font-family: var(--font-heading);
  font-size: clamp(3.45rem, 6vw, 5.6rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.075em;
  margin-bottom: 0;
  background: linear-gradient(180deg, #0f1115 0%, #17181c 62%, #8e6900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-rendering: optimizeLegibility;
  font-feature-settings: "tnum" 1, "kern" 1;
  opacity: 1;
  transform: none;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease;
}

/* Só inicia oculto quando JS marcou o item como pronto para animar */
body.js-reveal .stat-item:not(.visible) .stat-number {
  opacity: 0.08;
  transform: translateY(14px) scale(0.985);
}

.stat-label {
  width: 100%;
  max-width: 13.5ch;
  margin-top: auto;
  padding-top: 0.85rem;
  color: rgba(17,24,39,0.58);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  line-height: 1.42;
  border-top: 1px solid rgba(17,24,39,0.08);
  opacity: 1;
  transform: none;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease;
}

body.js-reveal .stat-item:not(.visible) .stat-label {
  opacity: 0.6;
  transform: translateY(16px);
}

.stat-item.visible {
  animation: statCardSettle 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stat-item:nth-child(2).visible {
  animation-delay: 0.06s;
}

.stat-item:nth-child(3).visible {
  animation-delay: 0.12s;
}

.stat-item:nth-child(4).visible {
  animation-delay: 0.18s;
}

.stat-item.visible .stat-icon,
.stat-item.visible .stat-number,
.stat-item.visible .stat-label {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-item.visible .stat-icon {
  transition-delay: 0.06s;
}

.stat-item.visible .stat-number {
  transition-delay: 0.12s;
}

.stat-item.visible .stat-label {
  transition-delay: 0.18s;
}

@media (min-width: 768px) {
  .stats-bar {
    padding: 2.95rem 0 4.25rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .stat-item {
    min-height: 14.4rem;
    padding: 1.55rem 1.55rem 1.35rem;
  }
}

@media (min-width: 1100px) {
  .stats-bar {
    padding: 3.1rem 0 4.4rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .stat-item {
    min-height: 15rem;
    padding: 1.65rem 1.6rem 1.45rem;
  }
}

@media (max-width: 767px) {
  .stats-bar {
    padding: 2rem 0 3rem;
  }

  .stats-grid {
    gap: 0.9rem;
  }

  .stat-item {
    padding: 1.2rem 1.15rem 1.12rem;
    border-radius: 20px;
  }

  .stat-icon {
    margin-bottom: 0.75rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    max-width: none;
    font-size: 0.79rem;
    padding-top: 0.78rem;
  }
}

@keyframes statCardSettle {
  0% {
    transform: translateY(24px) scale(0.985);
    box-shadow: 0 8px 18px rgba(15,17,21,0.03), 0 1px 0 rgba(255,255,255,0.62) inset;
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 36px rgba(15,17,21,0.05), 0 1px 0 rgba(255,255,255,0.72) inset;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-item,
  .stat-icon,
  .stat-number,
  .stat-label {
    transition: none;
  }

  .stat-icon,
  .stat-number,
  .stat-label {
    opacity: 1;
    transform: none;
  }

  .stat-item.visible {
    animation: none;
  }
}

/* Hero navbar luxury refinement */
.navbar {
  isolation: isolate;
  overflow: visible;
  top: 1.2rem;
  max-width: 1120px;
  min-height: 54px;
  padding: 0.38rem 0.75rem 0.38rem 0.9rem;
  gap: 0.7rem;
  border-radius: 18px;
}

.navbar-logo img {
  height: 40px;
}

.navbar-nav {
  gap: 1.4rem;
}

.nav-link {
  padding: 0.42rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.navbar-actions {
  gap: 0.38rem;
}

.lang-btn {
  padding: 0.26rem 0.48rem;
}

.hamburger {
  width: 36px;
  height: 36px;
  gap: 4px;
}

.hamburger span {
  width: 16px;
}

.navbar::before,
.navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.navbar::before {
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 32%, rgba(255,255,255,0.015) 100%);
}

.navbar::after {
  inset: -52% auto auto -10%;
  width: 38%;
  height: 170%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.00) 74%);
  transform: translate3d(-8%, 0, 0);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.76);
  border-color: rgba(17,24,39,0.06);
  box-shadow:
    0 14px 34px rgba(15,17,21,0.07),
    0 1px 0 rgba(255,255,255,0.72) inset;
  backdrop-filter: blur(16px) saturate(155%);
  -webkit-backdrop-filter: blur(16px) saturate(155%);
}

.navbar:not(.scrolled) {
  background: linear-gradient(180deg, rgba(15,18,22,0.24) 0%, rgba(15,18,22,0.14) 100%);
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    0 16px 40px rgba(7,10,13,0.18),
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 0 0 1px rgba(255,255,255,0.025);
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
}

.navbar:not(.scrolled)::before,
.navbar:not(.scrolled)::after {
  opacity: 1;
}

.navbar:not(.scrolled)::after {
  transform: translate3d(0, 0, 0);
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.012em;
}

.navbar:not(.scrolled) .nav-link::after {
  width: calc(100% - 1.35rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,195,0,0.00) 0%, rgba(255,195,0,0.78) 50%, rgba(255,195,0,0.00) 100%);
  box-shadow: none;
  opacity: 0.82;
}

.navbar:not(.scrolled) .nav-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), inset 0 0 0 1px rgba(255,255,255,0.03);
}

.navbar:not(.scrolled) .nav-link.active {
  color: #ffd24a;
  background: rgba(255,195,0,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 0 0 1px rgba(255,195,0,0.12);
}

.navbar:not(.scrolled) .navbar-actions {
  gap: 0.34rem;
}

.navbar:not(.scrolled) .lang-btn {
  min-width: 30px;
  justify-content: center;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
}

.navbar:not(.scrolled) .lang-btn:hover,
.navbar:not(.scrolled) .lang-btn.active {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,195,0,0.24);
  color: #ffd24a;
  transform: translateY(-1px);
}

.navbar:not(.scrolled) .navbar-actions .btn {
  background: #FFC300;
  border: 1px solid rgba(148,109,0,0.16);
  color: #171717 !important;
  box-shadow:
    0 10px 24px rgba(255,195,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.42);
}

.navbar:not(.scrolled) .navbar-actions .btn:hover {
  box-shadow:
    0 14px 30px rgba(255,195,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.50);
}

.navbar:not(.scrolled) .hamburger {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.navbar:not(.scrolled) .hamburger:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,195,0,0.22);
}

.navbar:not(.scrolled) .nav-dropdown-menu {
  background: rgba(11,14,17,0.58);
  border-color: rgba(255,255,255,0.10);
  box-shadow:
    0 20px 52px rgba(5,8,11,0.28),
    0 1px 0 rgba(255,255,255,0.06) inset;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.navbar:not(.scrolled) .nav-dropdown-item {
  color: rgba(255,255,255,0.78);
}

.navbar:not(.scrolled) .nav-dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff4c8;
}

.navbar:not(.scrolled) .nav-dropdown-item .duration {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.62);
}

@media (max-width: 767px) {
  .navbar,
  .navbar:not(.scrolled) {
    top: 0.55rem;
    min-height: 52px;
    padding: 0.34rem 0.4rem 0.34rem 0.48rem;
    gap: 0.28rem;
    border-radius: 14px;
  }

  .navbar-logo img,
  .navbar:not(.scrolled) .navbar-logo img {
    height: 24px;
    max-width: 74px;
  }

  .navbar:not(.scrolled) {
    background: linear-gradient(180deg, rgba(15,18,22,0.30) 0%, rgba(15,18,22,0.18) 100%);
    backdrop-filter: blur(16px) saturate(155%);
    -webkit-backdrop-filter: blur(16px) saturate(155%);
    box-shadow:
      0 14px 30px rgba(7,10,13,0.16),
      0 1px 0 rgba(255,255,255,0.10) inset;
  }

  .navbar:not(.scrolled) .lang-btn {
    min-width: 0;
  }

  .lang-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
  }

  .hamburger {
    width: 34px;
    height: 34px;
  }

  .navbar-actions .btn {
    padding: 0.38rem 0.88rem !important;
    font-size: 0.72rem !important;
  }

  .navbar:not(.scrolled) .navbar-actions .btn {
    box-shadow:
      0 9px 22px rgba(255,195,0,0.18),
      inset 0 1px 0 rgba(255,255,255,0.38);
  }
}

/* Hero premium microinteractions */
.hero {
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  --hero-image-scale: 1.018;
  --hero-copy-x: 0px;
  --hero-copy-y: 0px;
  --hero-copy-opacity: 1;
  --hero-trust-y: 0px;
  --hero-scroll-y: 0px;
  --hero-scroll-opacity: 1;
}

.hero-slide img {
  transform: translate3d(var(--hero-image-x), var(--hero-image-y), 0) scale(var(--hero-image-scale));
  transition:
    transform 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
  will-change: transform, filter;
}

.hero-editorial {
  transform: translate3d(var(--hero-copy-x), var(--hero-copy-y), 0);
  opacity: var(--hero-copy-opacity);
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.85s ease;
  will-change: transform, opacity;
}

.hero-trust {
  transform: translate3d(0, var(--hero-trust-y), 0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-trust::before {
  /* heroTrustPulse removido — desnecessário e custoso */
}

.hero-scroll {
  transform: translate3d(-50%, var(--hero-scroll-y), 0);
  opacity: var(--hero-scroll-opacity);
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.hero.hero-motion .hero-kicker,
.hero.hero-motion .hero-title,
.hero.hero-motion .hero-subtitle,
.hero.hero-motion .hero-ctas,
.hero.hero-motion .hero-trust {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  filter: blur(5px);
}

.hero.hero-motion.motion-ready .hero-kicker,
.hero.hero-motion.motion-ready .hero-title,
.hero.hero-motion.motion-ready .hero-subtitle,
.hero.hero-motion.motion-ready .hero-ctas,
.hero.hero-motion.motion-ready .hero-trust {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition:
    opacity 860ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 960ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 860ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.hero-motion.motion-ready .hero-kicker {
  transition-delay: 120ms;
}

.hero.hero-motion.motion-ready .hero-title {
  transition-delay: 180ms;
}

.hero.hero-motion.motion-ready .hero-subtitle {
  transition-delay: 260ms;
}

.hero.hero-motion.motion-ready .hero-ctas {
  transition-delay: 340ms;
}

.hero.hero-motion.motion-ready .hero-trust {
  transition-delay: 430ms;
}

.hero.hero-motion.motion-ready .hero-trust {
  transform: translate3d(0, var(--hero-trust-y), 0);
}

.hero-ctas .btn {
  isolation: isolate;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    background 260ms ease,
    color 260ms ease,
    filter 260ms ease;
}

.hero-ctas .btn::after {
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.00) 70%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.hero-ctas .btn-primary::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,195,0,0.32) 0%, rgba(255,195,0,0.10) 36%, rgba(255,195,0,0.00) 72%);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-ctas .btn:hover::after {
  opacity: 1;
}

.hero-ctas .btn-primary:hover::before,
.hero-ctas .btn-primary:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.hero-ctas .btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 16px 36px rgba(255,195,0,0.24),
    0 8px 20px rgba(15,17,21,0.08),
    inset 0 1px 0 rgba(255,255,255,0.56);
  filter: saturate(1.02) brightness(1.015);
}

.hero-ctas .btn-outline:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.78);
  border-color: rgba(255,195,0,0.44);
  box-shadow:
    0 14px 30px rgba(15,17,21,0.08),
    inset 0 1px 0 rgba(255,255,255,0.62);
}

.stat-item.visible .stat-icon {
  animation: trustStatFloat 6.6s ease-in-out 1s infinite;
}

.stat-item.visible .stat-number {
  animation: trustStatDrift 6.8s ease-in-out 1.1s infinite;
}

.stat-item:nth-child(2).visible .stat-icon,
.stat-item:nth-child(2).visible .stat-number {
  animation-delay: 1.25s;
}

.stat-item:nth-child(3).visible .stat-icon,
.stat-item:nth-child(3).visible .stat-number {
  animation-delay: 1.4s;
}

.stat-item:nth-child(4).visible .stat-icon,
.stat-item:nth-child(4).visible .stat-number {
  animation-delay: 1.55s;
}

.stat-item::before {
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1);
  opacity: 0.9;
}

.stat-item:hover::before {
  opacity: 1;
  transform: scale(1.015);
}

.stat-item:hover .stat-icon {
  transform: translateY(-1px) scale(1.02);
}

.stat-item:hover .stat-number {
  transform: translateY(-1px) scale(1.008);
}

@keyframes heroTrustPulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(255,195,0,0.12);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(255,195,0,0.06);
    transform: scale(1.08);
  }
}

@keyframes trustStatFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.018);
  }
}

@keyframes trustStatDrift {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.01);
  }
}

@media (max-width: 767px) {
  .hero.hero-motion .hero-kicker,
  .hero.hero-motion .hero-title,
  .hero.hero-motion .hero-subtitle,
  .hero.hero-motion .hero-ctas,
  .hero.hero-motion .hero-trust {
    transform: translate3d(0, 11px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide img,
  .hero-editorial,
  .hero-trust,
  .hero-scroll,
  .hero-ctas .btn,
  .hero-ctas .btn::after,
  .stat-item.visible .stat-icon,
  .stat-item.visible .stat-number,
  .hero-trust::before {
    animation: none !important;
    transition: none !important;
  }

  .hero.hero-motion .hero-kicker,
  .hero.hero-motion .hero-title,
  .hero.hero-motion .hero-subtitle,
  .hero.hero-motion .hero-ctas,
  .hero.hero-motion .hero-trust {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ════════════════════════════════════════════════════════════
   ph-* — Premium Hero + Stats (redesign final)
   Máxima prioridade de cascata — NÃO alterar ordem.
   ════════════════════════════════════════════════════════════ */

/* ── Hero section ───────────────────────────────────────── */
.ph {
  position: relative;
  height: 100svh;
  min-height: 620px;
  max-height: 1000px;
  overflow: hidden;
  background: #0c0a07;
  isolation: isolate;
}

/* ── Background ── */
.ph-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ph-img {
  position: absolute;
  inset: -7% 0;
  will-change: transform;
}

.ph-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(1.18) contrast(1.08) brightness(0.84);
  animation: ph-ken 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes ph-ken {
  from { transform: scale(1.00); }
  to   { transform: scale(1.045); }
}

/* Vinheta radial — profundidade nas bordas */
.ph-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 130% 110% at 62% 50%,
    transparent 30%,
    rgba(0,0,0,.58) 100%
  );
  pointer-events: none;
}

/* Fade esquerdo — área de texto legível */
.ph-fade-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,10,7,0.94) 0%,
    rgba(12,10,7,0.75) 24%,
    rgba(12,10,7,0.32) 50%,
    rgba(12,10,7,0.00) 68%
  );
  pointer-events: none;
}

/* Fade inferior — âncora visual na base */
.ph-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(12,10,7,0.72) 0%, transparent 100%);
  pointer-events: none;
}

/* ── Content ── */
.ph-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-block: 6.5rem 5rem;
}

.ph-copy {
  max-width: 540px;
  padding-left: clamp(0.25rem, 3vw, 2rem);
}

/* Eyebrow */
.ph-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 1.625rem;
  animation: ph-up 1s 0.05s cubic-bezier(0.22,1,0.36,1) both;
}

.ph-eyebrow-rule {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,195,0,0.65);
  flex-shrink: 0;
}

/* Title composition */
.ph-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 1.625rem;
  max-width: 520px;
  animation: ph-up 1s 0.15s cubic-bezier(0.22,1,0.36,1) both;
}

/* Linha 1 — label contextual */
.ph-t-intro {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.1vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.48);
  line-height: 1.4;
  margin-bottom: 0.3em;
}

/* Linha 2 — palavra de impacto: maior mas harmônica */
.ph-t-hero {
  font-family: var(--font-heading);
  font-size: clamp(3.75rem, 7vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  color: #ffffff;
  display: block;
  margin-bottom: 0.18em;
}

/* Linha 3 — serif italic dourado */
.ph-t-serif {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #C99A00;
  margin-bottom: 0.1em;
}

/* Linha 4 — fechamento forte */
.ph-t-close {
  font-family: var(--font-heading);
  font-size: clamp(2.125rem, 4vw, 3.375rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: rgba(255,255,255,0.92);
}

/* Description */
.ph-desc {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.68;
  color: rgba(255,255,255,0.50);
  max-width: 340px;
  margin: 0 0 2rem;
  animation: ph-up 1s 0.28s cubic-bezier(0.22,1,0.36,1) both;
}

/* Actions */
.ph-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 1.875rem;
  animation: ph-up 1s 0.38s cubic-bezier(0.22,1,0.36,1) both;
}

.ph-cta {
  display: inline-flex;
  align-items: center;
  background: #FFC300;
  color: #0d0b08;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.9375rem 1.875rem;
  border-radius: 9999px;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 28px rgba(255,195,0,0.30);
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}
.ph-cta:hover {
  background: #FFD340;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,195,0,0.42);
}

.ph-cta-ghost {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.70);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.9375rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.16);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 200ms ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  white-space: nowrap;
}
.ph-cta-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.08);
}

/* Social proof */
.ph-proof {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.36);
  margin: 0;
  animation: ph-up 1s 0.48s cubic-bezier(0.22,1,0.36,1) both;
}

.ph-proof-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FFC300;
  box-shadow: 0 0 0 4px rgba(255,195,0,0.14);
  flex-shrink: 0;
}

/* Scroll hint */
.ph-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.ph-scroll-line {
  width: 1px;
  height: 40px;
  margin: 0 auto;
  background: linear-gradient(to bottom, transparent, rgba(255,195,0,0.50));
  animation: ph-pulse 2.4s ease-in-out infinite;
}

@keyframes ph-pulse {
  0%, 100% { opacity: 0.8; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.55); }
}

/* Entry animation */
@keyframes ph-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Garante que .stat-number dentro de .ph-stat nunca fique invisível */
.ph-stat .stat-number {
  opacity: 1 !important;
  transform: none !important;
  background: none !important;
  -webkit-text-fill-color: unset !important;
  color: #0d0b08;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .ph { max-height: none; height: 100svh; }

  .ph-fade-left {
    background: linear-gradient(
      to right,
      rgba(12,10,7,0.90) 0%,
      rgba(12,10,7,0.62) 48%,
      rgba(12,10,7,0.08) 100%
    );
  }

  .ph-img img { object-position: 68% center; }
  .ph-copy { max-width: 100%; padding-left: 0; }
  .ph-title { max-width: 100%; }
  .ph-t-intro { font-size: 0.75rem; letter-spacing: 0.10em; }
  .ph-t-hero  { font-size: clamp(3rem, 13vw, 4rem); }
  .ph-t-serif { font-size: clamp(1.125rem, 4.5vw, 1.5rem); }
  .ph-t-close { font-size: clamp(1.625rem, 6.5vw, 2.375rem); }
  .ph-desc { max-width: 100%; }
  .ph-actions { flex-direction: column; align-items: stretch; }
  .ph-cta, .ph-cta-ghost { text-align: center; justify-content: center; }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .ph-t-hero  { font-size: clamp(3.5rem, 8vw, 5rem); }
  .ph-t-serif { font-size: clamp(1.25rem, 2.6vw, 1.75rem); }
  .ph-t-close { font-size: clamp(1.875rem, 4.2vw, 2.75rem); }
}

@media (prefers-reduced-motion: reduce) {
  .ph-img img, .ph-scroll-line { animation: none; }
  .ph-eyebrow, .ph-title, .ph-desc, .ph-actions, .ph-proof { animation: none; opacity: 1; transform: none; }
}

/* ── ph-stats ───────────────────────────────────────────── */
.ph-stats {
  background: #F6F5F2;
  padding: 3rem 0 3.5rem;
  position: relative;
  z-index: 1;
}

.ph-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: min(100% - 2rem, 900px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg,
    transparent,
    rgba(201,154,46,0.35) 30%,
    rgba(201,154,46,0.55) 50%,
    rgba(201,154,46,0.35) 70%,
    transparent
  );
}

.ph-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ph-stat {
  padding: 2.25rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  transition: background 220ms ease;
}

.ph-stat + .ph-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

.ph-stat:hover { background: rgba(255,195,0,0.04); }

.ph-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #0d0b08;
  margin-bottom: 0.5rem;
}

.ph-stat-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(0,0,0,0.40);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .ph-stats { padding: 2.25rem 0 2.75rem; }
  .ph-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ph-stat { padding: 1.75rem 1rem 1.5rem; }
  .ph-stat:nth-child(3)::before { display: none; }
  .ph-stat:nth-child(3),
  .ph-stat:nth-child(4) {
    border-top: 1px solid rgba(0,0,0,0.07);
  }
  .ph-stat-num { font-size: 2.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ph-stat { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   Section Heading System — sh-*
   Sistema único de tipografia para todas as seções da home.
   Máxima prioridade de cascata. Não alterar ordem.
   ════════════════════════════════════════════════════════════ */

/* ── Palavra de destaque (serif italic) ── */
.sh-accent {
  font-style: italic;
  font-weight: 300;
  color: #C99A00;
  letter-spacing: 0;
}

/* ── Eyebrow: padrão para seções claras ── */
.section-header .eyebrow,
.experiences-header .eyebrow,
.blog-section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #B38900;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0.875rem;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ── Títulos principais: seções claras ── */
.section-header h2,
.section-header.dark h2,
.faq-title,
.blog-section-header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #111827;
  font-size: clamp(2.5rem, 4.8vw, 3.625rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  text-shadow: none;
}

/* Remove decoração legada */
.section-header h2::after,
.blog-section-header h2::after { display: none; }

/* ── Subtítulos: seções claras ── */
.section-header p,
.section-header.dark p {
  color: #667085;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 400;
  line-height: 1.72;
  max-width: 560px;
  text-shadow: none;
}

/* Reviews: mesma regra, centraliza */
.reviews-section .section-header p {
  margin-inline: auto;
}

/* ── Blog: alinhado à esquerda, sem margin extra ── */
.blog-section-header {
  text-align: left;
  margin-bottom: 0;
}
.blog-section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  margin-bottom: 0.25rem;
}
.blog-section-header h2 em {
  font-style: italic;
  font-weight: 300;
  color: #C99A00;
  background: none;
  -webkit-text-fill-color: unset;
}

/* ── FAQ eyebrow: mantém a linha dourada ── */
.faq-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #B38900;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0.75rem;
}
.faq-eyebrow::before {
  background: rgba(179,137,0,0.70);
}

/* ── FAQ título ── */
.faq-title {
  max-width: 16ch;
}

/* ── Story section ── */
.story-headline-massive {
  font-family: var(--font-heading);
  font-size: clamp(2.625rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: #111827;
  margin-bottom: 1.5rem;
  text-shadow: none;
}
.text-italic-accent {
  font-style: italic;
  font-weight: 300;
  color: #C99A00;
  letter-spacing: 0;
}

/* ── Desire section (fundo escuro) ── */
.desire-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,215,0,0.60);
  margin-bottom: 1.25rem;
}
.desire-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.375rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.desire-bigline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.375rem, 2.8vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: rgba(255,255,255,0.68);
  margin-bottom: 1.25rem;
}
.desire-subtext {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.45);
  max-width: 400px;
  line-height: 1.72;
  font-weight: 400;
  margin: 0 auto;
}

/* ── Break sections (imagem escura) ── */
.break-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.38);
  text-align: center;
  max-width: 800px;
  padding-inline: 1.5rem;
}

/* ── Responsivo ── */
@media (max-width: 767px) {
  .section-header h2,
  .section-header.dark h2,
  .faq-title {
    font-size: clamp(1.875rem, 7.5vw, 2.625rem);
  }
  .desire-headline {
    font-size: clamp(1.75rem, 6.5vw, 2.375rem);
  }
  .desire-bigline {
    font-size: clamp(1.125rem, 4.5vw, 1.5rem);
  }
  .break-text {
    font-size: clamp(1.625rem, 6.5vw, 2.25rem);
  }
  .story-headline-massive {
    font-size: clamp(2.125rem, 7.5vw, 3rem);
  }
  .blog-section-header h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }
}

/* ════════════════════════════════════════════════════════════
   Spacing System — ritmo vertical global
   3 tamanhos: compacto · padrão · editorial
   Máxima prioridade. Não alterar ordem.
   ════════════════════════════════════════════════════════════ */

/* ── Stats: compacto, conecta ao hero ── */
.ph-stats {
  padding-top: 2.75rem;
  padding-bottom: 3.25rem;
}

/* ── Desire: editorial, fundo escuro ── */
.desire-section {
  padding-block: 5.5rem;
}

/* ── Transition divider: ponte visual, menor ── */
.transition-divider {
  height: 48px;
}

/* ── Flights: padrão ── */
.flights-section {
  padding-block: 5rem;
}

/* ── Break sections: mantém altura visual ── */
.break-section {
  height: 44vh;
  min-height: 340px;
}

/* ── Story/Video: editorial ── */
.video-section,
.story-section {
  padding-block: 5.5rem;
}

/* ── Reviews: padrão ── */
.reviews-section {
  padding-block: 5rem;
}

/* ── FAQ: padrão ── */
.faq-section {
  padding-block: 5rem;
}

/* ── Blog: padrão ── */
.blog-section {
  padding-block: 5rem;
}

/* ── Map: padrão (substitui inline style) ── */
#localizacao {
  padding-block: 5rem;
}

/* ── Internos: distância entre cabeçalho e conteúdo ── */
.section-header {
  margin-bottom: 2.5rem;
}

.experiences-header {
  margin-bottom: 2.5rem;
}

.reviews-header-wrap {
  margin-bottom: 2.5rem;
}

.story-layout {
  gap: clamp(2rem, 4vw, 4rem);
}

/* ── Premium flights grid ── */
.premium-flights-grid {
  gap: 1.25rem;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .ph-stats         { padding-top: 2rem; padding-bottom: 2.5rem; }
  .desire-section   { padding-block: 4rem; }
  .flights-section  { padding-block: 3.5rem; }
  .video-section,
  .story-section    { padding-block: 4rem; }
  .reviews-section  { padding-block: 3.5rem; }
  .faq-section      { padding-block: 3.5rem; }
  .blog-section     { padding-block: 3.5rem; }
  #localizacao      { padding-block: 3.5rem; }
  .break-section    { height: 38vh; min-height: 280px; }
  .section-header   { margin-bottom: 2rem; }
  .experiences-header { margin-bottom: 2rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .desire-section  { padding-block: 4.5rem; }
  .flights-section { padding-block: 4rem; }
  .video-section,
  .story-section   { padding-block: 4.5rem; }
  .reviews-section { padding-block: 4rem; }
  .faq-section     { padding-block: 4rem; }
  .blog-section    { padding-block: 4rem; }
}

/* ════════════════════════════════════════════════════════════
   Hero Cinematic Redesign + Navbar Premium
   Centered editorial layout · Luxury aerial brand
   Máxima prioridade — não alterar ordem.
   ════════════════════════════════════════════════════════════ */

/* ── Image: cinematic treatment ── */
.ph-img img {
  filter: saturate(1.08) contrast(1.06) brightness(0.88);
  object-position: center center;
}

/* ── Base dark: uniform very subtle overall ── */
.ph-fade-left {
  background: rgba(10,8,6,0.28);
}

/* ── Vignette: center-bright, edge-dark — cinematic ── */
.ph-vignette {
  background: radial-gradient(
    ellipse 105% 95% at 50% 48%,
    transparent 38%,
    rgba(0,0,0,0.52) 100%
  );
}

/* ── Bottom fade: anchor ── */
.ph-fade-bottom {
  height: 200px;
  background: linear-gradient(to top, rgba(0,0,0,0.48) 0%, transparent 100%);
}

/* ── Top fade: navbar readability ── */
.ph-fade-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.40) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── CENTERED COMPOSITION ── */
.ph-wrap {
  justify-content: center;
  text-align: center;
  align-items: center;
  padding-block: 9rem 5rem; /* Lowered from 5rem 13rem to center perfectly and avoid navbar */
}

.ph-copy {
  max-width: 1000px;
  padding-left: 0;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ── Title block ── */
.ph-title {
  display: flex;
  flex-direction: column;
  margin: 0 auto 32px;
  max-width: 1000px;
  text-align: center;
  align-items: center;
  width: 100%;
  animation: ph-up 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Unified typography lines */
.ph-t-line {
  display: block;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #F5F5F7;
}

@media (max-width: 1023px) {
  .ph-t-line {
    font-size: clamp(28px, 6vw, 56px);
  }
}

/* Highlighed text */
.ph-t-highlight {
  color: #FFC300;
  font-style: normal;
}

/* ── CTAs ── */
.ph-actions {
  display: flex;
  animation: ph-up 700ms 200ms cubic-bezier(0.22, 1, 0.36, 1) both;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0;
}

.ph-cta {
  padding: 0.8125rem 1.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 4px 22px rgba(255,195,0,0.22);
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.ph-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255,195,0,0.42), 0 8px 22px rgba(255,195,0,0.22);
}

.ph-cta-ghost {
  padding: 0.8125rem 1.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-color: rgba(255,255,255,0.22);
  transition: color 200ms ease, border-color 200ms ease,
              background 200ms ease, transform 200ms ease;
}
.ph-cta-ghost:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(255,255,255,0.40);
  background: rgba(255,255,255,0.08);
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(20,20,20,0.45);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
  padding: 0.4rem 0.875rem;
  animation: navbarEnter 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes navbarEnter {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.navbar.hidden {
  transform: translateX(-50%) translateY(-140%);
}

/* nav links: white, medium weight, underline on hover */
.nav-link {
  position: relative;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  transition: color 200ms ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.55);
  transition: width 260ms cubic-bezier(0.22,1,0.36,1);
}
.nav-link:hover { color: #ffffff; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Flags: smaller */
.lang-btn .fi { font-size: 0.78rem; }
.lang-btn     { gap: 0.25rem; font-size: 0.72rem; }

/* Reservar button: yellow + glow */
.navbar .btn-sm {
  background: #FFC300;
  color: #0d0b08;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.45rem 1.125rem;
  border-color: transparent;
  box-shadow: none;
  letter-spacing: 0.01em;
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.navbar .btn-sm:hover {
  background: #FFD340;
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(255,195,0,0.40), 0 4px 14px rgba(255,195,0,0.22);
}

/* ── Scrolled state ── */
.navbar.scrolled {
  background: rgba(252,251,249,0.90);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 0.5rem 1rem;
}
.navbar.scrolled .nav-link {
  color: rgba(17,24,39,0.72);
}
.navbar.scrolled .nav-link:hover {
  color: rgba(17,24,39,0.95);
}
.navbar.scrolled .navbar-logo img {
  filter: brightness(0) saturate(0);
}

/* ── Remover sublinhado/luz dos links do menu ── */
/* Sobrescreve todas as definições anteriores de ::after nos nav-links */
.nav-link::after,
.nav-link:hover::after,
.nav-link.active::after,
.navbar:not(.scrolled) .nav-link::after,
.navbar.scrolled .nav-link::after {
  display: none !important;
}

/* Estado ativo: destaque apenas por cor, sem sublinhado */
.nav-link.active {
  color: var(--primary) !important;
  background: transparent !important;
}

/* Hover limpo: cor + fundo suave, sem linha */
.nav-link:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.08) !important;
}

/* Hover no modo scrolled (navbar branca) */
.navbar.scrolled .nav-link:hover {
  color: rgba(17,24,39,0.95) !important;
  background: rgba(0,0,0,0.04) !important;
}
.navbar.scrolled .nav-link.active {
  color: var(--primary-dark) !important;
  background: transparent !important;
}

/* ════════════════════════════════════════════════════════════
   Premium Dropdown — Nossos Voos
   ════════════════════════════════════════════════════════════ */

/* Painel */
.nav-dropdown-menu {
  min-width: 330px !important;
  padding: 0.5rem !important;
  background: rgba(13,10,6,0.96) !important;
  backdrop-filter: blur(22px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 1rem !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 4px 20px rgba(0,0,0,0.3) !important;
}

/* Topo: label + "ver todos" */
.ndm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.875rem 0.625rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0.375rem;
}
.ndm-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}
.ndm-see-all {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,195,0,0.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 150ms;
}
.ndm-see-all:hover { color: #FFC300; }

/* Item de voo */
.nav-dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.875rem !important;
  padding: 0.6875rem 0.875rem !important;
  border-radius: 0.625rem !important;
  text-decoration: none;
  position: relative !important;
  transition: background 150ms ease !important;
}
.nav-dropdown-item:hover {
  background: rgba(255,195,0,0.08) !important;
}
.nav-dropdown-item::before { display: none !important; } /* remove dot antigo */

/* Ícone colorido */
.ndm-icon {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
}
.ndm-icon--gold   { background: rgba(255,195,0,0.14);   color: #FFC300; }
.ndm-icon--amber  { background: rgba(245,158,11,0.14);  color: #F59E0B; }
.ndm-icon--blue   { background: rgba(99,179,237,0.14);  color: #63B3ED; }
.ndm-icon--purple { background: rgba(159,122,234,0.14); color: #9F7AEA; }
.ndm-icon--pink   { background: rgba(255,107,138,0.14); color: #FF6B8A; }

/* Texto do item */
.ndm-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.ndm-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.ndm-sub {
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}

/* Seta direita */
.ndm-chevron {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.22);
  flex-shrink: 0;
  transition: color 150ms, transform 150ms;
}
.nav-dropdown-item:hover .ndm-chevron {
  color: rgba(255,195,0,0.70);
  transform: translateX(3px);
}
.nav-dropdown-item .duration { display: none !important; } /* esconde badge antigo */

/* Modo scrolled: fundo claro */
.navbar.scrolled .nav-dropdown-menu {
  background: rgba(255,255,255,0.98) !important;
  border-color: rgba(0,0,0,0.07) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12) !important;
}
.navbar.scrolled .ndm-top    { border-bottom-color: rgba(0,0,0,0.06); }
.navbar.scrolled .ndm-label  { color: rgba(17,24,39,0.32); }
.navbar.scrolled .ndm-see-all { color: rgba(180,137,0,0.85); }
.navbar.scrolled .ndm-see-all:hover { color: var(--primary-dark, #B38900); }
.navbar.scrolled .nav-dropdown-item:hover { background: rgba(255,195,0,0.06) !important; }
.navbar.scrolled .ndm-name   { color: rgba(17,24,39,0.90); }
.navbar.scrolled .ndm-sub    { color: rgba(17,24,39,0.42); }
.navbar.scrolled .ndm-chevron { color: rgba(17,24,39,0.20); }
.navbar.scrolled .nav-dropdown-item:hover .ndm-chevron { color: var(--primary-dark, #B38900); }
.navbar.scrolled .ndm-icon--gold   { background: rgba(255,195,0,0.10); }
.navbar.scrolled .ndm-icon--amber  { background: rgba(245,158,11,0.10); }
.navbar.scrolled .ndm-icon--blue   { background: rgba(99,179,237,0.10); }
.navbar.scrolled .ndm-icon--purple { background: rgba(159,122,234,0.10); }
.navbar.scrolled .ndm-icon--pink   { background: rgba(255,107,138,0.10); }

/* ── Mobile ── */
@media (max-width: 767px) {
  .ph-wrap      { padding-block: 4.5rem 10rem; }
  .ph-copy      { padding-inline: 1.25rem; }
  .ph-t-line    { font-size: clamp(24px, 8vw, 36px); line-height: 1.1; }
  .ph-actions   { flex-direction: column; align-items: center; width: 100%; max-width: 360px; }
  .ph-cta,
  .ph-cta-ghost { width: 100%; justify-content: center; text-align: center; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .ph-title, .ph-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .navbar {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* =========================================================
   UNIFIED BOOKING WIDGET (Sidebar / Bottom Sheet)
========================================================= */

.unified-booking-widget {
  background: #111111;
  border: 1px solid rgba(255,215,0, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--primary);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.ubw-close-mobile {
  display: none;
}
.ubw-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ubw-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--dark);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.ubw-price-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.ubw-price-amount {
  font-size: 2.25rem;
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.ubw-price-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.ubw-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ubw-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ubw-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-heading);
}
.ubw-input {
  background: #222222;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
}
.ubw-input:focus {
  border-color: var(--primary);
  background: rgba(255,215,0,0.05);
}
.ubw-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #222222;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.ubw-btn {
  background: transparent;
  border: none;
  color: var(--primary);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.ubw-btn:hover {
  background: rgba(255,255,255,0.05);
}
.ubw-btn:disabled {
  color: rgba(255,255,255,0.2);
  cursor: not-allowed;
}
.ubw-count {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--white);
  width: 2rem;
  text-align: center;
}
.ubw-summary {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ubw-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.ubw-row.ubw-total {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(255,255,255,0.1);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
}
.ubw-badges {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.ubw-badges i {
  color: var(--primary);
  margin-right: 0.35rem;
}

/* =========================================================
   MOBILE BOOKING BAR & BOTTOM SHEET OVERRIDES
========================================================= */

.mobile-booking-bar {
  display: none;
}
.ubw-overlay {
  display: none;
}

@media (max-width: 991px) {
  .unified-booking-widget {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 9999;
    border-radius: 24px 24px 0 0;
    border: none;
    border-top: 1px solid rgba(255,215,0,0.2);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.8);
    transition: bottom 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    background: var(--dark-surface);
  }
  .unified-booking-widget.active {
    bottom: 0;
  }
  
  .ubw-close-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    z-index: 10;
  }
  
  .ubw-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: block;
  }
  .ubw-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-booking-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 1.25rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    z-index: 9990;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  }
  .mbb-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
  }
  .mbb-price {
    font-size: 1.25rem;
    font-family: var(--font-mono);
    color: var(--white);
    font-weight: 600;
  }
  .mbb-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255,215,0,0.2);
  }
}


/* OVERRIDES FOR WIDGET VISIBILITY */
.unified-booking-widget,
.unified-booking-widget * {
  color: #ffffff;
}
.unified-booking-widget .ubw-title {
  color: #111111 !important;
}
.unified-booking-widget .ubw-btn i {
  color: var(--primary) !important;
}
.unified-booking-widget .ubw-btn:disabled i {
  color: rgba(255,255,255,0.2) !important;
}
.unified-booking-widget .ubw-submit, .unified-booking-widget .ubw-submit * {
  color: #111111 !important;
}

/* ════════════════════════════════════════════════════════════
   Performance: content-visibility nas seções abaixo do fold.
   O browser ignora layout/paint destas seções até ficarem
   visíveis, acelerando o tempo de carregamento inicial.
   ════════════════════════════════════════════════════════════ */
.desire-section,
.flights-section,
.video-section,
.story-section,
.reviews-section,
.faq-section,
.blog-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px; /* estimativa da altura */
}

/* Imagens: force GPU layer nas imagens do hero para evitar repaint */
.ph-img img,
.fp-hero img {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Smooth scroll nativo — melhor que JS scroll */
html {
  scroll-behavior: smooth;
}

/* Prevent CLS em imagens sem dimensões */
img {
  height: auto;
}

/* Font-display swap retroativo (caso o browser não respeite a URL) */
@font-face {
  font-family: 'Montserrat';
  font-display: swap;
}
