/* ================================================
   Ticket Sports Startups
   Identidade Visual conforme Briefing TS Summit
   ================================================ */

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

/* Fonte: Inter — pesos 400, 600, 700, 900 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

:root {
  --primary:    #0099FF;   /* Azul Primário — botões CTA, bordas, destaques */
  --electric:   #0022FF;   /* Azul Elétrico — hover */
  --secondary:  #FF00C3;   /* Rosa/Magenta — acento secundário */
  --black-body: #111111;   /* Fundo geral do body */
  --black-pure: #000000;   /* Fundo de seções, navbar */
  --card-bg:    #1A1A1A;   /* Fundo dos cards */
  --card-border:#333333;   /* Borda dos cards */
  --footer-bar: #2D2D2D;   /* Barra inferior do rodapé */
  --white:      #FFFFFF;   /* Todos os textos */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: var(--black-body);
  color: var(--white);
  line-height: 1.6;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.tss-nav {
  background: var(--black-pure);
  position: sticky; top: 0; z-index: 100;
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
.tss-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.6); }

.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.nav-logo-img {
  height: 36px; width: auto; object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.2);
}
.nav-logo-sub {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4);
  letter-spacing: 2px; text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 10px; margin-left: 2px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 14px; font-weight: 600; color: var(--white);
  text-decoration: none; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }

/* Botão CTA principal na nav */
.nav-cta {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--electric);
  border-color: var(--electric);
  transform: translateY(-1px);
}

/* ── HERO — banner puro, sem conteúdo sobreposto ── */
.hero {
  background-color: var(--black-pure);
  background-image: url('../images/banner_02.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 1965 / 1120;
  min-height: 320px;
  display: block;
  position: relative;
}
.hero::before, .hero::after { display: none; }
.hero-accent-bar, .hero-bg-lines, .hero-content { display: none; }

/* ── HERO CTA — seção abaixo do banner ── */
.hero-cta {
  background: var(--black-body);
  padding: 64px 6% 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-cta-text { flex: 1; min-width: 280px; }
.hero-cta-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-cta-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--primary);
}
.hero-cta h1 {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1.08; color: var(--white);
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: -1px;
  max-width: 520px;
}
.hero-cta h1 em { font-style: normal; color: var(--primary); }
.hero-cta-sub {
  font-size: 16px; font-weight: 400;
  line-height: 1.7; color: rgba(255,255,255,0.65);
  max-width: 480px; margin-bottom: 36px;
}
.hero-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta-stats {
  display: flex; flex-direction: column; gap: 24px;
  flex-shrink: 0;
}
.hero-stat-item {
  text-align: right;
  border-right: 2px solid var(--primary);
  padding-right: 20px;
}
.hero-stat-num {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: 32px; color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--primary); }
.hero-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 3px;
}

.hero-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 2px; background: var(--primary);
}

/* Título hero: display grande, peso 900, branco */
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 600px;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.hero h1 em { font-style: normal; color: var(--primary); }

.hero-sub {
  font-size: 16px; font-weight: 400;
  line-height: 1.7; color: rgba(255,255,255,0.75);
  max-width: 520px; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 48px; margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: 32px; color: var(--white);
}
.hero-stat-num span { color: var(--primary); }
.hero-stat-label {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.5); margin-top: 2px;
}

/* ── BOTÕES ──────────────────────────────────────────────── */
/* CTA Principal */
.btn-primary {
  display: inline-block; text-decoration: none;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 18px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--electric);
  border-color: var(--electric);
  transform: translateY(-2px);
}
.btn-primary.btn-large { font-size: 18px; padding: 12px 28px; }

/* Botão Secundário / Outline — pílula arredondada */
.btn-outline {
  display: inline-block; text-decoration: none;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 800px;
  padding: 8px 20px;
  font-size: 14px; font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ── SEÇÕES GERAIS ───────────────────────────────────────── */
section { padding: 80px 6%; }

.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px;
}
.section-title {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.1;
  color: var(--white); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: -0.5px;
}
.section-sub {
  font-size: 16px; font-weight: 400;
  line-height: 1.7; color: rgba(255,255,255,0.65);
  max-width: 580px;
}
.section-header { margin-bottom: 52px; }

/* ── SOBRE ───────────────────────────────────────────────── */
.sobre { background: var(--black-pure); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Card visual: fundo card com borda sutil */
.sobre-visual {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px; padding: 48px 40px;
  position: relative; overflow: hidden;
}
.sobre-visual::before {
  content: ''; position: absolute; bottom: -30px; right: -30px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(0,153,255,0.08);
}
.sobre-visual-logo {
  height: 28px; width: auto; margin-bottom: 20px;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.2);
}
.sobre-visual-title {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: 56px; color: var(--white); line-height: 1; margin-bottom: 4px;
}
.sobre-visual-sub {
  font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 32px;
}
.sobre-pill {
  display: inline-block;
  background: rgba(0,153,255,0.1);
  border: 1px solid rgba(0,153,255,0.3);
  border-radius: 800px;
  padding: 6px 14px; font-size: 13px; font-weight: 600;
  margin: 4px 4px 4px 0; color: var(--white);
}
.sobre-text p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.sobre-text strong { color: var(--white); font-weight: 700; }

/* ── TESES ───────────────────────────────────────────────── */
.teses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.tese-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px; padding: 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.tese-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,153,255,0.15);
}
.tese-number {
  font-size: 11px; font-weight: 700;
  color: var(--primary); letter-spacing: 2px; margin-bottom: 10px;
}
.tese-title {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 15px; color: var(--white); margin-bottom: 8px;
}
.tese-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline { background: var(--black-pure); }
.timeline .section-title { color: var(--white); }
.timeline .section-sub { color: rgba(255,255,255,0.65); }
.timeline .section-label { color: var(--primary); }
.timeline-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  position: relative; margin-top: 52px;
}
.timeline-step {
  padding: 24px 20px 0 0;
  border-top: 2px solid var(--card-border);
  position: relative;
  transition: border-top-color 0.3s;
}
.timeline-step:hover { border-top-color: var(--primary); }
.timeline-step::before {
  content: ''; position: absolute; top: -7px; left: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--primary);
  transition: transform 0.2s;
}
.timeline-step:hover::before { transform: scale(1.4); }
.timeline-step.final::before { width: 16px; height: 16px; top: -9px; }
.step-date {
  font-size: 12px; font-weight: 700; color: var(--primary);
  margin-bottom: 6px; letter-spacing: 0.5px;
}
.step-label { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.5; }
.step-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ── PREMIAÇÃO ───────────────────────────────────────────── */
.premios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.premio-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px; padding: 36px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.premio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,153,255,0.12);
  border-color: var(--primary);
}
.premio-card.ouro { border-color: var(--primary); }
.premio-pos {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px; color: var(--primary);
}
.premio-valor {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: 36px; color: var(--white); margin-bottom: 4px;
}
.premio-moeda { font-size: 14px; font-weight: 400; }
.premio-benefits {
  margin-top: 24px;
  border-top: 1px solid var(--card-border); padding-top: 20px;
}
.premio-benefit {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; margin-bottom: 10px; line-height: 1.4;
  color: rgba(255,255,255,0.75);
}
.benefit-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: 5px;
}

/* ── SPARK diagram ─────────────────────────────────────── */
.spark-diagram {
  display: flex; justify-content: center;
  margin-bottom: 56px;
}
.spark-orbit {
  position: relative;
  width: 540px; height: 540px;
  flex-shrink: 0;
}

/* Círculo central — Inovação */
.spark-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 0 48px rgba(0,153,255,0.35);
}
.spark-center-label {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 18px; color: var(--white); text-align: center;
}

/* Linha conectora de cada nó ao centro */
.spark-orbit::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px; border-radius: 50%;
  border: 1px dashed rgba(0,153,255,0.2);
  z-index: 0;
}

/* Nós das dimensões */
.spark-node {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--primary);
  border-radius: 50px;
  padding: 14px 18px;
  text-align: center;
  width: 148px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  z-index: 2;
}
.spark-node:hover {
  background: var(--primary);
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0,153,255,0.35);
}
.spark-node-title {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 13px; color: var(--white); margin-bottom: 4px;
  line-height: 1.3;
}
.spark-node-desc {
  font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.4;
}

/* Posicionamento dos 5 nós em pentágono */
.spark-node--top        { top: 10px;   left: 50%; transform: translateX(-50%); }
.spark-node--right      { top: 22%;    right: 0; }
.spark-node--bottom-right { bottom: 10%; right: 4%; }
.spark-node--bottom-left  { bottom: 10%; left: 4%; }
.spark-node--left       { top: 22%;    left: 0; }

.spark-node--top:hover        { transform: translateX(-50%) scale(1.06); }
.spark-node--right:hover      { transform: scale(1.06); }
.spark-node--bottom-right:hover { transform: scale(1.06); }
.spark-node--bottom-left:hover  { transform: scale(1.06); }
.spark-node--left:hover       { transform: scale(1.06); }

.criterios { background: var(--black-pure); }
.spark-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.spark-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px; padding: 28px 20px; text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.spark-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.spark-card:hover .spark-letter,
.spark-card:hover .spark-word,
.spark-card:hover .spark-desc { color: var(--white); }
.spark-letter {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: 40px; color: var(--primary); line-height: 1; margin-bottom: 8px;
  transition: color 0.25s;
}
.spark-word {
  font-size: 13px; font-weight: 700; color: var(--white);
  margin-bottom: 6px; transition: color 0.25s;
}
.spark-desc {
  font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5;
  transition: color 0.25s;
}

/* ── EDITAL ──────────────────────────────────────────────── */
@keyframes edital-fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.edital { background: var(--black-pure); position: relative; overflow: hidden; }
.edital::before {
  content: 'EDITAL';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: clamp(100px, 16vw, 200px);
  color: rgba(255,255,255,0.02);
  pointer-events: none; user-select: none;
  letter-spacing: -4px;
}
.edital .section-label { color: var(--primary); }
.edital .section-title { color: var(--white); }
.edital .section-sub { color: rgba(255,255,255,0.65); }

.edital-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-bottom: 48px;
  background: var(--card-border);
  border: 1px solid var(--card-border); border-radius: 20px; overflow: hidden;
}
.edital-card {
  background: var(--card-bg); padding: 32px 24px; position: relative;
  opacity: 0; transform: translateY(24px);
  transition: background 0.3s;
}
.edital-card.visible { animation: edital-fade-up 0.5s ease forwards; }
.edital-card:nth-child(1) { animation-delay: 0.05s; }
.edital-card:nth-child(2) { animation-delay: 0.12s; }
.edital-card:nth-child(3) { animation-delay: 0.19s; }
.edital-card:nth-child(4) { animation-delay: 0.26s; }
.edital-card:nth-child(5) { animation-delay: 0.33s; }
.edital-card:nth-child(6) { animation-delay: 0.40s; }
.edital-card::after {
  content: ''; position: absolute; bottom: 0; left: 24px;
  height: 2px; width: 0; background: var(--primary);
  transition: width 0.4s ease;
}
.edital-card:hover { background: #222222; }
.edital-card:hover::after { width: 48px; }
.edital-card-num {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: clamp(40px, 5vw, 56px); line-height: 1;
  color: rgba(255,255,255,0.06); margin-bottom: 16px;
  transition: color 0.3s;
}
.edital-card:hover .edital-card-num { color: var(--primary); }
.edital-card-title {
  font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.edital-card-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

.edital-download {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.edital-download-txt { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 480px; line-height: 1.6; }
.edital-download-txt strong { color: var(--white); }
.btn-edital {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  padding: 10px 24px; text-decoration: none; white-space: nowrap;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-edital:hover { background: var(--electric); border-color: var(--electric); transform: translateY(-2px); }

/* ── CTA FINAL ───────────────────────────────────────────── */
.cta-final {
  background: var(--black-pure);
  padding: 100px 6%; text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final .section-label { color: var(--primary); margin-bottom: 16px; }
.cta-date {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: clamp(32px, 5vw, 56px); color: var(--white);
  margin-bottom: 32px; line-height: 1.05;
  text-transform: uppercase; letter-spacing: -1px;
}
.cta-date em { font-style: normal; color: var(--primary); }

/* Bloco TS Summit */
.cta-summit-block {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px 40px;
  margin: 0 auto 40px;
  max-width: 860px;
  text-align: left;
  position: relative; z-index: 1;
}
.cta-summit-info { flex: 1; min-width: 260px; }
.cta-tagline {
  font-size: 18px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; line-height: 1.4;
}
.cta-tagline strong { color: var(--primary); }
.cta-summit-desc {
  font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin-bottom: 16px;
}
.cta-summit-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.cta-local-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 800px; padding: 5px 12px;
}
.cta-local-tag svg { flex-shrink: 0; }

/* Botão TS Summit — outline azul */
.btn-summit {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 800px;
  padding: 12px 24px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-summit:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.tss-footer {
  background: var(--black-pure);
  padding: 32px 6%;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(0,153,255,0.2);
}
.footer-bottom {
  background: var(--footer-bar);
  padding: 16px 6%;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-txt { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-partner { font-size: 11px; color: rgba(255,255,255,0.35); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .spark-grid { grid-template-columns: repeat(3, 1fr); }
  .premios-grid { grid-template-columns: 1fr; }
  .edital-grid { grid-template-columns: repeat(2, 1fr); }
  .edital-download { flex-direction: column; text-align: center; }
  .spark-orbit { width: 420px; height: 420px; }
  .spark-center { width: 110px; height: 110px; }
  .spark-center-label { font-size: 15px; }
  .spark-node { width: 120px; padding: 10px 12px; }
  .spark-node-title { font-size: 11px; }
  .spark-node-desc { font-size: 10px; }
}
@media (max-width: 700px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .timeline-steps { grid-template-columns: 1fr; gap: 24px; }
  .tss-footer { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .spark-grid { grid-template-columns: repeat(2, 1fr); }
  .edital-grid { grid-template-columns: 1fr; }
  .nav-links .nav-link { display: none; }
  /* Em mobile o diagrama colapsa para lista */
  .spark-orbit { width: 100%; height: auto; position: static; display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .spark-center { position: static; transform: none; margin-bottom: 8px; }
  .spark-node { position: static; transform: none; width: 100%; max-width: 280px; border-radius: 12px; }
  .spark-node--top:hover, .spark-node--right:hover, .spark-node--bottom-right:hover,
  .spark-node--bottom-left:hover, .spark-node--left:hover { transform: none; }
  .spark-orbit::before { display: none; }
}
@media (max-width: 480px) {
  .spark-grid { grid-template-columns: 1fr; }
}
