/* ==========================================================================
   TRIW ENGENHARIA - PÁGINA DE LINKS (BIO / LINKTREE)
   ========================================================================== */

:root {
  --color-ink: #383435;
  --color-accent: #9ad11f;
  --color-accent-dark: #7cab18;
  --color-softbg: #f8fafc;
  --color-surface: #ffffff;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-ink);
  background-color: var(--color-softbg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-font-smoothing: antialiased;
}

@keyframes pulse-subtle {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px -6px rgba(154, 209, 31, 0.5);
  }
  50% {
    transform: scale(1.018);
    box-shadow: 0 10px 28px -4px rgba(154, 209, 31, 0.7);
  }
}

.btn-featured {
  animation: pulse-subtle 3.2s ease-in-out infinite;
}

.link-card {
  transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(56, 52, 53, 0.12);
}

.avatar-ring {
  background: radial-gradient(circle at 30% 30%, #9ad11f, #7cab18);
}
