/* =====================================================
   josehenriquesa.com — Bold Dark Portfolio v2
   Layout: Jacob-inspired asymmetric design
   ===================================================== */


/* ─── VARIABLES ─────────────────────────────────────── */
:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --card:    #161616;
  --orange:  #FF5C00;
  --orange2: #FF7A1A;
  --white:   #F0EDE8;
  --muted:   #6B6B6B;
  --border:  rgba(255,255,255,0.08);
  --fD: 'Bebas Neue', sans-serif;
  --fB: 'DM Sans', sans-serif;
  --fM: 'Space Mono', monospace;
  --ease: cubic-bezier(0.16,1,0.3,1);
  --ease2: cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--fB);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
::selection { background: var(--orange); color: #000; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
strong { font-weight: 600; color: var(--white); }

/* ─── CURSOR ─────────────────────────────────────────── */
#cur {
  position: fixed;
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease), border-radius .2s;
  mix-blend-mode: difference;
}
body:has(a:hover) #cur,
body:has(button:hover) #cur { width: 44px; height: 44px; }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.ri {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.ri.in { opacity: 1; transform: translateY(0); }

/* ─── NAVIGATION ─────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 56px;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
#nav.sc {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-box {
  width: 40px; height: 40px;
  background: var(--orange);
  color: #000;
  font-family: var(--fD);
  font-size: 16px;
  letter-spacing: 1px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: transform .2s;
}
.logo:hover .logo-box { transform: rotate(-6deg) scale(1.05); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  background: var(--orange);
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,92,0,.4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
}
.burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: all .3s;
}

/* ─── MOBILE OVERLAY ─────────────────────────────────── */
.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(24px);
  z-index: 99;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.mob-overlay.open { opacity: 1; pointer-events: all; }
.mob-close {
  position: absolute; top: 28px; right: 40px;
  background: none; border: none; color: var(--muted);
  font-size: 24px; cursor: none;
  transition: color .2s;
}
.mob-close:hover { color: var(--orange); }
.mob-overlay ul { list-style: none; text-align: center; }
.mob-link {
  font-family: var(--fD);
  font-size: 64px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: color .2s;
}
.mob-link:hover { color: var(--orange); }

/* ─── GLOBAL SECTION ─────────────────────────────────── */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 56px;
}
.section-dark { background: var(--dark); }
.section-label {
  font-family: var(--fM);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.big-title {
  font-family: var(--fD);
  font-size: clamp(54px, 8vw, 110px);
  line-height: .9;
  letter-spacing: .01em;
  margin-bottom: 56px;
  color: var(--white);
}
.stroke-text {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-fill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange);
  color: #000;
  font-weight: 600; font-size: 14px;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-fill:hover {
  background: var(--orange2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,92,0,.4);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 400; font-size: 14px;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 56px 40px;
  width: 100%;
}

/* Hero left */
.hero-left { max-width: 640px; }

.hero-eyebrow {
  font-family: var(--fM);
  font-size: 12px;
  color: var(--orange);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}

.hero-name {
  font-family: var(--fD);
  font-size: clamp(72px, 10vw, 136px);
  line-height: .88;
  letter-spacing: .01em;
  margin-bottom: 28px;
  color: var(--white);
}
.hero-name .line1,
.hero-name .line2 { display: block; }
.hero-name .line3 {
  display: block;
  -webkit-text-stroke: 2.5px var(--white);
  color: transparent;
}

.hero-bio {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

/* Tech badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.badge {
  font-family: var(--fM);
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s;
}
.badge:hover { transform: translateY(-3px); }
.badge-orange { background: var(--orange); color: #000; }
.badge-white  { background: var(--white);  color: #000; }
.badge-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.25); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero right — photo stage */
.hero-right { display: flex; justify-content: center; align-items: flex-end; }

.photo-stage {
  position: relative;
  width: 440px;
  height: 520px;
}

/* Big orange geometric shape */
.shape-bg {
  position: absolute;
  bottom: 0; right: 0;
  width: 320px; height: 380px;
  background: var(--orange);
  border-radius: 220px 220px 0 0;
  z-index: 0;
}

/* Photo frame */
.photo-frame {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 340px;
  height: 440px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(1.1);
}

/* Floating stat chip */
.stat-chip {
  position: absolute;
  top: 48px; right: 0;
  background: var(--white);
  color: #000;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: chipFloat 5s ease-in-out infinite;
}
@keyframes chipFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.stat-num {
  font-family: var(--fD);
  font-size: 40px;
  line-height: 1;
  color: var(--orange);
}
.stat-num span { font-size: 28px; }
.stat-sub {
  font-size: 12px;
  font-weight: 500;
  color: #444;
  line-height: 1.3;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* Location chip */
.loc-chip {
  position: absolute;
  bottom: 24px; left: -12px;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-family: var(--fM);
  padding: 9px 18px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 7px;
  z-index: 2;
  animation: chipFloat 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

/* Hero strip */
.hero-strip {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 56px;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 56px;
}
.strip-num {
  font-family: var(--fD);
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
}
.strip-num em { font-style: normal; font-size: 32px; }
.strip-label {
  font-size: 12px;
  font-family: var(--fM);
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.strip-sep {
  width: 1px; height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── SOBRE ──────────────────────────────────────────── */
#sobre { background: var(--black); }
.sobre-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.sobre-head .big-title { margin-bottom: 0; }
.sobre-body p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }

.edu-row { display: flex; flex-direction: column; gap: 14px; margin: 32px 0; }
.edu-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  transition: border-color .25s;
}
.edu-card:hover { border-color: rgba(255,92,0,.3); }
.edu-card-active { border-color: rgba(255,92,0,.35); }
.edu-logo-box {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--fM);
  font-size: 11px;
  color: var(--white);
}
.edu-logo-box img { width: 40px; height: auto; max-height: 36px; object-fit: contain; }
.igti { font-size: 12px; font-weight: 700; color: var(--orange); }
.edu-card > div:last-child { display: flex; flex-direction: column; gap: 3px; }
.edu-card strong { font-size: 14px; color: var(--white); }
.edu-card span { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.tag-active {
  background: rgba(255,92,0,.15);
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ─── EXPERIÊNCIA ────────────────────────────────────── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.exp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.exp-card:hover { border-color: rgba(255,92,0,.3); transform: translateY(-4px); }
.exp-card:hover::before { transform: scaleX(1); }

.exp-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.exp-company-logo {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.exp-company-logo img { width: 38px; height: auto; max-height: 32px; object-fit: contain; }
.eq-logo  { background: linear-gradient(135deg,#1a7bff,#0050cc); color: #fff; font-family: var(--fD); font-size: 14px; }
.lmf-logo { background: linear-gradient(135deg,#00a870,#006644); color: #fff; font-family: var(--fD); font-size: 14px; }
.gti-logo { background: linear-gradient(135deg,#7c3aed,#4c1d95); color: #fff; font-family: var(--fD); font-size: 14px; }

.exp-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.exp-badge-active { background: rgba(255,92,0,.15); color: var(--orange); }

.exp-num {
  font-family: var(--fD);
  font-size: 52px;
  color: rgba(255,255,255,.06);
  line-height: 1;
  margin: -8px 0 -4px;
}
.exp-card h3 { font-size: 17px; font-weight: 600; color: var(--white); line-height: 1.25; }
.exp-company { font-size: 13px; color: var(--orange); font-family: var(--fM); }
.exp-time { font-size: 12px; color: var(--muted); font-family: var(--fM); }
.exp-desc { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.exp-tags span {
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  transition: border-color .2s, color .2s;
}
.exp-card:hover .exp-tags span { border-color: rgba(255,92,0,.3); color: var(--white); }

/* ─── STACK ──────────────────────────────────────────── */
#stack { background: var(--black); }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.stack-cat {
  font-family: var(--fM);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.stack-items { display: flex; flex-direction: column; gap: 16px; }
.stack-item { display: flex; align-items: center; gap: 12px; }
.si-name { font-size: 14px; color: var(--white); min-width: 120px; }
.si-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  overflow: hidden;
}
.si-fill {
  height: 100%;
  background: linear-gradient(to right, var(--orange), var(--orange2));
  border-radius: 10px;
  width: 0;
  transition: width 1.2s var(--ease);
}
.si-lvl { font-size: 11px; font-family: var(--fM); color: var(--muted); min-width: 60px; text-align: right; }

/* ─── PROJETOS ───────────────────────────────────────── */
.proj-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0;
}
.proj-head .big-title { margin-bottom: 0; }
.proj-head .btn-ghost { flex-shrink: 0; margin-bottom: 10px; }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.proj-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s;
}
.proj-card:hover { border-color: rgba(255,92,0,.3); transform: translateY(-5px); }

.proj-card-featured { grid-column: span 2; }

.proj-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.proj-img-vivo  { background: linear-gradient(135deg, #4a1a7a 0%, #1a0035 100%); }
.proj-img-eq    { background: linear-gradient(135deg, #0a2a5c 0%, #020a1a 100%); }
.proj-img-lmf   { background: linear-gradient(135deg, #0a3a20 0%, #020e08 100%); }
.proj-logo { height: 56px; width: auto; object-fit: contain; }
.proj-img-text {
  font-family: var(--fD);
  font-size: 72px;
  color: rgba(255,255,255,.12);
  letter-spacing: 4px;
}

.proj-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.proj-num {
  font-family: var(--fD);
  font-size: 64px;
  color: rgba(255,255,255,.06);
  line-height: 1;
  position: absolute;
  top: 12px; right: 20px;
}
.proj-img { position: relative; }
.proj-tag {
  font-size: 11px;
  font-family: var(--fM);
  color: var(--orange);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.proj-card h3 { font-size: 20px; font-weight: 600; color: var(--white); }
.proj-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.proj-stack { display: flex; flex-wrap: wrap; gap: 6px; }
.proj-stack span {
  font-size: 11px; color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 100px;
}
.proj-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--orange);
  text-decoration: none;
  transition: gap .2s;
}
.proj-link:hover { gap: 10px; }

/* ─── BLOG ───────────────────────────────────────────── */
#blog { background: var(--black); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.blog-card:hover { border-color: rgba(255,92,0,.3); transform: translateY(-4px); }
.blog-num {
  font-family: var(--fD);
  font-size: 84px;
  color: rgba(255,255,255,.04);
  line-height: 1;
  position: absolute;
  top: 10px; right: 16px;
}
.blog-cat {
  font-size: 11px;
  font-family: var(--fM);
  color: var(--orange);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.blog-card h3 { font-size: 19px; font-weight: 600; color: var(--white); line-height: 1.3; }
.blog-card p  { font-size: 14px; color: var(--muted); line-height: 1.75; flex: 1; }
.blog-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s, gap .2s;
  width: fit-content;
}
.blog-link:hover { color: var(--orange); border-color: var(--orange); gap: 12px; }

/* ─── CONTATO ────────────────────────────────────────── */
#contato { background: var(--dark); }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .big-title { margin-bottom: 20px; }
.contact-left p { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.contact-loc {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--fM);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
}

.contact-right { display: flex; flex-direction: column; gap: 0; padding-top: 8px; }
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: padding-left .25s var(--ease);
}
.contact-item:first-child { border-top: 1px solid var(--border); }
.contact-item:hover { padding-left: 12px; }
.ci-label {
  font-size: 11px;
  font-family: var(--fM);
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ci-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  transition: color .2s;
}
.contact-item:hover .ci-value { color: var(--orange); }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  background: var(--black);
  padding: 36px 56px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
footer p { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 13px; color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

/* ─── FOCUS ──────────────────────────────────────────── */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { order: -1; }
  .photo-stage { width: 340px; height: 400px; }
  .shape-bg { width: 240px; height: 290px; }
  .photo-frame { width: 260px; height: 340px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-card-featured { grid-column: span 2; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  #nav { padding: 18px 28px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .section-wrap { padding: 80px 28px; }
  .hero-wrap { padding: 40px 28px 20px; }
  .hero-strip { padding: 24px 28px; flex-wrap: wrap; gap: 20px; }
  .strip-item { padding: 0 20px; }
  .strip-sep { display: none; }
  .exp-grid, .stack-grid, .proj-grid, .blog-grid { grid-template-columns: 1fr; }
  .proj-card-featured { grid-column: span 1; }
  body { cursor: auto; }
  #cur { display: none; }
  .photo-stage { width: 280px; height: 340px; }
  .shape-bg { width: 200px; height: 250px; }
  .photo-frame { width: 210px; height: 280px; }
  footer { padding: 28px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 72px; }
  .big-title { font-size: 56px; margin-bottom: 32px; }
  .stat-chip { top: 20px; right: -8px; }
  .loc-chip { left: -4px; }
  .hero-btns { flex-direction: column; }
}

/* ── Social icons (nav + footer) ───────────────── */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-soc {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
  flex-shrink: 0;
}
.nav-soc:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,92,0,.08);
}
.footer-soc {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-soc:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,92,0,.08);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links a:not(.footer-soc) {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:not(.footer-soc):hover { color: var(--orange); }

@media (max-width: 900px) {
  .nav-socials { display: none; }
}
