/* ═══════════════════════════════════════════════════════════════
   BRANDPRO — Bio Site Premium Styles
   Anderson Ernesto | 2026 //
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg-main: #070711;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --accent: #FF3D00;
  --accent-glow: rgba(255, 61, 0, 0.3);
  --accent-gradient: linear-gradient(135deg, #FF3D00 0%, #FF6D00 50%, #FF3D00 100%);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-banner {
  width: 100%;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-align: center;
  color: var(--text-muted);
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 480px;
  padding: 40px 24px;
  z-index: 10;
}

/* ═══════ PROFILE ═══════ */
.profile-header {
  text-align: center;
  margin-bottom: 48px;
}

.avatar-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  transition: var(--transition);
}

.avatar-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: -1;
}

.name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.bio strong { color: var(--accent); }

/* ═══════ LINKS ═══════ */
.links-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card {
  display: block;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.link-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 61, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.link-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: white;
}

.link-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Featured Variation */
.featured {
  background: linear-gradient(145deg, rgba(255, 61, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 1px solid var(--accent);
  padding: 32px 24px;
}

.featured .link-title {
  font-size: 1.4rem;
  color: var(--accent);
}

/* Highlight Variation (Novo Destaque) */
.highlight {
  border: 1px solid rgba(255, 61, 0, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(255, 61, 0, 0.05);
}

.highlight .link-title {
  color: var(--accent);
}

.link-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.link-price-tag {
  display: inline-block;
  margin-top: 12px;
  margin-right: 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.link-price-premium {
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #c8a882;
}

/* ═══════ ABOUT ME SECTION ═══════ */
.about-me {
  margin-top: 60px;
  width: 100%;
}

.about-me-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  backdrop-filter: blur(12px);
}

.about-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--accent);
}

.about-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 400px) {
  .about-me-card { flex-direction: column; text-align: center; }
}

/* ═══════ FOOTER ═══════ */
.footer {
  margin-top: 60px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════ BACKGROUND DECO ═══════ */
.bg-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.top-left { top: -100px; left: -100px; }
.bottom-right { bottom: -100px; right: -100px; }

/* ═══════ ANIMATIONS ═══════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.container > * {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

header { animation-delay: 0.1s; }
.links-grid > *:nth-child(1) { animation-delay: 0.2s; }
.links-grid > *:nth-child(2) { animation-delay: 0.3s; }
.links-grid > *:nth-child(3) { animation-delay: 0.4s; }
.links-grid > *:nth-child(4) { animation-delay: 0.5s; }
.links-grid > *:nth-child(5) { animation-delay: 0.6s; }
footer { animation-delay: 0.7s; }
