/* ── Design tokens (Fuse AI) ── */
:root {
  --bg:           #090909;
  --bg-card:      #111111;
  --border:       #1a1a1a;
  --border-2:     #242424;
  --text:         #f0f0f0;
  --text-2:       #888888;
  --text-3:       #555555;
  --accent:       #00AAEF;
  --accent-dim:   rgba(0, 170, 239, 0.08);
  --accent-border:rgba(0, 170, 239, 0.2);
  --font:         'Manrope', sans-serif;
  --radius:       12px;
  --radius-sm:    8px;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 32px;
  position: relative;
  overflow-x: hidden;
}

/* ── Blob de fundo (igual ao hero do Fuse AI) ── */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.10;
  pointer-events: none;
  background: var(--accent);
  z-index: 0;
}
body::before {
  width: 340px;
  height: 340px;
  top: -80px;
  left: 50%;
  transform: translateX(-60%);
}
body::after {
  width: 260px;
  height: 260px;
  bottom: 60px;
  right: -60px;
}

/* ── Wrapper principal ── */
.wrapper {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── Cabeçalho ── */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  text-align: center;
}

.profile-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
  display: block;
}

/* placeholder quando foto-perfil.jpg não existe ainda */
.profile-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 28px;
  flex-shrink: 0;
}

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

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ── Cards ── */
#links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.link-card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}

.card-image-wrap {
  width: 100%;
  aspect-ratio: 1920 / 500;
  overflow: hidden;
  background: var(--border);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.link-card:hover .card-image-wrap img {
  transform: scale(1.03);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 12px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.card-arrow {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.link-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ── Rodapé ── */
.site-footer {
  margin-top: 40px;
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── Animação fade-up (igual ao Fuse AI) ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}

.header-fade {
  animation: fadeUp 0.65s ease forwards;
  animation-delay: 0s;
}
