/* ══════════════════════════════════════
   Viajando da Janela, style.css
   ══════════════════════════════════════ */

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

:root {
  --verde:        #1a4a2e;
  --verde-medio:  #2d6b45;
  --verde-claro:  #4a9e6b;
  --folha:        #7ec89a;
  --ouro:         #c9953a;
  --ouro-claro:   #e8b860;
  --creme:        #f5f0e8;
  --branco:       #fdfbf7;
  --texto:        #1c1a14;
  --texto-suave:  #4a4535;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--branco);
  color: var(--texto);
  overflow-x: hidden;
}

/* NAV, estilos controlados pelo CSS inline no <head> */

/* ── HERO ── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--verde);
  padding-top: 68px; /* compensa a navbar fixa */
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Fallback: gradiente exibido quando hero-bg.jpg ainda não foi carregada */
  background:
    radial-gradient(ellipse 120% 60% at 50% 100%, #0d2e1c 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 20% 60%, #0a2518 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 80% 60%, #0a2518 0%, transparent 50%),
    linear-gradient(180deg, #0d2e1c 0%, #1a4a2e 30%, #2d6b45 65%, #4a9e6b 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Overlay escuro aplicado sempre, garante legibilidade sobre a foto */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,46,28,0.55) 0%,
    rgba(13,46,28,0.3)  50%,
    rgba(13,46,28,0.70) 100%
  );
  pointer-events: none;
}

.mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.fog-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none;
}

/* Conteúdo hero, badge + título, centralizado na parte superior */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 32rem; /* empurra o bloco todo para cima, bem acima do trem */
}

/* Botões ao redor do trem, posicionados na base do hero */
.hero-bottom {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  gap: 1rem;
  align-items: center;
  white-space: nowrap;
}

/* HERO STAGE, layout lateral com boxes */
.hero-stage {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0; right: 0;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
}
.hero-stage-center {
  width: 720px;
  flex-shrink: 0;
}

/* Chamada textual esquerda */
.hero-call {
  pointer-events: all;
  width: 270px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  /* Fundo com gradiente sutil verde-escuro */
  background: linear-gradient(
    160deg,
    rgba(10, 30, 18, 0.82) 0%,
    rgba(13, 46, 28, 0.78) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Borda esquerda dourada como detalhe editorial */
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--ouro);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-call-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--ouro) 0%, var(--ouro-claro) 100%);
  color: #1a1a0a;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem;
  border-radius: 20px;
  width: fit-content;
  box-shadow: 0 3px 12px rgba(201,149,58,0.45);
  text-decoration: none;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.hero-call-badge:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.hero-call-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
}
.hero-call-divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-call-divider::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--ouro);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-call-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.hero-call-sub {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.hero-call-sub strong {
  display: inline;
  color: var(--ouro-claro);
  font-weight: 600;
  font-style: normal;
}
.hero-call-sub em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
/* Fonte da citação */
.hero-call-source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
}
.hero-call-source:hover {
  color: var(--ouro-claro);
}
.hero-call-source::before {
  content: '📰';
  font-size: 0.75rem;
}

/* ── BOX "O QUE VOCÊ VAI VER" ── */
.hero-box {
  pointer-events: all;
  width: 290px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: rgba(5, 18, 10, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--ouro);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow:
    0 16px 48px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Header */
.hero-box-header {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}
.hero-box-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ouro);
  font-weight: 600;
  opacity: 0.85;
}
.hero-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.01em;
}
.hero-box-icon { font-size: 0.9rem; }

/* Foto principal */
.hero-photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-photo:hover img { transform: scale(1.06); }

.hero-photo-main {
  height: 130px;
  width: 100%;
}

/* Overlay com gradiente */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.1) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.55rem 0.65rem;
}
.hero-photo-tag {
  align-self: flex-start;
  background: rgba(201,149,58,0.9);
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.hero-photo-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  align-self: flex-end;
  text-align: right;
}

/* Duas fotos menores lado a lado */
.hero-box-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.hero-photo-sm {
  height: 80px;
}
.hero-photo-sm .hero-photo-overlay {
  justify-content: flex-end;
  padding: 0.4rem 0.5rem;
}
.hero-photo-sm .hero-photo-label {
  font-size: 0.65rem;
  align-self: flex-start;
  text-align: left;
}

/* Placeholder */
.hero-photo.no-photo::before {
  content: '📷';
  font-size: 1.3rem;
  opacity: 0.25;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Footer do box */
.hero-box-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0.1rem;
}
.hero-box-footer span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.hero-box-cta {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--ouro-claro);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.hero-box-cta::after {
  content: '→';
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.hero-box-cta:hover { color: white; }
.hero-box-cta:hover::after { transform: translateX(3px); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,149,58,0.15);
  border: 1px solid rgba(201,149,58,0.4);
  color: var(--ouro-claro);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.8rem;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--ouro-claro);
  display: block;
}
.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Botões */
.btn-primary {
  background: var(--ouro);
  color: white;
  padding: 0.85rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--ouro-claro); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 0.85rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* Trem */
.train-wrapper {
  position: absolute;
  bottom: 60px;   /* espaço para os botões ficarem embaixo */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.6));
  animation: trainFloat 4s ease-in-out infinite;
  width: 680px;
  max-width: 85vw;
}
.train-wrapper svg,
.train-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes trainFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

.rails-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 15;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ── PASSAGENS ── */
#passagens {
  background: var(--creme);
  padding: 8rem 4rem;
  position: relative;
}
#passagens::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--verde) 0%, var(--ouro) 50%, var(--verde) 100%);
}

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--verde-claro);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--verde);
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--texto-suave);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
}

.ticket-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Ticket card */
.ticket-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  position: relative;
}
.ticket-header {
  background: var(--verde);
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticket-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: white;
  font-size: 1rem;
  line-height: 1.3;
}
.ticket-logo-text small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 400;
}
/* Logo SVE no ticket header */
.ticket-logo-img {
  height: 36px;
  width: auto;
  margin-right: 0.8rem;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.authorized-badge {
  background: rgba(201,149,58,0.2);
  border: 1px solid var(--ouro);
  color: var(--ouro-claro);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.ticket-body { padding: 2rem; }
.route-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.station { flex: 1; }
.station-code {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--verde);
  line-height: 1;
}
.station-name {
  font-size: 0.75rem;
  color: var(--texto-suave);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}
.route-line {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.route-dots {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 3px;
}
.dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--folha); }
.dash { flex: 1; height: 1px; background: var(--folha); }
.ticket-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #e0d8cc;
}
.detail-item label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  display: block;
  margin-bottom: 0.2rem;
}
.detail-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texto);
}
.ticket-perforation {
  position: relative;
  margin: 1.5rem 0;
  height: 1px;
}
.ticket-perforation::before {
  content: '';
  position: absolute;
  top: 0; left: -2rem; right: -2rem;
  border-top: 2px dashed #e0d8cc;
}
.ticket-cta {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  gap: 0.8rem;
}
.btn-ticket {
  flex: 1;
  background: var(--verde);
  color: white;
  border: none;
  padding: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-ticket:hover { background: var(--verde-medio); }
.btn-ticket-gold {
  flex: 1;
  background: var(--ouro);
  color: white;
  border: none;
  padding: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-ticket-gold:hover { background: var(--ouro-claro); }

/* ── VAGÕES ── */
/* ── VALORES: BILHETES E PACOTES ── */
#valores-viagem {
  padding: 7rem 4rem;
  background: linear-gradient(145deg, #0d2e1c 0%, #1a4a2e 65%, #234f34 100%);
  position: relative;
  overflow: hidden;
}
#valores-viagem::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  top: -300px; right: -180px;
  border: 1px solid rgba(232,184,96,0.18);
  border-radius: 50%;
}
.valores-viagem-inner { max-width: 1050px; margin: 0 auto; position: relative; }
.valores-viagem-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.valores-viagem-header .section-tag { color: var(--ouro-claro); }
.valores-viagem-header .section-title { color: white; }
.valores-viagem-header .section-lead { color: rgba(255,255,255,0.68); margin: 1rem auto 0; }
.valores-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto;
}
.valores-media-card {
  margin: 0;
  padding: 0.55rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  overflow: hidden;
}
.valores-media-card video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: 11px;
  background: #081a10;
}
.valores-tabela-card {
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  background: rgba(7,25,15,0.7);
  border: 1px solid rgba(232,184,96,0.3);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}
.valores-tabela-topo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  color: white;
}
.valores-tabela-topo span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ouro-claro);
}
.valores-tabela-topo strong {
  margin-top: 0.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-style: italic;
}
.valores-tabela-wrap { flex: 1; display: flex; align-items: center; }
.valores-tabela { width: 100%; border-collapse: collapse; color: white; }
.valores-tabela th {
  padding: 0 0.75rem 0.7rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}
.valores-tabela th:last-child { text-align: right; }
.valores-tabela td {
  padding: 0.85rem 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  font-weight: 600;
}
.valores-tabela td span {
  display: block;
  margin-top: 0.1rem;
  color: rgba(255,255,255,0.48);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.valores-tabela td:last-child {
  color: var(--ouro-claro);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  text-align: right;
  white-space: nowrap;
}
.valores-viagem-footer {
  max-width: 800px;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.valores-viagem-footer p { color: rgba(255,255,255,0.58); font-size: 0.78rem; line-height: 1.55; }
.valores-viagem-footer .btn-whatsapp { flex-shrink: 0; }

#vagoes {
  background: var(--branco);
  padding: 8rem 4rem;
  position: relative;
}
#vagoes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--verde) 0%, var(--ouro) 50%, var(--verde) 100%);
}
.vagoes-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}
.vagoes-header .section-title { color: var(--verde); }
.vagoes-header .section-lead  { margin: 0.8rem auto 0; max-width: 520px; }

.vagoes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}

/* Card base */
.vagao-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid #ede8df;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vagao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
}

/* Label de categoria entre grids */
.vagoes-categoria-label {
  max-width: 1200px;
  margin: 3rem auto 1rem;
  padding: 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde-claro);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vagoes-categoria-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0d8cc;
}
.categoria-precos {
  display: flex;
  gap: 0.55rem;
  letter-spacing: 0;
  text-transform: none;
}
.categoria-precos > span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.42rem 0.7rem;
  background: var(--creme);
  border: 1px solid #e4dccf;
  border-radius: 999px;
  color: var(--texto-suave);
  font-size: 0.66rem;
  white-space: nowrap;
}
.categoria-precos strong {
  color: var(--verde);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
}

/* Grid turístico, 1 coluna centralizada */
.vagoes-grid-1 {
  grid-template-columns: minmax(280px, 400px) !important;
  justify-content: center;
}

/* Destaque, badge mais procurado */
.vagao-card-destaque {
  border-color: var(--ouro);
  box-shadow: 0 8px 32px rgba(201,149,58,0.2);
  position: relative;
}
.vagao-card-destaque::before {
  content: '🔥 Mais procurado · Reserva com até 2 meses';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  background: var(--ouro);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  z-index: 5;
  white-space: nowrap;
}
.vagao-badge-luxo {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(201,149,58,0.5);
  color: var(--ouro-claro);
}

/* Card luxo */
.vagao-card-luxo {
  border-color: rgba(201,149,58,0.3);
  background: linear-gradient(180deg, #fff 0%, #fdfbf5 100%);
}
.vagao-card-luxo .vagao-titulo {
  color: #1a1a2e;
}
.vagao-card-luxo .vagao-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
}
.vagao-card-luxo .vagao-cta:hover {
  background: linear-gradient(135deg, #2d2d5e 0%, #1a1a2e 100%);
}

/* Destaque, badge mais procurado */
.vagao-card-destaque::before {
  content: '🔥 Mais procurado · Reserva com até 2 meses';
  font-size: 0.6rem;
}

/* Foto do vagão */
.vagao-foto {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-medio) 100%);
  overflow: hidden;
}
.vagao-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vagao-card:hover .vagao-foto img { transform: scale(1.05); }
.vagao-foto-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.25;
}
/* Esconde placeholder quando foto carregou */
.vagao-foto img + .vagao-foto-placeholder { display: none; }
.vagao-foto.vagao-sem-foto img { display: none; }

/* Badge de categoria */
.vagao-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  color: white;
}
.vagao-badge-verde { background: var(--verde); }
.vagao-badge-ouro  { background: var(--ouro); }

/* Corpo do card */
.vagao-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.vagao-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1.3;
}
.vagao-precos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}
.vagao-precos span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 0.65rem;
  background: #f5f0e8;
  border: 1px solid #e7dece;
  border-radius: 7px;
  color: var(--texto-suave);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vagao-precos strong {
  color: var(--verde);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.2;
}
.vagao-card-luxo .vagao-precos strong { color: #2d2d5e; }
.vagao-desc {
  font-size: 0.88rem;
  color: var(--texto-suave);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

/* Lista de inclusions */
.vagao-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem;
  background: var(--creme);
  border-radius: 8px;
}
.vagao-includes li {
  font-size: 0.82rem;
  color: var(--texto-suave);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

/* Botão do card */
.vagao-cta {
  display: block;
  text-align: center;
  background: var(--verde);
  color: white;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: auto;
}
.vagao-cta:hover { background: var(--verde-medio); }
.vagao-card-destaque .vagao-cta {
  background: var(--ouro);
}
.vagao-card-destaque .vagao-cta:hover { background: var(--ouro-claro); }

/* Responsivo vagões */
@media (max-width: 1024px) {
  .vagoes-grid { grid-template-columns: repeat(2, 1fr); }
  #vagoes { padding: 6rem 2.5rem; }
  #valores-viagem { padding: 6rem 2.5rem; }
}
@media (max-width: 640px) {
  .vagoes-grid { grid-template-columns: 1fr; }
  #vagoes { padding: 4rem 1.5rem; }
  .vagoes-categoria-label { flex-wrap: wrap; gap: 0.7rem; }
  .vagoes-categoria-label::after { flex-basis: 100%; }
  .categoria-precos { width: 100%; }
  .categoria-precos > span { flex: 1; justify-content: center; }
}

/* ── SERVIÇOS ── */
#servicos {
  background: var(--verde);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
#servicos::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  pointer-events: none;
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.services-header .section-tag  { color: var(--folha); }
.services-header .section-title { color: white; }
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover { background: rgba(255,255,255,0.09); }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ouro);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon  { font-size: 2rem; line-height: 1; }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}
.service-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
}
.service-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.68);
}
.service-list li {
  position: relative;
  padding-left: 1rem;
}
.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--ouro-claro);
}
.service-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(232,184,96,0.48);
  border-radius: 999px;
  color: var(--ouro-claro);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.service-link::after {
  content: '→';
  font-size: 0.9rem;
}
.service-link:hover {
  background: rgba(232,184,96,0.12);
  border-color: var(--ouro-claro);
  transform: translateY(-2px);
}
.service-link-featured {
  margin-top: 0.2rem;
}
.service-card-featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(201,149,58,0.18), rgba(255,255,255,0.05));
  border: 1px solid rgba(232,184,96,0.28);
}
.service-featured-media {
  flex: 0 0 40%;
  min-height: 310px;
  overflow: hidden;
  border-radius: 9px;
}
.service-featured-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.service-featured-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.75rem;
}
.service-highlight {
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--ouro);
  color: #17291d;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-list-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ── DIFERENCIAIS PROFISSIONAIS ── */
#diferenciais { padding: 7rem 4rem; background: var(--creme); position: relative; overflow: hidden; }
#diferenciais::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  top: -240px; right: -120px;
  border: 1px solid rgba(201,149,58,0.2);
  border-radius: 50%;
}
.diferenciais-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.diferenciais-intro { max-width: 850px; margin-bottom: 3rem; }
.diferenciais-intro .section-tag { color: var(--verde-medio); }
.diferenciais-lead {
  max-width: 780px;
  margin-top: 1.4rem;
  color: var(--texto-suave);
  font-size: 1.02rem;
  line-height: 1.8;
}
.diferenciais-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.diferencial-card {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--branco);
  border: 1px solid rgba(26,74,46,0.1);
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(28,26,20,0.06);
}
.diferencial-star {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ouro);
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(201,149,58,0.3);
}
.diferencial-card h3 {
  margin-bottom: 0.7rem;
  color: var(--verde);
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  line-height: 1.35;
}
.diferencial-card p { color: var(--texto-suave); font-size: 0.9rem; line-height: 1.7; }
.diferenciais-signature {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--ouro);
  background: var(--verde);
  color: white;
  border-radius: 0 10px 10px 0;
}
.diferenciais-signature span {
  color: var(--ouro-claro);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.diferenciais-signature p { color: rgba(255,255,255,0.82); font-size: 0.9rem; line-height: 1.65; }

/* ── SOBRE ── */
#sobre {
  padding: 8rem 4rem;
  background: var(--branco);
}
.sobre-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.sobre-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Container dos dois vídeos lado a lado */
.sobre-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.sobre-img-main {
  width: 100%;
  aspect-ratio: 9/16;
  background: #0d2e1c;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
/* Vídeo, 16/9 perfeito */
.sobre-img-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* SVG fallback */
.sobre-img-main svg {
  width: 80%;
  height: 80%;
  opacity: 0.25;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Float card, Serra Verde Express Autorizada */
.sobre-float-card {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #0d2e1c 0%, #1a4a2e 100%);
  border: 1px solid rgba(201,149,58,0.4);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
/* Linha dourada decorativa no topo */
.sobre-float-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ouro), transparent);
  border-radius: 10px 10px 0 0;
}
/* Trem PNG */
.sobre-float-trem {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
/* Separador vertical */
.sobre-float-card::after {
  content: '';
  position: absolute;
  left: calc(38px + 1.8rem);
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(201,149,58,0.3);
}
.sobre-float-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.sobre-float-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.sobre-float-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ouro-claro);
  opacity: 0.9;
}
/* Badge autorizada */
.sobre-float-badge {
  margin-left: auto;
  background: rgba(201,149,58,0.15);
  border: 1px solid rgba(201,149,58,0.4);
  color: var(--ouro-claro);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sobre-img-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 2;
}

/* Float card, trem miniatura */
.sobre-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--verde);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.sobre-text {
  font-size: 1rem;
  color: var(--texto-suave);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2rem;
}
.sobre-points {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.sobre-point {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--texto-suave);
}
.point-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ouro);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   DEPOIMENTOS
   ══════════════════════════════════════ */
#depoimentos {
  background: var(--creme);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
#depoimentos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--verde) 0%, var(--ouro) 50%, var(--verde) 100%);
}
.dep-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Header */
.dep-header { text-align: center; }
.dep-stars-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
  font-size: 1rem;
}
.dep-stars-header span {
  font-size: 0.8rem;
  color: var(--texto-suave);
  letter-spacing: 0.04em;
}

/* Depoimento destaque */
.dep-destaque {
  background: var(--verde);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.dep-destaque::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.dep-aspas {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.6;
  color: var(--ouro);
  opacity: 0.4;
  margin-bottom: 0.5rem;
  user-select: none;
}
.dep-destaque-texto {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: white;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.dep-destaque-autor {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Avatar */
.dep-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--ouro);
  background: var(--verde-medio);
  position: relative;
}
.dep-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dep-avatar-initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}
.dep-avatar-sm {
  width: 42px;
  height: 42px;
  border-width: 1.5px;
}

.dep-autor-info {
  flex: 1;
}
.dep-autor-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}
.dep-autor-info span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.dep-estrelas {
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-left: auto;
}

/* Grid de cards */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.dep-card {
  background: white;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #ede8df;
  transition: transform 0.25s, box-shadow 0.25s;
}
.dep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.dep-card-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.dep-card-top > div:nth-child(2) strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--texto);
}
.dep-card-top > div:nth-child(2) span {
  font-size: 0.72rem;
  color: var(--texto-suave);
}
.dep-card-top .dep-estrelas { margin-left: auto; font-size: 0.75rem; }
.dep-card p {
  font-size: 0.88rem;
  color: var(--texto-suave);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  flex: 1;
}
.dep-card p::before { content: '"'; }
.dep-card p::after  { content: '"'; }
.dep-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--verde-claro);
  font-weight: 600;
  padding-top: 0.6rem;
  border-top: 1px solid #ede8df;
}

/* CTA */
.dep-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.dep-cta p {
  font-size: 1rem;
  color: var(--texto-suave);
  font-style: italic;
}

/* Responsivo */
@media (max-width: 1024px) {
  .dep-grid { grid-template-columns: repeat(2, 1fr); }
  #depoimentos { padding: 6rem 2.5rem; }
  .dep-destaque { padding: 2rem; }
}
@media (max-width: 640px) {
  .dep-grid { grid-template-columns: 1fr; }
  #depoimentos { padding: 4rem 1.5rem; }
  .dep-aspas { font-size: 5rem; }
  .dep-destaque-texto { font-size: 1rem; }
}

/* ── CTA FINAL ── */
#cta {
  position: relative;
  padding: 8rem 4rem;
  text-align: center;
  overflow: hidden;
}
/* Fundo imagem */
.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--verde);
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Overlay escuro */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,46,28,0.88) 0%,
    rgba(13,46,28,0.70) 50%,
    rgba(13,46,28,0.85) 100%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-emoji  { font-size: 3rem; margin-bottom: 1rem; display: block; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* Card executiva */
.cta-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  margin: 0 auto 2rem;
  max-width: 480px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
/* Avatar com foto de perfil */
.cta-card-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2.5px solid var(--ouro);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--verde-medio);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(201,149,58,0.2);
}
.cta-card-avatar img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.cta-avatar-initials {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
}
.cta-card-avatar:not(.no-foto) .cta-avatar-initials { display: none; }
.cta-card-info { flex: 1; }
.cta-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.cta-card-role {
  font-size: 0.78rem;
  color: var(--ouro-claro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.2rem;
}
.cta-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.cta-card-contacts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.cta-contact-item:hover { color: white; }
.cta-contact-icon { font-size: 1rem; flex-shrink: 0; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: white;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ══════════════════════════════════════
   MISSÃO / VISÃO / VALORES
   ══════════════════════════════════════ */
#missao {
  background: var(--verde);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
#missao::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.missao-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* Grid Missão + Visão */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s;
}
.mv-card:hover { background: rgba(255,255,255,0.08); }
.mv-icon { font-size: 2rem; line-height: 1; }
.mv-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ouro-claro);
  line-height: 1.2;
}
.mv-texto {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  font-weight: 300;
}

/* Valores */
.valores-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.valores-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-align: center;
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}
.valor-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.25s, border-color 0.25s;
}
.valor-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,149,58,0.4);
}
.valor-icon { font-size: 1.5rem; line-height: 1; }
.valor-item strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ouro-claro);
  letter-spacing: 0.02em;
}
.valor-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  font-weight: 300;
}

/* Responsive Missão */
@media (max-width: 1024px) {
  #missao { padding: 6rem 2.5rem; }
  .valores-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  #missao { padding: 4rem 1.5rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .valores-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .valores-grid { grid-template-columns: 1fr; }
}

/* Selos de certificação, seção CTA */
.cta-selos {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.cta-selos-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
/* Faixa branca, linha única */
.cta-selos-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.8rem 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  width: 100%;
  max-width: 620px;
}
.cta-selo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  opacity: 0.72;
  transition: opacity 0.2s, transform 0.2s;
}
.cta-selo:hover { opacity: 1; transform: translateY(-1px); }
.cta-selo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
/* Placeholder */
.cta-selo img[style*="display: none"] + .cta-selo-placeholder { display: flex; }
.cta-selo-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #f5f0e8;
  border: 1.5px dashed #c8bfaf;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cta-selo span {
  font-size: 0.6rem;
  color: #666;
  line-height: 1.3;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.cta-selo-sep {
  width: 1px;
  height: 28px;
  background: #e8e0d6;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   FOOTER INSTITUCIONAL
   ══════════════════════════════════════ */
footer {
  background: #0a1f14;
  color: rgba(255,255,255,0.6);
  padding: 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,158,107,0.08) 0%, transparent 70%);
  pointer-events: none;
}
footer::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Faixa de parceiros ── */
.footer-parceiros {
  padding: 2.5rem 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
  background: #ffffff;
}
.footer-parceiros-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  font-weight: 500;
}
.footer-parceiros-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-parceiro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  opacity: 0.65;
  transition: opacity 0.25s, transform 0.25s;
}
.footer-parceiro-item:hover { opacity: 1; transform: translateY(-2px); }
.footer-parceiro-item img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.footer-parceiro-item span {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  line-height: 1.3;
}
.footer-parceiro-sep {
  width: 1px;
  height: 30px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}

/* ── Corpo principal ── */
.footer-main {
  padding: 4rem 5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

/* Col 1, marca */
.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.25;
}
.footer-brand-name span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-top: 2px;
}
.footer-slogan {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--ouro-claro);
  opacity: 0.7;
  line-height: 1.5;
}

/* Contatos na col 1 */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-contact-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.4;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--ouro-claro); }

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.4rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.footer-social a:hover {
  border-color: var(--ouro);
  background: rgba(201,149,58,0.12);
  transform: translateY(-2px);
}
.footer-social img {
  width: 14px; height: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}

/* Col título */
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ouro);
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201,149,58,0.2);
}

/* Links de nav */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s, gap 0.2s;
}
.footer-links a::before {
  content: '→';
  font-size: 0.7rem;
  opacity: 0;
  color: var(--ouro);
  transition: opacity 0.2s;
}
.footer-links a:hover {
  color: white;
  gap: 0.7rem;
}
.footer-links a:hover::before { opacity: 1; }

/* Card executiva na col 3 */
.footer-executiva {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-executiva-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.footer-executiva-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--verde-medio);
  border: 2px solid rgba(201,149,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.footer-executiva-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}
.footer-executiva-info span {
  font-size: 0.72rem;
  color: var(--ouro);
  opacity: 0.8;
  letter-spacing: 0.04em;
}
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  color: #25d366;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  width: 100%;
  justify-content: center;
}
.footer-whatsapp:hover {
  background: rgba(37,211,102,0.2);
  border-color: rgba(37,211,102,0.5);
}

/* ── Faixa inferior ── */
.footer-bottom {
  padding: 1.2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
}
.footer-dev {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
}
.footer-dev a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-dev a:hover { color: var(--ouro-claro); }

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-parceiros { padding: 2rem 2.5rem; }
  .footer-main { padding: 3rem 2.5rem; gap: 2.5rem; }
  .footer-bottom { padding: 1.2rem 2.5rem; }
}
@media (max-width: 768px) {
  .footer-parceiros { padding: 2rem 1.5rem; }
  .footer-parceiro-sep { display: none; }
  .footer-main { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; gap: 2rem; }
  .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════
   BOTÕES FLUTUANTES
   ══════════════════════════════════════ */
.float-buttons {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

/* Base */
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 50px;
  padding: 0.7rem 1.1rem 0.7rem 0.9rem;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.25s, box-shadow 0.25s, padding 0.25s;
  overflow: hidden;
  max-width: 52px; /* começa só com ícone */
  white-space: nowrap;
}
.float-btn:hover {
  max-width: 200px;
  padding: 0.7rem 1.3rem 0.7rem 1rem;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.float-btn svg { flex-shrink: 0; }

/* Label, aparece no hover */
.float-btn-label {
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s 0.05s, transform 0.2s 0.05s;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.float-btn:hover .float-btn-label {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp */
.float-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1aad52 100%);
}
.float-whatsapp:hover {
  background: linear-gradient(135deg, #2de070 0%, #1aad52 100%);
}

/* Instagram */
.float-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}
.float-instagram:hover {
  background: linear-gradient(135deg, #9b4bc8 0%, #fd1d1d 50%, #fdc055 100%);
}

/* Pulse no WhatsApp para chamar atenção */
.float-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid rgba(37,211,102,0.5);
  animation: floatPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes floatPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 480px) {
  .float-buttons { right: 1rem; bottom: 1.2rem; }
  .float-btn { padding: 0.7rem; border-radius: 50%; max-width: 48px; }
  .float-btn:hover { max-width: 48px; padding: 0.7rem; }
  .float-btn-label { display: none; }
  .float-whatsapp::after { border-radius: 50%; }
}

/* ── ANIMAÇÕES DE ENTRADA ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Ilustração SVG fallback na seção sobre */
.landscape-deco {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* ══════════════════════════════════════
   RESPONSIVIDADE
   ══════════════════════════════════════ */

/* Tablet 1024px */
@media (max-width: 1024px) {
  nav#navbar { padding: 0 1.5rem; }
  nav#navbar .nav-right { gap: 1.2rem; }
  nav#navbar .nav-links { gap: 1.2rem; }

  #hero { min-height: 100svh; }
  .hero-title { font-size: clamp(2.4rem, 6vw, 4.5rem); }
  .hero-stage { padding: 0 1rem; }
  .hero-stage-center { width: 420px; }
  .hero-box { width: 180px; }

  .train-wrapper { width: 480px; }

  .ticket-layout { gap: 3rem; }
  #passagens { padding: 6rem 2.5rem; }
  #servicos  { padding: 6rem 2.5rem; }
  #sobre     { padding: 6rem 2.5rem; }
  #cta       { padding: 6rem 2.5rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-layout  { gap: 3rem; }
  .footer-main   { padding: 3rem 2.5rem; gap: 2rem; }
  .footer-bottom { padding: 1.2rem 2.5rem; }
}

/* Mobile 768px */
@media (max-width: 768px) {

  /* Navbar mobile */
  nav#navbar { padding: 0 1.2rem; height: 60px; }
  nav#navbar .nav-logo-text { font-size: 0.82rem; }
  nav#navbar .nav-links { display: none; } /* menu hamburguer futuro */
  nav#navbar .nav-right { gap: 0.45rem; }
  nav#navbar .nav-cta { padding: 0.4rem 1rem; font-size: 0.7rem; }

  /* Hero mobile */
  #hero { padding-top: 60px; min-height: 100svh; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  /* Boxes laterais: empilham verticalmente abaixo do trem */
  .hero-stage {
    top: auto;
    bottom: 80px;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 0 1rem;
  }
  .hero-stage-center { display: none; }
  .hero-box { width: 100%; max-width: 340px; }
  .hero-box-photos .hero-photo { aspect-ratio: 1/1; }

  .train-wrapper {
    width: 90vw;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-bottom {
    bottom: 1rem;
    flex-direction: column;
    gap: 0.6rem;
    width: 90%;
  }
  .hero-bottom .btn-primary,
  .hero-bottom .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Seções mobile */
  #passagens { padding: 4rem 1.5rem; }
  #valores-viagem { padding: 4rem 1.5rem; }
  #servicos  { padding: 4rem 1.5rem; }
  #diferenciais { padding: 4rem 1.5rem; }
  #sobre     { padding: 4rem 1.5rem; }
  #cta       { padding: 4rem 1.5rem; }

  .ticket-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .valores-media-grid { grid-template-columns: 1fr; max-width: 420px; }
  .valores-viagem-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .valores-viagem-footer .btn-whatsapp { text-align: center; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: auto; flex-direction: column; }
  .service-featured-media { flex-basis: auto; width: 100%; min-height: 240px; }
  .service-list-columns { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .diferenciais-signature { grid-template-columns: 1fr; gap: 0.65rem; }
  .services-header { flex-direction: column; gap: 1rem; }
  .sobre-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-float-card { top: -1rem; right: -0.5rem; }

  .cta-inner { padding: 0; }
  .cta-card { padding: 1.4rem; }

  /* Footer mobile */
  .footer-main {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }
  .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; gap: 0.3rem; text-align: center; }
  .footer-logo-divider { display: none; }
}

/* Mobile pequeno 480px */
@media (max-width: 480px) {
  nav#navbar .nav-logo-text { font-size: 0.75rem; }
  .hero-title { font-size: 2rem; }
  .hero-box { display: none; } /* esconde boxes em tela muito pequena */
  .section-title { font-size: 1.8rem; }
  .ticket-layout { padding: 0; }
  .sobre-float-card { display: none; }
  .cta-card { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
  .cta-actions a { width: 100%; text-align: center; justify-content: center; }
  .footer-logos { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── REFINAMENTO MOBILE ── */
@media (min-width: 769px) and (max-width: 1024px) {
  nav#navbar .nav-links { display: none; }
  nav#navbar .nav-right { gap: 0.55rem; }

  #hero { height: 800px; min-height: 800px; }
  .hero-content {
    position: absolute;
    top: 95px;
    left: 1.5rem;
    right: 1.5rem;
    margin: 0;
  }
  .hero-stage {
    top: auto;
    bottom: 125px;
    display: block;
    transform: none;
  }
  .hero-stage-center, .hero-box { display: none; }
  .hero-call {
    width: min(100%, 420px);
    margin: 0 auto;
    padding: 1.15rem 1.3rem;
    gap: 0.65rem;
  }
  .hero-call-divider, .hero-call-source { display: none; }
  .train-wrapper {
    width: min(42vw, 360px);
    max-height: 250px;
    top: 40%;
    bottom: auto;
    transform: translate(-50%, -50%);
    animation: none;
  }
  .train-wrapper img { max-height: 250px; object-fit: contain; }
  .hero-bottom { bottom: 16px; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 64px; }
  body { overflow-wrap: anywhere; }

  nav#navbar {
    padding-inline: 0.8rem;
    gap: 0.45rem;
  }
  nav#navbar .nav-logo-img { max-width: 48px; max-height: 44px; }
  nav#navbar .nav-logo-text { line-height: 1.05; }
  nav#navbar .nav-right { gap: 0.35rem; }
  nav#navbar .nav-cta {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.72rem;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  #hero { height: 760px; min-height: 760px; }
  .hero-content {
    position: absolute;
    top: 92px;
    left: 1rem;
    right: 1rem;
    margin: 0;
  }
  .hero-badge { font-size: 0.58rem; }
  .hero-title { line-height: 0.98; }
  .hero-stage {
    bottom: 125px;
    display: block;
    padding-inline: 1rem;
    z-index: 22;
  }
  .hero-box { display: none; }
  .hero-call {
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 1rem 1.15rem;
    gap: 0.55rem;
    border-radius: 12px;
  }
  .hero-call-text { font-size: 0.96rem; line-height: 1.3; }
  .hero-call-sub { font-size: 0.72rem; line-height: 1.4; }
  .hero-call-source, .hero-call-divider { display: none; }
  .train-wrapper {
    top: 40%;
    width: min(68vw, 310px);
    max-height: 220px;
    transform: translate(-50%, -50%);
    animation: none;
  }
  .train-wrapper img { max-height: 220px; object-fit: contain; }
  .hero-bottom {
    width: calc(100% - 2rem);
    max-width: 360px;
    bottom: 14px;
    gap: 0.45rem;
  }
  .hero-bottom .btn-primary,
  .hero-bottom .btn-outline { min-height: 44px; padding: 0.7rem 1rem; }

  .section-title { line-height: 1.12; }
  .section-lead { line-height: 1.65; }
  .ticket-card { width: 100%; }
  .ticket-main { min-width: 0; }
  .ticket-details { grid-template-columns: 1fr 1fr; }
  .ticket-cta { flex-wrap: wrap; }
  .ticket-cta button { flex: 1 1 140px; min-height: 44px; }

  .valores-tabela-card { padding: 1.15rem; }
  .valores-media-card { padding: 0.35rem; }
  .valores-media-card video { height: auto; max-height: none; aspect-ratio: 9 / 16; object-fit: cover; }
  .valores-tabela th, .valores-tabela td { padding-inline: 0.45rem; }

  .vagao-body, .service-card, .diferencial-card { padding: 1.35rem; }
  .vagao-precos { gap: 0.35rem; }
  .vagao-precos span { padding: 0.5rem; }
  .vagao-cta { min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .service-featured-media { min-height: 210px; }

  .sobre-img-main { min-height: 300px; }
  .cta-card { gap: 1rem; }
  .cta-card-contacts { min-width: 0; width: 100%; }
  .cta-contact-item { overflow-wrap: anywhere; }
  .cta-actions a { min-height: 46px; }

  .footer-parceiros-logos { justify-content: flex-start; overflow-x: auto; padding-bottom: 0.75rem; }
  .footer-parceiro-item { min-width: 125px; }
  .float-buttons { z-index: 80; }
}

@media (max-width: 480px) {
  nav#navbar .nav-logo-text { display: none; }
  nav#navbar .nav-logo-img { max-width: 44px; }
  nav#navbar .nav-spacer { min-width: 0; }
  nav#navbar .nav-cta { padding-inline: 0.58rem; font-size: 0.58rem; }

  #hero { height: 700px; min-height: 700px; }
  .hero-content { top: 82px; }
  .hero-title { font-size: clamp(1.85rem, 10vw, 2.35rem); }
  .train-wrapper { top: 39%; width: min(66vw, 270px); max-height: 190px; }
  .train-wrapper img { max-height: 190px; }
  .hero-call { padding: 0.9rem 1rem; }
  .hero-call-badge { font-size: 0.52rem; }

  #passagens,
  #valores-viagem,
  #vagoes,
  #servicos,
  #diferenciais,
  #sobre,
  #cta,
  #missao,
  #depoimentos { padding-inline: 1rem; }

  .ticket-details { grid-template-columns: 1fr; }
  .categoria-precos { gap: 0.35rem; }
  .categoria-precos > span { padding: 0.4rem 0.45rem; }
  .diferencial-card { flex-direction: column; }
  .dep-destaque-autor { align-items: flex-start; flex-wrap: wrap; }
  .dep-estrelas { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
