/* ===================================================================
   AGENDA NAS CIDADES · Kim Kataguiri e Rafa Minato
   Tema dark/dourado, responsivo. Formulário em destaque.
=================================================================== */

:root {
  --gold: #E6A81C;
  --gold-bright: #F2B718;
  --gold-deep: #C8860D;
  --bg: #0B0B0C;
  --bg-2: #131210;
  --bg-3: #1A1813;
  --ink: #F5F1E8;
  --ink-dim: #B7B0A2;
  --line: rgba(230, 168, 28, 0.22);
  --radius: 14px;
  --maxw: 1160px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --font-display: "Anton", system-ui, sans-serif;
  --font-cond: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; overflow: hidden; }
.gold { color: var(--gold); }

/* ---------- Tipografia de seção ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-title.center { text-align: center; }
.section-sub {
  color: var(--ink-dim);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1a1206;
  box-shadow: 0 10px 28px rgba(230, 168, 28, 0.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(230, 168, 28, 0.5); }
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* ===================================================================
   HEADER
=================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(10px);
  padding: 8px 0;
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; min-width: 0; }
.brand-kim { height: 30px; width: auto; transition: height 0.3s ease; flex: 0 0 auto; }
.site-header.scrolled .brand-kim { height: 26px; }
.brand-minato { height: 30px; width: auto; transition: height 0.3s ease; flex: 0 0 auto; }
.site-header.scrolled .brand-minato { height: 26px; }
.brand-sep { width: 1px; height: 24px; background: var(--line); display: inline-block; flex: 0 0 auto; }
.logo-chip { display: inline-flex; align-items: center; background: var(--ink); border-radius: 8px; padding: 6px 11px; }
.logo-chip img { display: block; width: auto; }
.brand-chip img { height: 20px; transition: height 0.3s ease; }
.site-header.scrolled .brand-chip img { height: 17px; }
.btn-header { padding: 10px 20px; font-size: 0.85rem; }
.brand-group { display: flex; align-items: center; gap: 14px; min-width: 0; flex: 1 1 auto; }

/* ---------- Botão hamburger ---------- */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(230, 168, 28, 0.08);
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.menu-toggle:hover { background: rgba(230, 168, 28, 0.16); border-color: var(--gold); }
.menu-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.menu-toggle.is-open .menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Overlay + painel: outros portais ---------- */
.portals-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 5, 4, 0.6);
  backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.portals-overlay.is-visible { opacity: 1; }

.portals-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 86vw);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 95;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.portals-panel.is-open { transform: translateX(0); }

.portals-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.portals-panel-title {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--gold);
}
.portals-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.portals-close:hover { background: rgba(230, 168, 28, 0.12); border-color: var(--gold); }

.portals-list { list-style: none; padding: 10px 12px; }
.portals-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 12px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.portals-link:hover { background: rgba(230, 168, 28, 0.1); }
.portals-link-name {
  font-family: var(--font-cond);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.portals-link-url { font-size: 0.78rem; color: var(--ink-dim); }
.portals-link-tag {
  align-self: flex-start;
  margin-top: 4px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a1206;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  padding: 2px 8px;
  border-radius: 999px;
}
.portals-link.is-current .portals-link-name { color: var(--gold); }

body.portals-open { overflow: hidden; }

/* ===================================================================
   HERO + FORMULÁRIO
=================================================================== */
.lead-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 0 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #000;
}

/* Vídeo em destaque, acima do selo da turnê */
.hero-video-frame {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px;
  aspect-ratio: 16 / 9;
}
.hero-video-mask {
  position: absolute; inset: 0;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 50%, transparent 100%);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.05);
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.05) 0%, rgba(11, 11, 12, 0.7) 100%);
}
.tour-badge-onvideo {
  position: absolute;
  left: 50%; bottom: 6%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 90%;
  white-space: normal;
  text-align: center;
  background: rgba(11, 11, 12, 0.55);
  backdrop-filter: blur(4px);
  margin-bottom: 0;
}
.hero-glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 120vw; height: 80vh;
  background: radial-gradient(ellipse at center, rgba(230, 168, 28, 0.22), transparent 62%);
  filter: blur(20px);
  animation: pulse 7s ease-in-out infinite;
  z-index: 0;
}
@keyframes pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
.hero-grain {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.lead-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

/* Coluna de texto */
.lead-copy { max-width: 540px; margin: 0 auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.72rem, 2vw, 0.92rem);
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(230, 168, 28, 0.05);
}
.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: clamp(0.68rem, 1.8vw, 0.8rem);
  color: var(--gold);
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(230, 168, 28, 0.06);
  margin-bottom: 16px;
}
.tour-badge-icon { width: 15px; height: 15px; flex: 0 0 auto; color: var(--gold); }

.lead-hero-art { margin: 0; line-height: 0; }
.lead-hero-art img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 0 auto;
  
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 42px rgba(230, 168, 28, 0.18));
}
.lead-headline {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4.4vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: 0.5px;
  margin: -80px auto -50px;
  max-width: 480px;
  position: relative; 
  z-index: 10;
}
.lead-sub {
  max-width: 480px;
  margin: -60px auto 0;
  color: var(--ink-dim);
  font-size: clamp(1rem, 2.2vw, 1.12rem);

}

/* Cartão do formulário */
.lead-form-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3.4vw, 36px);
  box-shadow: var(--shadow);
}
.form-head { margin-bottom: 22px; }
.form-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1;
  letter-spacing: 0.5px;
}
.form-sub { color: var(--ink-dim); font-size: 0.92rem; margin-top: 8px; }

/* ===================================================================
   CAMPOS DE FORMULÁRIO
=================================================================== */
.field { margin-bottom: 16px; position: relative; }
/* Honeypot: fora da tela mas presente no DOM/tab order normal do bot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.field-row { display: grid; grid-template-columns: 1fr 2fr; gap: 16px; }
.field label {
  display: block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.req { color: var(--gold); }
.opt { color: var(--ink-dim); text-transform: none; letter-spacing: 0; font-size: 0.72rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  background: #0e0d0b;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #6f6a60; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(230, 168, 28, 0.18);
}
.field input.invalid, .field select.invalid {
  border-color: #e0533e;
  box-shadow: 0 0 0 3px rgba(224, 83, 62, 0.16);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23E6A81C' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}

.error { display: block; color: #e0795e; font-size: 0.82rem; margin-top: 5px; min-height: 0; }

.optional-divider {
  text-align: center;
  margin: 22px 0 16px;
  position: relative;
  color: var(--ink-dim);
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}
.optional-divider::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.optional-divider span { position: relative; background: var(--bg-3); padding: 0 14px; }

.phone-input { display: flex; align-items: stretch; gap: 8px; }
.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 12px;
  background: #0e0d0b;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-input input { flex: 1; min-width: 0; }
.flag-br { border-radius: 2px; flex-shrink: 0; }

.field-cep { position: relative; }
.cep-status { display: block; font-size: 0.8rem; margin-top: 5px; min-height: 16px; color: var(--ink-dim); }
.cep-status.loading { color: var(--gold); }
.cep-status.ok { color: #5fbf7d; }
.cep-status.err { color: #e0795e; }
.cep-help { display: inline-block; margin-top: 8px; font-size: 0.82rem; color: var(--gold); border-bottom: 1px dotted var(--gold); }
.cep-help:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

/* ---------- Formas de ajudar (checkboxes) ---------- */
.help-intro { color: var(--ink-dim); font-size: 0.86rem; margin: -6px 0 14px; }
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.check-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #0e0d0b;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.check-pill:hover { border-color: var(--gold); }
.check-pill input {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}
.check-pill span { font-size: 0.9rem; color: var(--ink); line-height: 1.25; }
.check-pill:has(input:checked) {
  border-color: var(--gold);
  background: rgba(230, 168, 28, 0.1);
}

.consent { display: flex; gap: 12px; align-items: flex-start; margin: 18px 0 4px; cursor: pointer; }
.consent input { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.consent span { font-size: 0.88rem; color: var(--ink-dim); }
.consent a { color: var(--gold); text-decoration: underline; }

#submit-btn { margin-top: 18px; }
#submit-btn.loading { opacity: 0.7; pointer-events: none; }
.form-foot-note { text-align: center; font-size: 0.8rem; color: var(--ink-dim); margin-top: 14px; }

/* Sucesso / erro */
.success-panel, .warning-panel {
  text-align: center;
  padding: clamp(20px, 4vw, 36px) 8px;
  animation: rise 0.45s ease;
}
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.check {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  animation: check-pop 0.4s ease;
}
.check--warn { border-color: #e0795e; color: #e0795e; }
@keyframes check-pop { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }

.success-panel h2, .warning-panel h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(1.5rem, 4.4vw, 2rem);
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 12px;
}
.warning-panel h2 { color: #e0795e; }
.success-panel p, .warning-panel p { color: var(--ink-dim); max-width: 380px; margin: 0 auto; }

/* Barra de progresso */
.progress-wrap { max-width: 340px; margin: 26px auto 0; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  color: var(--ink-dim);
  margin-bottom: 8px;
}
#progress-percent { color: var(--gold); font-weight: 600; }
.progress-bar {
  height: 8px;
  border-radius: 999px;
  background: #0e0d0b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transition: width 0.3s ease;
}
.progress-status { margin-top: 10px !important; font-size: 0.86rem; font-style: italic; color: var(--ink) !important; }

/* Botão do WhatsApp */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px auto 0;
  max-width: 340px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: #06210f;
  background: linear-gradient(135deg, #3fe085, #1fa855);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: rise 0.4s ease;
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5); }

/* Painel de erro */
#retry-btn {
  margin-top: 22px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
#retry-btn:hover { background: var(--gold); color: #1a1206; transform: translateY(-2px); }
#retry-btn.loading { opacity: 0.7; pointer-events: none; }

/* ===================================================================
   SEÇÕES COM IMAGEM (media-row)
=================================================================== */
.conviction { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.why { background: var(--bg-2); }

.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.media-copy .section-title { text-align: left; }
.media-copy .eyebrow { margin-bottom: 16px; }
.media-copy p { color: var(--ink-dim); font-size: clamp(1.02rem, 2.3vw, 1.16rem); margin: 18px 0 0; }
.media-copy .btn { margin-top: 26px; }

.media-frame, .media-photo { width: 100%; max-width: 420px; justify-self: center; }
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: auto; display: block; }
.media-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(230, 168, 28, 0.12));
}
.media-photo img.portrait {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  filter: none;
}

@media (max-width: 860px) {
  .media-row { grid-template-columns: 1fr; gap: 30px; }
  .media-copy { text-align: center; }
  .media-copy .section-title { text-align: center; }
  .media-copy p { margin-left: auto; margin-right: auto; max-width: 560px; }
  .media-frame, .media-photo { margin: 0 auto; }
  /* Mantém a foto acima do texto também quando a foto vem depois no HTML */
  .why .media-photo { order: -1; }
}

/* ===================================================================
   MAPA DA TURNÊ (SÃO PAULO)
=================================================================== */
.sp-map-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); text-align: center; }
.sp-map-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.sp-map-card {
  margin: 42px auto 34px;
  padding: clamp(16px, 3vw, 30px);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.sp-map { width: 100%; height: auto; max-width: 460px; display: block; margin: 0 auto; }
.sp-outline {
  fill: rgba(230, 168, 28, 0.07);
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linejoin: round;
}
.sp-map-note { color: var(--ink-dim); font-size: 0.8rem; margin-top: 14px; }

.led-glow {
  fill: var(--gold-bright);
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: led-pulse 2.6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.led-core {
  fill: var(--gold-bright);
  opacity: 0.35;
  transform-origin: center;
  transform-box: fill-box;
  animation: led-core-pulse 2.6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.led-capital .led-glow { fill: #fff3d6; }
.led-capital .led-core { fill: #fff3d6; opacity: 0.55; }

@keyframes led-pulse {
  0%, 70%, 100% { opacity: 0; transform: scale(0.6); }
  15% { opacity: 0.55; transform: scale(1.5); }
  35% { opacity: 0; transform: scale(2); }
}
@keyframes led-core-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  15% { opacity: 1; transform: scale(1.35); }
  35% { opacity: 0.5; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .led-glow, .led-core { animation: none; opacity: 0.6; }
}

/* ===================================================================
   POR QUE TRAZER PARA A SUA CIDADE
=================================================================== */
.why-city { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); text-align: center; }
.why-city-inner { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; }
.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 46px 0 38px;
  text-align: left;
}
.reason-card {
  position: relative;
  background: linear-gradient(135deg, rgba(230, 168, 28, 0.08), rgba(230, 168, 28, 0.015));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.reason-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(230, 168, 28, 0.5);
  display: block;
  margin-bottom: 14px;
}
.reason-card h3 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.reason-card p { color: var(--ink-dim); font-size: 0.98rem; }

/* ===================================================================
   COMO FUNCIONA A VISITA (rota/mapa)
=================================================================== */
.route { background: var(--bg); text-align: center; }
.route-inner { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; }
.route-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0 42px;
}
.route-track::before {
  content: "";
  position: absolute;
  top: 26px; left: 12%; right: 12%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  background-size: 16px 2px;
  background-repeat: repeat-x;
  opacity: 0.5;
  z-index: 0;
}
.route-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.route-pin {
  width: 52px; height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  color: #1a1206;
  box-shadow: 0 10px 24px rgba(230, 168, 28, 0.35);
  margin-bottom: 16px;
}
.route-pin svg { width: 26px; height: 26px; }
.route-step h3 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.route-step p { color: var(--ink-dim); font-size: 0.92rem; max-width: 230px; }
.route .btn { margin-top: 8px; }

@media (max-width: 760px) {
  .route-track { grid-template-columns: 1fr; gap: 38px; }
  .route-track::before {
    top: 26px; bottom: 26px; left: 50%; right: auto;
    width: 2px; height: auto;
    background-image: linear-gradient(180deg, var(--gold) 0 8px, transparent 8px 16px);
    background-size: 2px 16px;
  }
}

/* ===================================================================
   CHAMADA FINAL
=================================================================== */
.closing { background: var(--bg); text-align: center; }
.closing-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.closing-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.5px;
  margin: 14px 0 0;
}
.closing-sub { color: var(--ink-dim); font-size: clamp(1rem, 2.3vw, 1.16rem); max-width: 520px; margin: 18px auto 30px; }

/* ===================================================================
   RODAPÉ
=================================================================== */
.site-footer { background: #060606; border-top: 1px solid var(--line); padding: 50px 0 40px; text-align: center; }
.footer-brands { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; margin-bottom: 22px; }
.footer-kim { height: 34px; width: auto; }
.footer-minato { height: 34px; width: auto; }
.footer-chip img { height: 26px; }
.footer-event { color: var(--ink); font-size: 0.95rem; margin-bottom: 10px; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-legal { color: var(--ink-dim); font-size: 0.8rem; max-width: 540px; margin: 0 auto 14px; }
.footer-legal a { color: var(--gold); text-decoration: underline; }
.footer-copy { color: var(--ink-dim); font-size: 0.82rem; font-family: var(--font-cond); letter-spacing: 0.08em; text-transform: uppercase; }

/* ===================================================================
   RESPONSIVO
=================================================================== */
@media (max-width: 960px) {
  .lead-grid { grid-template-columns: 1fr; gap: 34px; }
  .lead-copy { max-width: 100%; text-align: center; margin: 0 auto; }
  .lead-sub, .lead-headline { margin-left: auto; margin-right: auto; }
  .lead-hero-art img { max-width: 380px; }
}

@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .check-grid { grid-template-columns: 1fr; }
  .btn-header { padding: 9px 16px; font-size: 0.78rem; }
  .brand-group { gap: 8px; }
  .menu-toggle { width: 38px; height: 38px; }
  .brand-chip { display: none; }
  .brand-kim { height: 26px; }
  .brand-minato { height: 26px; }
  .lead-hero { padding-top: 72px; }
  .lead-hero-art img { max-width: 320px; }
}

@media (max-width: 380px) {
  .brand-kim { height: 23px; }
  .brand-minato { height: 23px; }
  .brand-sep { height: 18px; }
  .brand { gap: 9px; }
  .btn-header { padding: 8px 13px; font-size: 0.72rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}
