/* ============================================
   MOVIX VIP /armys-bts — Página de Vendas
   Self-contained · noindex · Dark amber
   ============================================ */

:root {
  --ink: #0A0A0A;
  --amber: #8B5CF6;
  --amber-deep: #7C3AED;
  --amber-soft: #C4B5FD;
  --text-on-dark: #FAFAF7;
  --text-muted: #A8A296;
  --rule: #2A2A2A;
  --card-bg: #111111;
  --container: 1280px;
  --pad-x: 32px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --grad-gold: linear-gradient(135deg, #C4B5FD 0%, #8B5CF6 50%, #7C3AED 100%);
}
@media (max-width: 639px) { :root { --pad-x: 18px; } }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.bts-sales {
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
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, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text-on-dark);
}
.h1 { font-size: clamp(2rem, 5vw, 3.75rem); letter-spacing: -0.025em; }
.h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
.h4 { font-size: 1.125rem; font-weight: 700; }
.lede { font-size: clamp(0.9375rem, 1.2vw, 1.0625rem); line-height: 1.6; color: var(--text-muted); }
.gold-grad {
  background-image: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--amber);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--amber); flex-shrink: 0;
}
.mono {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ---------- Layout ---------- */
/* .wrap removido: identico ao de armys.css, que carrega depois e sempre vence a cascata */
.section-pad { padding: 80px 0; }
@media (min-width: 1024px) { .section-pad { padding: 100px 0; } }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  border-radius: 2px; cursor: pointer; white-space: nowrap;
  transition: background 200ms ease, transform 150ms ease;
}
/* .btn-primary base removido: identico ao de armys.css */
.btn-primary:hover { background: var(--amber-deep); }
.btn-primary:disabled, .btn-primary[disabled] {
  background: #333; color: #666; cursor: not-allowed;
}
.btn-full { width: 100%; }

/* ============================================
   HERO COMPACTO
   ============================================ */
.bts-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 1024px) { .bts-hero { min-height: 60vh; } }

.bts-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/armys/assets/hero-concert.jpg');
  background-size: cover; background-position: center 30%;
  filter: brightness(0.45) saturate(1.05);
  animation: kenburns 30s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translate(0,0); }
  100% { transform: scale(1.14) translate(-1.5%,-1.5%); }
}
@media (prefers-reduced-motion: reduce) { .bts-hero-bg { animation: none; } }

.bts-hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,10,.5) 0%, rgba(10,10,10,.75) 60%, var(--ink) 100%);
}

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

.brand { display: inline-flex; align-items: center; font-size: 0; }
.brand .logo-wrap { display: inline-flex; align-items: center; height: 30px; }
.brand .logo { display: block; height: 30px; width: auto; object-fit: contain; }

.bts-hero-inner {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px var(--pad-x) 72px;
  max-width: var(--container); margin: 0 auto; width: 100%;
}
.bts-hero-inner h1 { margin-bottom: 20px; max-width: 16ch; }
.bts-hero-inner .lede { max-width: 520px; margin-bottom: 0; }

/* Badge live */
.manifest-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 13px;
  border: 1px solid var(--amber);
  background: rgba(212,165,42,.08);
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--amber); margin-bottom: 20px;
  border-radius: 2px; width: fit-content;
}
.manifest-dot {
  width: 7px; height: 7px;
  background: var(--amber); border-radius: 50%; flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,165,42,.4); }
  50%      { box-shadow: 0 0 0 4px rgba(212,165,42,0); }
}
@media (prefers-reduced-motion: reduce) { .manifest-dot { animation: none; } }

/* ============================================
   O QUE ESTÁ INCLUÍDO
   ============================================ */
.bts-includes {
  background: #0D0D0D;
  border-bottom: 1px solid var(--rule);
  padding: 40px 0;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) { .includes-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.include-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px;
  background: #141414;
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.include-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(212,165,42,.08);
  border: 1px solid rgba(212,165,42,.3);
  border-radius: 2px;
}
.include-icon svg {
  width: 18px; height: 18px;
  color: var(--amber); stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.include-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  color: var(--text-on-dark); margin-bottom: 3px;
}
.include-text span { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

/* ============================================
   FORMULÁRIO + SIDEBAR
   ============================================ */
.bts-form-section {
  background: var(--ink);
  padding: 56px 0 80px;
}

.bts-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 1024px) {
  .bts-layout { grid-template-columns: 1fr 380px; gap: 48px; }
}

/* --- Cards de formulário --- */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 32px;
  margin-bottom: 24px;
}
.form-card:last-child { margin-bottom: 0; }
.form-card-title {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.form-card-num {
  width: 32px; height: 32px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--amber); color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 800;
  border-radius: 2px;
}
.form-card-title h2 { font-size: 1.125rem; font-weight: 700; }

/* --- Campos --- */
.form-row { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-row:last-child { margin-bottom: 0; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 479px) { .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.16em;
  color: var(--text-muted);
}
.req { color: var(--amber); }
.form-input {
  background: #0A0A0A; border: 1px solid var(--rule);
  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 base removido: identico ao de armys.css */
.form-select option { background: #141414; color: var(--text-on-dark); }
.form-hint { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.form-error-msg { font-size: 13px; color: #e05a5a; min-height: 16px; }

/* iOS: campo abaixo de 16px faz o Safari do iPhone dar ZOOM ao focar, e ele NÃO
   volta ao sair do campo. Com 6 passageiros são 36 campos: o comprador ficava
   preso num layout ampliado, com o botão de comprar fora da tela. */
@media (max-width: 1023px) {
  .form-input, .form-select, select.form-input, input.form-input, textarea.form-input { font-size: 16px; }
}

/* Embarque dinâmico */
.form-row-embarque { display: none; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-row-embarque.is-visible { display: flex; }

/* Age block */
.age-warn {
  font-size: 13px; color: var(--amber); line-height: 1.45;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 300ms var(--ease), opacity 300ms ease;
}
.age-warn.active { max-height: 60px; opacity: 1; }

/* Passageiros */
.pax-section {
  padding: 24px;
  background: rgba(212,165,42,.04);
  border: 1px solid rgba(212,165,42,.15);
  border-radius: 4px;
  margin-bottom: 20px;
}
.pax-section:last-child { margin-bottom: 0; }
.pax-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem; font-weight: 700;
  color: var(--amber);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.pax-title::before {
  content: ""; display: block;
  width: 20px; height: 1px; background: var(--amber);
}

/* Vagas counter */
.vagas-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--rule); border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.vagas-num { color: var(--amber); font-size: 13px; }
.vagas-badge.low { border-color: rgba(224,90,90,.4); }
.vagas-badge.low .vagas-num { color: #e05a5a; }

/* ============================================
   SIDEBAR — PREÇO
   ============================================ */
.bts-sidebar { position: sticky; top: 24px; }

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}
.price-card-head {
  padding: 20px 24px;
  background: rgba(212,165,42,.06);
  border-bottom: 1px solid var(--rule);
}
.price-card-head .eyebrow { margin-bottom: 8px; }
.price-card-head h3 { font-size: 1rem; font-weight: 700; color: var(--text-muted); }
.price-card-head h3 span { color: var(--text-on-dark); }

.price-card-body { padding: 20px 24px; }
.price-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid var(--rule);
  font-size: 14px; color: var(--text-muted);
}
.price-line:last-of-type { border-bottom: none; }
.price-line strong { color: var(--text-on-dark); font-weight: 600; }
/* Layout ANTIGO (pagina legada /armys-bts): Total como numero-heroi. Mantido intacto. */
.price-total {
  margin-top: 8px; padding-top: 16px; border-top: 2px solid var(--amber);
  display: flex; justify-content: space-between; align-items: baseline;
}
.price-total-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
}
.price-total-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem; font-weight: 800; color: var(--text-on-dark);
}
.price-parcel {
  margin-top: 6px; text-align: right;
  font-size: 13px; color: var(--amber);
}

/* Layout NOVO (checkout /armys): parcelamento como heroi, com tarja de OFERTA com prazo.
   O a-vista fica de apoio (transparencia / CDC). Tudo escopado em .price-headline (so
   existe na /armys) pra NAO afetar o .price-parcel da pagina legada acima. */
.price-headline {
  margin-top: 8px; padding-top: 16px; border-top: 2px solid var(--amber);
}
.price-headline .price-promo {
  display: inline-block; margin-bottom: 10px;
  background: var(--amber); color: #1a1033;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 4px;
}
.price-headline .price-parcel {
  margin: 0; text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem; font-weight: 800; line-height: 1.2;
  color: var(--text-on-dark);
}
.price-headline .price-parcel .price-parcel-livre {
  color: #25D366; font-size: 1.15rem; white-space: nowrap;
}
.price-avista {
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--text-muted); letter-spacing: 0.01em;
}
.price-avista strong { color: var(--text-on-dark); font-weight: 700; }

.price-card-cta { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 16px; }
.price-card-cta .btn { font-size: 15px; padding: 16px; }
.price-card-cta .btn-fine {
  text-align: center;
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.14em;
}

.co-consent {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 12px; line-height: 1.45; color: var(--text-muted);
  cursor: pointer;
}
.co-consent input[type="checkbox"] {
  margin-top: 2px; flex: 0 0 auto;
  width: 16px; height: 16px; accent-color: var(--amber);
}
.co-consent a { color: var(--amber); }

.price-empty {
  padding: 32px 24px; text-align: center;
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
}

/* Reembolso */
.reembolso-card {
  background: var(--card-bg);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
.reembolso-card summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-muted); cursor: pointer;
  transition: background 180ms ease;
}
.reembolso-card summary::-webkit-details-marker { display: none; }
.reembolso-card summary:hover { background: #141414; }
.reembolso-icon {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--amber); stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round;
  transition: transform 280ms var(--ease);
}
.reembolso-card[open] summary .reembolso-icon { transform: rotate(45deg); }
.reembolso-body {
  padding: 0 20px 18px;
  font-size: 13px; color: var(--text-muted); line-height: 1.65;
}
.reembolso-body ul { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.reembolso-body li { padding-left: 14px; position: relative; }
.reembolso-body li::before { content: "·"; position: absolute; left: 0; color: var(--amber); }

/* ============================================
   FOOTER
   ============================================ */
.bts-footer {
  background: #050505;
  border-top: 1px solid var(--rule);
  padding: 48px 0 24px;
  color: var(--text-muted);
}
.bts-footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .bts-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; } }
.bts-footer-tag {
  margin-top: 14px;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--amber);
}
.bts-footer p { margin-top: 12px; font-size: 13px; line-height: 1.6; max-width: 320px; }
.bts-footer h5 {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--text-on-dark); margin-bottom: 14px;
}
.bts-footer ul { display: flex; flex-direction: column; gap: 10px; }
.bts-footer a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  transition: color 180ms ease;
}
.bts-footer a:hover { color: var(--amber); }
.bts-footer a svg {
  width: 13px; height: 13px; stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; flex-shrink: 0;
}
.bts-footer-bottom {
  padding-top: 20px; border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 6px;
  font-family: 'Inter', sans-serif; font-size: 10px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--text-muted);
}
@media (min-width: 640px) { .bts-footer-bottom { flex-direction: row; justify-content: space-between; } }
.bts-disclaimer {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--rule);
  font-size: 11px; color: var(--text-muted); opacity: 0.5; line-height: 1.5;
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 639px) {
  .bts-hero { min-height: 44vh; }
  .bts-hero-inner { padding: 32px var(--pad-x) 56px; }
  .bts-hero-inner h1 { font-size: clamp(1.75rem, 8vw, 2.25rem); max-width: 100%; }
  .bts-form-section { padding: 36px 0 60px; }
  .form-card { padding: 22px 18px; }
  .pax-section { padding: 18px; }
  .bts-sidebar { position: static; }
  .include-item { gap: 10px; padding: 16px; }
  .include-text strong { font-size: 0.75rem; }
  .include-text span { font-size: 0.6875rem; }
  .price-card-cta .btn { font-size: 14px; }
}
