/* ===== base ===== */
body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  color: #cfe8ff;

  background-color: #0b1a2b;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ===== layout ===== */
.container {
  max-width: 900px;
  margin: 80px auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ===== texto ===== */
nav {
  margin-bottom: 20px;
}

nav a {
  color: #7fc8ff;
  text-decoration: none;
  margin-right: 14px;
}

nav a:hover {
  text-decoration: underline;
}

.intro {
  margin-bottom: 20px;
}

h2 {
  color: #9ad0ff;
  margin: 20px 0 10px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  margin-bottom: 6px;
}

ul li::before {
  content: "• ";
  color: #5faeff;
}

.destaque {
  display: inline-block;
  margin-top: 20px;
  color: #5faeff;
  text-decoration: none;
}

.destaque:hover {
  text-decoration: underline;
}

/* ===== imagem ===== */
.imagem img {
  width: 200px;
  height: auto;
}

.imagem {
  overflow: visible;
}


html, body {
  overflow-x: hidden;
}

/* Kirby */
.kirby {
  cursor: pointer;
  position: relative;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.kirby-prep {
  transform: translateX(-160px) scale(0.9);
}

.kirby-launch {
  transform: translateX(120vw) scale(1.3);
}

/* rastro da estrela */
.star-trail {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #fff 0%, #ffd700 60%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: starFade 0.6s linear forwards;
}

@keyframes starFade {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.2); }
}

/* tremor */
@keyframes screenShake {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-6px, 4px); }
  50% { transform: translate(6px, -4px); }
  75% { transform: translate(-4px, 2px); }
  100% { transform: translate(0, 0); }
}

#site-content.shake {
  animation: screenShake 0.4s ease-in-out;
}




html, body {
  overflow-x: hidden;
}

