/* ==========================================================================
   TOKENS — subconjunto do design system SysWest (tema escuro fixo)
   Fonte: ../design-system/tokens.css
   ========================================================================== */
:root {
  --accent: #7ed4ad;
  --background: #0c0a09;
  --surface: #1c1917;
  --text: #f5f5f4;
  --text-muted: #a8a29e;
  --border: #292524;

  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
}

.site-header {
  padding: 24px 32px;
}

.wordmark {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  gap: 20px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  color: var(--text-muted);
  font-size: 13px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 48px);
  max-width: 20ch;
  line-height: 1.2;
}

.subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 42ch;
  line-height: 1.6;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.socials a:hover {
  color: var(--accent);
}

.icon {
  width: 20px;
  height: 20px;
}

.copyright {
  color: var(--text-muted);
  font-size: 12px;
}
