/* ============================================
   UNIÃO VERTICAL - Design System
   Tema Dark Navy — Paleta da Marca
   ============================================ */
:root {
  /* Brand Colors */
  --navy-900: #041627;
  --navy-800: #071E34;
  --navy-700: #0A2540;
  --navy-600: #0D2D4E;
  --navy-500: #133A63;
  --navy-400: #1E4A7A;

  --green-500: #8BC53F;
  --green-400: #9DD44A;
  --green-300: #B5E06A;
  --green-600: #72A530;

  --white: #FFFFFF;
  --gray-100: #F5F6F8;
  --gray-200: #D0D4DB;
  --gray-300: #9BA3AE;
  --gray-400: #6B7280;

  --warning: #F97316;
  --danger: #EF4444;
  --success: var(--green-500);

  /* Semantic aliases */
  --bg-base: var(--navy-800);
  --bg-alt: var(--navy-700);
  --bg-card: var(--navy-600);
  --bg-card-hover: var(--navy-500);
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(139,197,63,0.35);

  --text-primary: #E8EDF2;
  --text-secondary: var(--gray-300);
  --text-accent: var(--green-500);
  --text-light: var(--white);

  --accent-green: var(--green-500);

  /* Typography */
  --font-head: 'Poppins', 'Playfair Display', sans-serif;
  --font-body: 'Poppins', 'Open Sans', sans-serif;
  --h1-size: 56px;
  --h1-size-mobile: 36px;
  --h2-size: 36px;
  --h2-size-mobile: 26px;
  --h3-size: 22px;
  --h3-size-mobile: 18px;
  --body-size: 16px;
  --body-size-mobile: 14px;
  --body-lh: 1.7;
  --letter-spacing: 0.5px;

  /* Grid & Spacing */
  --space-4: 4px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-28: 28px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --space-96: 96px;
  --container-max: 1200px;
  --padding-mobile: 20px;
  --padding-desktop: 48px;
  --section-gap-desktop: 80px;
  --section-gap-mobile: 48px;
  --header-height: 56px;
  --header-height-mobile: 45px;

  /* Effects */
  --header-bg: rgba(4, 22, 39, 0.97);
  --hero-overlay: linear-gradient(180deg, rgba(2, 14, 28, 0.7) 0%, rgba(4, 22, 39, 0.5) 60%, rgba(4, 22, 39, 0.85) 100%);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.45);
  --glow-green: 0 0 24px rgba(139, 197, 63, 0.25);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
}

/* ============================================
   PRELOADER INTRO
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preloader__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4, 22, 39, 0.2) 0%,
    rgba(4, 22, 39, 0.1) 50%,
    rgba(4, 22, 39, 0.55) 100%
  );
  pointer-events: none;
}

/* Botão — aparece ao final do vídeo, centralizado absoluto */
.preloader__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  z-index: 3;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 3px solid var(--navy-400);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 0 16px 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 0 rgba(139, 197, 63, 0.4);
}

.preloader__btn.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: btn-pulse 2.2s ease-in-out infinite;
}

.preloader__btn:hover {
  background: var(--navy-700);
  border-color: var(--navy-500);
  transform: translate(-50%, -50%) scale(1.06) !important;
  animation: none;
  box-shadow: 0 0 40px rgba(26, 63, 111, 0.5);
}

.preloader__btn:active {
  transform: translate(-50%, -50%) scale(0.96) !important;
}

/* Símbolo — tamanho controlado, cor original, não ultrapassa o círculo */
.preloader__btn-logo-img {
  position: relative;
  width: 116px;
  height: 104px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  pointer-events: none;
  display: block;
  flex-shrink: 0;
}

/* Texto abaixo do símbolo */
.preloader__btn-text {
  position: relative;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}

/* Anel pulsante decorativo */
.preloader__btn-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(26, 63, 111, 0.7);
  animation: ring-expand 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 63, 111, 0.7); }
  50%       { box-shadow: 0 0 0 22px rgba(26, 63, 111, 0); }
}

@keyframes btn-pulse-navy {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 52, 96, 0.7); }
  50%       { box-shadow: 0 0 0 22px rgba(15, 52, 96, 0); }
}

@keyframes ring-expand {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Bloqueia scroll enquanto preloader está ativo */
body.preloader-active {
  overflow: hidden;
}

/* Enquanto preloader ativo OU durante vídeo limpo: header invisível */
body.preloader-active .header,
body.hero-only .header {
  opacity: 0;
  pointer-events: none;
  transition: none;
}

/* Tudo parado até site-visible ser ativado */
body:not(.site-visible) .hero__eyebrow,
body:not(.site-visible) .hero__title,
body:not(.site-visible) .hero__subtitle,
body:not(.site-visible) .hero__ctas,
body:not(.site-visible) .hero__kpi {
  opacity: 0 !important;
  animation: none !important;
}

/* Botão sempre oculto até site-visible — independente de outras classes */
.hero__bottom {
  opacity: 0;
}

body.site-visible .hero__bottom {
  animation: fadeInUp 1s ease 1.4s forwards;
}

/* FASE 1 — header aparece */
body.site-header-visible .header {
  opacity: 1;
  transition: opacity 0.6s ease;
}

/* FASE 2 — hero content entra com stagger */
body.site-visible .hero__eyebrow {
  animation: fadeInUp 0.8s ease 0s forwards;
}
body.site-visible .hero__title {
  animation: fadeInUp 1.2s ease 0.2s forwards;
}
body.site-visible .hero__subtitle {
  animation: fadeInUp 1.2s ease 0.5s forwards;
}
body.site-visible .hero__ctas {
  animation: fadeInUp 1.2s ease 0.8s forwards;
}

body.site-visible .hero__bottom {
  animation: fadeInUp 1s ease 1.4s forwards;
}
body.site-visible .hero__scroll-hint {
  animation: fadeIn 1s ease 1.2s forwards;
}
body.site-visible .hero__kpi:nth-child(1) { animation: fadeIn 0.8s ease 0.3s forwards; }
body.site-visible .hero__kpi:nth-child(2) { animation: fadeIn 0.8s ease 0.5s forwards; }
body.site-visible .hero__kpi:nth-child(3) { animation: fadeIn 0.8s ease 0.7s forwards; }

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: var(--body-lh);
  color: var(--text-primary);
  background: var(--bg-base);
}

@media (max-width: 767px) {
  body { font-size: var(--body-size-mobile); }
}

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

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

ul, ol { list-style: none; margin: 0; padding: 0; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--padding-mobile);
  padding-right: var(--padding-mobile);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--padding-desktop);
    padding-right: var(--padding-desktop);
  }
}

/* Sections */
.section {
  padding-top: var(--section-gap-mobile);
  padding-bottom: var(--section-gap-mobile);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--section-gap-desktop);
    padding-bottom: var(--section-gap-desktop);
  }
}

.section__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: var(--space-12);
}

.section__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--h2-size-mobile);
  color: var(--text-light);
  margin: 0 0 var(--space-16);
  line-height: 1.25;
}

@media (min-width: 768px) {
  .section__title { font-size: var(--h2-size); }
}

.section__subtitle {
  font-size: var(--body-size);
  color: var(--text-secondary);
  margin: 0 0 var(--space-32);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: 13px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-500);
  color: var(--navy-800);
}

.btn--primary:hover {
  background: var(--green-400);
  transform: translateY(-2px);
  box-shadow: var(--glow-green), 0 6px 16px rgba(139, 197, 63, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  letter-spacing: 1.5px;
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.btn--outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--green-500);
  color: var(--navy-800);
}

.btn--accent:hover {
  background: var(--green-400);
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
}

.btn--outline-green {
  background: transparent;
  color: var(--green-500);
  border: 2px solid var(--green-500);
}

.btn--outline-green:hover {
  background: var(--green-500);
  color: var(--navy-800);
}

.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 17px 36px; font-size: 16px; }

.btn-arrow {
  display: inline-block;
  animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.link-underline {
  font-weight: 600;
  color: var(--green-500);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition);
}
.link-underline:hover { color: var(--green-400); }

/* ============================================
   HEADER STICKY
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height-mobile);
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: transform 0.35s ease, opacity 0.35s ease,
              background 0.4s ease, backdrop-filter 0.4s ease,
              border-color 0.4s ease;
}

/* Fica sólido ao rolar para fora do hero */
.header.header--scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header.header--hidden {
  transform: translateY(-100%);
  opacity: 0;
}

@media (min-width: 768px) {
  .header { height: var(--header-height); }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-img {
  height: 29px; /* mobile: 20% menor que 36px */
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header__logo-img { height: 42px; }
}

.header__logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.96rem; /* mobile: 20% menor que 1.2rem */
  color: var(--text-light);
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .header__logo-text { font-size: 1.2rem; }
}

.header__logo-text span {
  color: var(--green-500);
}

.header__nav-list {
  display: none;
}

@media (min-width: 768px) {
  .header__nav-list {
    display: flex;
    gap: var(--space-32);
  }
}

.header__nav-link {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: var(--letter-spacing);
  color: var(--gray-200);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 1px;
  transition: width var(--transition);
}

.header__nav-link:hover::after,
.header__nav-link.active::after { width: 100%; }

.header__nav-link:hover,
.header__nav-link.active { color: var(--text-light); }

.header__cta { display: none; }

@media (min-width: 768px) {
  .header__cta { display: inline-flex; }
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 768px) {
  .header__hamburger { display: none; }
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

.header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    background: var(--navy-800);
    border-top: 1px solid var(--border);
    padding: var(--space-24);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }
  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header__nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
  }
  .header__nav-link { font-size: 18px; }
  .header__cta {
    display: inline-flex;
    margin-top: var(--space-16);
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; }

/* Vídeo de fundo — fullscreen, loop, sem som, máxima qualidade */
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/* Imagem fallback (fica atrás do vídeo) */
.hero__bg-image {
  position: absolute;
  inset: 0;
  background: var(--navy-800) url('assets/images/hero.jpg') center/cover no-repeat,
              url('https://images.unsplash.com/photo-1522163182402-834f871fd851?w=1920') center/cover no-repeat;
  z-index: 0;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Toque azul navy muito leve — realça o céu sem escurecer */
  background: rgba(4, 22, 39, 0.12);
  pointer-events: none;
}

.hero__bottom {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 3;
  transform: translateY(-15%);
  text-align: center;
  max-width: 860px;
  padding: calc(var(--header-height-mobile) + var(--space-48)) var(--space-16) var(--space-64);
}

@media (min-width: 768px) {
  .hero__content { padding-top: calc(var(--header-height) + var(--space-64)); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  background: rgba(139, 197, 63, 0.12);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: var(--space-24);
  opacity: 0;
  animation: fadeInUp 1.2s ease 0s forwards;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--h1-size-mobile);
  color: var(--text-light);
  margin: 0 0 var(--space-24);
  line-height: 1.15;
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.1s forwards;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero__title .highlight {
  color: var(--green-400);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero__title { font-size: var(--h1-size); }
}

.hero__subtitle {
  font-size: 18px;
  color: var(--gray-200);
  margin: 0 0 var(--space-40);
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.5s forwards;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
  .hero__subtitle { font-size: 20px; }
}

.hero__ctas {
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.9s forwards;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  justify-content: center;
}

.hero__cta-primary {
  font-size: 16px;
  padding: 16px 32px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================================
   HERO METRICS BAR
   ============================================ */
.hero-metrics {
  background: var(--navy-900);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-32) 0;
}

.hero__kpis {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-16);
}

@media (min-width: 768px) {
  .hero__kpis { gap: var(--space-32); }
}

.hero__kpi {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-20) var(--space-28);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 160px;
  transition: border-color var(--transition), box-shadow var(--transition);
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.hero__kpi:hover {
  border-color: var(--border-accent);
  box-shadow: var(--glow-green);
}

.hero__kpi:nth-child(1) { animation-delay: 0.35s; }
.hero__kpi:nth-child(2) { animation-delay: 0.45s; }
.hero__kpi:nth-child(3) { animation-delay: 0.55s; }

.hero__kpi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: var(--space-8);
  background: rgba(139, 197, 63, 0.12);
  border: 1px solid var(--border-accent);
}

.hero__kpi-icon-svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-500);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__kpi-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--green-500);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__kpi-label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: var(--letter-spacing);
}

/* ============================================
   ABOUT - O QUE É
   ============================================ */
.about {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,197,63,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about__grid {
  display: grid;
  gap: var(--space-48);
}

@media (min-width: 968px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--space-64);
  }
  .about__grid .about__media { order: 2; }
}

.about__desc {
  margin: 0 0 var(--space-32);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.8;
}

.about__pilares {
  display: grid;
  gap: var(--space-16);
  margin-bottom: var(--space-32);
}

@media (min-width: 600px) {
  .about__pilares { grid-template-columns: repeat(3, 1fr); }
}

.about__pilar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.about__pilar:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--glow-green);
}

.about__pilar-inner { padding: var(--space-24); }

.about__pilar:hover .about__pilar-desc {
  opacity: 1;
  max-height: 120px;
}

.about__pilar-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-8);
}

.about__pilar-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--h3-size-mobile);
  margin: 0 0 var(--space-8);
  color: var(--text-light);
}

.about__pilar-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.about__video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.about__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-500) 100%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.about__video-placeholder::after {
  content: '▶';
  position: absolute;
  font-size: 3rem;
  color: rgba(139,197,63,0.8);
  width: 72px;
  height: 72px;
  background: rgba(139,197,63,0.12);
  border: 2px solid var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 72px;
  text-align: center;
  padding-left: 6px;
  transition: transform var(--transition);
}

.about__video-wrap:hover .about__video-placeholder::after {
  transform: scale(1.08);
}

/* ============================================
   ROTEIROS GRID
   ============================================ */
.roteiros { background: var(--bg-base); }

/* ── Split-screen de roteiros na página principal ─────────────── */
.roteiros-split {
  display: flex;
  flex-direction: column;
  background: var(--bg-base);
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.roteiros-split__header {
  padding: 3.5rem 2rem 2rem;
  text-align: center;
}

.roteiros-split__header .section__tag { margin-bottom: 0.5rem; }
.roteiros-split__header .section__title { margin-bottom: 0.5rem; }
.roteiros-split__header .section__subtitle { margin-top: 0; }

.roteiros-split__panels {
  display: flex;
  height: 62vh;
  min-height: 380px;
  overflow: hidden;
}

.roteiros-split__panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  background: #08141e;
  padding: 0;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.roteiros-split__panel:hover { flex: 1.5; }

.roteiros-split__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.roteiros-split__panel:hover .roteiros-split__video {
  transform: scale(1.04);
}

.roteiros-split__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.roteiros-split__panel:hover .roteiros-split__vignette {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.2) 55%,
    transparent 100%
  );
}

.roteiros-split__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.5rem;
  transform: translateY(1.8rem);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.roteiros-split__panel:hover .roteiros-split__content {
  transform: translateY(0);
}

.roteiros-split__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.4rem;
}

.roteiros-split__name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.6rem;
  line-height: 1;
}

.roteiros-split__hint {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green-400);
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.roteiros-split__panel:hover .roteiros-split__hint {
  opacity: 1;
  transform: translateY(0);
}

/* Separador vertical entre os painéis */
.roteiros-split__panel--montanha { border-right: 1px solid rgba(255,255,255,0.06); }

/* Mobile */
@media (max-width: 768px) {
  .roteiros-split__header {
    padding: 2.5rem 1.25rem 1.25rem;
  }
  .roteiros-split__panels {
    flex-direction: column;
    height: auto;
  }
  .roteiros-split__panel {
    height: 45vw;
    min-height: 200px;
    flex: none !important;
  }
  .roteiros-split__content {
    transform: translateY(0);
    padding: 1.25rem 1.5rem;
  }
  .roteiros-split__hint { opacity: 1; transform: none; }
  .roteiros-split__name { font-size: clamp(1.6rem, 8vw, 2.4rem); }
}

.roteiros__grid {
  display: grid;
  gap: var(--space-24);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .roteiros__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 968px) {
  .roteiros__grid { grid-template-columns: repeat(3, 1fr); }
}

.roteiro-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.roteiro-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.roteiro-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.roteiro-card__img {
  width: 100%;
  height: 100%;
  /* Fallback Unsplash enquanto não há foto local */
  background: var(--navy-500) url('assets/images/roteiro-cacau.jpg') center/cover no-repeat,
              url('https://images.unsplash.com/photo-1551632811-561732d1e306?w=600') center/cover no-repeat;
  transition: transform 0.6s ease;
}

.roteiro-card:hover .roteiro-card__img { transform: scale(1.07); }

/* Quando subir: assets/images/roteiro-juatinga.jpg etc. */
.roteiro-card__img--2 {
  background-image: url('assets/images/roteiro-juatinga.jpg'),
    url('https://images.unsplash.com/photo-1522163182402-834f871fd851?w=600');
}
.roteiro-card__img--3 {
  background-image: url('assets/images/roteiro-ilha-grande.jpg'),
    url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?w=600');
}
.roteiro-card__img--4 {
  background-image: url('assets/images/roteiro-reveillon.jpg'),
    url('https://images.unsplash.com/photo-1473580044384-7ba9967e16a0?w=600');
}
.roteiro-card__img--5 {
  background-image: url('assets/images/roteiro-agulhas.jpg'),
    url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=600');
}
.roteiro-card__img--6 {
  background-image: url('assets/images/roteiro-4praias.jpg'),
    url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?w=600');
}

.roteiro-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,22,39,0.9) 0%, rgba(4,22,39,0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.roteiro-card:hover .roteiro-card__overlay { opacity: 1; }

.roteiro-card__overlay-cta {
  color: var(--text-light);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border: 2px solid var(--green-500);
  border-radius: var(--radius);
  background: rgba(139,197,63,0.15);
  letter-spacing: 0.5px;
}

.roteiro-card__body { padding: var(--space-24); }

.roteiro-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--h3-size-mobile);
  margin: 0 0 var(--space-8);
  color: var(--text-light);
}

.roteiro-card__meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 var(--space-8);
}

.roteiro-card__price {
  margin: 0 0 var(--space-8);
  font-size: 15px;
  color: var(--text-secondary);
}

.roteiro-card__price strong { color: var(--green-500); }

.roteiro-card__dificuldade {
  font-size: 13px;
  margin: 0 0 var(--space-16);
  color: var(--text-secondary);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--moderado {
  background: rgba(139, 197, 63, 0.15);
  color: var(--green-400);
  border: 1px solid rgba(139,197,63,0.25);
}

.badge--resistente {
  background: rgba(249, 115, 22, 0.15);
  color: #FB923C;
  border: 1px solid rgba(249,115,22,0.25);
}

.badge--tecnico {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239,68,68,0.25);
}

.roteiro-card__vagas {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
  font-size: 13px;
  color: var(--text-secondary);
}

.roteiro-card__vagas-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.roteiro-card__vagas-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(to right, var(--green-600), var(--green-500));
  border-radius: 3px;
  transition: width 0.6s ease;
}

.roteiros__link-wrap {
  text-align: center;
  margin-top: var(--space-40);
}

/* ============================================
   AGENDA
   ============================================ */
.agenda { background: var(--bg-alt); }

.agenda__layout {
  display: grid;
  gap: var(--space-32);
}

@media (min-width: 968px) {
  .agenda__layout {
    grid-template-columns: 360px 1fr;
    gap: var(--space-48);
  }
}

.agenda__calendar {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-24);
  border: 1px solid var(--border);
}

.agenda__calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-16);
}

.agenda__month {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-light);
}

.agenda__nav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.agenda__nav:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--navy-800);
}

.agenda__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: var(--space-8);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-align: center;
}

.agenda__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  min-height: 200px;
}

.agenda__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: default;
  color: var(--text-secondary);
}

.agenda__day--empty { background: transparent; }

.agenda__day--event {
  background: rgba(139, 197, 63, 0.18);
  color: var(--green-400);
  font-weight: 700;
  border: 1px solid var(--border-accent);
}

.agenda__day--event-alt {
  background: rgba(15, 52, 96, 0.6);
  color: var(--gray-200);
  border: 1px solid rgba(255,255,255,0.08);
}

.agenda__legend {
  margin-top: var(--space-16);
  padding-top: var(--space-16);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  font-size: 12px;
  color: var(--text-secondary);
}

.agenda__legend-item em {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  background: var(--green-500);
}

.agenda__legend-item:nth-child(2) em { background: var(--navy-400); }

.agenda__featured-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 var(--space-24);
  color: var(--text-light);
}

.agenda__featured {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.agenda-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-24);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.agenda-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--glow-green);
  transform: translateX(4px);
}

.agenda-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.agenda-card__tag {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light);
}

.agenda-card__badge {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text-secondary);
}

.agenda-card__badge--urgent {
  background: rgba(249, 115, 22, 0.2);
  color: #FB923C;
  border: 1px solid rgba(249,115,22,0.3);
}

.agenda-card__dates {
  margin: 0 0 var(--space-8);
  font-size: 14px;
  color: var(--text-secondary);
}

.agenda-card__vagas {
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: var(--space-8);
}

.agenda-card__vagas-bar {
  height: 100%;
  background: linear-gradient(to right, var(--green-600), var(--green-500));
  border-radius: 3px;
  transition: width 0.6s ease;
}

.agenda-card__vagas-text {
  font-size: 13px;
  margin: 0 0 var(--space-8);
  color: var(--text-secondary);
}

.agenda-card__price {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--green-500);
  margin: 0 0 var(--space-16);
}

/* ============================================
   TESTIMONIALS & UGC
   ============================================ */
.testimonials { background: var(--bg-base); }

.testimonials__metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-24);
  margin-bottom: var(--space-32);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.testimonials__carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto var(--space-48);
}

.testimonials__track {
  position: relative;
}

.testimonial {
  display: none;
  padding: var(--space-40) var(--space-40);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

.testimonial.is-active {
  display: flex;
}

.testimonial__stars {
  margin-bottom: var(--space-16);
  font-size: 1.2rem;
}

.testimonial__text {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 var(--space-24);
  color: var(--text-secondary);
  line-height: 1.8;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  margin-bottom: var(--space-8);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-500), var(--green-600));
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--border-accent);
}

.testimonial__author strong {
  display: block;
  color: var(--text-light);
}
.testimonial__author span { font-size: 13px; color: var(--text-secondary); }

.testimonial__link {
  font-size: 13px;
  color: var(--green-500);
  font-weight: 600;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.testimonials__btn:hover {
  border-color: var(--green-500);
  background: var(--green-500);
  color: var(--navy-800);
}

.ugc__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 var(--space-16);
  color: var(--green-500);
  letter-spacing: 1px;
}

.ugc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.ugc__item {
  aspect-ratio: 1;
  background: var(--bg-card);
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  transition: transform var(--transition), opacity var(--transition);
  border: 1px solid var(--border);
}

.ugc__item:hover {
  transform: scale(1.04);
  opacity: 0.85;
}

.ugc__item:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1551632811-561732d1e306?w=400'); }
.ugc__item:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1522163182402-834f871fd851?w=400'); }
.ugc__item:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?w=400'); }
.ugc__item:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1473580044384-7ba9967e16a0?w=400'); }
.ugc__item:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=400'); }
.ugc__item:nth-child(6) { background-image: url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?w=400'); }

/* ============================================
   FEATURED ROTEIROS (detalhado)
   ============================================ */
.featured { background: var(--bg-alt); }

.featured__item {
  display: grid;
  gap: var(--space-32);
  margin-bottom: var(--space-80);
}

.featured__item:last-child { margin-bottom: 0; }

@media (min-width: 968px) {
  .featured__item {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-64);
  }
  .featured__item--right .featured__media { order: 2; }
  .featured__item--right .featured__content { order: 1; }
}

.featured__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.featured__img {
  aspect-ratio: 16/10;
  background: var(--bg-card) center/cover no-repeat;
  transition: transform 0.6s ease;
}

.featured__media:hover .featured__img { transform: scale(1.04); }

.featured__img--1 { background-image: url('https://images.unsplash.com/photo-1551632811-561732d1e306?w=800'); }
.featured__img--2 { background-image: url('https://images.unsplash.com/photo-1522163182402-834f871fd851?w=800'); }
.featured__img--3 { background-image: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?w=800'); }

.featured__meta {
  margin: 0 0 var(--space-16);
  font-size: 14px;
  color: var(--text-secondary);
}

.featured__highlights {
  margin: 0 0 var(--space-24);
  padding-left: 1.5rem;
}

.featured__highlights li {
  margin-bottom: var(--space-10);
  position: relative;
  color: var(--text-secondary);
  font-size: 15px;
}

.featured__highlights li::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
}

.featured__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
}

/* ============================================
   WHY US
   ============================================ */
.why {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.why::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,197,63,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.why__grid {
  display: grid;
  gap: var(--space-24);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 968px) {
  .why__grid { grid-template-columns: repeat(4, 1fr); }
}

.why__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: var(--space-32);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.why__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-16);
}

.why__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--h3-size-mobile);
  margin: 0 0 var(--space-12);
  color: var(--text-light);
}

.why__card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--navy-600) 100%);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,197,63,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--h2-size-mobile);
  margin: 0 0 var(--space-32);
  color: var(--text-light);
  position: relative;
}

@media (min-width: 768px) {
  .cta-final__title { font-size: var(--h2-size); }
}

.cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
  position: relative;
}

.cta-final__sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 var(--space-48);
  position: relative;
}

.cta-final__newsletter {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.cta-final__newsletter-title {
  font-size: 14px;
  margin: 0 0 var(--space-16);
  color: var(--text-secondary);
}

.cta-final__form {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.cta-final__input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light);
  transition: border-color var(--transition);
}

.cta-final__input::placeholder { color: var(--text-secondary); }

.cta-final__input:focus {
  outline: none;
  border-color: var(--green-500);
  background: rgba(139,197,63,0.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-900);
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding: var(--space-64) var(--padding-mobile) var(--space-32);
}

@media (min-width: 768px) {
  .footer { padding-left: var(--padding-desktop); padding-right: var(--padding-desktop); }
}

.footer__top {
  display: grid;
  gap: var(--space-32);
  margin-bottom: var(--space-48);
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

.footer__logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  display: block;
  margin-bottom: var(--space-12);
  color: var(--text-light);
}

.footer__logo span { color: var(--green-500); }

.footer__desc {
  font-size: 14px;
  color: var(--gray-400);
  margin: 0;
  max-width: 280px;
  line-height: 1.7;
}

.footer__links {
  display: grid;
  gap: var(--space-24);
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 var(--space-16);
  color: var(--green-500);
}

.footer__col ul li { margin-bottom: var(--space-10); }

.footer__col a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--text-light); }

.footer__social {
  display: flex;
  gap: var(--space-24);
  margin-bottom: var(--space-24);
  padding-top: var(--space-24);
  border-top: 1px solid var(--border);
}

.footer__social a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__social a:hover { color: var(--green-500); }

.footer__certs {
  display: flex;
  gap: var(--space-16);
  margin-bottom: var(--space-24);
  font-size: 12px;
  color: var(--gray-400);
}

.footer__copy {
  font-size: 12px;
  color: var(--gray-400);
  margin: 0;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 14px;
  right: 14px;
  width: 44px;  /* mobile: 25% menor que 58px */
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7) translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float__icon {
  position: relative;
  z-index: 2;
  color: #fff;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: pulse-whatsapp 1.8s ease-out infinite;
  z-index: 1;
}

@keyframes pulse-whatsapp {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (min-width: 768px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    bottom: 24px;
    right: 24px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-reveal (JS driven) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Divider decorativo */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, var(--green-500), var(--green-300));
  border-radius: 2px;
  margin: 0 0 var(--space-32);
}

.divider--center { margin-left: auto; margin-right: auto; }


/* ================================================================
   JOURNEY — Overlay de Jornada Interativa
   ================================================================ */

.journey {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
}

.journey.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Header sólido nas cenas de roteiros/detalhe */
body.journey-open .header {
  background: var(--navy-900) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Header 50% transparente na tela de escolha */
body.journey-at-choose .header {
  background: rgba(4, 22, 39, 0.35) !important;
  backdrop-filter: blur(10px);
  box-shadow: none;
}


/* ── Scenes ──────────────────────────────────────────────────── */
.journey__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(48px);
  background: #000;
  transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cenas com scroll interno (detalhe, personalizado) */
#scene-detail,
#scene-personalizado {
  overflow-y: auto;
  overflow-x: hidden;
}

.journey__scene.is-active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.journey__scene.is-exiting {
  opacity: 0;
  transform: translateX(-48px);
  pointer-events: none;
}

/* scene-roteiros back button */
.scene-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(4, 22, 39, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0.35rem 0.85rem 0.35rem 0.6rem;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.04em;
}

.scene-back-btn:hover {
  color: #fff;
  background: rgba(4, 22, 39, 0.8);
}

/* Scene Tag */
.scene__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 0.6rem;
}

/* ================================================================
   SCENE: ESCOLHA — Split screen (praia de cima, montanha de baixo)
   ================================================================ */

/* Override: sem slide horizontal e sem padding-top */
#scene-choose {
  padding-top: 0 !important;
  transform: none !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--header-height));
}

#scene-choose.is-exiting {
  transform: none !important;
}

/* ── Painel base ─────────────────────────────────────────────── */
.choice-panel {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: none;
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.choice-panel:hover { flex: 1.4; }

/* Montanha (topo) entra de cima */
.choice-panel--montanha {
  transform: translateY(-100%);
  transition:
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Praia (baixo) entra de baixo */
.choice-panel--praia {
  transform: translateY(100%);
  transition:
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.06s,
    flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#scene-choose.is-active .choice-panel--praia,
#scene-choose.is-active .choice-panel--montanha {
  transform: translateY(0);
}

/* Backgrounds */
.choice-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.choice-panel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Praia: 25% do topo para equilibrar água e areia */
.choice-panel--praia .choice-panel__video {
  object-position: center 25%;
}

.choice-panel__bg--praia {
  background: #041627;
}

.choice-panel__bg--montanha {
  background: #0a0f0a;
}

.choice-panel:hover .choice-panel__bg { transform: scale(1.05); }

.choice-panel__vignette {
  display: none;
}

/* Conteúdo central */
.choice-panel__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  transition: transform 0.35s ease;
}

.choice-panel:hover .choice-panel__content { transform: scale(1.04); }

.choice-panel__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.choice-panel:hover .choice-panel__eyebrow { opacity: 1; transform: translateY(0); }

.choice-panel__name {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.choice-panel__sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0.4rem 0 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.choice-panel:hover .choice-panel__sub { opacity: 1; transform: translateY(0); }

.choice-panel__hint-arrow {
  position: absolute;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  opacity: 0;
  transition: opacity 0.3s ease, color 0.3s ease;
}

/* Montanha fica no topo → seta aponta para baixo */
.choice-panel--montanha .choice-panel__hint-arrow {
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
}

/* Praia fica embaixo → seta aponta para cima */
.choice-panel--praia .choice-panel__hint-arrow {
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.choice-panel:hover .choice-panel__hint-arrow { opacity: 1; color: var(--green-400); }

/* Linha divisória entre os painéis */
.choice-panel__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

/* ── Card Personalizado dentro da grid de roteiros ──────────────── */
.j-card--personalizado .j-card__vignette--personalizado {
  background: linear-gradient(
    to top,
    rgba(4, 22, 39, 0.96) 0%,
    rgba(4, 22, 39, 0.5) 50%,
    rgba(4, 22, 39, 0.2) 100%
  );
}

/* Destaca levemente com borda verde sutil */
.j-card--personalizado {
  border: 1px solid rgba(139, 197, 63, 0.2) !important;
}

.j-card--personalizado:hover {
  border-color: var(--green-400) !important;
}

/* ── Scene: Reveal (mensagem de valor) ─────────────────────────── */
.scene-reveal {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  transform: none !important;
}

.scene-reveal.is-active {
  transform: none !important;
}

.scene-reveal__inner {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.scene-reveal__quote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.3;
  max-width: 600px;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scene-reveal.is-active .scene-reveal__quote {
  opacity: 1;
  transform: translateY(0);
}

.scene-reveal__brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-400);
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}

.scene-reveal.is-active .scene-reveal__brand {
  opacity: 1;
}

/* ── Scene: Personalizado ────────────────────────────────────────── */
.scene-personalizado {
  height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  position: relative;
}

.scene-personalizado__back {
  position: absolute;
  top: 1.25rem;
  left: 2rem;
  z-index: 10;
}

.scene-personalizado__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 2rem 3rem min(10vw, 6rem);
  max-width: 680px;
}

.scene-personalizado__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  margin: 0.5rem 0 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.scene-personalizado__title span {
  color: var(--green-400);
}

.scene-personalizado__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.scene-personalizado__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.scene-personalizado__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.75rem;
}

.scene-personalizado__item span {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.scene-personalizado__item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
  margin: 0;
}

.scene-personalizado__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.scene-personalizado__hint {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  letter-spacing: 0.05em;
}

/* ================================================================
   SCENE: LISTA DE ROTEIROS — Layout imersivo
   ================================================================ */

.scene-roteiros {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #000;
}

/* Barra superior flutuante */
/* Botão voltar flutuante sobre os cards (sem top-bar) */
.scene-back-btn--float {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  z-index: 20;
}

/* Grid de cards — flex para 3 cards (praia) */
.scene-roteiros__grid {
  display: flex;
  flex: 1;
  min-height: 0;
  gap: 0;
}

/* Grid 3×2 para 6 cards (legado) */
.scene-roteiros__grid--6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  flex: 1;
  min-height: 0;
  gap: 0;
}

/* Grid scrollável — 3 colunas, 2 linhas visíveis, scroll vertical */
.scene-roteiros__grid--scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 50%;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  gap: 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.18) transparent;
}
.scene-roteiros__grid--scroll::-webkit-scrollbar { width: 4px; }
.scene-roteiros__grid--scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
}

/* ── J-CARD: painel cinemático ────────────────────────────────── */
.j-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  border-right: 1px solid rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(0,0,0,0.6);
  background: #08141e;
  text-align: left;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
}

.j-card:last-child { border-right: none; }

.j-card:hover { flex: 1.55; }

/* Grid cards não usam flex expansion */
.scene-roteiros__grid--6 .j-card,
.scene-roteiros__grid--scroll .j-card {
  flex: none;
  transition: none;
}

.scene-roteiros__grid--6 .j-card:hover .j-card__bg,
.scene-roteiros__grid--scroll .j-card:hover .j-card__bg {
  transform: scale(1.06);
}

/* Background do card */
.j-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.j-card:not(.scene-roteiros__grid--6 .j-card):not(.scene-roteiros__grid--scroll .j-card):hover .j-card__bg {
  transform: scale(1.05);
}

/* Vinheta permanente (garante leitura do texto) */
.j-card__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.12) 35%,
    transparent 60%
  );
  transition: background 0.4s ease;
}

.j-card:hover .j-card__vignette {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.22) 50%,
    transparent 75%
  );
}

/* Badge "Novo" */
.j-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: var(--green-500);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* Conteúdo sobreposição */
/*
  Card content: em repouso só o nome aparece no canto inferior esquerdo.
  Ao hover, o bloco desliza para cima revelando duração, localização e detalhes abaixo.
  O overflow:hidden do card recorta o que fica fora.
*/
.j-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1rem 0.85rem;
  gap: 0.1rem;
  /* empurra o bloco para baixo: a altura da reveal + duração + localização sai do card */
  transform: translateY(3.2rem);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.j-card:hover .j-card__content {
  transform: translateY(0);
}

/* Agrupa texto no canto inferior esquerdo */
.j-card__content > * {
  max-width: 80%;
}

.j-card__duration-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.1rem;
}

.j-card__title {
  font-family: var(--font-head);
  font-size: clamp(0.82rem, 1.15vw, 1.05rem);
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}

.j-card__location {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0.08rem 0 0;
}

/* Linha de detalhes — sempre visível no fluxo, revelada pelo slide */
.j-card__reveal {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 88%;
  margin-top: 0.55rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.j-card__price {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.3;
}

.j-card__price small {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.32);
  font-weight: 400;
  display: block;
}

.j-card__cta {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-400);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease;
}

.j-card:hover .j-card__cta { gap: 0.45rem; }

/* ================================================================
   SCENE: DETALHE DO ROTEIRO
   ================================================================ */

.scene-detail {
  min-height: calc(100vh - 68px);
}

.scene-detail__hero {
  height: 42vh;
  min-height: 240px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.scene-detail__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.scene-detail__hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--navy-900) 0%,
    rgba(4, 22, 39, 0.45) 60%,
    transparent 100%
  );
}

.scene-detail__hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.scene-detail__new-badge {
  display: inline-block;
  background: var(--green-500);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.65rem;
}

.scene-detail__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin: 0 0 0.2rem;
  line-height: 1.2;
}

.scene-detail__location {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.52);
}

.scene-detail__body {
  padding: 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.scene-detail__info-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.scene-detail__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.scene-detail__info-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scene-detail__info-value {
  font-size: 0.92rem;
  color: white;
  font-weight: 600;
}

.scene-detail__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
  margin-bottom: 1.75rem;
}

.scene-detail__highlights {
  margin-bottom: 1.75rem;
}

.scene-detail__highlights-title {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.scene-detail__highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.scene-detail__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.scene-detail__highlights li::before {
  content: '✓';
  color: var(--green-400);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.scene-detail__dates-row {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 2.5rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--green-500);
  border-radius: 0 0.5rem 0.5rem 0;
  line-height: 1.6;
}

.scene-detail__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}

/* ================================================================
   RESPONSIVE — JOURNEY
   ================================================================ */

/* Touch devices */
@media (hover: none) {
  /* Choice panels: mostra textos ocultos */
  .choice-panel__eyebrow,
  .choice-panel__sub,
  .choice-panel__hint-arrow {
    opacity: 1 !important;
    transform: none !important;
  }

  .choice-panel.is-touched { flex: 1.4; }
  .choice-panel.is-touched .choice-panel__bg { transform: scale(1.05); }
  .choice-panel.is-touched .choice-panel__vignette { background: rgba(0, 0, 0, 0.1); }
  .choice-panel.is-touched .choice-panel__content { transform: scale(1.04); }

  /* J-cards: revela info ao toque — desliza bloco para cima */
  .j-card.is-touched .j-card__content { transform: translateY(0); }
  .j-card.is-touched .j-card__bg { transform: scale(1.05); }
}

@media (max-width: 768px) {
  /* Journey e scene-choose usam altura do header mobile */
  .journey {
    top: var(--header-height-mobile);
  }

  #scene-choose {
    height: calc(100vh - var(--header-height-mobile));
  }

  .scene-roteiros,
  .scene-personalizado,
  .scene-reveal {
    height: 100%;
  }

  .scene-roteiros__grid {
    min-height: 0;
  }

  .choice-panel__name {
    font-size: clamp(2rem, 10vw, 3rem);
    font-weight: 700; /* um pouco mais leve que 800 */
    letter-spacing: -0.01em;
  }

  .choice-panel--montanha .choice-panel__hint-arrow { bottom: 0.75rem; }
  .choice-panel--praia .choice-panel__hint-arrow { top: 0.75rem; }

  /* Cards mobile: coluna única com scroll */
  .scene-roteiros__grid {
    flex-direction: column;
    height: auto;
    overflow-y: auto;
    gap: 0;
  }

  .scene-roteiros__grid--6 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 42vw);
    height: auto;
  }

  /* Grid scroll mobile: 2 colunas, altura fixa por linha */
  .scene-roteiros__grid--scroll {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 48vw;
    height: calc(100vh - var(--header-height-mobile));
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100%;
  }

  .j-card {
    flex: none !important;
    height: 52vw;
    min-height: 180px;
  }

  .scene-roteiros__grid--6 .j-card,
  .scene-roteiros__grid--scroll .j-card {
    height: auto;
  }

  .scene-roteiros__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .scene-roteiros__grid.scene-roteiros__grid--6,
  .scene-roteiros__grid.scene-roteiros__grid--scroll {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .scene-detail__highlights ul {
    grid-template-columns: 1fr;
  }

  .scene-detail__info-row {
    gap: 1.25rem;
  }

  .scene-detail__body {
    padding: 1.5rem 1rem;
  }
}
