/* ============================================================
   wwwendel marques — dark, agentic aesthetic
   inspired by antigravity.google: near-black canvas, ambient
   gradient glow, glass panels, mono accents on a clean sans base
   ============================================================ */

:root{
  /* Pure white base with soft grays */
  --bg:#ffffff;
  --bg-soft:#fafafa;
  --panel:rgba(0, 0, 0, 0.02);
  --panel-hover:rgba(0, 0, 0, 0.05);
  --panel-2:#f4f4f4;
  --text:#333333;
  --text-dim:#555555;
  --text-bright:#171717;
  --muted:#777777;
  --muted-2:#a0a0a0;
  --line:rgba(0, 0, 0, 0.06);
  --line-strong:rgba(0, 0, 0, 0.15);
  --icon-bg:rgba(0,0,0,0.04);

  /* Vibrant neon palette adapted for light mode if needed, mostly unused now */
  --blue:#0969da;
  --purple:#5a1e1e; /* Changed to dark wine/burgundy */
  --coral:#bf3989;
  --green:#1a7f37;
  --cyan:#0550ae;
  --neon-blue: #0969da;

  --accent:var(--neon-blue);
  --accent-ink:#ffffff;
  --link-blue:#0969da;

  --gradient:linear-gradient(115deg, #3a1515 0%, #5a1e1e 52%, #852b2b 100%);
  --gradient-soft:linear-gradient(115deg, rgba(58, 21, 21, 0.18), rgba(90, 30, 30, 0.18) 52%, rgba(133, 43, 43, 0.18) 100%);

  --radius:12px;
  --radius-sm:6px;
  --radius-pill:999px;
  --maxw:700px;
}

*{margin:0;padding:0;box-sizing:border-box;}
::selection{
  color:#1a1a1a;
  background:#dcbfa6; /* Marromzinho */
  text-shadow:none;
}
::-moz-selection{
  color:#1a1a1a;
  background:#dcbfa6;
  text-shadow:none;
}
html{scroll-behavior:smooth; background:var(--bg);}

/* Layer 1 — Deep space background with a glowing orb (simulating GitHub's glowing globe) */
html::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;
  background:var(--bg);
  pointer-events:none;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important;}
}

body{
  background:transparent;
  color:var(--text);
  font-family:'Inter', sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  font-size:14.5px;
  position:relative;
  min-height:100vh;
  overflow-x:hidden;
  text-transform: lowercase;
}

/* Page entrance: a rotating energy core, followed by a compact implosion reveal. */
.site-loader{
  position:fixed;
  inset:0;
  z-index:1000;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:radial-gradient(circle at center, rgba(146,82,235,.15), rgba(255,255,255,.97) 33%, var(--bg) 72%);
  transition:opacity .5s ease, visibility .5s ease;
}
.site-loader__singularity {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}

.site-loader__core {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--text-bright);
  border-radius: 50%;
  box-shadow: 0 0 20px 4px rgba(182, 115, 255, 0.4), 0 0 50px 15px rgba(146, 82, 235, 0.2);
  animation: singularity-pulse 1.2s ease-in-out infinite alternate;
  will-change: transform, opacity;
  z-index: 2;
}

.site-loader__ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top-color: #8250df;
  border-bottom-color: #0969da;
  box-shadow: 0 0 20px rgba(130, 80, 223, 0.2), inset 0 0 20px rgba(9, 105, 218, 0.2);
  animation: singularity-spin 1.8s linear infinite;
  will-change: transform;
}

.site-loader__ring--2 {
  width: 160px;
  height: 160px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-right-color: #bf3989;
  border-bottom-color: transparent;
  animation: singularity-spin 2.5s linear infinite reverse;
}

.site-loader__ring--3 {
  width: 200px;
  height: 200px;
  border: 1px dashed rgba(130, 80, 223, 0.3);
  animation: singularity-spin 4s linear infinite;
}

@keyframes singularity-spin {
  0% { transform: rotateX(65deg) rotateY(15deg) rotateZ(0deg); }
  100% { transform: rotateX(65deg) rotateY(15deg) rotateZ(360deg); }
}

@keyframes singularity-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 1; }
}

.site-loader.is-exiting{opacity:0; visibility:hidden; background:transparent;}
.site-loader.is-exiting .site-loader__core {
  animation: core-collapse 0.4s forwards cubic-bezier(0.8, 0, 0.2, 1);
}
.site-loader.is-exiting .site-loader__ring {
  animation: ring-shockwave 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes core-collapse {
  to { transform: scale(0); opacity: 0; }
}
@keyframes ring-shockwave {
  to { 
    transform: rotateX(0deg) rotateY(0deg) rotateZ(180deg) scale(15); 
    opacity: 0; 
  }
}
@keyframes site-implode-in{
  from{opacity:0; transform:translateY(18px) scale(1.13); filter:blur(14px);}
  to{opacity:1; transform:translateY(0) scale(1); filter:blur(0);}
}

/* Home: one continuous violet field that softly fades into the first section. */
body.home-page{
  background:transparent;
}
body.home-page::before{
  display:none;
}

/* Layer 2 — Neon connection lines (GitHub universe style) */
body::before{
  display:none;
}

/* Layer 3 — Crisp star field */
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 15% 45%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 25% 15%, rgba(121, 192, 255, 0.9), transparent),
    radial-gradient(1.2px 1.2px at 35% 65%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 45% 30%, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 55% 85%, rgba(210, 168, 255, 0.9), transparent),
    radial-gradient(1.2px 1.2px at 60% 20%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 65% 55%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.2px 1.2px at 75% 80%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 80% 35%, rgba(121, 192, 255, 0.8), transparent),
    radial-gradient(1.2px 1.2px at 85% 65%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 90% 25%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.2px 1.2px at 95% 75%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 30% 90%, rgba(210, 168, 255, 0.8), transparent),
    radial-gradient(2px 2px at 50% 5%, rgba(255,255,255,0.9), transparent);
  background-size: 550px 550px;
  background-repeat:repeat;
  opacity: 0.28;
  pointer-events:none;
}

a{color:inherit; text-decoration:none;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}
h1,h2,h3,.mono-display{font-family:'Inter', sans-serif; font-weight:800; letter-spacing:-0.02em;}

/* NAV — floating glass bar */
/* NAV — floating glass bar */
nav{
  position: sticky !important; /* Altera de relative/auto para sticky */
  top: 0 !important;           /* Fixa no topo da viewport ao rolar */
  z-index: 999999 !important;  /* Mantém sobreposto ao conteúdo */
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
nav .inner{
  max-width:var(--maxw); margin:0 auto; padding:16px 32px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{
  display:flex; align-items:center; gap:9px; 
  font-family:'Inter', sans-serif !important; 
  font-weight:500 !important; 
  font-size:16px !important; 
  color:#171717 !important; 
  position: relative; padding: 4px 0;
  text-decoration: none !important;
}
.brand svg{width:20px; height:20px; display:block; filter:drop-shadow(0 0 10px rgba(59,111,224,.45));}
.navlinks{display:flex; gap:22px;}
.navlinks a{
  font-family:'Inter', sans-serif !important;
  font-weight:400 !important;
  font-size:16px !important;
  color:#a1a1a1 !important;
  transition:color .15s ease, font-weight .15s ease;
  position:relative; padding:4px 0;
  text-decoration: none !important;
}
.navlinks a:hover,
.navlinks a.active{
  font-family:'Inter', sans-serif !important;
  font-weight:500 !important;
  color:#171717 !important;
}

/* HERO / INTRO */
.hero{padding:76px 0 30px; position:relative;}
.intro{display:flex; align-items:center; gap:36px; animation:riseIn .7s cubic-bezier(.2,.8,.2,1) both;}
.profile-intro{
  display:block;
  max-width:730px;
  margin:0 auto;
  text-align:left !important;
}
.profile-intro .photo{
  float:right;
  width:130px;
  height:130px;
  margin-left:28px;
  margin-bottom:14px;
  shape-outside: circle(50%);
  box-shadow:0 0 0 1px rgba(236,225,255,.25), 0 0 34px rgba(166,109,255,.34) !important;
}
.profile-intro .intro-title{
  margin:0 !important;
  max-width:none !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  line-height: 32px !important;
  color: #171717 !important;
}
.profile-intro .intro-text{text-align:left !important;}
.intro-kicker{
  margin:0 0 8px;
  color:#d4c0ff;
  font:700 11px/1.3 'Consolas', monospace;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.intro-text h1{font-size:27px; margin-bottom:8px; letter-spacing:-0.02em; line-height:1.2; color:var(--text-bright);}
.hl{
  color:var(--text-bright);
  font-weight:600;
}
.intro-text p.lead{
  color:var(--text-dim);
  font-size:18px;
  font-weight:600;
  letter-spacing:-.012em;
  line-height:1.55;
}
.intro-description{
  display:block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #525252;
  margin: 16px 0 0 0;
  padding: 0;
  line-height: 1.45;
  letter-spacing: -0.015em;
  max-width: 650px;
  text-align: left;
}
.intro-opportunity{
  max-width:500px;
  color:var(--text-dim);
  font-size:15px;
  font-weight:600;
  line-height:1.65;
  letter-spacing:-.01em;
}
.profile-intro .btn{margin-top:2px;}
.intro-social{
  display:flex; flex-wrap:wrap; gap:16px; align-items:center;
}
.photo{
  width:150px; height:150px; border-radius:50%;
  background:var(--panel-2); flex:none; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  box-shadow:0 0 0 1px var(--line), 0 0 50px rgba(138,92,214,.35), 0 12px 40px rgba(0,0,0,.45);
}
.photo::before{
  content:""; position:absolute; inset:-3px; border-radius:50%;
  background:var(--gradient); z-index:-1;
  filter:blur(1px);
}
.photo img{width:100%; height:100%; object-fit:cover; display:block; border-radius:50%;}

/* Neural Rings for Photo */
.neural-ring {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  border-radius: 40%;
  border: 1.5px solid rgba(188, 143, 255, 0.4);
  box-shadow: 0 0 15px rgba(188, 143, 255, 0.3), inset 0 0 15px rgba(109, 117, 255, 0.3);
  animation: photo-orbit 6s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.neural-ring-2 {
  border: 1px dashed rgba(109, 117, 255, 0.6);
  animation: photo-orbit 4s linear infinite reverse;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
}

.photo:hover .neural-ring {
  animation-duration: 2s;
  border-color: rgba(226, 174, 255, 0.8);
}
.photo:hover .neural-ring-2 {
  animation-duration: 1.5s;
}

/* Morphing Button Wrapper */
.morph-btn-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.morph-ring {
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border: 1.5px solid rgba(188, 143, 255, 0.4);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(188, 143, 255, 0.2), inset 0 0 10px rgba(109, 117, 255, 0.2);
  z-index: -1;
  pointer-events: none;
  animation: morph-wobble 4s ease-in-out infinite;
}

.morph-ring-2 {
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border: 1px dashed rgba(109, 117, 255, 0.5);
  animation: morph-wobble 3s ease-in-out infinite reverse;
}

@keyframes morph-wobble {
  0% { transform: scale(1) skew(0deg) rotate(0deg); border-radius: 8px; }
  25% { transform: scale(1.02) skew(1deg) rotate(1deg); border-radius: 12px 6px 12px 6px; }
  50% { transform: scale(1) skew(0deg) rotate(0deg); border-radius: 8px; }
  75% { transform: scale(1.02) skew(-1deg) rotate(-1deg); border-radius: 6px 12px 6px 12px; }
  100% { transform: scale(1) skew(0deg) rotate(0deg); border-radius: 8px; }
}

.morph-btn-wrapper:hover .morph-ring {
  animation-duration: 2s;
  border-color: rgba(226, 174, 255, 0.8);
}
.morph-btn-wrapper:hover .morph-ring-2 {
  animation-duration: 1.5s;
}

@keyframes photo-orbit {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}
.intro-text{padding-top:2px;}
.hl{
  background:var(--gradient); color:var(--accent-ink); padding:0 8px;
  box-shadow:0 0 15px rgba(88, 166, 255, 0.4);
  display:inline-block; transform:rotate(-1deg); font-weight:800; border-radius:4px;
}
.subtitle{font-family:'Inter',sans-serif; font-size:15px; font-weight:700; color:var(--text-dim) !important; margin-bottom:14px; letter-spacing:0.005em;}
.bio{font-size:13.5px; font-weight:400; color:var(--muted); max-width:520px;}
.bio + .bio{margin-top:10px;}

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

/* PAGE HEADER (subpages) */
.page-head{padding:60px 0 6px; position:relative; animation:riseIn .6s cubic-bezier(.2,.8,.2,1) both;}
.page-head h1{
  font-size:26px; font-weight:800; margin-bottom:10px; letter-spacing:-0.02em; line-height:1.25;
  background:var(--gradient);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  display:inline-block;
}
.page-head h1 .hl{font-size:21px; padding:2px 10px; box-shadow:4px 4px 0 var(--text);}
.page-head p{font-size:13.5px; color:var(--muted); max-width:100%;}
.page-head .about{
  margin-top:16px; font-size:13.5px; color:var(--muted); max-width:100%;
  line-height:1.75; font-family:'Inter', sans-serif;
}

/* FLOATING PHOTOS (Intro Only) */
.photo-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden; /* Only float inside intro */
}

.floating-photo {
  position: absolute;
  top: 110%; /* Start below intro section to avoid shadow bleeding */
  z-index: 0;
  cursor: pointer;
  animation: float-photo infinite linear;
  pointer-events: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.floating-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.floating-photo:hover {
  animation-play-state: paused;
  z-index: 999;
}

.floating-photo:hover img {
  transform: scale(1.1);
  border-color: rgba(0,0,0,0.15);
}

.floating-photo.is-expanded {
  animation: none !important;
  z-index: 9999;
  position: fixed;
  inset: 0;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: grid;
  place-content: center;
  place-items: center;
}

.floating-photo.is-expanded img {
  grid-area: 1 / 1;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  transform: none;
}

.photo-particles.has-expanded {
  z-index: 99999 !important;
  overflow: visible !important;
}

.close-photo-btn {
  display: none !important;
  position: absolute;
  background: var(--bg, #ffffff);
  color: var(--text);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.floating-photo.is-expanded .close-photo-btn {
  display: flex !important;
  grid-area: 1 / 1;
  justify-self: end;
  align-self: start;
  position: relative;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-right: -16px;
}
.close-photo-btn:hover {
  color: #ea4335;
  transform: scale(1.08);
}

@keyframes float-photo {
  0% { transform: translateY(0) rotate(-5deg); opacity: 0; }
  15% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) rotate(5deg); opacity: 0; }
}

/* PHOTO SLIDER */
.photo-slider {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  display: flex;
  background: transparent;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.photo-slider-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: slide 30s linear infinite;
}
.photo-slider-track img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  filter: brightness(0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}
.photo-slider-track img:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}
.photo-slider:hover .photo-slider-track {
  animation-play-state: paused;
}

/* Expanded slider image overlay */
.slider-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: fadeIn 0.2s ease;
}
.slider-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-280px * 5 - 16px * 5)); }
}


/* SECTION BLOCK */
.block{margin-top:44px;}
.block-head{display:flex; align-items:baseline; justify-content:space-between; margin-bottom:10px; gap:12px;}
.block-head h4,.block-head h2{font-size:11.5px; letter-spacing:0.08em; color:var(--blue); font-weight:400; text-transform:lowercase; font-family:'Consolas', monospace;}
.viewall{font-size:12.5px; color:var(--muted); white-space:nowrap; transition:color .15s ease;}
.viewall .viewall-arrow { color: var(--muted); transition: color 0.15s ease; }

.viewall:hover{color:#bc8fff;}
.viewall:hover .viewall-arrow { color: #ffffff; }

.block-head.lg{margin-bottom:16px;}
.block-head.lg h2{
  font-size:21px; font-weight:800; letter-spacing:-0.02em; color:var(--text);
  text-transform:none; font-family:'Inter',sans-serif;
}

/* GLOBAL GLASSMORPHISM PANELS */
.list, .project-card, .skill-cat, .empty, .org-group {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05) inset !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

/* SECTION HEADERS (MINIMAL) */
.section-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 24px;
  margin-top: 16px;
  letter-spacing: -0.01em;
}

/* MINIMAL LIST */
.minimal-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.minimal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  text-decoration: none;
}
.minimal-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.minimal-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding: 5px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.minimal-icon img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 4px;
}
.minimal-icon.text-icon {
  font-size: 14px;
  font-weight: 800;
  border-radius: 10px;
}

.minimal-row:hover .minimal-icon,
.contrib-row:hover .minimal-icon,
.vol-community-card:hover .minimal-icon,
.acc-item:hover .minimal-icon,
.minimal-icon:hover {
  transform: scale(1.08) !important;
  border-color: rgba(238, 88, 67, 0.35) !important;
  box-shadow: 0 4px 12px rgba(238, 88, 67, 0.12) !important;
}
.minimal-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-bright);
}
.minimal-role {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
}
.comp-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comp-card-icon {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  border-radius: 7px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.comp-card:hover .comp-card-icon {
  transform: scale(1.08);
}

.comp-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.comp-card-meta {
  flex: 1;
}

.comp-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: #171717;
  line-height: 1.35;
  margin: 0;
}

.comp-card-date {
  font-family: 'Consolas', monospace;
  font-size: 11px;
  color: #737373;
  margin-top: 4px;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  flex-shrink: 0;
}
.minimal-date {
  font-family: 'Consolas', monospace;
  font-size: 14px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* LIST */
.list{
  display:flex; flex-direction:column;
  border-radius:var(--radius);
  overflow:hidden;
}
.row{
  display:flex; align-items:center; gap:14px; padding:16px 18px;
  border-bottom:1px solid var(--line);
  transition:background .15s ease;
}
.row:hover{background:var(--panel-hover);}
.row:last-child{border-bottom:none;}
.icon{
  width:40px; height:40px; border-radius:10px; flex:none;
  background:#ffffff; color:var(--text);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:700; overflow:hidden;
}
.icon img{width:100%; height:100%; object-fit:contain; padding:5px; background:#ffffff; border-radius:10px;}
.icon.accent{background:var(--gradient); color:var(--accent-ink); border:none; box-shadow:0 4px 16px rgba(59,111,224,.3);}
.row-main{flex:1; min-width:0; display:flex; align-items:baseline; gap:8px; flex-wrap:wrap;}
.row-main .title{font-size:15.5px; font-weight:400; color:var(--text-bright);}
.row-main .role{font-size:15px; font-weight:400; color:var(--muted); font-family:'Inter', sans-serif;}
.row-main .role a{font-weight:400;}
.row-date{font-size:11.5px; color:var(--muted); font-variant-numeric:tabular-nums; white-space:nowrap; flex:none; font-family:'Consolas', monospace;}
.row-date.now{color:var(--green); font-weight:400;}
.row-sub{font-size:11.5px; color:var(--muted-2); flex-basis:100%; margin-top:2px; line-height:1.55; font-family:'Consolas', monospace;}
.doi-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.doi-link:hover {
  color: #ee5843 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.doi-link:hover svg,
.doi-link:hover .link-arrow {
  color: #ee5843 !important;
  stroke: #ee5843 !important;
  transform: translate(1px, -1px);
}

/* SUMMARY / PROSE PARAGRAPH */
.summary-item{margin-bottom:26px;}
.summary-item:last-child{margin-bottom:0;}
.summary-item .s-head{display:flex; align-items:baseline; justify-content:space-between; gap:12px; margin-bottom:6px;}
.summary-item h3{font-size:14px; font-weight:400; color:var(--text);}
.summary-item .s-org{font-size:12.5px; color:var(--muted); font-weight:400;}
.summary-item .s-date{font-size:12px; color:var(--muted); white-space:nowrap;}
.summary-item ul{list-style:none; display:flex; flex-direction:column; gap:5px;}
.summary-item li{font-size:13px; color:var(--muted); padding-left:14px; position:relative;}
.summary-item li::before{content:"–"; position:absolute; left:0; color:var(--muted-2);}
.summary-item p{font-size:13.5px; font-weight:400; color:var(--muted); max-width:560px;}

/* ORG GROUP */
.org-group{
  padding:18px 18px;
  border-bottom:1px solid rgba(255, 255, 255, 0.1) !important;
}
.block-head + .org-group, .org-group:first-of-type{border-top-left-radius:var(--radius); border-top-right-radius:var(--radius);}
.org-group:last-child{border-bottom-left-radius:var(--radius); border-bottom-right-radius:var(--radius); margin-bottom:0;}

/* Pulsing Green Dot */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #39d353;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(57, 211, 83, 0.7);
  animation: pulse-dot-anim 1.5s infinite;
  vertical-align: middle;
}

@keyframes pulse-dot-anim {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(57, 211, 83, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(57, 211, 83, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(57, 211, 83, 0);
  }
}
.org-head{display:flex; align-items:center; gap:14px; margin-bottom:12px;}
.org-head .icon{width:34px; height:34px;}
.org-name{font-size:14px; font-weight:400; color:var(--text);}
.org-roles{display:flex; flex-direction:column; margin-left:17px; padding-left:26px; border-left:1.5px solid var(--line); gap:14px;}
.org-role{position:relative; display:flex; align-items:baseline; justify-content:space-between; gap:12px; flex-wrap:wrap;}
.org-role::before{
  content:""; position:absolute; left:-30.5px; top:6px; width:8px; height:8px;
  border-radius:50%; background:var(--gradient); box-shadow:0 0 8px rgba(59,111,224,.6);
}
.org-role .title{font-size:14.5px; font-weight:400; color:var(--text);}
.org-role .role{font-size:13.5px; color:var(--muted); display:block; flex-basis:100%; font-weight:400; font-family:'Consolas', monospace;}
.org-role .row-sub{margin-top:1px;}
.org-role .row-date{font-size:11.5px;}

/* SKILLS */
.skills-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:14px; margin-top:6px;}
.skill-cat{
  border-radius:var(--radius-sm);
  padding:14px 16px; transition:border-color .15s ease, transform .15s ease;
}
.skill-cat:hover{border-color:var(--line-strong); transform:translateY(-2px);}
.skill-cat h3{font-size:12.5px; font-weight:400; margin-bottom:6px; font-family:'Consolas', monospace; color:var(--blue); text-transform:lowercase; letter-spacing:.02em;}
.skill-cat p{font-size:12.5px; color:var(--muted); line-height:1.6;}

/* BUTTON — pill, gradient on hover */
.btn{
  display:inline-flex; align-items:center; gap:6px;
  font-family:'Inter',sans-serif; font-size:12.5px; font-weight:700;
  padding:11px 20px; border-radius:var(--radius-pill); border:1.5px solid var(--line-strong);
  color:var(--text); background:var(--panel); margin-top:18px;
  transition:all .18s ease;
}
.btn:hover{
  background:var(--gradient); border-color:transparent; color:var(--accent-ink);
  box-shadow:0 0 20px rgba(88, 166, 255, 0.5); transform:translateY(-1px);
}

/* LINKS ROW */
.linkrow{display:flex; gap:22px; flex-wrap:wrap;}
.linkrow a{font-size:13px; color:var(--muted); transition:color .15s ease;}
.linkrow a:hover{color:var(--text);}

.link-underline{
  color:var(--muted); font-size:13px;
  text-decoration:underline; text-decoration-color:var(--link-blue);
  text-underline-offset:2px;
}
.link-underline:hover{color:var(--text);}

/* PROJECT CARDS */
.project-card{
  padding:22px 20px; border-radius:var(--radius);
  margin-bottom:14px;
  transition:border-color .18s ease, transform .18s ease, background .18s ease;
}
.project-card:hover{border-color:var(--line-strong); background:var(--panel-hover); transform:translateY(-2px);}
.project-card:last-child{margin-bottom:0;}
.project-card h3{font-size:14.5px; font-weight:400; margin-bottom:8px; color:var(--text);}
.project-card p{font-size:13px; color:var(--muted); line-height:1.7; max-width:600px;}

.badge{
  display:inline-block; font-size:10.5px; font-weight:700; padding:3px 9px;
  border:1px solid rgba(59,111,224,.45); border-radius:var(--radius-pill);
  color:var(--blue); background:rgba(59,111,224,.14);
  vertical-align:middle; margin-right:4px; letter-spacing:.02em;
  font-family:'Consolas', monospace;
}

/* EMPTY STATE */
.empty{
  padding:36px 20px; color:var(--muted); font-size:13.5px; max-width:420px;
  border-radius:var(--radius); margin-top:16px;
}

/* PROJECTS GRID (SEAMLESS BENTO) */
.projects-grid {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  overflow: hidden;
}

.project-card-featured {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  position: relative;
  transition: background 0.2s ease;
}
.project-card-featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(circle at top left, rgba(162, 107, 248, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.project-card-featured:hover {
  background: rgba(255,255,255,0.02);
}
@media(min-width: 800px) {
  .project-card-featured {
    flex-direction: row;
  }
}
.featured-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.featured-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
  line-height: 1.2;
}
.featured-content h3 span {
  color: var(--muted);
  font-weight: 500;
}
.featured-content p {
  display: none;
}
.project-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.badge-minimal {
  font-family: 'Consolas', monospace;
  font-size: 12px;
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
}
.explore-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--link-blue);
  margin-top: 24px;
}
.explore-link:hover {
  text-decoration: underline;
}
.featured-image {
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 250px;
}
@media(min-width: 800px) {
  .featured-image {
    border-left: 1px solid var(--line);
  }
}
@media(max-width: 799px) {
  .featured-image {
    border-top: 1px solid var(--line);
  }
}
.featured-image img, .col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-cols {
  display: grid;
  grid-template-columns: 1fr;
}
@media(min-width: 800px) {
  .projects-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
.project-card-col {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}
@media(min-width: 800px) {
  .project-card-col {
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .project-card-col:last-child {
    border-right: none;
  }
}
.project-card-col:hover {
  background: rgba(255,255,255,0.02);
}
.col-content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.col-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-bright);
  display: inline;
}
.col-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  display: inline;
  margin-top: 4px;
}
.col-image {
  height: 200px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--line);
  margin: 0 24px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}
.minimal-date {
  font-family: 'Consolas', monospace;
  font-size: 13.5px;
  color: var(--muted-2);
  white-space: nowrap;
}

/* MINIMAL CONTRIBUTIONS LIST */
.contrib-row {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  gap: 4px;
  text-decoration: none;
}
.contrib-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* DETAILS STYLES */
details.expandable {
  margin-top: 12px;
}
details.expandable summary {
  cursor: pointer;
  font-size: 14px;
  color: var(--text-bright);
  font-weight: 500;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
details.expandable summary:hover {
  background: rgba(255, 255, 255, 0.1);
}
details.expandable summary::-webkit-details-marker {
  display: none;
}
details.expandable .details-content {
  margin-top: 16px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contrib-title {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1.4;
}
.contrib-desc {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  color: #a1a1a1 !important;
  font-size: 15px !important;
  line-height: 32px !important;
  display: block;
}
.contrib-meta {
  font-family: 'Consolas', monospace;
  font-size: 13.5px;
  color: var(--muted-2);
  margin-bottom: 2px;
}

/* DYNAMIC ACCORDION SHOWCASE */
.accordion-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 16px;
}
@media(min-width: 800px) {
  .accordion-showcase {
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
  }
}
.accordion-list {
  display: flex;
  flex-direction: column;
}
.acc-item {
  border-bottom: 1px solid var(--line);
}
.acc-item:first-child {
  border-top: 1px solid var(--line);
}
.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.acc-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #171717;
  line-height: 32px;
  margin: 0;
  transition: color 0.2s ease;
}
.acc-icon {
  font-size: 20px;
  color: var(--muted);
  font-weight: 300;
  transition: transform 0.3s ease, color 0.2s ease;
}
.acc-item:hover .acc-header h3 {
  color: var(--text-bright);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.acc-item.active .acc-header h3 {
  color: var(--text-bright);
}
.acc-item.active .acc-icon {
  transform: rotate(45deg);
  color: var(--text-bright);
}
.acc-item.active .acc-body {
  max-height: 800px;
  padding: 0 0 24px 0;
}
.accordion-preview {
  display: none;
}
@media(min-width: 800px) {
  .accordion-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    aspect-ratio: 16 / 9;
    height: auto;
  }
}
.accordion-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease-in-out;
}
.accordion-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer{
  margin-top: 0px;
  padding: 50px 0 40px 0;
  border-top: none;
  font-family: 'Consolas', monospace;
  font-size: 12px;
  color: var(--muted);
}

.striped-divider {
  max-width: var(--maxw);
  margin: 16px auto 24px auto;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M 0 3 Q 2.5 0 5 3 T 10 3' fill='none' stroke='%23cccccc' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  opacity: 0.8;
}

footer .inner{
  max-width:var(--maxw); margin:0 auto; padding:0 32px;
  display:flex; justify-content:space-between; align-items:center;
}
.footer-links{gap:20px;}

/* Hacker Links (Intro, Footer, and specific buttons) */
.intro-social a,
.footer-links a,
.section-header-link,
.btn.hacker-btn {
  font-family: 'Consolas', monospace !important;
  position: relative;
  padding: 6px 1px !important;
  border: 1px solid transparent !important;
  border-radius: 6px !important;
  color: #c0c0c0 !important;
  text-decoration: none !important;
  text-transform: lowercase;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  background: transparent !important;
  box-shadow: none !important;
  height: auto !important; /* Override .btn height */
}

.intro-social a:hover,
.footer-links a:hover,
.section-header-link:hover,
.btn.hacker-btn:hover {
  background: transparent !important;
  -webkit-text-fill-color: initial !important;
  box-shadow: none !important;
  border-color: transparent !important;
  animation: none !important;
}

.link-email:hover { color: #ea4335 !important; }
.link-github:hover { color: #171717 !important; }
.link-linkedin:hover { color: #0a66c2 !important; }
.link-lattes:hover { color: #0047AB !important; }
.link-gdg:hover {
  background: transparent !important;
}
.link-gdg:hover .l-y { color: #FBBC05 !important; }
.link-gdg:hover .l-g { color: #34A853 !important; }
.link-gdg:hover .l-r { color: #EA4335 !important; }
.link-gdg:hover .l-b { color: #4285F4 !important; }

.intro-social a::before,
.footer-links a::before,
.section-header-link::before,
.btn.hacker-btn::before {
  content: "[";
  color: #c0c0c0;
  transition: color 0.2s;
  margin-right: 4px;
}
.intro-social a::after,
.footer-links a::after,
.section-header-link::after,
.btn.hacker-btn::after {
  content: "]";
  color: #c0c0c0;
  transition: color 0.2s;
  margin-left: 4px;
}

.intro-social a:hover::before,
.intro-social a:hover::after,
.footer-links a:hover::before,
.footer-links a:hover::after,
.section-header-link:hover::before,
.section-header-link:hover::after,
.btn.hacker-btn:hover::before,
.btn.hacker-btn:hover::after {
  color: inherit !important;
  -webkit-text-fill-color: initial !important;
}



.intro-social a.link-gdg:hover::before,
.intro-social a.link-gdg:hover::after,
.footer-links a.link-gdg:hover::before,
.footer-links a.link-gdg:hover::after,
.section-header-link.link-gdg:hover::before,
.section-header-link.link-gdg:hover::after {
  color: #4285F4 !important;
}
.section-header-btn {
  font-size: 12px;
  font-weight: 400;
  color: #ee5843;
  text-decoration: none;
  font-family: 'Consolas', monospace;
  padding: 6px 14px;
  border-radius: 6px;
  /* border: 1px solid #ee5843; */
  background: transparent;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-header-btn:hover {
  background: #ee5843;
  color: #ffffff;
  border-color: #ee5843;
  transform: translateY(-1px);
  box-shadow: none;
}

/* Link Acessar (Voluntariado GDG) - Normal: Laranja / Hover: Fundo Branco + Cores do Google */
.link-access-volunteering {
  color: #ee5843 !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  transition: all 0.2s ease !important;
}

.link-access-volunteering span,
.link-access-volunteering svg {
  color: inherit;
  transition: color 0.2s ease !important;
}

.link-access-volunteering:hover {
  background: #ffffff !important;
  border-color: #EA4335 !important;
  box-shadow: 0 2px 6px rgba(234, 67, 53, 0.15) !important;
  transform: translateY(-1px);
}

.link-access-volunteering:hover .l-b { color: #4285F4 !important; }
.link-access-volunteering:hover .l-y { color: #FBBC05 !important; }
.link-access-volunteering:hover .l-g { color: #34A853 !important; }
.link-access-volunteering:hover .l-r { color: #EA4335 !important; }
.link-access-volunteering:hover svg.link-arrow { color: #EA4335 !important; stroke: #EA4335 !important; }

.cursor-blink {
  display: inline-block;
  width: 6px;
  height: 12px;
  background-color: #ee5843;
  vertical-align: middle;
  margin-left: 4px;
  animation: cursor-blink 1s steps(2, start) infinite !important;
}

/* ============================================================
   COMPETIÇÕES & HACKATHONS (MODERN GLASS GRID CARDS)
   ============================================================ */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.comp-card {
  position: relative;
  padding: 22px 24px;
  background: rgba(238, 88, 67, 0.025);
  border: 1px solid rgba(238, 88, 67, 0.15);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.comp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ee5843 0%, rgba(238, 88, 67, 0.1) 100%);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.comp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 88, 67, 0.35);
  box-shadow: 0 12px 28px -10px rgba(238, 88, 67, 0.15), 0 0 0 1px rgba(238, 88, 67, 0.2);
  background: rgba(238, 88, 67, 0.04);
}

.comp-card:hover::before {
  opacity: 1;
}

.comp-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comp-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.comp-card:hover .comp-card-icon {
  transform: scale(1.08);
}

.comp-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.comp-card-meta {
  flex: 1;
}

.comp-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: #171717;
  line-height: 1.35;
  margin: 0;
}

.comp-card-date {
  font-family: 'Consolas', monospace;
  font-size: 11px;
  color: #737373;
  margin-top: 4px;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
}

.comp-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Consolas', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(238, 88, 67, 0.08);
  color: #ee5843;
  border: 1px solid rgba(238, 88, 67, 0.2);
  margin-top: 12px;
  width: fit-content;
}

.comp-card-desc {
  font-size: 13.5px;
  line-height: 21px;
  color: #525252;
  margin-top: 12px;
  flex-grow: 1;
}

.comp-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(238, 88, 67, 0.15);
}

.comp-tag {
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.03);
  color: #737373;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.comp-card:hover .comp-tag {
  background: rgba(238, 88, 67, 0.06);
  color: #ee5843;
  border-color: rgba(238, 88, 67, 0.18);
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes cursor-blink-anim {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.highlight-pill {
  background-color: rgba(255, 255, 255, 0.95);
  color: #000;
  border-radius: 4px;
  padding: 2px 6px;
  font-weight: 700;
  display: inline-block;
  line-height: 1.1;
}

/* --- Home Specific Styles (GitHub Glow Aesthetic) --- */
.home-glow-backdrop {
  display:none;
}

/* A soft spotlight that reveals an otherwise hidden star field in the intro. */
.intro-star-reveal{
  position:absolute;
  inset:0;
  z-index:2;
  overflow:hidden;
  pointer-events:none;
  opacity:0;
  transition:opacity .35s ease;
  background-image:
    radial-gradient(2px 2px at 12% 22%, rgba(182, 115, 255, 0.4), transparent 70%),
    radial-gradient(1.3px 1.3px at 26% 64%, rgba(105, 75, 221, 0.4), transparent 70%),
    radial-gradient(2.3px 2.3px at 39% 31%, rgba(182, 115, 255, 0.5), transparent 70%),
    radial-gradient(1.3px 1.3px at 57% 18%, rgba(146, 82, 235, 0.4), transparent 70%),
    radial-gradient(1.8px 1.8px at 74% 48%, rgba(182, 115, 255, 0.6), transparent 70%),
    radial-gradient(1.3px 1.3px at 85% 78%, rgba(105, 75, 221, 0.5), transparent 70%),
    radial-gradient(2.1px 2.1px at 92% 26%, rgba(146, 82, 235, 0.4), transparent 70%);
  background-size:215px 175px;
  -webkit-mask-image:radial-gradient(circle 145px at var(--reveal-x, 50%) var(--reveal-y, 50%), #000 0%, rgba(0,0,0,.95) 38%, transparent 78%);
  mask-image:radial-gradient(circle 145px at var(--reveal-x, 50%) var(--reveal-y, 50%), #000 0%, rgba(0,0,0,.95) 38%, transparent 78%);
  will-change:mask-image, opacity;
}
.intro-star-reveal.is-active{
  opacity:1;
}


/* GLOBAL PARTICLES */
.global-particles {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1; /* So we can click them, behind hero but above background */
  overflow: hidden;
}
.global-particles .particle {
  pointer-events: auto; /* Re-enable pointer events for the actual particles */
  position: absolute;
  background: rgba(182, 115, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(182, 115, 255, 0.3);
  opacity: 0;
  animation: float-particle-global infinite linear;
}
.global-particles .particle.sparkle {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.global-particles .particle:not(.sparkle){
  background:rgba(182, 115, 255, 0.8);
  box-shadow:0 0 12px 2px rgba(182, 115, 255, 0.4), 0 0 22px 3px rgba(105, 75, 221, 0.2);
  animation-name:float-particle-dot;
}
@keyframes float-particle-global {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  20% { opacity: 0.7; }
  80% { opacity: 0.7; }
  100% { transform: translateY(-200px) scale(0.5); opacity: 0; }
}
@keyframes float-particle-dot {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  20% { opacity: .92; }
  80% { opacity: .92; }
  100% { transform: translateY(-200px) scale(0.5); opacity: 0; }
}

@media (max-width:560px){
  .navlinks{gap:12px;}
  .intro{flex-direction:column; align-items:center; gap:18px; text-align:center;}
  .photo{width:150px; height:150px;}
  .org-roles{margin-left:12px; padding-left:20px;}
  .org-role::before{left:-24.5px;}
  .page-head h1{font-size:22px;}
  .profile-intro .photo{width:112px; height:112px; margin-left:18px;}
}

/* ============================================================
   GITHUB REDESIGN STYLES
   ============================================================ */

.gh-section {
  position: relative;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.gh-section:last-child,
#projetos,
#competicoes {
  border-bottom: none !important;
  padding-bottom: 10px !important;
}

.gh-header {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gh-header-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 16px rgba(188, 143, 255, 0.6));
  animation: float-photo 6s infinite ease-in-out alternate;
}

.gh-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin-bottom: 16px;
  line-height: 1.15;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

.gh-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 650px;
  line-height: 1.6;
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 25px rgba(188, 143, 255, 0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}

.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-8 { grid-column: span 8; }
.bento-col-12 { grid-column: span 12; }

@media (max-width: 900px) {
  .bento-col-4, .bento-col-6, .bento-col-8 { grid-column: span 12; }
}

.bento-card .icon {
  margin-bottom: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.bento-card .icon img {
  border-radius: 12px;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.bento-card .role-title {
  font-size: 15px;
  color: var(--blue);
  margin-bottom: 12px;
  font-weight: 600;
  font-family: 'Consolas', monospace;
}

.bento-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

.bento-card .bento-date {
  margin-top: auto;
  padding-top: 20px;
  font-size: 12.5px;
  color: var(--muted-2);
  font-family: 'Consolas', monospace;
}

.bento-card .bento-footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* =========================================
   USER TYPOGRAPHY OVERRIDES 
   ========================================= */

/* T�tulos (Inter - 500 - 20px - lh 32px - #171717) */
.row-main .title, 
.summary-item h3, 
.org-name, 
.org-role .title, 
.project-card h3, 
.contrib-title, 
.minimal-list .minimal-left a,
.minimal-list .minimal-left span:not(.minimal-role):not(.minimal-date),
.minimal-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 20px !important;
  line-height: 32px !important;
  color: #171717 !important;
  text-decoration: none !important;
}

/* Complementos (Inter - 400 - 20px - lh 32px - #a1a1a1) */
.row-main .role,
.minimal-role,
.summary-item .s-org,
.summary-item p,
.project-card p,
.org-role .role {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 20px !important;
  line-height: 32px !important;
  color: #a1a1a1 !important;
}

/* T�tulos das Se��es (Inter - 400 - 16px - lh 26px - #a1a1a1) */
.section-label {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 26px !important;
  color: #a1a1a1 !important;
  text-transform: lowercase !important;
  letter-spacing: normal !important;
}

/* Textos Monos (Consolas - 400 - 19px - lh 27px - #a1a1a1) */
.row-date,
.minimal-date,
.summary-item .s-date,
.row-date.now,
.row-sub,
.org-role .row-date {
  font-family: 'Consolas', monospace !important;
  font-weight: 400 !important;
  font-size: 19px !important;
  line-height: 27px !important;
  color: #a1a1a1 !important;
}

/* Intro Resumo */
.intro-description {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 20px !important;
  line-height: 32px !important;
  color: #525252 !important;
}


/* Vestgeek Xodo Badge */
@keyframes float-xodo {
  0% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-4px) rotate(-4deg); }
  100% { transform: translateY(0) rotate(-4deg); }
}
.badge-xodo {
  position: absolute;
  top: -15px;
  right: -2px;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  pointer-events: none;
  animation: float-xodo 3s ease-in-out infinite;
  z-index: 10;
  letter-spacing: 0.03em;
}

/* Intro Header Wrapper */
.intro-top {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media (max-width: 560px) {
  .intro-top {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
}

/* Competi��es espec�ficos */
#competicoes .minimal-role {
  font-size: 14px !important;
  line-height: 20px !important;
}

/* Timeline effect for Volunteer accordion items */
.acc-body .contrib-list {
  padding-left: 24px;
  position: relative;
  gap: 0; 
}

/* Vertical line */
.acc-body .contrib-list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background-color: var(--line);
}

.acc-body .contrib-row {
  position: relative;
  padding: 16px 0;
}

/* Timeline node */
.acc-body .contrib-row::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 24px; 
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-bright);
  z-index: 2;
}

/* Decrease fonts */

.acc-body .contrib-title {
  font-size: 15px !important;
  line-height: 24px !important;
  font-weight: 600 !important;
}

.acc-body .contrib-desc {
  font-size: 14px !important;
  line-height: 20px !important;
  margin-top: 4px;
}

/* Blinking Green Dot */
@keyframes blink-green {
  0% { opacity: 1; box-shadow: 0 0 0 0 rgba(46, 160, 67, 0.4); }
  70% { opacity: 0.5; box-shadow: 0 0 0 4px rgba(46, 160, 67, 0); }
  100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46, 160, 67, 0); }
}

.status-dot-green {
  display: inline-block;
  width: 6px;
  height: 6px;
  font-size: 50px !important;
  border-radius: 50%;
  background-color: #2ea043;
  animation: blink-green 1.5s infinite ease-in-out;
}

/* GitHub Features Aesthetic for Projetos */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 16px;
}

.project-feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-feature-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 16px 0;
}
.project-feature-text p strong {
  color: var(--text-bright);
  font-weight: 600;
}

.project-feature-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #f9594a;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.project-feature-link:hover {
  color: #f9594a;
}
.project-feature-link .arrow {
  font-size: 12px;
  margin-top: 2px;
}

/* Visual container imitating the screenshot */
.project-feature-visual {
  flex-grow: 1;
  background: transparent;
  border-radius: 8px 8px 0 0;
  border: 1px solid var(--line);
  border-bottom: none;
  overflow: hidden;
  padding: 16px 16px 0 16px;
  min-height: 200px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

/* Mock UI card inside */
.mock-window {
  width: 100%;
  height: 100%;
  background: var(--bg-alt);
  border-radius: 6px 6px 0 0;
  border: 1px solid var(--line-strong);
  border-bottom: none;
  display: flex;
  flex-direction: column;
}
.mock-header {
  height: 12px;
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
}
.mock-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-line {
  height: 6px;
  background: var(--line);
  border-radius: 4px;
  width: 80%;
}
.mock-line.short { width: 40%; }
.mock-line.long { width: 95%; }


/* High-end GitHub Feature Cards */
.gh-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 16px;
}

.gh-feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gh-feature-info {
  margin-bottom: 20px;
}

.gh-feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 12px 0;
}

.gh-feature-text strong {
  color: var(--text-bright);
  font-weight: 600;
}

.gh-feature-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #f9594a;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.gh-feature-link:hover {
  color: #f9594a;
  gap: 8px;
}

.gh-feature-link .arrow {
  font-weight: 400;
  font-size: 14px;
}

/* .gh-feature-box {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gh-feature-card:hover .gh-feature-box {
  border-color: #ff6159;
  transform: translateY(-2px);
} */

/* Code Window */
.code-window {
  font-family: 'Consolas', 'Fira Code', monospace;
  font-size: 12.5px;
  color: #c9d1d9;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.w-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.w-dot.red { background: #ff5f56; }
.w-dot.yellow { background: #ffbd2e; }
.w-dot.green { background: #27c93f; }

.w-title {
  margin-left: 6px;
  font-size: 11px;
  color: var(--muted);
}

.window-code {
  line-height: 1.5;
}

.c-purple { color: #d2a8ff; }
.c-blue { color: #79c0ff; }
.c-gray { color: #8b949e; }

/* Metrics Window */
.metrics-window {
  display: flex;
  gap: 24px;
  padding: 8px 4px;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.m-val {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
}





.m-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* Terminal Window */
.terminal-window {
  font-family: 'Consolas', monospace;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.term-line {
  color: var(--muted);
}

.term-prompt {
  color: #2f81f7;
  font-weight: 700;
}

.term-ok {
  color: #2ea043;
}

/* Badge Inline */
.badge-xodo-inline {
  display: inline-block;
  font-family: 'Consolas', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(238, 88, 67, 0.15);
  color: #ee5843;
  margin-left: 4px;
  vertical-align: middle;
}

/* Matching Contribui��es font size to Competi��es */
#contribuicoes .contrib-title {
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

#contribuicoes .contrib-desc {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
}

/* Exact style for Competi��es descriptions */
#competicoes .contrib-desc {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  color: rgb(161, 161, 161) !important;
  font-size: 14px !important;
  line-height: 20px !important;
}

/* Exact style for gh-feature-text and metric labels */
.gh-feature-text,
.metric-item .m-lbl {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  color: #a1a1a1 !important;
  font-size: 13px !important;
  line-height: 20px !important;
}


/* 
.contrib-desc {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  color: #a1a1a1 !important;
  font-size: 15px !important;
  line-height: 32px !important;
  display: block;
} */





/* Exact style for Projetos descriptions (.gh-feature-text) */
.gh-feature-text {
  font-family: 'Inter', "Inter Fallback", sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  color:rgb(161, 161, 161) !important;
  font-size: 18px !important;
  line-height: 29px !important;
}






.custom-link {
  display: inline;
  color: inherit;
  text-decoration: none;
}

/* Sublinhado apenas no texto ao passar o mouse */
.custom-link:hover .link-text {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

/* Alinhamento perfeito do SVG da seta fina */
.link-arrow {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  margin-left: 2px;
  margin-right: 4px;
  transition: transform 0.15s ease;
}

/* Opcional: movimento sutil da seta no hover */
.custom-link:hover .link-arrow {
  transform: translate(1px, -1px);
}

.gh-feature-text {
  text-align: justify;
}
/* =========================================
   FULL COMPREHENSIVE RESPONSIVE DESIGN & 120% ZOOM BREAKPOINTS
   ========================================= */

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px !important;
  }

  /* Header & Navigation */
  nav .inner {
    padding: 12px 20px !important;
  }
  
  .navlinks {
    gap: 14px !important;
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  .navlinks a {
    font-size: 14.5px !important;
    white-space: nowrap;
  }

  /* Intro Section */
  .profile-intro {
    max-width: 100% !important;
  }

  .intro-title {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .intro-description {
    font-size: 18px !important;
    line-height: 26px !important;
  }

  /* Section Headers flex wrap */
  .section-label {
    font-size: 15px !important;
  }
}

@media (max-width: 560px) {
  nav .inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .brand {
    font-size: 15px !important;
  }

  /* Profile Photo Reflow */
  .profile-intro .photo {
    float: none !important;
    margin: 0 0 16px 0 !important;
    width: 100px !important;
    height: 100px !important;
  }

  /* Section headers with buttons */
  div[style*="justify-content: space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .section-header-btn {
    align-self: flex-start !important;
    margin-top: 4px !important;
  }

  /* Voluntariado metrics card */
  .gh-feature-box {
    max-width: 100% !important;
    width: 100% !important;
  }

  .metrics-window {
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Competi��es & Contribui��es rows */
  .comp-row, .contrib-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .comp-row .minimal-icon, .contrib-row .minimal-icon {
    margin-bottom: 4px;
  }

  /* Footer reflow */
  footer .inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .footer-links {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
}

/* Responsive Photo Visibility Fixes */
@media (max-width: 560px) {
  .profile-intro .photo {
    float: right !important;
    display: block !important;
    width: 90px !important;
    height: 90px !important;
    margin-left: 12px !important;
    margin-bottom: 10px !important;
  }
}

/* Volunteering Section Accordion Preview Photo on Mobile */
.accordion-preview {
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  margin-top: 20px;
  width: 100%;
}

.accordion-preview img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.accordion-preview iframe {
  width: 100%;
  max-height: 280px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
}

/* Exact Chip Huyen Photo Float Styling */
.profile-intro .photo {
  float: right !important;
  width: 140px !important;
  height: 140px !important;
  border-radius: 50% !important;
  shape-outside: circle(50%) !important;
  margin-left: 24px !important;
  margin-bottom: 12px !important;
  overflow: hidden !important;
}

.profile-intro .photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}

@media (max-width: 640px) {
  .profile-intro .photo {
    width: 115px !important;
    height: 115px !important;
    margin-left: 16px !important;
    margin-bottom: 8px !important;
  }
}

/* Experi�ncia: Vertical Stacking ONLY on Mobile / Responsive View */
@media (max-width: 560px) {
  #experiencia .minimal-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    padding: 12px 0 !important;
  }

  #experiencia .minimal-left {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
}

/* Featured Repository Card */
.repo-card-featured {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.repo-card-featured:hover {
  border-color: rgba(47, 129, 247, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.repo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.repo-badge-public {
  font-family: 'Consolas', monospace;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.repo-card-title a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-bright);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  word-break: break-word;
}

.repo-card-title a:hover {
  color: #ee5843;
  text-decoration: underline;
}

.repo-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.repo-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.repo-stats-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.repo-stat-item {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.repo-stat-item:hover {
  color: var(--text-bright);
}

.repo-stat-item.star:hover { color: #e3b341; }
.repo-stat-item.fork:hover { color: #2f81f7; }
.repo-stat-item.watch:hover { color: #2ea043; }

.repo-lang-tag {
  font-family: 'Consolas', monospace;
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a13308;
}

@media (max-width: 600px) {
  .repo-card-footer {
    flex-wrap: wrap;
    gap: 10px;
  }
  .repo-stats-group {
    gap: 12px;
  }
  .repo-stat-item {
    font-size: 11px !important;
    gap: 4px !important;
  }
  .repo-stat-item svg {
    width: 12px !important;
    height: 12px !important;
  }
  .repo-lang-tag {
    font-size: 10.5px !important;
    gap: 4px !important;
  }
  .lang-dot {
    width: 7px !important;
    height: 7px !important;
  }
}

/* Repo Card Hover Border Color Override */
.repo-card-featured:hover {
  border-color: #f9594a !important;
}
/* Intro Floating Photos Smooth Keyframes */
@keyframes float-photo {
  0% { transform: translateY(0) rotate(-3deg); opacity: 0; }
  10% { opacity: 0.55; }
  85% { opacity: 0.55; }
  100% { transform: translateY(-700px) rotate(4deg); opacity: 0; }
}

.floating-photo {
  pointer-events: auto !important;
}

.photo-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Remove shadow from profile photo in intro */
.photo,
.profile-intro .photo {
  box-shadow: none !important;
}
.photo::before {
  display: none !important;
}

/* Uniform fixed sizing for intro floating photos */
.floating-photo {
  width: 140px !important;
  height: 95px !important;
}

.floating-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* 4x Smaller Floating Photos Sizing */
.floating-photo {
  width: 50px !important;
  height: 35px !important;
}

/* Tech Stack Badges for Project Cards */
.project-stack-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tech-badge {
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #333333;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.tech-badge:hover {
  background: rgba(249, 89, 74, 0.08);
  border-color: rgba(249, 89, 74, 0.3);
  color: #f9594a;
  transform: translateY(-1px);
}

/* Language Selector Dropdown */
.lang-selector-wrapper {
  position: relative;
  display: inline-block;
  margin-left: 8px;
}

.lang-selector-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #525252;
  padding: 5px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.lang-selector-btn:hover {
  color: #ee5843;
  border-color: rgba(238, 88, 67, 0.3);
  background: rgba(238, 88, 67, 0.06);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 6px;
  min-width: 185px;
  z-index: 1000;
  flex-direction: column;
  gap: 2px;
}

.lang-dropdown.show {
  display: flex;
}

.lang-option {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #525252;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
  transition: all 0.15s ease;
}

.lang-option .lang-code {
  font-family: 'Consolas', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #a1a1a1;
}

.lang-option:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #171717;
}

.lang-option.active {
  background: rgba(238, 88, 67, 0.08);
  color: #ee5843;
}

.lang-option.active .lang-code {
  color: #ee5843;
}

/* Responsive Menu Links Font Size Reduction to 90% */
@media (max-width: 768px) {
  .navlinks a {
    font-size: 14.4px !important;
  }
}

/* ============================================================
   MASTER LANGUAGE DROPDOWN Z-INDEX & OVERLAY FIX
   ============================================================ */
nav {
  z-index: 999999 !important;
  overflow: visible !important;
}

nav .inner {
  z-index: 999999 !important;
  overflow: visible !important;
}

.lang-selector-wrapper {
  position: relative !important;
  z-index: 1000000 !important;
  overflow: visible !important;
}

.lang-dropdown {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  right: 0 !important;
  z-index: 9999999 !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25) !important;
  min-width: 180px !important;
}

.lang-dropdown.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 9999999 !important;
}

/* Absolute top stacking context for nav and lang-dropdown to defeat backdrop-filter stacking */
header.hero, .hero, section, .gh-section {
  position: relative !important;
  z-index: 1 !important;
}

.global-particles, #stars-canvas {
  z-index: 0 !important;
}

.lang-selector-wrapper {
  position: relative !important;
  z-index: 999999999 !important;
}

.lang-dropdown {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  right: 0 !important;
  z-index: 9999999999 !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
}

.lang-dropdown.show {
  display: block !important;
  z-index: 9999999999 !important;
}

/* ============================================================
   PORTAL POSITION FIXED STRATEGY FOR LANG-DROPDOWN
   ============================================================ */
.lang-dropdown {
  position: fixed !important;
  z-index: 99999999 !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25) !important;
  min-width: 180px !important;
}

.lang-dropdown.show {
  display: block !important;
  z-index: 99999999 !important;
}

/* ============================================================
   COMPETIÇÕES — alinhamento responsivo título / badge de ano-local
   (bloco único; substitui as 5+ tentativas conflitantes anteriores)
   ============================================================ */
@media (min-width: 601px) {
  #competicoes .comp-header-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
  }

  #competicoes .comp-date.badge-ano-local {
    margin-left: 0 !important;
  }
}

@media (max-width: 600px) {
  #competicoes .comp-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 14px 0 !important;
    width: 100% !important;
    text-align: left !important;
  }

  #competicoes .comp-row .minimal-icon {
    flex-shrink: 0 !important;
    margin-top: 2px !important;
  }

  #competicoes .comp-row > div:nth-child(2) {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    flex: 1 !important;
    gap: 6px !important;
    width: 100% !important;
  }

  #competicoes .comp-header-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 6px !important;
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  #competicoes .comp-title {
    align-self: flex-start !important;
    margin-left: 0 !important;
    text-align: left !important;
    display: block !important;
    width: 100% !important;
  }

  #competicoes .comp-date {
    align-self: flex-start !important;
    margin-top: 6px !important;
    text-align: left !important;
    display: inline-block !important;
  }

  /* Compensa o padding-left (8px) da "pílula" do badge, para o texto
     "2025" alinhar visualmente com a primeira letra do título quando
     o badge cai para a linha de baixo. */
  #competicoes .comp-date.badge-ano-local {
    margin-left: -8px !important;
  }

  #competicoes .contrib-desc {
    align-self: flex-start !important;
    margin-left: 0 !important;
    text-align: left !important;
    margin-top: 6px !important;
  }
}


/* ============================================================
   VOLUNTARIADO BLOCKQUOTE PULL-QUOTE STYLING
   ============================================================ */
.vol-blockquote {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  line-height: 25px !important;
  font-style: italic !important;
  color: rgb(23, 23, 23) !important;
  margin: 0 0 16px 0 !important;
  border-left: 3px solid #f9594a !important;
  padding-left: 16px !important;
  position: relative !important;
  background: transparent !important;
}

.vol-blockquote::before {
  content: "“";
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 26px;
  line-height: 0;
  color: #f9594a;
  margin-right: 6px;
  vertical-align: -4px;
}

 

/* 2. Em telas largas (desktop), o seletor de idioma fica colado na
      borda direita da TELA INTEIRA (viewport), não na borda do
      container de conteúdo. Em telas estreitas mantém o
      comportamento padrão dentro do fluxo do menu mobile. */
@media (min-width: 769px) {
  .lang-selector-wrapper {
    position: absolute !important;
    right: 32px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important;
    z-index: 1001 !important;
  }
}

/* Reduce menu font size to 80% when scrolling is required in maximum responsiveness */
.navlinks.nav-scrolling-active a,
@media (max-width: 480px) {
  .navlinks a {
    font-size: 12.8px !important; /* 80% of 16px */
  }
}

/* ============================================================
   SECTION TITLES ACCENT ORANGE COLOR OVERRIDE (#ee5843)
   ============================================================ */
.section-label,
h2.section-label,
.gh-header h2,
#experiencia .section-label,
#projetos .section-label,
#contribuicoes .section-label,
#voluntariado .section-label,
#competicoes .section-label {
  color: #ee5843 !important;
}

/* ============================================================
   HAMBURGER MOBILE MENU (3 TRACINHOS) STYLING
   ============================================================ */
.mobile-menu-btn {
  display: none !important;
  background: transparent !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  padding: 5px 8px !important;
  color: #171717 !important;
  cursor: pointer !important;
  transition: background 0.15s ease, border-color 0.15s ease !important;
}

.mobile-menu-btn:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .navlinks {
    display: none !important;
    position: fixed !important;
    top: 60px !important;
    right: 16px !important;
    width: 210px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 12px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2) !important;
    padding: 12px 16px !important;
    flex-direction: column !important;
    gap: 12px !important;
    z-index: 99999999 !important;
  }

  .navlinks.show-mobile {
    display: flex !important;
  }

  .navlinks a {
    font-size: 15px !important;
    color: #171717 !important;
    padding: 4px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  }

  .navlinks a:last-child {
    border-bottom: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none !important;
  }

  .navlinks {
    display: flex !important;
    flex-direction: row !important;
    gap: 22px !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    width: auto !important;
  }
}

/* Guarantee brand, language selector, and hamburger button are on the exact same line on mobile */
@media (max-width: 768px) {
  nav .inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 12px 16px !important;
  }

  .brand {
    font-size: 16px !important;
    margin-right: auto !important;
  }

  .nav-right {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    margin-left: auto !important;
  }
}

/* Responsive reduction to 90% font size for hero contact text */
@media (max-width: 768px) {
  .hero-contact-text,
  p[data-i18n="hero.contact"],
  span[data-i18n="hero.cta"] {
    font-size: 17.1px !important; /* 90% of 19px desktop size */
    line-height: 24.3px !important;
  }
}

/* Guarantee zero horizontal page overflow on real mobile devices */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Force Inter font for hero contact text (non-monospace) */
.hero-contact-text,
p[data-i18n="hero.cta"],
span[data-i18n="hero.cta"] {
  font-family: 'Inter', sans-serif !important;
}

/* Ensure expanded floating photo is always 100% on top of ALL text, headers, and content */
.floating-photo.is-expanded {
  z-index: 999999999 !important;
}

.photo-particles.has-expanded {
  z-index: 999999999 !important;
  overflow: visible !important;
}

/* ============================================================
   GLOBAL PHOTO LIGHTBOX (Body Portal for 100% z-index dominance)
   ============================================================ */
.global-photo-lightbox {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 999999999 !important;
  align-items: center !important;
  justify-content: center !important;
}

.global-photo-lightbox.active {
  display: flex !important;
}

.global-photo-lightbox .lightbox-content {
  position: relative !important;
  max-width: 90vw !important;
  max-height: 85vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.global-photo-lightbox .lightbox-content img {
  max-width: 90vw !important;
  max-height: 85vh !important;
  width: auto !important;
  height: auto !important;
  border-radius: 12px !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  object-fit: contain !important;
}

.global-photo-lightbox .lightbox-close-btn {
  position: absolute !important;
  top: -16px !important;
  right: -16px !important;
  width: 36px !important;
  height: 36px !important;
  background: #ffffff !important;
  color: #171717 !important;
  border: none !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
  z-index: 1000000000 !important;
  transition: transform 0.15s ease !important;
}

.global-photo-lightbox .lightbox-close-btn:hover {
  transform: scale(1.1) !important;
}

/* ============================================================
   STICKY NAVBAR MASTER OVERRIDE (Always visible on scroll)
   ============================================================ */
nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 100000 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(18px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
  border-bottom: 1px solid var(--line) !important;
}

/* Espaçamento no topo do body para o conteúdo não ficar escondido atrás do menu fixo */
body {
  padding-top: 60px !important;
}

/* Premium Glassmorphic Lightbox Navigation Buttons in Accent Orange */
.global-photo-lightbox .lightbox-close-btn {
  position: absolute !important;
  top: -24px !important;
  right: -24px !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(238, 88, 67, 0.85) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 1000000000 !important;
  box-shadow: 0 8px 24px rgba(238, 88, 67, 0.4) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.global-photo-lightbox .lightbox-close-btn:hover {
  background: #ffffff !important;
  color: #ee5843 !important;
  transform: scale(1.1) rotate(90deg) !important;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4) !important;
}

.global-photo-lightbox .lightbox-arrow-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 52px !important;
  height: 52px !important;
  background: rgba(238, 88, 67, 0.85) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 1000000000 !important;
  box-shadow: 0 8px 24px rgba(238, 88, 67, 0.4) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  user-select: none !important;
}

.global-photo-lightbox .lightbox-arrow-btn:hover {
  background: #ffffff !important;
  color: #ee5843 !important;
  transform: translateY(-50%) scale(1.12) !important;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4) !important;
}

.global-photo-lightbox .lightbox-arrow-btn:active {
  transform: translateY(-50%) scale(0.95) !important;
}

.global-photo-lightbox .lightbox-arrow-btn.prev-btn {
  left: -28px !important;
}

.global-photo-lightbox .lightbox-arrow-btn.next-btn {
  right: -28px !important;
}

@media (max-width: 768px) {
  .global-photo-lightbox .lightbox-close-btn {
    top: 12px !important;
    right: 12px !important;
    width: 38px !important;
    height: 38px !important;
  }
  .global-photo-lightbox .lightbox-arrow-btn {
    width: 44px !important;
    height: 44px !important;
  }
  .global-photo-lightbox .lightbox-arrow-btn.prev-btn {
    left: 8px !important;
  }
  .global-photo-lightbox .lightbox-arrow-btn.next-btn {
    right: 8px !important;
  }
}

