/* ============================================================
   ZAPPO | Página de links (bio)
   Identidade oficial: #FFC400 / #0A0A0A / #FFFFFF
   ============================================================ */

@font-face {
  font-family: 'Acumin Pro ExtraCondensed';
  src: url('../assets/fonts/AcuminProExtraCondensed.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --yellow: #FFC400;
  --black: #0A0A0A;
  --white: #ffffff;
  --font-title: 'Acumin Pro ExtraCondensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(255, 196, 0, 0.18), transparent 65%),
    var(--black);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Marca d'água com o ícone Z */
body::after {
  content: '';
  position: fixed;
  right: -120px;
  bottom: -100px;
  width: 440px;
  height: 340px;
  background: url('../assets/icone-branco.png') no-repeat center / contain;
  opacity: 0.04;
  pointer-events: none;
}

.bio {
  width: min(460px, 92%);
  margin: 0 auto;
  padding: 56px 0 40px;
  position: relative;
  z-index: 1;
}

/* ---------- Cabeçalho ---------- */
.bio-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 34px;
}

.bio-icon {
  width: 92px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 196, 0, 0.35));
  animation: pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.bio-lockup {
  height: 34px;
  width: auto;
  margin-top: 18px;
  animation: rise 0.6s ease 0.15s both;
}

.bio-tagline {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow);
  font-size: 1.02rem;
  margin-top: 12px;
  animation: rise 0.6s ease 0.25s both;
}

.bio-loc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: rise 0.6s ease 0.35s both;
}

.ico { width: 1em; height: 1em; fill: currentColor; }

.bio-loc .ico { color: var(--yellow); }

/* ---------- Links ---------- */
.bio-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bio-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 196, 0, 0.25);
  border-radius: 16px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  animation: rise 0.55s ease both;
}

.bio-links .bio-link:nth-child(1) { animation-delay: 0.4s; }
.bio-links .bio-link:nth-child(2) { animation-delay: 0.48s; }
.bio-links .bio-link:nth-child(3) { animation-delay: 0.56s; }
.bio-links .bio-link:nth-child(4) { animation-delay: 0.64s; }
.bio-links .bio-link:nth-child(5) { animation-delay: 0.72s; }
.bio-links .bio-link:nth-child(6) { animation-delay: 0.8s; }

.bio-link:hover {
  transform: translateY(-3px) scale(1.015);
  border-color: var(--yellow);
  background: rgba(255, 196, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.bio-link.destaque {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(255, 196, 0, 0.25);
}

.bio-link.destaque:hover {
  background: #ffd23d;
  box-shadow: 0 14px 36px rgba(255, 196, 0, 0.4);
}

.bio-link-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255, 196, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bio-link-ico svg { width: 24px; height: 24px; fill: var(--yellow); }

.bio-link.destaque .bio-link-ico { background: var(--black); }

.bio-link.destaque .bio-link-ico svg { fill: var(--yellow); }

.bio-link-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.bio-link-text strong {
  font-family: var(--font-title);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.bio-link-text small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.bio-link.destaque .bio-link-text small { color: rgba(10, 10, 10, 0.65); }

.bio-link-arrow {
  margin-left: auto;
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--yellow);
  opacity: 0.7;
  transition: transform 0.18s ease;
}

.bio-link.destaque .bio-link-arrow { color: var(--black); }

.bio-link:hover .bio-link-arrow { transform: translateX(4px); }

/* ---------- Rodapé ---------- */
.bio-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.dev-credit { margin-top: 4px; }

.dev-credit a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

.dev-credit a:hover { text-decoration: underline; }

/* ---------- Animações ---------- */
@keyframes pop {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .bio-icon, .bio-lockup, .bio-tagline, .bio-loc, .bio-link {
    animation: none !important;
  }
}
