/* ============================================
   MOVIX VIP /armys — Manifestação de Interesse
   Show no Morumbis · 28·30·31 Out 2026

   Self-contained CSS (não depende do styles.css
   do site principal). Tipografia Montserrat +
   Inter no padrão da landing original, com
   palavras-chave em gradient amber.
   ============================================ */

:root {
  --ink: #0A0A0A;
  --ink-soft: #111113;
  --paper: #FAFAF7;
  --amber: #8B5CF6;
  --amber-deep: #7C3AED;
  --amber-soft: #C4B5FD;
  --text-on-dark: #FAFAF7;
  --text-muted-on-dark: #A8A296;
  --rule-dark: #2A2A2A;

  --container: 1320px;
  --pad-x: 32px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --grad-gold: linear-gradient(135deg, #C4B5FD 0%, #8B5CF6 50%, #7C3AED 100%);
}

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

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

body.armys {
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-on-dark);
}

.h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);  /* 36 → 72px */
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);     /* 30 → 48px */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
}
.h4 {
  font-size: 1.375rem;                        /* 22px */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.lede {
  font-size: clamp(1rem, 1.3vw, 1.125rem);    /* 16 → 18px */
  line-height: 1.6;
  color: var(--text-muted-on-dark);
  max-width: 56ch;
  font-weight: 400;
}
.lede strong { color: var(--text-on-dark); font-weight: 600; }

/* Cor amber em texto — palavras-chave em gradient quente */
.gold-grad {
  background-image: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}
.amber { color: var(--amber); }

/* Eyebrow — pequena label antes do título com bolinha amber */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: eyebrow-pulse 3.4s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,165,42,0); }
  50%      { box-shadow: 0 0 10px 1px rgba(212,165,42,0.6); }
}

.mono {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted-on-dark);
}
.mono .amber { color: var(--amber); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section-pad { padding: 120px 0; }
@media (min-width: 1024px) { .section-pad { padding: 140px 0; } }
.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-head .h2 { margin-bottom: 24px; }

/* ---------- Logo ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  font-size: 0;
  line-height: 1;
}
.brand .logo-wrap {
  display: inline-flex;
  align-items: center;
  height: 32px;
}
.brand .logo {
  display: block;
  height: 32px;
  width: auto;
  aspect-ratio: 670 / 207;
  object-fit: contain;
}
.brand .logo-dark { display: none; }
.brand .logo-light { display: block; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  cursor: pointer;
}
.btn .arrow {
  display: inline-block;
  transition: transform 250ms var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--amber);
  color: var(--ink);
}
.btn-primary:hover { background: var(--amber-deep); color: var(--ink); }

/* ============================================
   HERO
   ============================================ */
.armys-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background-color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

/* Imagem do show com ken-burns lento (zoom + drift) */
.armys-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/armys/assets/hero-concert.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: kenburns 30s ease-in-out infinite alternate;
  will-change: transform;
  /* Escurece mais a foto pra dar peso premium e melhorar leitura */
  filter: brightness(0.55) saturate(1.05);
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0%, 0%); }
  100% { transform: scale(1.16) translate(-1.8%, -1.8%); }
}
@media (prefers-reduced-motion: reduce) {
  .armys-hero-bg { animation: none; transform: scale(1.05); }
}

/* Vinheta + spotlight amber sutil + fade pro ink */
.armys-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212,165,42,0.10), transparent 65%),
    radial-gradient(ellipse 120% 90% at 50% 100%, var(--ink) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.78) 60%, var(--ink) 100%);
}

.armys-header,
.armys-hero-inner { position: relative; z-index: 2; }

.armys-header {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.armys-header .meta {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted-on-dark);
  font-weight: 500;
}
.armys-header .meta .dot { color: var(--amber); margin: 0 6px; }
@media (min-width: 768px) { .armys-header .meta { display: inline-flex; align-items: center; } }

.armys-hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  padding: 60px var(--pad-x) 110px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .armys-hero-inner {
    flex-direction: row;
    align-items: center;
  }
}

.armys-hero-text {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.armys-hero-text h1 {
  margin-bottom: 28px;
  max-width: 14ch;
  text-wrap: balance;
}
.armys-hero-text .lede {
  max-width: 540px;
  margin-bottom: 44px;
}

.armys-hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Vídeo lateral */
.armys-hero-video-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .armys-hero-video-wrap {
    flex: 0 0 46%;
    max-width: none;
    margin: 0;
  }
}
.armys-hero-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.8), 0 0 0 1px rgba(212,165,42,0.18);
}
.armys-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* IFrame YouTube via API */
#yt-iframe, #yt-iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Botão ativar som */
.yt-unmute {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(212, 165, 42, 0.45);
  border-radius: 2px;
  color: var(--amber);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 180ms ease, border-color 180ms ease;
  z-index: 2;
}
.yt-unmute:hover {
  background: rgba(212, 165, 42, 0.14);
  border-color: var(--amber);
}
.yt-unmute svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round;
}

/* Badge "Manifestação · Aberta" (pulso live) */
.manifest-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border: 1px solid var(--amber);
  background: rgba(212, 165, 42, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 28px;
  border-radius: 2px;
  width: fit-content;
}
.manifest-badge .dot { color: var(--amber); margin: 0 2px; opacity: 0.6; }
.manifest-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  animation: manifest-pulse 2.4s ease-in-out infinite;
}
.manifest-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--amber);
  animation: manifest-ripple 2.4s ease-out infinite;
}
@keyframes manifest-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,165,42,0.4); }
  50%      { box-shadow: 0 0 0 4px rgba(212,165,42,0); }
}
@keyframes manifest-ripple {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(3.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .manifest-dot, .manifest-dot::before { animation: none; }
}


/* ============================================
   SEÇÃO BASE (dark, lateral-left)
   ============================================ */
.armys-section {
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */
.armys-how {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(212,165,42,.04), transparent 70%),
    var(--ink);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .how-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; } }
.how-step {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--rule-dark);
}
.how-step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 56px; height: 1px;
  background: var(--amber);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 700ms cubic-bezier(0.7, 0, 0.3, 1) 200ms;
}
.how-step.is-visible::before { transform: scaleX(1); }
.how-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 22px;
}
.how-step .h4 {
  margin-bottom: 14px;
  max-width: 18ch;
}
.how-step p {
  color: var(--text-muted-on-dark);
  font-size: 15px;
  line-height: 1.65;
}
.how-step p strong { color: var(--text-on-dark); font-weight: 600; }

/* ============================================
   CIDADES (cada card = link manifestação)
   ============================================ */
.cities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px)  { .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .cities-grid { grid-template-columns: repeat(4, 1fr); } }

a.city-card { display: flex; color: inherit; text-decoration: none; }
.city-card {
  position: relative;
  background: #141414;
  border: 1px solid var(--rule-dark);
  padding: 28px 24px;
  border-radius: 2px;
  transition: border-color 250ms var(--ease), transform 250ms var(--ease), background 250ms var(--ease);
  overflow: hidden;
  flex-direction: column;
  width: 100%;
}
.city-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms var(--ease);
}
.city-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  background: #181818;
}
.city-card:hover::after { transform: scaleX(1); }
.city-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.city-head svg {
  width: 20px; height: 20px;
  color: var(--amber);
  stroke: currentColor; fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.city-uf {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted-on-dark);
}
.city-card .h4 {
  margin-bottom: 6px;
}
.city-type {
  font-size: 14px;
  color: var(--text-muted-on-dark);
  line-height: 1.5;
  min-height: 2.6em;
  margin-bottom: 24px;
}
.city-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule-dark);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
}
.city-cta .arrow { transition: transform 250ms var(--ease); margin-left: auto; }
.city-card:hover .city-cta .arrow { transform: translateX(4px); }

/* Botão "sua cidade não está aqui" (dourado da marca, abre a lista de espera) */
.city-extra {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  max-width: 100%;
  margin: 38px auto 0;
  padding: 17px 30px;
  background: linear-gradient(135deg, #EBD489 0%, #D4A52A 50%, #B8891F 100%);
  border: 1px solid #EDD98F;
  border-radius: 2px;
  color: #1A1206;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(201, 154, 46, .22);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), filter 250ms var(--ease);
}
.city-extra:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(201, 154, 46, .32);
  filter: brightness(1.04);
}
.city-extra-ic { display: grid; place-items: center; }
.city-extra-ic svg {
  width: 20px; height: 20px;
  color: #1A1206; stroke: currentColor; fill: none;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
  display: block;
}
.city-extra-tx {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A1206;
  line-height: 1.35;
}
.city-extra-arrow {
  margin-left: 6px;
  color: #1A1206;
  font-size: 18px;
  font-weight: 700;
  transition: transform 250ms var(--ease);
}
.city-extra:hover .city-extra-arrow { transform: translateX(4px); }
.cities-note-sub {
  margin-top: 13px;
  font-size: 12px;
  color: var(--text-muted-on-dark);
  text-align: center;
  letter-spacing: .01em;
}

/* ============================================
   EXPERIÊNCIA
   ============================================ */
.armys-exp {
  background:
    radial-gradient(70% 60% at 50% 100%, rgba(212,165,42,.05), transparent 70%),
    var(--ink);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) { .exp-grid { grid-template-columns: repeat(3, 1fr); gap: 56px; } }
.exp-item { display: flex; flex-direction: column; max-width: 360px; }
.exp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border: 1px solid var(--amber);
  background: rgba(212,165,42,.06);
  margin-bottom: 28px;
  border-radius: 2px;
}
.exp-icon svg {
  width: 22px; height: 22px;
  color: var(--amber);
  stroke: currentColor; fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.exp-item .h4 { margin-bottom: 14px; }
.exp-item p {
  color: var(--text-muted-on-dark);
  font-size: 16px;
  line-height: 1.65;
}

/* ============================================
   CTA FINAL (centralizado)
   ============================================ */
.armys-final {
  text-align: center;
  background:
    radial-gradient(70% 50% at 50% 100%, rgba(212,165,42,.10), transparent 70%),
    var(--ink);
  border-top: 1px solid var(--rule-dark);
}
.armys-final .eyebrow { justify-content: center; }
.armys-final .h2 {
  margin: 0 auto 28px;
  max-width: 18ch;
}
.armys-final .lede {
  margin: 0 auto 44px;
  max-width: 580px;
}
.armys-final-fine {
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted-on-dark);
}
.armys-final-fine .dot { color: var(--amber); margin: 0 6px; }

/* ============================================
   FOOTER
   ============================================ */
.armys-footer {
  background: #050505;
  color: var(--text-muted-on-dark);
  border-top: 1px solid var(--rule-dark);
  padding: 64px 0 32px;
}
.armys-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .armys-footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; }
}
.armys-footer .footer-brand .brand .logo,
.armys-footer .footer-brand .brand .logo-wrap { height: 40px; }
.armys-footer .footer-brand .footer-tag {
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
}
.armys-footer .footer-brand p {
  margin-top: 16px;
  color: var(--text-muted-on-dark);
  font-size: 14px;
  line-height: 1.65;
  max-width: 360px;
}
.armys-footer h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  margin-bottom: 18px;
}
.armys-footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.armys-footer a, .armys-footer .footer-addr {
  color: var(--text-muted-on-dark);
  font-size: 14px;
  line-height: 1.55;
  transition: color 200ms ease;
}
.armys-footer a { display: inline-flex; align-items: center; gap: 10px; }
.armys-footer a:hover { color: var(--amber); }
.armys-footer a svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.armys-footer .footer-addr { display: block; font-style: normal; }

.armys-footer .icon-row {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
}
.armys-footer .icon-row a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--rule-dark);
  border-radius: 50%;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}
.armys-footer .icon-row a:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(212,165,42,.06);
}
.armys-footer .icon-row svg { width: 15px; height: 15px; }
.armys-footer .icon-row svg.filled { fill: currentColor; stroke: none; }

.armys-footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted-on-dark);
}
@media (min-width: 640px) {
  .armys-footer-bottom { flex-direction: row; align-items: center; }
}
.armys-footer-bottom .dot { color: var(--amber); margin: 0 6px; }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--pad-x);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: #141414;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(18px);
  transition: transform 280ms var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--rule-dark) transparent;
}
.modal-overlay.is-open .modal-card { transform: translateY(0); }
@media (max-width: 560px) { .modal-card { padding: 28px 20px; } }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--text-muted-on-dark);
  transition: color 180ms ease;
  cursor: pointer;
  border-radius: 2px;
}
.modal-close:hover { color: var(--text-on-dark); }
.modal-close svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round;
}

.modal-head { margin-bottom: 28px; }
.modal-head .eyebrow { margin-bottom: 14px; }
.modal-head .h3 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  margin-bottom: 10px;
}
.modal-sub {
  font-size: 14px;
  color: var(--text-muted-on-dark);
  line-height: 1.55;
}

/* Form */
.modal-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 440px) { .form-row--2 { grid-template-columns: 1fr; } }

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted-on-dark);
}
.req { color: var(--amber); margin-left: 1px; }

.form-input {
  background: #0c0c0c;
  border: 1px solid var(--rule-dark);
  border-radius: 2px;
  color: var(--text-on-dark);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color 180ms ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus { border-color: var(--amber); }
.form-input::placeholder { color: #444; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8A296' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-select option { background: #141414; color: var(--text-on-dark); }

/* Ponto de embarque — aparece ao selecionar rota */
.form-row-embarque { display: none; flex-direction: column; gap: 7px; }
.form-row-embarque.is-visible { display: flex; }

.form-error {
  font-size: 13px;
  color: #e05a5a;
  min-height: 18px;
  line-height: 1.4;
}
.age-block {
  font-size: 13px;
  color: var(--amber);
  line-height: 1.45;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease), opacity 300ms ease;
  opacity: 0;
}
.age-block--active {
  max-height: 60px;
  opacity: 1;
}
.modal-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 15px;
  margin-top: 4px;
}

/* ============================================
   FAQ
   ============================================ */
.armys-faq {
  background: var(--ink);
  border-top: 1px solid var(--rule-dark);
}
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule-dark);
  border-radius: 2px;
  overflow: hidden;
  max-width: 800px;
}
.faq-item {
  border-bottom: 1px solid var(--rule-dark);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  cursor: pointer;
  transition: background 200ms ease;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #141414; }
.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--amber);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  transition: transform 300ms var(--ease);
}
.faq-item[open] > summary .faq-icon { transform: rotate(45deg); }
.faq-body {
  padding: 0 28px 24px;
  color: var(--text-muted-on-dark);
  font-size: 15px;
  line-height: 1.65;
}
.faq-body strong { color: var(--text-on-dark); font-weight: 600; }

/* Disclaimer rodape */
.armys-disclaimer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-dark);
  font-size: 12px;
  color: var(--text-muted-on-dark);
  opacity: 0.6;
  line-height: 1.5;
}

/* Mensagem de sucesso lista de espera */
.espera-sucesso {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 20px 0;
}
.espera-sucesso-icon {
  font-size: 3rem;
  line-height: 1;
}
.espera-sucesso .h3 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--text-on-dark);
}
.espera-sucesso p {
  font-size: 15px;
  color: var(--text-muted-on-dark);
  line-height: 1.65;
  max-width: 380px;
}

/* ============================================
   MOBILE — CORREÇÕES COMPLETAS
   ============================================ */

/* ---------- Base ---------- */
@media (max-width: 639px) {
  :root { --pad-x: 18px; }
  .section-pad { padding: 64px 0; }
}
@media (max-width: 767px) {
  .section-head { margin-bottom: 40px; }
  .section-head .h2 { font-size: clamp(1.5rem, 6vw, 2.25rem); }
}

/* ---------- Hero ---------- */
@media (max-width: 1023px) {
  .armys-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .armys-hero-text { width: 100%; align-items: flex-start; }
}

/* Eyebrow hero — quebra linha se necessário */
@media (max-width: 639px) {
  .armys-hero-inner > .armys-hero-text .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
    flex-wrap: wrap;
    row-gap: 4px;
    max-width: 100%;
  }
  .armys-hero-text h1 {
    font-size: clamp(1.875rem, 9vw, 2.5rem);
    max-width: 100%;
  }
  .armys-hero-text .lede {
    font-size: 0.9375rem;
    margin-bottom: 32px;
  }
  .manifest-badge {
    font-size: 9px;
    letter-spacing: 0.12em;
    padding: 7px 12px;
  }
}

/* Video — proporção correta no mobile */
@media (max-width: 1023px) {
  .armys-hero-video-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

/* CTA full-width no mobile */
@media (max-width: 639px) {
  .armys-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
  }
  .armys-hero-cta .btn { width: 100%; justify-content: center; }
  .armys-hero-cta .mono { text-align: center; }
}

/* ---------- Como funciona ---------- */
@media (max-width: 767px) {
  .how-grid { gap: 24px; }
  .how-step .h4 { font-size: 1.125rem; }
}

/* ---------- Cards de cidade ---------- */
@media (max-width: 479px) {
  .cities-grid { grid-template-columns: 1fr; gap: 12px; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .cities-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .city-card { padding: 20px 16px; }
  .city-card .h4 { font-size: 1rem; }
  .city-type { font-size: 13px; min-height: auto; }
}

/* ---------- Experiência ---------- */
@media (max-width: 767px) {
  .exp-grid { gap: 36px; }
  .exp-item { max-width: 100%; }
  .exp-item p { font-size: 15px; }
}

/* ---------- CTA Final ---------- */
@media (max-width: 639px) {
  .armys-final .h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .armys-final .btn { width: 100%; justify-content: center; }
}

/* ---------- FAQ ---------- */
@media (max-width: 639px) {
  .faq-list { max-width: 100%; }
  .faq-item summary { padding: 16px 18px; font-size: 0.875rem; }
  .faq-body { padding: 0 18px 18px; font-size: 14px; }
}

/* ---------- Modal ---------- */
@media (max-width: 560px) {
  .modal-overlay { padding: 16px 14px; align-items: flex-end; }
  .modal-card {
    padding: 24px 18px;
    max-height: 94vh;
    border-radius: 8px 8px 0 0;
  }
  .form-row--2 { grid-template-columns: 1fr; gap: 18px; }
  .modal-head .h3 { font-size: 1.2rem; }
}

/* ---------- Footer ---------- */
@media (max-width: 639px) {
  .armys-footer { padding: 48px 0 24px; }
  .armys-footer .footer-grid { gap: 32px; }
  .armys-footer-bottom {
    font-size: 10px;
    letter-spacing: 0.12em;
    gap: 6px;
  }
  .armys-disclaimer { font-size: 11px; }
}

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
