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

:root {
  --red:         #c8102e;
  --red-dark:    #8b0b1f;
  --red-mid:     #a50d24;
  --red-bright:  #e8163a;
  --red-light:   #fef2f4;
  --red-glow:    rgba(200,16,46,.35);
  --black:       #0d0d0d;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --dark-3:      #222222;
  --gold:        #f59e0b;
  --gold-light:  #fcd34d;
  --white:       #f9fafb;
  --gray-light:  #f3f4f6;
  --gray:        #6b7280;
  --text:        #1f2937;
  --shadow:      0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 56px rgba(0,0,0,.2);
  --shadow-red:  0 8px 32px rgba(200,16,46,.3);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.highlight {
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-tagline::before,
.section-tagline::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  opacity: .5;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 60px; }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: .97rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: .02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,16,46,.5);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
  transform: translateY(-3px);
}
.btn-white {
  background: #fff;
  color: var(--red-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.22); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.65);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn-small {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(200,16,46,.3);
}
.btn-small:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,16,46,.4); }

/* ── NAVBAR ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(200,16,46,.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.02em;
}
.nav-logo .logo-kma {
  color: var(--red);
  font-weight: 900;
  font-size: 1.5rem;
}
.nav-logo .logo-sep { color: rgba(255,255,255,.25); font-weight: 300; }
.nav-logo i { color: var(--red); font-size: 1.5rem; }
.logo-badge { width: 38px; height: 38px; display: block; object-fit: cover; border-radius: 50%; filter: drop-shadow(0 2px 6px rgba(200,16,46,.4)); }
.nav-menu { display: flex; list-style: none; gap: 2px; align-items: center; flex-wrap: nowrap; }
.nav-link {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-weight: 500;
  font-size: .82rem;
  padding: 7px 11px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-crm {
  background: linear-gradient(135deg, rgba(200,16,46,.25), rgba(232,22,58,.2));
  color: #ffb3bc !important;
  border: 1px solid rgba(200,16,46,.35);
  border-radius: 8px;
}
.nav-crm:hover { background: rgba(200,16,46,.35) !important; border-color: rgba(200,16,46,.55) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d0000 0%, #1a0205 35%, #0d0d0d 65%, #000 100%);
  overflow: hidden;
  padding: 100px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 20% 50%, rgba(200,16,46,.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 80% 50%, rgba(200,16,46,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-canvas { display: none; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-wm-cover {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%; height: 120px;
  background: linear-gradient(to top, #000 0%, rgba(0,0,0,.85) 40%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,0,0,.72) 0%, rgba(26,2,5,.62) 35%, rgba(13,13,13,.68) 65%, rgba(0,0,0,.75) 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFly linear infinite;
}
@keyframes particleFly {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-content { flex: 1; max-width: 620px; position: relative; z-index: 2; }
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(200,16,46,.3);
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(200,16,46,.08);
}
.hero-tagline i { color: var(--red); font-size: .75rem; }
.hero-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -.03em;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--red), #ff4d6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: rgba(255,255,255,.6);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-van {
  flex: 1;
  max-width: 520px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-van-frame {
  position: relative;
  width: 100%;
}
.hero-van-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--red), var(--red-dark), transparent, var(--red));
  border-radius: 28px;
  z-index: -1;
  opacity: .6;
}
.hero-van-img {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 60px rgba(200,16,46,.15);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}
@keyframes floatVan {
  0%,100% { transform: translateY(0) rotate(-0.5deg); }
  50%      { transform: translateY(-14px) rotate(0.5deg); }
}
.animate-float { animation: floatVan 4.5s ease-in-out infinite; }

.hero-scroll {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,.35);
  font-size: .75rem;
  letter-spacing: .1em;
  z-index: 2;
}
.scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(200,16,46,.5);
  border-bottom: 2px solid rgba(200,16,46,.5);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: arrowBounce 1.6s infinite;
}
@keyframes arrowBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(6px); }
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; }
.hero-wave svg { display: block; }

/* ── ANIMATE CLASSES ─────────────────────────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp .85s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .5s; }
.delay-4 { animation-delay: .7s; }

.reveal-up, .reveal-left, .reveal-right, .reveal-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-card  { transform: translateY(40px) scale(.97); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-card.visible {
  opacity: 1; transform: none;
}

/* ── STATS BAR ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: #fff;
  padding: 0 0 72px;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), var(--red-bright), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 56px;
}
.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  transform: scaleX(0);
  transition: transform .35s ease;
  transform-origin: left;
}
.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(200,16,46,.12);
  border-color: rgba(200,16,46,.2);
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-item i { font-size: 2rem; color: var(--red); margin-bottom: 14px; display: block; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.stat-label { font-size: .84rem; color: var(--gray); font-weight: 500; }

/* ── SOBRE ──────────────────────────────────────────────────────────────── */
.sobre { padding: 100px 0; background: var(--white); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-img-wrapper { position: relative; display: inline-block; width: 100%; }
.sobre-photo {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.sobre-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(200,16,46,.45);
}
.sobre-badge i { font-size: 2rem; }
.sobre-badge span { font-size: .9rem; font-weight: 700; line-height: 1.3; }
.sobre-text { padding-left: 16px; }
.sobre-desc { color: var(--gray); line-height: 1.8; margin-bottom: 18px; font-size: 1rem; }
.sobre-features { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  color: var(--text);
}
.feature-item i {
  width: 36px; height: 36px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

/* ── SERVIÇOS ───────────────────────────────────────────────────────────── */
.servicos { padding: 100px 0; background: #fff; }
.servicos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.servico-card {
  text-align: center;
  padding: 44px 24px 36px;
  border-radius: var(--radius);
  border: 1px solid #f0f0f0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servico-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-light), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(200,16,46,.14);
  border-color: rgba(200,16,46,.25);
}
.servico-card:hover::after { opacity: 1; }
.servico-icon {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.9rem;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(200,16,46,.35);
}
.servico-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.servico-card p { font-size: .875rem; color: var(--gray); line-height: 1.7; position: relative; z-index: 1; }

/* ── DESTINOS ───────────────────────────────────────────────────────────── */
.destinos { padding: 100px 0; background: var(--gray-light); }
.destinos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.destino-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: var(--transition);
}
.destino-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,.15); }
.destino-img {
  height: 170px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.destino-img i { font-size: 4rem; color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.destino-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.4)); }
.destino-info { padding: 22px; }
.destino-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.destino-info p { font-size: .87rem; color: var(--gray); line-height: 1.65; margin-bottom: 18px; }
.destino-footer { display: flex; align-items: center; justify-content: space-between; }
.destino-dist { font-size: .82rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.destino-dist i { color: var(--red); }
.destinos-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 44px 32px;
  border-radius: var(--radius);
  color: #fff;
  border: 1px solid rgba(200,16,46,.2);
}
.destinos-cta p { font-size: 1.1rem; margin-bottom: 22px; opacity: .85; }

/* ── PRÓXIMAS VIAGENS (público) ─────────────────────────────────────────── */
.proximas-viagens { padding: 100px 0; background: #fff; }
.viagens-publicas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 0;
}
.viagem-publica-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden;
  transition: var(--transition);
}
.viagem-publica-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200,16,46,.12);
  border-color: rgba(200,16,46,.2);
}
.viagem-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.viagem-header-icon {
  width: 46px; height: 46px;
  background: rgba(200,16,46,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-bright);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.viagem-header h3 { color: #fff; font-size: 1rem; font-weight: 700; }
.viagem-header-date { color: rgba(255,255,255,.5); font-size: .78rem; margin-top: 2px; }
.viagem-body { padding: 20px; }
.viagem-desc { font-size: .88rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.viagem-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.viagem-meta-item { font-size: .8rem; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.viagem-meta-item i { color: var(--red); }
.viagem-vagas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--red-light);
  border-radius: 8px;
  font-size: .82rem;
  color: var(--red-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.viagem-vagas i { color: var(--red); }

/* ── COMO FUNCIONA ──────────────────────────────────────────────────────── */
.como-funciona { padding: 100px 0; background: var(--white); }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 180px; max-width: 240px;
  text-align: center; padding: 40px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: var(--transition);
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(200,16,46,.25);
  box-shadow: 0 12px 36px rgba(200,16,46,.1);
}
.step-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(200,16,46,.1);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(200,16,46,.35);
}
.step-icon i { font-size: 1.4rem; color: #fff; }
.step h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step p { font-size: .85rem; color: var(--gray); line-height: 1.65; }
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: rgba(200,16,46,.4); font-size: 1.4rem; padding: 0 4px; margin-top: 80px;
}

/* ── GALERIA ─────────────────────────────────────────────────────────────── */
.galeria { padding: 100px 0; background: var(--gray-light); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.galeria-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.galeria-item.large { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.galeria-item:hover img { transform: scale(1.07); }
.galeria-placeholder {
  width: 100%; height: 100%; min-height: 160px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9); gap: 10px;
}
.galeria-placeholder i { font-size: 2.5rem; }
.galeria-placeholder span { font-size: .9rem; font-weight: 600; }
.galeria-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.galeria-overlay i {
  color: #fff; font-size: 1.8rem;
  opacity: 0; transform: scale(.7); transition: var(--transition);
}
.galeria-item:hover .galeria-overlay { background: rgba(200,16,46,.45); }
.galeria-item:hover .galeria-overlay i { opacity: 1; transform: scale(1); }

/* ── DEPOIMENTOS ─────────────────────────────────────────────────────────── */
.depoimentos {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--dark) 0%, #1a0205 50%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.depoimentos::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,.1) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.depoimentos .section-tagline { color: var(--gold); }
.depoimentos .section-tagline::before, .depoimentos .section-tagline::after { background: var(--gold); }
.depoimentos .section-title { color: #fff; }
.depoimentos .highlight {
  background: linear-gradient(135deg, var(--red-bright), #ff6b85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.depoimentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.depoimento-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.depoimento-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(200,16,46,.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 3px; }
.depoimento-card p {
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.depoimento-autor { display: flex; align-items: center; gap: 14px; }
.autor-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: .88rem; flex-shrink: 0;
}
.depoimento-autor strong { display: block; color: #fff; font-size: .95rem; }
.depoimento-autor span { color: rgba(255,255,255,.45); font-size: .8rem; }

/* ── COTAÇÃO ─────────────────────────────────────────────────────────────── */
.cotacao-section { padding: 100px 0; background: var(--white); }
.cotacao-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.cotacao-info { padding-right: 16px; }
.cotacao-info .section-tagline, .cotacao-info .section-title { text-align: left; }
.cotacao-info .section-title { margin-bottom: 20px; }
.cotacao-bullet {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.cotacao-bullet-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--red-light);
  color: var(--red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.cotacao-bullet-text strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cotacao-bullet-text span { font-size: .88rem; color: var(--gray); line-height: 1.5; }

.cotacao-form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 48px rgba(0,0,0,.1);
  border: 1px solid #f0f0f0;
}
.cotacao-form h3 {
  font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 6px;
}
.cotacao-form .form-subtitle {
  font-size: .87rem; color: var(--gray); margin-bottom: 28px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--dark); margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: .92rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.1);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field select { cursor: pointer; }
.btn-cotacao {
  width: 100%;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
  margin-top: 8px;
}
.btn-cotacao:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(200,16,46,.45); }
.cotacao-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.cotacao-success i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 16px;
  display: block;
}
.cotacao-success h4 { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.cotacao-success p { color: var(--gray); font-size: .9rem; }

/* ── CTA ─────────────────────────────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red), var(--red-mid));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  top: -250px; right: -250px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(0,0,0,.1);
  border-radius: 50%;
  bottom: -120px; left: -100px;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-icon {
  width: 84px; height: 84px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
}
.cta-icon i { font-size: 2.2rem; color: #fff; }
.cta-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; color: #fff;
  margin-bottom: 20px; line-height: 1.15;
}
.cta-highlight {
  font-family: 'Dancing Script', cursive;
  font-size: 1.25em;
  display: block;
  opacity: .95;
}
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 44px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.cta-info { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.cta-info-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75); font-size: .9rem;
}
.cta-info-item i { color: rgba(255,255,255,.9); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  color: rgba(255,255,255,.6);
  border-top: 1px solid rgba(200,16,46,.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-size: 1.35rem; font-weight: 900; margin-bottom: 18px;
}
.footer-logo i { color: var(--red); }
.footer-logo .logo-kma { color: var(--red); }
.footer-logo .logo-badge { width: 32px; height: 32px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: .95rem;
}
.footer-social a:hover {
  background: var(--red); border-color: var(--red); color: #fff;
  box-shadow: 0 4px 16px rgba(200,16,46,.4);
}
.footer-links h4, .footer-contact h4 {
  color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,16,46,.25);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55); text-decoration: none;
  font-size: .9rem; transition: color .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--red-bright); }
.contact-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; font-size: .9rem;
}
.contact-item i { color: var(--red-bright); font-size: 1rem; width: 20px; }
.contact-item a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.contact-item a:hover { color: var(--red-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .84rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom i { color: var(--red); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 64px; height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem; color: #fff; text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  z-index: 999;
  transition: var(--transition);
  animation: waPulse 2.8s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 40px rgba(37,211,102,.7);
  animation: none;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 48px rgba(37,211,102,.8), 0 0 0 14px rgba(37,211,102,.08); }
}
.whatsapp-tooltip {
  position: absolute; right: 74px;
  background: #fff; color: var(--dark);
  font-size: .82rem; font-weight: 700;
  padding: 8px 14px; border-radius: 8px;
  white-space: nowrap; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── LIGHTBOX ─────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 12px; object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; width: 48px; height: 48px;
  border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: background .2s;
}
.lightbox-close:hover { background: var(--red); }

/* ── MAPA ─────────────────────────────────────────────────────────────────── */
.mapa-section { padding: 0; }
.mapa-section iframe {
  width: 100%; height: 380px; display: block;
  border: none; filter: grayscale(20%) contrast(1.05);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid     { grid-template-columns: 1fr; gap: 48px; }
  .sobre-text     { padding-left: 0; }
  .servicos-grid  { grid-template-columns: repeat(2, 1fr); }
  .destinos-grid  { grid-template-columns: repeat(2, 1fr); }
  .cotacao-grid   { grid-template-columns: 1fr; gap: 48px; }
  .cotacao-info   { padding-right: 0; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Hamburger para telas até 1200px (navbar muito cheia acima disso) */
@media (max-width: 1200px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: min(300px, 80vw); height: 100vh;
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 80px 20px 32px;
    gap: 4px;
    transition: right var(--transition);
    align-items: stretch; z-index: 999;
    border-left: 1px solid rgba(200,16,46,.15);
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-link { padding: 12px 16px; border-radius: 10px; font-size: .9rem; }
  .nav-toggle { display: flex; z-index: 1000; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .hero { flex-direction: column; padding: 110px 20px 60px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-subtitle { margin: 0 auto 32px; font-size: .95rem; }
  .hero-van { max-width: 100%; margin-top: 32px; border-radius: 20px; }
  .hero-van img { border-radius: 20px; }

  .section-title { font-size: 1.9rem; }
  .section-subtitle { font-size: .9rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-item { padding: 20px 14px; }

  .sobre-grid { grid-template-columns: 1fr; gap: 32px; }
  .sobre-text { padding-left: 0; }
  .sobre-badge { bottom: -16px; right: -8px; padding: 12px 16px; font-size: .78rem; }

  .servicos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .servico-card { padding: 24px 18px; }

  .destinos-grid { grid-template-columns: 1fr; }
  .destino-card { height: 220px; }

  .steps-grid { flex-direction: column; align-items: center; max-width: 360px; margin: 0 auto; }
  .step-arrow { transform: rotate(90deg); margin: -10px 0; }
  .step { max-width: 100%; }

  .galeria-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .galeria-item.large { grid-column: span 2; }

  .depoimentos-grid { grid-template-columns: 1fr; }

  .cotacao-grid { grid-template-columns: 1fr; gap: 36px; }
  .cotacao-info { padding-right: 0; }
  .cotacao-form { padding: 28px 20px; }

  .faq-item { padding: 16px; }
  .faq-answer { font-size: .88rem; }

  .cta-info { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .cta-buttons { justify-content: center; flex-wrap: wrap; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-brand { margin-bottom: 0; }

  .form-row-2 { grid-template-columns: 1fr; }

  /* Chatbot menor no mobile */
  .chatbot-panel { width: calc(100vw - 32px); right: 16px; bottom: 90px; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 16px 48px; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }

  .servicos-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-number { font-size: 1.6rem; }

  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-item.large { grid-column: span 1; }

  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cotacao-form { padding: 24px 16px; }
  .depoimentos-grid { grid-template-columns: 1fr; }

  .chatbot-launcher { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .chatbot-launcher .chatbot-mascot-img { padding: 4px; }
}

/* ── COUNTDOWN ───────────────────────────────────────────────────────────── */
.countdown-box {
  max-width: 560px; margin: 0 auto 48px;
  background: linear-gradient(135deg, var(--dark), var(--black));
  border: 1px solid rgba(200,16,46,.35);
  border-radius: 18px; padding: 24px 28px; text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.countdown-label { color: #fff; font-weight: 700; font-size: .92rem; margin-bottom: 14px; }
.countdown-label i { color: var(--red-bright); margin-right: 6px; }
.countdown-grid { display: flex; justify-content: center; gap: 14px; }
.countdown-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 12px 18px; min-width: 64px;
}
.countdown-item span { display: block; font-size: 1.7rem; font-weight: 800; color: var(--red-bright); line-height: 1; }
.countdown-item small { color: rgba(255,255,255,.5); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; }

/* ── COMPARTILHAR (VIAGEM) ───────────────────────────────────────────────── */
.viagem-share-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 8px; padding: 11px;
  background: transparent; border: 1.5px solid var(--border, rgba(0,0,0,.12));
  border-radius: 10px; font-weight: 700; font-size: .85rem;
  color: var(--dark); cursor: pointer; transition: var(--transition);
}
.viagem-share-btn:hover { background: var(--red-light); border-color: var(--red); color: var(--red); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-section { padding: 100px 0; background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid rgba(0,0,0,.08); border-radius: 14px; overflow: hidden;
  background: var(--red-light, #fdf2f3);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--dark);
  text-align: left;
}
.faq-question i { color: var(--red); transition: transform .25s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 22px 18px; color: #555; font-size: .92rem; line-height: 1.6; margin: 0; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ── CHATBOT WIDGET ───────────────────────────────────────────────────────── */
.chatbot-launcher {
  position: fixed; bottom: 32px; left: 32px; z-index: 999;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  box-shadow: 0 4px 24px rgba(200,16,46,.5);
  transition: var(--transition);
  animation: chatbotPulse 2.8s infinite;
}
.chatbot-launcher:hover { transform: scale(1.1); animation: none; }
.chatbot-mascot-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.chatbot-launcher .chatbot-mascot-img { padding: 6px; box-sizing: border-box; }
.chatbot-launcher .chatbot-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #16a34a; border: 2px solid #fff;
}
@keyframes chatbotPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(200,16,46,.5); }
  50%      { box-shadow: 0 4px 48px rgba(200,16,46,.8), 0 0 0 14px rgba(200,16,46,.08); }
}
.chatbot-panel {
  position: fixed; bottom: 110px; left: 32px; z-index: 1000;
  width: 340px; max-height: 480px;
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(20px) scale(.96); pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.chatbot-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.chatbot-header {
  background: linear-gradient(135deg, var(--dark), var(--black));
  color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px;
}
.chatbot-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.chatbot-header-info strong { display: block; font-size: .92rem; }
.chatbot-header-info span { font-size: .74rem; color: #4ade80; }
.chatbot-header-info span i { font-size: .5rem; margin-right: 4px; }
.chatbot-close {
  margin-left: auto; background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 1.1rem; cursor: pointer; padding: 4px;
}
.chatbot-close:hover { color: #fff; }
.chatbot-body {
  flex: 1; overflow-y: auto; padding: 16px; background: #f7f7f8;
  display: flex; flex-direction: column; gap: 10px; min-height: 200px;
}
.chatbot-msg { display: flex; gap: 8px; max-width: 92%; }
.chatbot-msg.bot { align-self: flex-start; }
.chatbot-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chatbot-bubble {
  padding: 10px 14px; border-radius: 14px; font-size: .85rem; line-height: 1.5;
}
.chatbot-msg.bot .chatbot-bubble { background: #fff; color: var(--dark); border: 1px solid rgba(0,0,0,.06); border-bottom-left-radius: 4px; }
.chatbot-msg.user .chatbot-bubble { background: var(--red); color: #fff; border-bottom-right-radius: 4px; }
.chatbot-options { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.chatbot-option-btn {
  background: #fff; border: 1.5px solid var(--red); color: var(--red);
  border-radius: 10px; padding: 9px 12px; font-size: .8rem; font-weight: 700;
  text-align: left; cursor: pointer; transition: var(--transition); font-family: inherit;
}
.chatbot-option-btn:hover { background: var(--red); color: #fff; }
.chatbot-footer { padding: 12px 16px; border-top: 1px solid rgba(0,0,0,.06); }
.chatbot-footer a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; text-decoration: none; font-weight: 700;
  font-size: .82rem; padding: 10px; border-radius: 10px;
}
@media (max-width: 600px) {
  .chatbot-launcher { left: 20px; bottom: 20px; width: 56px; height: 56px; font-size: 1.4rem; }
  .chatbot-panel { left: 12px; right: 12px; width: auto; bottom: 90px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

/* ── 404 ──────────────────────────────────────────────────────────────────── */
.page-404 {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--black), var(--dark)); text-align: center; padding: 24px;
}
.page-404-content { max-width: 480px; }
.page-404-code {
  font-size: 7rem; font-weight: 900; line-height: 1; margin: 0;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-404-content h1 { color: #fff; font-size: 1.5rem; margin: 8px 0 12px; }
.page-404-content p { color: rgba(255,255,255,.6); margin-bottom: 28px; }
.page-404-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
