/* ═══════════════════════════════════════
   TIMELINE — Isaac Amaral / Grupo Insight
   Vertical connector · Clean nodes
═══════════════════════════════════════ */

.page-wrapper {
  position: relative;
}

/* ── Vertical line — removida ── */
.timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

/* ── Energy dot ── */
.energy-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--purple-30), transparent);
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

/* ── Bypass curves — removidas ── */
.timeline-bypass { display: none; }

/* ── Section node ── */
.section-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--void);
  border: 2px solid var(--purple);
  position: relative;
}

.node-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple);
}

/* Pill */
.node-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  border: 1px solid var(--purple-30);
}

/* ── Spark canvas ── */
.spark-canvas {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 220px;
  pointer-events: none;
  z-index: 3;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .timeline-track { display: none; }
  .timeline-bypass { display: none; }
  .node-dot { display: none; }
  .spark-canvas { display: none; }
  .section-node {
    gap: 0;
    margin-bottom: 20px;
  }
}
