@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

:root {
  --bg: #161826;
  --bg-raised: #1c1e2e;
  --surface: #232532;
  --surface-2: #2b2d3c;
  --text: #e9e9ed;
  --text-dim: rgba(233, 233, 237, 0.62);
  --text-faint: rgba(233, 233, 237, 0.4);
  --divider: rgba(255, 255, 255, 0.1);
  --accent: #a3e635;
  --accent-100: #f4fbdb;
  --accent-700: #6a9a1f;
  --accent-800: #4a6d16;
  --ink: #0a0a0b;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

.heading {
  font-family: "Inter";
  font-weight: 500;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Header ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(22, 24, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img { width: 30px; height: 30px; }

.brand span {
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
}

nav.links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-dim);
}

nav.links a:hover { color: var(--text); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-100);
  background: var(--accent-800);
  border-radius: 999px;
  padding: 6px 12px;
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.16), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 52px;
  line-height: 1.06;
  margin: 18px 0 20px;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-copy p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 46ch;
  margin: 0 0 32px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--ink);
  font-family: "Inter";
  font-weight: 500;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--divider);
  color: var(--text);
}

.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.28); }

.hero-phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.phone {
  width: 260px;
  border-radius: 40px;
  border: 6px solid #06060a;
  background: #06060a;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(2deg);
}

.phone img { display: block; width: 100%; }

/* ---------- Sections ---------- */

section { padding: 72px 0; }

.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }

.section-head h2 {
  font-size: 34px;
  margin: 10px 0 12px;
}

.section-head p {
  color: var(--text-dim);
  font-size: 16px;
  margin: 0;
}

/* ---------- Games ---------- */

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.game-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.game-card .tile {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card .tile svg { width: 26px; height: 26px; }

.game-card h3 {
  font-size: 20px;
  margin: 0;
}

.game-card p.tagline {
  color: var(--text-dim);
  font-size: 14.5px;
  margin: -8px 0 0;
}

.game-card .shot {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--divider);
  background: var(--bg-raised);
}

.tag-row { display: flex; gap: 8px; }

.tag {
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-dim);
}

/* ---------- Princípios / privacidade ---------- */

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.principle {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.principle .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.principle .icon svg { width: 20px; height: 20px; stroke: var(--accent-100); }

.principle h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.principle p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
}

/* ---------- CTA final ---------- */

.cta-final {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 28px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(163, 230, 53, 0.12), transparent 60%);
  pointer-events: none;
}

.cta-final h2 { font-size: 30px; margin: 16px 0 10px; }
.cta-final p { color: var(--text-dim); margin: 0 0 28px; }

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--divider);
  padding: 40px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 13px;
}

.footer-brand img { width: 18px; height: 18px; }

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links a:hover { color: var(--text); }

/* ---------- Responsivo ---------- */

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-copy h1 { font-size: 40px; }
  .games-grid { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  nav.links { display: none; }
}

@media (max-width: 480px) {
  .cta-final { padding: 40px 22px; }
  .cta-final h2 { font-size: 24px; }
}
