/* =================================
   Alexandre Brito — Portfolio v2
   Design: Dark/Neon — Upgraded
   ================================= */

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

:root {
  --bg: #060810;
  --panel: rgba(255,255,255,0.055);
  --panel-2: rgba(255,255,255,0.08);
  --panel-hover: rgba(255,255,255,0.09);
  --text: #eef0f5;
  --muted: rgba(238,240,245,0.62);

  --cyan: #38bdf8;
  --purple: #a855f7;
  --green: #22c55e;
  --stroke: rgba(56,189,248,0.18);
  --stroke-soft: rgba(255,255,255,0.08);

  --shadow-card: 0 8px 32px rgba(0,0,0,0.50);
  --shadow-glow: 0 0 28px rgba(56,189,248,0.14);
  --radius: 18px;
  --radius-sm: 12px;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Background layers ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1400px 700px at 15% -5%, rgba(168,85,247,0.22), transparent 58%),
    radial-gradient(1000px 600px at 85% 5%, rgba(56,189,248,0.18), transparent 58%),
    radial-gradient(800px 500px at 55% 95%, rgba(34,197,94,0.09), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* Floating orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: rgba(168,85,247,0.16); top: -120px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: rgba(56,189,248,0.12); top: 10%; right: -80px; animation-delay: -4s; }
.orb-3 { width: 350px; height: 350px; background: rgba(34,197,94,0.08); bottom: 10%; left: 20%; animation-delay: -8s; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.04); }
}

/* All positioned content above bg */
.header, .main, .footer, .nav { position: relative; z-index: 2; }

a { color: inherit; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(56,189,248,0.7);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ---- NAVBAR ---- */
.header { padding-bottom: 40px; }

.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke-soft);
  background: rgba(255,255,255,0.04);
  transition: 0.22s;
}
.logo-ab {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
}
.logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.logo:hover {
  border-color: rgba(56,189,248,0.35);
  box-shadow: 0 0 22px rgba(56,189,248,0.18);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke-soft);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  transition: 0.2s;
}
.menu-btn:hover { border-color: rgba(56,189,248,0.35); box-shadow: 0 0 20px rgba(56,189,248,0.18); }
.menu-line { width: 20px; height: 2px; background: rgba(238,240,245,0.9); border-radius: 999px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: rgba(238,240,245,0.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: 0.2s;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-links a.active {
  color: var(--text);
  border: 1px solid rgba(56,189,248,0.30);
  background: rgba(56,189,248,0.09);
  box-shadow: 0 0 20px rgba(56,189,248,0.15);
}

/* ---- HERO ---- */
.hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 24px 16px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-left { flex: 1.2; min-width: 300px; }
.hero-right { flex: 1; min-width: 290px; display: flex; flex-direction: column; gap: 14px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(238,240,245,0.92);
  background: linear-gradient(90deg, rgba(56,189,248,0.13), rgba(168,85,247,0.13));
  border: 1px solid rgba(56,189,248,0.22);
  margin-bottom: 18px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

h1 {
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1.0;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -1.5px;
}
.h1-accent {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 24px;
  font-weight: 400;
}

/* Buttons */
.btn {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  color: #060810;
  padding: 11px 20px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(56,189,248,0.22);
  transition: 0.22s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(168,85,247,0.28); }
.btn:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: rgba(238,240,245,0.92);
  border: 1px solid rgba(56,189,248,0.32);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(56,189,248,0.09); box-shadow: 0 0 22px rgba(56,189,248,0.16); }

.btn-small { padding: 8px 14px; font-size: 13px; border-radius: var(--radius-sm); }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

/* Stats */
.stats { display: flex; gap: 12px; flex-wrap: wrap; }
.stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  min-width: 100px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-plus { font-size: 18px; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 500; }

/* Cards */
.card {
  background: var(--panel);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(56,189,248,0.20);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55), var(--shadow-glow);
}

.profile-card { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: #06101f;
  background: radial-gradient(circle at 30% 30%, var(--cyan), var(--purple));
  box-shadow: 0 0 28px rgba(56,189,248,0.25), 0 0 8px rgba(168,85,247,0.20);
  flex-shrink: 0;
}
.profile-name { font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.profile-role { color: var(--muted); font-size: 13.5px; }
.profile-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(238,240,245,0.50);
  margin-top: 2px;
}
.highlight-title { font-family: var(--font-display); font-weight: 700; margin-bottom: 6px; font-size: 15px; }
.highlight-text { color: var(--muted); font-size: 14px; }

.tech-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.3px;
  flex-wrap: wrap;
}
.sep { color: rgba(238,240,245,0.25); }

/* ---- MAIN ---- */
.main { max-width: 1140px; margin: 0 auto; padding: 30px 24px 56px; }
.section { margin-top: 60px; }

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  opacity: 0.85;
}

h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.lead { color: rgba(238,240,245,0.78); max-width: 65ch; margin-bottom: 0; }
.muted { color: var(--muted); }

/* Grid */
.grid-2 { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 18px; }
.grid-2 .card { flex: 1; min-width: 260px; }
h3 { font-family: var(--font-display); margin-bottom: 12px; font-size: 17px; font-weight: 700; }

.card-icon { font-size: 24px; margin-bottom: 10px; }

.list { padding-left: 0; list-style: none; }
.list li {
  padding: 5px 0 5px 16px;
  margin-bottom: 4px;
  color: rgba(238,240,245,0.78);
  font-size: 14.5px;
  position: relative;
}
.list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 12px;
  top: 7px;
}

/* Skills */
.skills { display: flex; gap: 9px; flex-wrap: wrap; margin: 14px 0 18px; }
.chip {
  border: 1px solid var(--stroke-soft);
  background: rgba(255,255,255,0.05);
  color: rgba(238,240,245,0.85);
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  transition: 0.2s;
}
.chip:hover { border-color: rgba(56,189,248,0.35); box-shadow: 0 0 20px rgba(56,189,248,0.14); }
.chip.selected {
  background: rgba(56,189,248,0.13);
  border-color: rgba(56,189,248,0.40);
  color: var(--text);
  box-shadow: 0 0 22px rgba(56,189,248,0.16);
}
.info {
  min-height: 72px;
  display: flex;
  align-items: center;
  color: rgba(238,240,245,0.80);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Project Filters */
.project-filters { display: flex; gap: 9px; flex-wrap: wrap; margin: 22px 0; }
.filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke-soft);
  color: rgba(238,240,245,0.82);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}
.filter-btn:hover { border-color: rgba(56,189,248,0.35); box-shadow: 0 0 18px rgba(56,189,248,0.12); }
.filter-btn.active {
  background: rgba(56,189,248,0.12);
  border-color: rgba(56,189,248,0.38);
  color: var(--text);
  box-shadow: 0 0 22px rgba(56,189,248,0.16);
}
.filter-btn .count {
  background: rgba(0,0,0,0.28);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  color: rgba(56,189,248,0.9);
}

/* Projects Grid */
.projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.project {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1);
}
.project.hiding { opacity: 0; transform: scale(0.92); pointer-events: none; }
.project.hidden { display: none; }

/* Featured project special styling */
.project-featured {
  position: relative;
  border-color: rgba(56,189,248,0.22);
  background: linear-gradient(135deg, rgba(56,189,248,0.07), rgba(168,85,247,0.07));
}
.project-featured:hover {
  border-color: rgba(56,189,248,0.38);
  box-shadow: 0 18px 42px rgba(0,0,0,0.5), 0 0 35px rgba(56,189,248,0.18);
}

.featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(56,189,248,0.15);
  border: 1px solid rgba(56,189,248,0.30);
  color: var(--cyan);
  z-index: 1;
  letter-spacing: 0.2px;
}

.project-thumb {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--stroke-soft);
  background: rgba(255,255,255,0.03);
  margin-bottom: 14px;
  position: relative;
}
.project-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1);
  transition: 0.28s ease;
}
.project:hover .project-thumb img { transform: scale(1.04); }
.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.32), transparent 55%);
  pointer-events: none;
}

/* Custom thumbnails for featured projects */
.project-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* FNAF thumb */
.fnaf-bg {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #1a0a00 0%, #0a0500 70%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.fnaf-eye {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff6a00, #c43600 50%, #3a0800 100%);
  box-shadow: 0 0 30px rgba(255,106,0,0.8), 0 0 60px rgba(196,54,0,0.4);
  animation: eyeGlow 3s ease-in-out infinite;
}
.fnaf-eye-1 { top: 22%; left: 28%; }
.fnaf-eye-2 { top: 22%; right: 28%; }
@keyframes eyeGlow {
  0%, 100% { opacity: 1; box-shadow: 0 0 30px rgba(255,106,0,0.8), 0 0 60px rgba(196,54,0,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 14px rgba(255,106,0,0.5), 0 0 30px rgba(196,54,0,0.2); }
}
.fnaf-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.3) 3px, rgba(0,0,0,0.3) 4px);
  pointer-events: none;
}
.fnaf-label {
  position: absolute;
  bottom: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(255,180,80,0.7);
  text-shadow: 0 0 12px rgba(255,106,0,0.6);
}

/* DBD thumb */
.dbd-bg {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #0d0014 0%, #07000e 70%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dbd-hook {
  width: 50px;
  height: 80px;
  border-top: 5px solid rgba(180,60,60,0.8);
  border-right: 5px solid rgba(180,60,60,0.8);
  border-radius: 0 40px 0 0;
  position: absolute;
  top: 15%;
  box-shadow: 0 0 20px rgba(200,30,30,0.5), 0 0 40px rgba(180,0,0,0.3);
  animation: hookSway 4s ease-in-out infinite;
}
@keyframes hookSway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}
.dbd-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.25) 3px, rgba(0,0,0,0.25) 4px);
  pointer-events: none;
}
.dbd-label {
  position: absolute;
  bottom: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(200,100,100,0.75);
  text-shadow: 0 0 12px rgba(200,50,50,0.6);
}

.project-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 10px;
}
.project-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
}
.project-tags { color: var(--cyan); font-size: 12.5px; font-weight: 600; letter-spacing: 0.3px; }
.project-desc { color: rgba(238,240,245,0.72); margin-bottom: 14px; font-size: 14px; line-height: 1.55; }
.project-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.hint { margin-top: 8px; font-size: 12.5px; color: rgba(238,240,245,0.45); }
.hint-inline { font-size: 13px; color: var(--muted); font-weight: 400; }

.project.ghost { border-style: dashed; opacity: 0.70; }
.project.ghost .project-title { font-family: var(--font-display); font-weight: 700; margin-bottom: 8px; }

/* Contact */
.contact { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact a { color: var(--cyan); text-decoration: none; font-weight: 600; font-size: 14px; }
.contact a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact p { font-size: 14px; }

/* Form */
.form label { display: block; margin-bottom: 14px; color: rgba(238,240,245,0.85); font-weight: 600; font-size: 14px; }
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke-soft);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  margin-top: 6px;
  transition: 0.2s;
}
input::placeholder, textarea::placeholder { color: rgba(238,240,245,0.35); }
input:focus, textarea:focus {
  outline: none;
  border-color: rgba(56,189,248,0.45);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.10);
}

/* Toast */
#toast {
  min-height: 18px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(56,189,248,0.10);
  border: 1px solid rgba(56,189,248,0.22);
  color: rgba(238,240,245,0.88);
  font-size: 13.5px;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.22s;
}
#toast.show { opacity: 1; transform: translateY(0); }

/* Footer */
.footer {
  text-align: center;
  padding: 28px 16px;
  border-top: 1px solid var(--stroke-soft);
  color: var(--muted);
  background: rgba(255,255,255,0.02);
  position: relative;
  z-index: 2;
}
.footer p { font-size: 14px; }
.footer-sep { margin: 0 8px; opacity: 0.4; }
.footer-sub { font-size: 12px; margin-top: 4px; opacity: 0.55; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .projects { grid-template-columns: 1fr; }
  h1 { font-size: 46px; }
  h2 { font-size: 28px; }
}

@media (max-width: 760px) {
  .menu-btn { display: flex; }
  .nav-links {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(6,8,16,0.88);
    border: 1px solid var(--stroke-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav { position: relative; }
  .nav-links a {
    padding: 11px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--stroke-soft);
    text-align: center;
  }
  .nav-links a.btn { width: 100%; }

  h1 { font-size: 38px; }
  .hero { padding: 20px 20px 10px; }
}

@media (max-width: 480px) {
  h1 { font-size: 32px; }
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ═══════════════════════════════════════════
   CUSTOM THUMBNAILS — projetos sem asset
═══════════════════════════════════════════ */

/* ── PORTFÓLIO ── */
.portfolio-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0a0f1a 0%, #0d1525 60%, #060c16 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; gap: 6px;
}
.portfolio-bar {
  width: 55%; height: 6px; border-radius: 4px;
  background: rgba(56,189,248,0.18);
  animation: barPulse 2.5s ease-in-out infinite;
}
.portfolio-bar:nth-child(2) { width: 40%; animation-delay: .3s; }
.portfolio-bar:nth-child(3) { width: 50%; animation-delay: .6s; }
@keyframes barPulse {
  0%,100% { opacity: .4; } 50% { opacity: .85; }
}
.portfolio-avatar {
  position: absolute; top: 18%; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; color: #000;
  box-shadow: 0 0 20px rgba(56,189,248,0.4);
}
.portfolio-label {
  position: absolute; bottom: 14px;
  font-family: var(--font-display); font-size: 10px;
  font-weight: 800; letter-spacing: 3px;
  color: rgba(56,189,248,0.6);
  text-shadow: 0 0 10px rgba(56,189,248,0.4);
}

/* ── CALCQUEST RPG ── */
.cq-bg {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, #1a0d00 0%, #0d0600 60%, #000 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; gap: 4px;
}
.cq-sword {
  font-size: 2.2rem;
  animation: swordGlow 2s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(245,158,11,0.8);
}
@keyframes swordGlow {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(245,158,11,0.6)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 18px rgba(245,158,11,1)); }
}
.cq-title {
  font-family: var(--font-display); font-size: 16px; font-weight: 900;
  letter-spacing: 4px; color: #f59e0b;
  text-shadow: 0 0 16px rgba(245,158,11,0.6);
}
.cq-sub {
  font-family: var(--font-display); font-size: 9px; font-weight: 600;
  letter-spacing: 3px; color: rgba(245,158,11,0.45);
}

/* ── CALCQUEST WEBSITE ── */
.cqsite-bg {
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(7,7,10,0.9)),
    radial-gradient(ellipse at 50% 30%, #1a0505 0%, #07070a 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px; position: relative;
}
.cqsite-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 900;
  letter-spacing: 2px; color: rgba(255,255,255,0.85);
}
.cqsite-accent {
  font-family: var(--font-display); font-size: 14px; font-weight: 900;
  letter-spacing: 2px; color: #dc2626;
  text-shadow: 0 0 16px rgba(220,38,38,0.7);
}
.cqsite-label {
  position: absolute; bottom: 14px;
  font-family: var(--font-display); font-size: 9px;
  font-weight: 700; letter-spacing: 3px;
  color: rgba(220,38,38,0.5);
}

/* ── CONTROLE DE GASTOS ── */
.gastos-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #05080f 0%, #080d1a 100%);
  display: flex; align-items: center; justify-content: center;
}
.gastos-card {
  background: rgba(15,20,35,0.9); border: 1px solid rgba(139,92,246,0.25);
  border-radius: 10px; padding: 12px 16px; width: 75%;
  display: flex; flex-direction: column; gap: 8px;
}
.gastos-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(238,240,245,0.75); font-weight: 600;
}
.gastos-val { color: #a78bfa; font-weight: 700; }
.gastos-neg { color: #f87171; font-weight: 700; }
.gastos-divider { height: 1px; background: rgba(255,255,255,0.08); }
.gastos-total { font-size: 12px; }
.gastos-total span:last-child { color: #34d399; font-weight: 800; }

/* ── NETFLIX ── */
.netflix-bg {
  width: 100%; height: 100%;
  background: #000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  position: relative;
}
.netflix-logo {
  font-size: 22px; font-weight: 900; letter-spacing: -1px;
  color: #e50914; font-family: var(--font-display);
  text-shadow: 0 0 20px rgba(229,9,20,0.5);
}
.netflix-tag {
  font-family: var(--font-display); font-size: 11px; font-weight: 900;
  letter-spacing: 1px; color: #fff;
}
.netflix-tag2 {
  font-family: var(--font-display); font-size: 11px; font-weight: 900;
  letter-spacing: 1px; color: #e50914;
}

/* ── CALCQUEST 2 ── */
.cq2-bg {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, #0f0620 0%, #06020e 60%, #000 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px; position: relative;
}
.cq2-star {
  font-size: 2rem; color: #f59e0b;
  animation: starSpin 8s linear infinite;
  text-shadow: 0 0 20px rgba(245,158,11,0.8);
}
@keyframes starSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.cq2-title {
  font-family: var(--font-display); font-size: 15px; font-weight: 900;
  letter-spacing: 3px; color: #f59e0b;
  text-shadow: 0 0 16px rgba(245,158,11,0.5);
}
.cq2-sub {
  font-family: var(--font-display); font-size: 8px; font-weight: 600;
  letter-spacing: 3px; color: rgba(245,158,11,0.4);
}

/* ── CALCPRO ── */
.calcpro-bg {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #0a0e14 0%, #0d1220 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; position: relative;
}
.calcpro-screen {
  background: rgba(0,0,0,0.5); border: 1px solid rgba(56,189,248,0.2);
  border-radius: 6px; padding: 4px 12px;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: #38bdf8; letter-spacing: 2px; width: 65%; text-align: right;
}
.calcpro-btns {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px; width: 65%;
}
.calcpro-btns span {
  background: rgba(255,255,255,0.06); border-radius: 4px;
  text-align: center; padding: 3px 0;
  font-size: 9px; font-weight: 700; color: rgba(238,240,245,0.7);
}
.calcpro-btns span.op { color: #38bdf8; background: rgba(56,189,248,0.1); }
.calcpro-label {
  position: absolute; bottom: 14px;
  font-family: var(--font-display); font-size: 9px;
  font-weight: 800; letter-spacing: 4px;
  color: rgba(56,189,248,0.45);
}
