/* ============================================================
   SUPERMERCADO TECH 2026 — 3ª edição
   Direção: dark premium / retail-tech kinetic
   Canvas quase-preto · lime elétrico (sinal) · roxo (energia)
   Display: Clash Display · Body: Inter
   ============================================================ */

:root {
  /* Marca */
  --lime: #b6ff00;
  --lime-2: #cdff52;
  --purple: #7d53ff;
  --purple-2: #9b7bff;
  --brand-blue: #242834;

  /* Tons de canvas (interpretação premium da marca) */
  --ink: #0c0d11;
  --ink-2: #111319;
  --surface: #16181f;
  --surface-2: #1c1f29;
  --elevated: #242834;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);

  /* Texto */
  --text: rgba(255, 255, 255, 0.95);
  --muted: rgba(255, 255, 255, 0.6);
  --faint: rgba(255, 255, 255, 0.4);

  /* Tipografia */
  --display: "Clash Display", "Bricolage Grotesque", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;

  /* Glow */
  --glow-lime: 0 0 0 1px rgba(182, 255, 0, 0.4), 0 18px 50px rgba(182, 255, 0, 0.28);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--lime); color: #0a0b0d; }

/* ============================================================
   Atmosfera de fundo (mesh + grão + grid)
   ============================================================ */
.atmos {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(182, 255, 0, 0.12), transparent 60%),
    radial-gradient(55% 45% at 90% 15%, rgba(125, 83, 255, 0.16), transparent 60%),
    radial-gradient(70% 60% at 80% 100%, rgba(125, 83, 255, 0.10), transparent 60%),
    radial-gradient(50% 50% at 25% 90%, rgba(182, 255, 0, 0.06), transparent 60%),
    var(--ink);
  animation: mesh 26s ease-in-out infinite alternate;
}
@keyframes mesh {
  0% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0 0; }
  100% { background-position: 6% 4%, -6% 3%, 4% -4%, -3% -3%, 0 0; }
}
.grid-tex {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  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");
}

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

section { position: relative; padding: clamp(80px, 12vh, 150px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--lime);
  opacity: 0.7;
}
.section-index {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--faint);
  text-transform: uppercase;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.02; letter-spacing: -0.02em; }

.display-xl { font-size: clamp(3rem, 9vw, 6.6rem); font-weight: 600; line-height: 0.96; letter-spacing: -0.035em; }
.display-lg { font-size: clamp(2.3rem, 5.5vw, 4rem); line-height: 1; letter-spacing: -0.03em; }
.lime { color: var(--lime); }
.purple { color: var(--purple-2); }
.outline-text {
  -webkit-text-stroke: 1.4px var(--lime);
  color: transparent;
}

.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); line-height: 1.6; }

/* Cabeçalho de seção */
.head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.head .head-left { max-width: 720px; }
.head h2 { margin-top: 16px; }
.head .lead { margin-top: 18px; }

/* ============================================================
   Botões
   ============================================================ */
.btn {
  --bg: var(--lime);
  --fg: #0a0b0d;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  background: var(--bg);
  color: var(--fg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.btn .arrow { transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .arrow { transform: translateX(5px); }
.btn--lime { box-shadow: 0 10px 36px rgba(182, 255, 0, 0.26); }
.btn--lime:hover { box-shadow: 0 16px 48px rgba(182, 255, 0, 0.4); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn--purple { background: rgba(125, 83, 255, 0.14); color: #fff; border-color: rgba(125, 83, 255, 0.55); }
.btn--purple:hover { background: rgba(125, 83, 255, 0.28); }
.btn--lg { padding: 19px 34px; font-size: 1.05rem; }

/* ============================================================
   Navegação
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: padding 0.4s ease;
  padding: 22px 0;
}
.nav.scrolled { padding: 12px 0; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled .nav-inner {
  background: rgba(16, 18, 24, 0.7);
  border-color: var(--line);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.nav-logo img { width: 138px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a:not(.btn) { font-size: 0.92rem; font-weight: 500; color: var(--muted); transition: color 0.2s ease; }
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-cta { padding: 11px 22px; font-size: 0.88rem; color: #0a0b0d; }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 50%; background: rgba(255,255,255,0.03); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: 150px; padding-bottom: 60px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  padding: 9px 16px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero h1 { margin: 30px 0 26px; max-width: 16ch; }
.hero .lead { max-width: 56ch; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 36px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 500; font-size: 0.96rem;
}
.hero-chip b { font-family: var(--display); font-weight: 600; }
.hero-chip .ic { color: var(--lime); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-actions .micro { color: var(--faint); font-size: 0.85rem; }

/* Countdown inline */
.countdown { display: flex; gap: clamp(14px, 4vw, 38px); margin-top: 54px; padding-top: 30px; border-top: 1px solid var(--line); }
.cd { display: flex; flex-direction: column; }
.cd-val { font-family: var(--display); font-weight: 600; font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 0.9; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.cd-val.lime { color: var(--lime); }
.cd-lab { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-top: 12px; }
.cd-sep { font-family: var(--display); font-size: clamp(2rem, 5vw, 3.4rem); color: var(--line-2); align-self: flex-start; line-height: 0.9; }

/* Marquee de palavras (fim do hero) */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  padding: 0 28px;
  display: inline-flex; align-items: center; gap: 28px;
  color: var(--text);
  white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--lime); font-size: 0.8em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   BENTO (números + destaque)
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.tile:hover { border-color: var(--line-2); transform: translateY(-3px); }
.tile.feature {
  grid-column: span 6;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(182,255,0,0.12), transparent 55%),
    var(--surface);
  display: flex; flex-direction: column; justify-content: space-between; min-height: 280px;
}
.tile.feature h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.tile.feature p { color: var(--muted); max-width: 42ch; }
.tile.stat { grid-column: span 3; display: flex; flex-direction: column; justify-content: flex-end; min-height: 280px; }
.tile.stat .big { font-family: var(--display); font-weight: 600; font-size: clamp(2.8rem, 6vw, 4.6rem); line-height: 0.9; letter-spacing: -0.04em; }
.tile.stat .lab { color: var(--muted); margin-top: 14px; font-size: 0.98rem; }
.tile.stat:nth-of-type(2) .big { color: var(--lime); }
.tile.stat:nth-of-type(3) .big { color: var(--purple-2); }

/* ============================================================
   SOBRE (editorial)
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.video-frame {
  position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.about-copy h2 { margin: 18px 0 24px; }
.about-copy p { color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.about-copy p + p { margin-top: 18px; }
.pull {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.25; letter-spacing: -0.02em;
  color: var(--text); margin: 28px 0;
  padding-left: 24px; border-left: 3px solid var(--lime);
}

/* ============================================================
   PILARES / TRILHAS (novo)
   ============================================================ */
.tracks { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.track {
  display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 24px;
  padding: 30px 8px; border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s cubic-bezier(0.2,0.8,0.2,1), background 0.4s ease;
}
.track:hover { padding-left: 26px; background: linear-gradient(90deg, rgba(182,255,0,0.05), transparent); }
.track .num { font-family: var(--display); font-size: 1.1rem; color: var(--faint); }
.track h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500; }
.track .desc { color: var(--muted); font-size: 0.98rem; max-width: 40ch; }
.track .chev { color: var(--lime); font-size: 1.4rem; opacity: 0; transform: translateX(-8px); transition: 0.4s; }
.track:hover .chev { opacity: 1; transform: translateX(0); }

/* ============================================================
   PALESTRANTES
   ============================================================ */
.note-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid rgba(125, 83, 255, 0.5);
  background: rgba(125, 83, 255, 0.12);
  color: var(--purple-2); font-size: 0.8rem; font-weight: 600;
}
.speakers-row {
  display: flex; gap: 18px; overflow-x: auto; padding: 6px var(--gutter) 30px;
  margin: 0 calc(-1 * var(--gutter));
  scrollbar-width: none; cursor: grab; scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.speakers-row::-webkit-scrollbar { display: none; }
.speakers-row.dragging { cursor: grabbing; }
.sp-card {
  flex: 0 0 280px; scroll-snap-align: start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.sp-card:hover { border-color: var(--lime); transform: translateY(-6px); }
.sp-photo { position: relative; aspect-ratio: 4/4.4; overflow: hidden; background: var(--ink-2); }
.sp-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter 0.5s ease, transform 0.6s ease; pointer-events: none; }
.sp-card:hover .sp-photo img { filter: none; transform: scale(1.05); }
.sp-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,13,17,0.85), transparent 55%); }
.sp-body { padding: 20px 22px 24px; }
.sp-body h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.sp-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.45; }
.drag-hint { color: var(--faint); font-size: 0.82rem; margin-top: 6px; }

/* ============================================================
   AGENDA
   ============================================================ */
.tabs { display: inline-flex; gap: 6px; padding: 6px; border: 1px solid var(--line); border-radius: 100px; margin-bottom: 40px; background: var(--surface); }
.tab { padding: 11px 24px; border-radius: 100px; border: none; background: transparent; color: var(--muted); font-weight: 600; font-size: 0.92rem; transition: 0.3s; }
.tab.active { background: var(--lime); color: #0a0b0d; }
.day { display: none; }
.day.active { display: block; }
.slot { display: grid; grid-template-columns: 96px 1fr; gap: 28px; padding: 22px 0; border-top: 1px solid var(--line); align-items: baseline; }
.slot:last-child { border-bottom: 1px solid var(--line); }
.slot .time { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--lime); font-variant-numeric: tabular-nums; }
.slot h4 { font-family: var(--body); font-weight: 600; font-size: 1.1rem; letter-spacing: 0; margin-bottom: 5px; }
.slot .who { color: var(--muted); font-size: 0.92rem; }
.tag { display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 6px; margin-bottom: 9px; }
.tag.t-pal { background: rgba(125,83,255,0.2); color: var(--purple-2); }
.tag.t-mom { background: rgba(182,255,0,0.16); color: var(--lime); }
.tag.t-ab { background: rgba(255,255,255,0.1); color: var(--muted); }

/* ============================================================
   BENEFÍCIOS (cards)
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.why {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: 0.4s; position: relative; overflow: hidden;
}
.why:hover { transform: translateY(-4px); border-color: var(--line-2); }
.why .n { font-family: var(--display); font-size: 0.9rem; color: var(--lime); letter-spacing: 0.1em; }
.why h3 { font-family: var(--body); font-weight: 700; font-size: 1.25rem; margin: 16px 0 10px; letter-spacing: 0; }
.why p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   PATROCINADORES (marquee de logos)
   ============================================================ */
.logos { overflow: hidden; margin: 0 calc(-1 * var(--gutter)); padding: 8px 0; }
.logos-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: scroll-x 38s linear infinite; }
.logos:hover .logos-track { animation-play-state: paused; }
.logos-track img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.45; transition: opacity 0.3s ease; }
.logos-track img:hover { opacity: 1; }

/* ============================================================
   ORGANIZADORES
   ============================================================ */
.org-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.org {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; display: flex; flex-direction: column; gap: 18px; transition: 0.4s;
}
.org:hover { border-color: var(--line-2); transform: translateY(-4px); }
.org .logo-chip { width: 84px; height: 84px; border-radius: 16px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 14px; }
.org .logo-chip img { max-width: 100%; max-height: 100%; }
.org p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   LOCAL & HOSPEDAGEM
   ============================================================ */
.venue-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.venue-card {
  grid-column: 1 / -1;
  background:
    radial-gradient(100% 120% at 0% 0%, rgba(125,83,255,0.16), transparent 55%),
    var(--surface);
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 52px);
}
.venue-card h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.venue-card p { color: var(--muted); max-width: 60ch; }
.map-frame { position: relative; padding-bottom: 40%; min-height: 280px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-top: 36px; }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.4) invert(0.92) hue-rotate(180deg) contrast(0.9); }
.hotels { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
.hotel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: 0.4s; position: relative; }
.hotel:hover { border-color: var(--lime); transform: translateY(-4px); }
.hotel .badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime); }
.hotel h4 { font-family: var(--body); font-weight: 700; font-size: 1.3rem; margin: 12px 0 8px; letter-spacing: 0; }
.hotel .desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.hotel ul { list-style: none; margin-bottom: 22px; }
.hotel li { padding: 5px 0; font-size: 0.92rem; color: var(--text); }
.hotel a { font-weight: 600; color: var(--lime); font-size: 0.92rem; display: inline-flex; gap: 6px; align-items: center; }
.hotel a:hover { gap: 10px; }
.tips { margin-top: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.tips h4 { font-family: var(--body); font-weight: 700; letter-spacing: 0; margin-bottom: 14px; }
.tips ul { list-style: none; }
.tips li { padding: 9px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.tips li:last-child { border: 0; }
.tips li::before { content: "→"; color: var(--lime); margin-right: 12px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.q { width: 100%; background: none; border: none; text-align: left; color: var(--text); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--display); font-weight: 500; font-size: clamp(1.1rem, 2.2vw, 1.4rem); letter-spacing: -0.01em; }
.q .pm { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.q .pm::before, .q .pm::after { content: ""; position: absolute; background: var(--lime); border-radius: 2px; transition: transform 0.35s ease; }
.q .pm::before { top: 10px; left: 0; width: 22px; height: 2px; }
.q .pm::after { top: 0; left: 10px; width: 2px; height: 22px; }
.qa.open .pm::after { transform: rotate(90deg); opacity: 0; }
.a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.a p { padding-bottom: 26px; color: var(--muted); font-size: 1.02rem; line-height: 1.65; max-width: 70ch; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background:
    radial-gradient(80% 140% at 20% 0%, rgba(182,255,0,0.18), transparent 55%),
    radial-gradient(80% 140% at 100% 100%, rgba(125,83,255,0.22), transparent 55%),
    var(--surface);
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 80px);
  text-align: center;
}
.cta h2 { margin-bottom: 20px; }
.cta .lead { max-width: 56ch; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { border-top: 1px solid var(--line); padding: 70px 0 50px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.foot-logo img { width: 160px; margin-bottom: 18px; }
.foot p { color: var(--muted); font-size: 0.95rem; max-width: 44ch; }
.foot-links { display: flex; flex-wrap: wrap; gap: 14px 40px; }
.foot-col h5 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--muted); padding: 6px 0; font-size: 0.95rem; transition: color 0.2s; }
.foot-col a:hover { color: var(--lime); }
.foot-bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--faint); font-size: 0.85rem; }

/* WhatsApp flutuante */
.wa {
  position: fixed; bottom: 22px; right: 22px; z-index: 900;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px 14px 16px; border-radius: 100px;
  background: var(--lime); color: #0a0b0d; font-weight: 600; font-size: 0.92rem;
  box-shadow: 0 12px 36px rgba(182,255,0,0.34);
  transition: transform 0.3s ease;
}
.wa:hover { transform: translateY(-3px) scale(1.02); }
.wa .ic { font-size: 1.25rem; }

/* ============================================================
   Reveal / load
   ============================================================ */
html.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.2,0.8,0.2,1), transform 0.8s cubic-bezier(0.2,0.8,0.2,1); }
html.js [data-reveal].in { opacity: 1; transform: none; }

html.js .hero [data-load] { opacity: 0; transform: translateY(28px); animation: load-up 0.9s cubic-bezier(0.2,0.8,0.2,1) forwards; }
.hero [data-load="1"] { animation-delay: 0.05s; }
.hero [data-load="2"] { animation-delay: 0.16s; }
.hero [data-load="3"] { animation-delay: 0.27s; }
.hero [data-load="4"] { animation-delay: 0.38s; }
.hero [data-load="5"] { animation-delay: 0.49s; }
.hero [data-load="6"] { animation-delay: 0.6s; }
@keyframes load-up { to { opacity: 1; transform: none; } }

/* ============================================================
   Responsivo
   ============================================================ */
@media (min-width: 760px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .org-grid { grid-template-columns: repeat(3, 1fr); }
  .hotels { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 980px) {
  .about-grid { grid-template-columns: 1.15fr 1fr; }
  .hero h1 { font-size: clamp(3.4rem, 7.5vw, 6.6rem); }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82%, 360px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    background: var(--ink-2); border-left: 1px solid var(--line);
    padding: 40px; transform: translateX(110%); transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
  }
  .nav-links.open { transform: none; }
  .nav-links a:not(.btn) { font-size: 1.3rem; color: var(--text); }
  .nav-links .nav-cta { font-size: 1rem; color: #0a0b0d; }
  .burger { display: flex; }
  .bento { grid-template-columns: 1fr; }
  .tile.feature, .tile.stat { grid-column: 1 / -1; min-height: auto; }
  .tile.stat { min-height: 180px; }
  .track { grid-template-columns: 44px 1fr; }
  .track .chev { display: none; }
  .track .desc { grid-column: 2; }
}

@media (max-width: 520px) {
  .countdown { gap: 10px; }
  .cd-sep { display: none; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .slot { grid-template-columns: 70px 1fr; gap: 16px; }
}

/* ============================================================
   Acessibilidade
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .atmos, .grain { animation: none; }
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; }
  html.js .hero [data-load] { opacity: 1 !important; transform: none !important; animation: none !important; }
  .marquee-track, .logos-track { animation: none !important; }
}
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 6px; }
