/* ============================================================
   BARBERS VALE 2026 — Editorial Poster (mobile-first)
   Display: Barlow Condensed · Body: Inter · Data: JetBrains Mono
   Quote: Playfair Display Italic · Verde #01DB84 / Preto / Prata #D5DAD6
   ============================================================ */

:root {
  --verde: #01DB84;
  --verde-deep: #04a866;
  --verde-ghost: rgba(1, 219, 132, 0.14);
  --grad: linear-gradient(118deg, #01DB84 0%, #5CFFC0 100%);      /* texto em degradê */
  --grad-btn: linear-gradient(120deg, #01DB84 0%, #2BF2A2 100%);  /* preenchimento de CTA */
  --ink: #000000;
  --bg: #000000;
  --surface: #0b0d0c;
  --surface-2: #121614;
  --prata: #D5DAD6;
  --prata-mute: rgba(213, 218, 214, 0.60);
  --prata-faint: rgba(213, 218, 214, 0.34);
  --line: rgba(213, 218, 214, 0.12);
  --line-strong: rgba(213, 218, 214, 0.22);
  --white: #ffffff;

  --f-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
  --f-quote: 'Playfair Display', Georgia, serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 4px;
  --header-h: 66px;

  --sp-section: 88px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--prata);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 760px; }
/* texto em degradê (fallback: cor sólida verde) */
.txt-verde, .txt-grad {
  color: var(--verde);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Ícones ---------- */
.ic { width: 24px; height: 24px; display: inline-block; vertical-align: middle; color: var(--verde); flex: 0 0 auto; }
.ic--sm { width: 18px; height: 18px; }

/* ---------- Eyebrow mono com índice ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--prata-mute);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.eyebrow--center { justify-content: center; }
.eyebrow__idx { color: var(--verde); font-weight: 700; }
.eyebrow__idx::after { content: ""; display: inline-block; width: 22px; height: 1px; background: var(--line-strong); margin-left: 10px; vertical-align: middle; }

/* ---------- Títulos ---------- */
.h2 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--white);
}
.lead { color: var(--prata-mute); font-size: 1.05rem; margin-top: 18px; max-width: 54ch; }
.lead strong { color: var(--prata); font-weight: 600; }
.lead--center { margin-left: auto; margin-right: auto; text-align: center; }

.section { padding: var(--sp-section) 0; position: relative; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 52px; }

/* ============ BOTÕES ============ */
.btn {
  --pad: 15px 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.02rem;
  padding: var(--pad);
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--grad-btn); color: #041a10; }
.btn--solid:hover { filter: brightness(1.06); }
.btn--solid .ic { color: #041a10; }
.btn--ghost { background: transparent; color: var(--prata); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--verde); color: var(--white); }
.btn--ghost .ic { color: var(--verde); }
.btn--lg { --pad: 18px 34px; font-size: 1.12rem; }
.btn--sm { --pad: 11px 18px; font-size: 0.9rem; }
.btn--block { display: flex; width: 100%; }

/* ============ HEADER ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 13px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
  padding: 7px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; display: block; transition: width 0.4s var(--ease), height 0.4s var(--ease); }
.brand__logo { height: 40px; width: auto; display: block; transition: height 0.4s var(--ease); }
.nav.scrolled .brand__logo { height: 31px; }
.brand__text { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 1.35rem; letter-spacing: 0.02em; color: var(--white); }
.brand__text strong { color: var(--verde); }

.nav__menu { display: none; }
.nav__link { font-size: 0.94rem; color: var(--prata-mute); transition: color 0.2s; }
.nav__link:hover { color: var(--white); }

.nav__toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--prata); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu.open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(0, 0, 0, 0.97); backdrop-filter: blur(14px);
  padding: 22px; gap: 20px; border-top: 1px solid var(--line);
}
.nav__menu.open .nav__link { font-size: 1.05rem; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 44px) 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero__ghost {
  position: absolute; right: -1vw; top: 50%; transform: translateY(-50%);
  font-family: var(--f-display); font-weight: 700; font-size: clamp(280px, 52vh, 560px); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1.5px rgba(213, 218, 214, 0.055);
  pointer-events: none; user-select: none; z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }

.hero__flyer {
  display: block; width: 100%; max-width: 100%;
  margin: 0 0 30px; padding: 0; border: 0; background: none;
  cursor: pointer; line-height: 0;
  transition: transform 0.3s var(--ease);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 8%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 8%);
}
.hero__flyer img { display: block; width: 100%; height: auto; }
.hero__flyer:hover,
.hero__flyer:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.hero__kicker {
  font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--prata-mute); display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 24px;
}
.hero__kicker span { color: var(--prata); }
.hero__kicker i { width: 5px; height: 5px; background: var(--verde); border-radius: 50%; display: inline-block; }

.hero__title {
  font-family: var(--f-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.15rem, 8.4vw, 6.4rem); line-height: 0.92; letter-spacing: 0.005em; color: var(--white);
  overflow-wrap: break-word;
}
.hero__lead { color: var(--prata-mute); font-size: 1.08rem; max-width: 56ch; margin: 24px 0 0; }

.hero__count { display: flex; gap: 10px; margin-top: 36px; }
.count {
  min-width: 68px; padding: 12px 6px; text-align: center;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
}
.count__n { display: block; font-family: var(--f-mono); font-weight: 700; font-size: 1.7rem; font-variant-numeric: tabular-nums; line-height: 1; color: var(--white); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.count__l { display: block; font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--prata-mute); margin-top: 7px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__stats { display: flex; gap: 0; margin-top: 46px; border-top: 1px solid var(--line); padding-top: 26px; max-width: 460px; }
.stat { flex: 1; min-width: 0; padding-right: 14px; }
.stat + .stat { padding-left: 18px; border-left: 1px solid var(--line); }
.stat dt { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--prata-mute); margin-bottom: 6px; }
.stat dd { font-family: var(--f-display); font-weight: 700; font-size: 2.4rem; line-height: 0.9; color: var(--verde); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat dd span { -webkit-text-fill-color: var(--prata-faint); color: var(--prata-faint); }

/* ============ MOVIMENTO ============ */
.movimento__inner { display: grid; gap: 48px; }
.pillars { list-style: none; display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pillars li { padding: 26px; border-bottom: 1px solid var(--line); transition: background 0.25s; }
.pillars li:last-child { border-bottom: 0; }
.pillars li:hover { background: var(--surface); }
.pillars h3 { font-family: var(--f-display); text-transform: uppercase; font-weight: 600; color: var(--white); font-size: 1.3rem; letter-spacing: 0.01em; margin: 14px 0 6px; }
.pillars p { color: var(--prata-mute); font-size: 0.96rem; }

/* ============ PARA QUEM É ============ */
.checks { list-style: none; display: grid; gap: 1px; max-width: 780px; margin: 0 auto; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.checks li { position: relative; background: var(--bg); padding: 17px 18px 17px 52px; font-weight: 500; color: var(--prata); }
.checks li::before {
  content: ""; position: absolute; left: 20px; top: 50%; width: 16px; height: 9px;
  border-left: 2px solid var(--verde); border-bottom: 2px solid var(--verde);
  transform: translateY(-70%) rotate(-45deg);
}
.paraquem__foot { text-align: center; max-width: 640px; margin: 34px auto 0; color: var(--prata-mute); font-size: 1.02rem; }

/* ============ PALESTRANTES ============ */
.speakers { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.speaker { position: relative; }
.speaker__idx {
  position: absolute; z-index: 2; top: 10px; left: 10px;
  font-family: var(--f-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--verde); background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(3px);
  padding: 3px 8px; border-radius: 3px;
}
.speaker__ph {
  position: relative;
  aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface);
}
.speaker__ph img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.5s var(--ease);
}
.speaker:hover .speaker__ph { border-color: var(--verde); }
.speaker:hover .speaker__ph img { transform: scale(1.045); }

/* ----- Palestrantes ainda não confirmados (efeito mistério) ----- */
.speaker--mystery .speaker__ph img {
  filter: brightness(0.05) grayscale(1) blur(7px);
  transform: scale(1.06);
}
.speaker--mystery:hover .speaker__ph { border-color: var(--line); }
.speaker--mystery:hover .speaker__ph img { transform: scale(1.06); }
.speaker__mystery {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: radial-gradient(circle at 50% 42%, rgba(1, 219, 132, 0.08), rgba(0, 0, 0, 0.82) 72%);
}
.speaker__q {
  font-family: var(--f-display); font-weight: 700; line-height: 1;
  font-size: clamp(3.2rem, 12vw, 4.4rem); color: var(--verde);
  text-shadow: 0 0 22px rgba(1, 219, 132, 0.35);
}
.speaker__soon {
  font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--prata-mute);
}

/* ============ INGRESSOS (ticket stub) ============ */
.tickets { display: grid; gap: 40px; max-width: 860px; margin: 0 auto; }
.ticket {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  display: flex; flex-direction: column;
}
.ticket--vip { border-color: var(--verde); background: linear-gradient(180deg, rgba(1, 219, 132, 0.07), var(--surface) 55%); }
.ticket__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--verde); color: #041a10; font-family: var(--f-mono); font-weight: 700;
  font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 3px; white-space: nowrap;
}
.ticket__body { padding: 30px 28px 26px; flex: 1; }
.ticket__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 22px; }
.ticket__name { font-family: var(--f-display); text-transform: uppercase; font-weight: 700; font-size: 2rem; color: var(--white); line-height: 1; letter-spacing: 0.01em; }
.ticket__lote { font-family: var(--f-mono); font-size: 0.62rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--verde); border: 1px solid rgba(1, 219, 132, 0.4); padding: 5px 9px; border-radius: 3px; }
.ticket__list { list-style: none; display: grid; gap: 12px; }
.ticket__list li { position: relative; padding-left: 30px; font-size: 0.96rem; }
.ticket__list li::before { position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 4px; display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; font-family: var(--f-mono); }
.ticket__list li.ok { color: var(--prata); }
.ticket__list li.ok::before { content: "+"; background: var(--verde-ghost); color: var(--verde); }
.ticket__list li.no { color: var(--prata-faint); }
.ticket__list li.no::before { content: "\2013"; background: rgba(213, 218, 214, 0.06); color: var(--prata-faint); }

/* linha de corte + notches */
.ticket__stub { position: relative; padding: 26px 28px 28px; border-top: 2px dashed var(--line-strong); text-align: center; }
.ticket__stub::before, .ticket__stub::after {
  content: ""; position: absolute; top: -13px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line);
}
.ticket__stub::before { left: -13px; }
.ticket__stub::after { right: -13px; }
.ticket--vip .ticket__stub::before, .ticket--vip .ticket__stub::after { border-color: var(--verde); }
.ticket__from { display: block; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--prata-mute); text-decoration: line-through; text-decoration-color: rgba(213,218,214,0.4); }
.ticket--vip .ticket__from { text-decoration: none; color: var(--verde); }
.ticket__price { display: flex; align-items: center; justify-content: center; min-height: 3.6rem; font-family: var(--f-display); font-weight: 700; font-size: 3.6rem; line-height: 1; margin: 6px 0; font-variant-numeric: tabular-nums; color: var(--white); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ticket__price--vip { font-size: 2.6rem; }
.ticket__cur { font-size: 1.4rem; color: var(--prata-mute); -webkit-text-fill-color: initial; margin-right: 4px; vertical-align: 0.6em; }
.ticket__parc { display: block; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--prata-mute); margin-bottom: 20px; }

.grupos { margin: 40px auto 0; max-width: 860px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.grupos h3 { font-family: var(--f-display); text-transform: uppercase; font-weight: 600; color: var(--white); font-size: 1.4rem; letter-spacing: 0.01em; }
.grupos p { color: var(--prata-mute); font-size: 0.96rem; margin-top: 4px; }

/* ============ DEPOIMENTOS ============ */
.quotes { display: grid; gap: 16px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; position: relative; }
.quote::before { content: "\201C"; font-family: var(--f-quote); font-style: italic; font-size: 4.4rem; line-height: 0.7; color: var(--verde); display: block; height: 34px; }
.quote__text { font-family: var(--f-quote); font-style: italic; font-size: 1.16rem; line-height: 1.5; color: var(--prata); }
.quote__by { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--verde); margin-top: 20px; }

/* ============ LOCAL ============ */
.local__inner { display: grid; gap: 34px; }
.local__info { list-style: none; display: grid; gap: 2px; margin: 26px 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.local__info li { display: flex; align-items: center; gap: 16px; padding: 16px 18px; background: var(--surface); border-bottom: 1px solid var(--line); }
.local__info li:last-child { border-bottom: 0; }
.local__info strong { display: block; color: var(--white); font-weight: 600; font-size: 1.02rem; }
.local__info small { color: var(--prata-mute); font-size: 0.85rem; }
.local__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 300px; background: var(--surface); }
.local__map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; filter: grayscale(0.35) contrast(1.05) brightness(0.9); }
.local__media { display: grid; gap: 20px; }
.local__photo { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.local__photo img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 24 / 15; }

/* ============ FAQ ============ */
.accordion { display: grid; gap: 10px; }
.acc { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.acc__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-family: var(--f-display); text-transform: uppercase; font-weight: 600; font-size: 1.08rem; letter-spacing: 0.01em; color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.acc__ic { width: 20px; height: 20px; color: var(--verde); flex: 0 0 auto; transition: transform 0.3s var(--ease); }
.acc__q[aria-expanded="true"] .acc__ic { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.acc__a p { padding: 0 22px 20px; color: var(--prata-mute); font-size: 0.97rem; }

/* ============ CTA FINAL ============ */
.cta-final { text-align: center; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-final__ghost { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-family: var(--f-display); font-weight: 700; font-size: clamp(160px, 30vw, 460px); line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(1, 219, 132, 0.07); pointer-events: none; z-index: 0; white-space: nowrap; }
.cta-final__inner { position: relative; z-index: 1; }
.cta-final .lead { margin-bottom: 30px; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding-top: 52px; background: #020403; }
.footer__inner { display: grid; gap: 30px; }
.footer__brand p { color: var(--prata-mute); font-size: 0.9rem; margin-top: 14px; max-width: 42ch; }
.footer__brand .brand__mark { width: 40px; height: 40px; }
.footer__social { display: flex; gap: 12px; }
.soc { width: 46px; height: 46px; border-radius: var(--radius); display: grid; place-items: center; transition: transform 0.2s; }
.soc--wa { background: #25D366; }
.soc--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.soc:hover { transform: translateY(-3px); }
.footer__contact { display: flex; flex-direction: column; gap: 2px; }
.footer__contact span { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--prata-mute); }
.footer__contact a { color: var(--verde); font-weight: 600; font-size: 1.05rem; }
.footer__bottom { margin-top: 42px; border-top: 1px solid var(--line); padding: 22px 0; }
.footer__bottom p { color: var(--prata-faint); font-size: 0.82rem; text-align: center; }

/* ============ STICKY REGISTER BAR ============ */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
  background: rgba(6, 8, 7, 0.94); backdrop-filter: blur(14px); border-top: 1px solid var(--line-strong);
  transform: translateY(110%); transition: transform 0.4s var(--ease);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 22px; }
.sticky-bar__info { display: flex; flex-direction: column; }
.sticky-bar__lote { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--prata-mute); }
.sticky-bar__price { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; color: var(--white); line-height: 1.1; }
.sticky-bar__price small { font-family: var(--f-mono); font-size: 0.6rem; color: var(--prata-mute); letter-spacing: 0.04em; }
.sticky-bar .btn { --pad: 13px 20px; }

/* ============ FLUTUANTE WHATSAPP ============ */
.float-wa { position: fixed; right: 18px; bottom: 20px; z-index: 90; width: 54px; height: 54px; border-radius: 50%; background: #25D366; border: 0; cursor: pointer; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); transition: transform 0.2s var(--ease), bottom 0.4s var(--ease); }
.float-wa:hover { transform: scale(1.06); }
/* sobe para não colidir com a sticky bar quando ela aparece */
body.sticky-on .float-wa { bottom: 84px; }

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.78); backdrop-filter: blur(4px); }
.modal__box { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(92vw, 460px); max-height: 92vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--line-strong); border-radius: 6px; padding: 34px 28px; }
.modal__close { position: absolute; top: 12px; right: 16px; background: none; border: 0; color: var(--prata-mute); font-size: 1.9rem; line-height: 1; cursor: pointer; }
.modal__close:hover { color: var(--white); }
.modal__title { font-family: var(--f-display); text-transform: uppercase; font-weight: 700; font-size: 1.9rem; color: var(--white); line-height: 1; }
.modal__sub { color: var(--prata-mute); font-size: 0.94rem; margin: 8px 0 22px; }

.field { margin-bottom: 18px; }
.field label, .field__label { display: block; font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--prata-mute); margin-bottom: 9px; }
.field input[type="text"], .field input[type="tel"] { width: 100%; background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 14px 16px; color: var(--white); font-size: 1rem; font-family: var(--f-body); transition: border-color 0.2s; }
.field input:focus { outline: none; border-color: var(--verde); }
.field input::placeholder { color: rgba(213, 218, 214, 0.36); }
.field__err { display: none; color: #ff6b6b; font-size: 0.8rem; margin-top: 6px; }
.field.invalid input { border-color: #ff6b6b; }
.field.invalid .field__err { display: block; }

.radios { display: grid; gap: 10px; }
.radios--row { grid-auto-flow: column; justify-content: start; gap: 24px; }
.radio { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.95rem; }
.radio input { accent-color: var(--verde); width: 18px; height: 18px; }
.radio--card { border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 13px 15px; transition: border-color 0.2s, background 0.2s; }
.radio--card:has(input:checked) { border-color: var(--verde); background: rgba(1, 219, 132, 0.06); }
.radio--card strong { color: var(--white); font-weight: 600; }
.modal__foot { display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; color: var(--prata-mute); font-size: 0.82rem; margin-top: 16px; }
.modal__foot .ic { color: var(--verde); }

/* ============ POPUP ============ */
.popup { position: fixed; left: 18px; bottom: 84px; z-index: 95; width: min(90vw, 320px); background: var(--surface); border: 1px solid var(--verde); border-radius: 6px; padding: 24px 22px 22px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); transform: translateY(160%); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.5s var(--ease); }
.popup.show { transform: translateY(0); opacity: 1; }
.popup__close { position: absolute; top: 8px; right: 12px; background: none; border: 0; color: var(--prata-mute); font-size: 1.5rem; cursor: pointer; }
.popup__title { font-family: var(--f-display); text-transform: uppercase; font-weight: 700; font-size: 1.6rem; color: var(--white); margin: 8px 0; }
.popup__text { font-size: 0.88rem; color: var(--prata-mute); margin-bottom: 16px; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVO ============ */
@media (min-width: 600px) {
  .tickets { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .grupos { flex-direction: row; align-items: center; justify-content: space-between; }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1.4fr auto; align-items: start; }
  .footer__social { justify-self: end; }
  .footer__contact { grid-column: 1 / -1; }
  .float-wa { bottom: 24px; }
  body.sticky-on .float-wa { bottom: 90px; }
}

@media (min-width: 900px) {
  :root { --header-h: 74px; --sp-section: 128px; }
  .nav__toggle { display: none; }
  .nav__menu { display: flex; align-items: center; gap: 30px; position: static; background: none; padding: 0; flex-direction: row; border: 0; }
  .movimento__inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
  .checks { grid-template-columns: 1fr 1fr; }
  .checks li:last-child { grid-column: 1 / -1; }
  .speakers { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .quotes { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .local__inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 54px; }
  .local__map { min-height: 400px; }
  .footer__inner { grid-template-columns: 1.6fr auto auto; align-items: center; }
  .footer__contact { grid-column: auto; align-items: flex-end; }
}

/* ============ MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
