/* estilo geral */
:root{
  
  --bg:#070a12;
  --bg2:#0b0f19;
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.72);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --glass: rgba(255,255,255,.06);
  --glass2: rgba(255,255,255,.04);
  --border: rgba(255,255,255,.12);
  --border2: rgba(255,255,255,.18);
  --accent: rgba(124,58,237,.95);
  --accent2: rgba(59,130,246,.80);
  --green: rgba(34,197,94,.9);
}

*{ box-sizing:border-box;
  margin:0;
  padding:0; }

html{ scroll-behavior:smooth; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  min-height: 100vh;
}

a{ color: inherit;
  text-decoration: none; }

.container{ width: min(1100px, 92%);
  margin: 0 auto; }

/* fundo: canvas e efeitos */
#bg{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: .95;
}

/* estilo geral */
body::before{
  content:"";
  position: fixed;
  inset: -20%;
  z-index: -3;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(124,58,237,.28), transparent 60%),
    radial-gradient(700px 420px at 85% 25%, rgba(59,130,246,.22), transparent 58%),
    radial-gradient(900px 650px at 45% 105%, rgba(34,197,94,.10), transparent 62%),
    linear-gradient(180deg, #070a12, #0b0f19);
  filter: blur(10px);
}

header, main, footer { position: relative;
  z-index: 1; }

/* topo: barra de navegação */
.top{
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* estilo geral */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 22px 0;
}

/* nome/logo: estilo e animação */
.brand{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 18px;
}

/* menu: links e navegação */
.menu{
  display:flex;
  gap: 18px;
  align-items:center;
}

.menu a{
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: .18s ease;
}

.menu a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.menuBtn{
  display:none;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
}

.menu.open{
  display:flex;
  position:absolute;
  right: 4%;
  top: 62px;
  flex-direction: column;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.16);
  padding: 12px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

/* hero: título e destaques */
.hero{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 34px 0 18px;
  align-items: start;
}

/* estilo geral */
.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  width: fit-content;
  font-weight: 800;
  font-size: 12px;
}

/* hero: título e destaques */
.hero h1{
  margin-top: 14px;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -1px;
}

/* estilo geral */
.grad{
  background: linear-gradient(90deg, #a78bfa, #60a5fa, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ctaRow{
  margin-top: 18px;
  width: 100%;
  display: grid;
  grid-template-columns: 220px 260px 260px 1fr;
  gap: 12px;
  align-items: center;
}

.section{ padding: 56px 0; }

.section h2{
  font-size: 26px;
  letter-spacing: -.4px;
}

.sectionLead{
  margin-top: 10px;
  color: var(--muted);
  max-width: 75ch;
}

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

.pill{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124,58,237,.20);
  border: 1px solid rgba(124,58,237,.35);
  color: rgba(234,240,255,.90);
  font-weight: 900;
  font-size: 12px;
}

.contactIcons{
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}


.iconBtn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 28px rgba(124,58,237,.14);
}

.iconBtn svg{
  width: 20px;
  height: 20px;
  fill: rgba(234,240,255,.92);
}

.iconBtn:first-child{
  background: rgba(124,58,237,.16);
  border-color: rgba(124,58,237,.30);
}

.iconBtn:first-child:hover{
  background: rgba(124,58,237,.22);
  border-color: rgba(124,58,237,.42);
}

/* rodapé: layout e links */
.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  margin-top: 20px;
}


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

.aboutLead{ margin-top: 6px;
  max-width: 86ch;
  opacity: .88; }

.aboutTabs,

/* estilo geral */
.skillsTabs{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.aboutTab,
.skillTab{
  text-align: left;
  cursor: pointer;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 14px 14px;
  transition: .14s ease;
  color: rgba(234,240,255,.92);
  position: relative;
}

.aboutTab:hover,
.skillTab:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.22);
}

.tabHead{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tabIco{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.20);
  box-shadow: 0 0 18px rgba(124,58,237,.10);
}

.tabIco svg{
  width: 16px;
  height: 16px;
  fill: rgba(234,240,255,.92);
}

.aboutTab::after,
.skillTab::after{
  content: "＋";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.85);
  font-weight: 950;
  line-height: 1;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transform: rotate(0deg);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.aboutTab:hover::after,
.skillTab:hover::after{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
}

.aboutTab.is-active::after,
.skillTab.is-active::after{
  transform: rotate(45deg);
  background: rgba(124,58,237,.14);
  border-color: rgba(124,58,237,.28);
  box-shadow: 0 0 18px rgba(124,58,237,.14);
}

.aboutPanelWrap,
.skillPanelWrap{
  margin-top: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  overflow: hidden;
  display: none; 
}

.aboutPanel,
.skillPanel{ display: none; }

.aboutPanel.is-open,
.skillPanel.is-open{ display: block; }

.aboutPanelInner,
.skillPanelInner{ padding: 16px 18px; }

.aboutList{
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(234,240,255,.84);
  font-weight: 650;
}

.aboutList li{
  position: relative;
  padding-left: 14px;
}

.aboutList li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(124,58,237,.85);
  box-shadow: 0 0 14px rgba(124,58,237,.22);
}

.skillList{
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(234,240,255,.84);
  font-weight: 650;
}

.skillList li{
  position: relative;
  padding-left: 14px;
}

.skillList li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(59,130,246,.85);
  box-shadow: 0 0 14px rgba(59,130,246,.22);
}

#openResumo,
button.talkDrive2{
  cursor: pointer;
}

/* modal: detalhes do projeto */
.modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
}

.modal.is-open{ display:block; }

.modalOverlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}

.modalCard{
  position: relative;
  width: min(980px, calc(100% - 28px));
  margin: 70px auto;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(20,26,44,.92), rgba(14,18,32,.92));
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  padding: 18px;
}

.modalTop{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 14px;
}

.modalTitle h3{
  margin-top: 8px;
  font-size: 18px;
  letter-spacing: -.2px;
}

.modalTitle p{
  margin-top: 6px;
  color: rgba(234,240,255,.74);
  font-weight: 650;
  max-width: 78ch;
}

.modalRight{
  display:flex;
  gap: 10px;
  align-items:center;
}

/* estilo geral */
.proTag{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(124,58,237,.35);
  background: rgba(124,58,237,.12);
  color: rgba(234,240,255,.9);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .2px;
}

.proStatus{
  display:flex;
  align-items:center;
  gap: 8px;
  color: rgba(234,240,255,.78);
  font-weight: 800;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  white-space: nowrap;
}

.statusDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(34,197,94,.35);
}

/* modal: detalhes do projeto */
.modalClose{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(234,240,255,.92);
  font-weight: 900;
  cursor:pointer;
  transition:.14s ease;
}

.modalClose:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}

.modalActions{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}


/* responsivo: ajustes por tela */
@media (max-width: 900px){.hero h1{ font-size: 36px; }

.menu{ display:none; }

.menuBtn{ display:inline-flex; }

.grid{ grid-template-columns: 1fr; }

/* estilo geral */
.ctaRow{
    grid-template-columns: 1fr;
  }

.aboutTabs, .skillsTabs{
    grid-template-columns: 1fr;
  }

.modalCard{ margin: 40px auto; }

.modalActions{ grid-template-columns: 1fr; }

/* responsivo: ajustes por tela */
}@media (max-width: 1100px){.ctaRow{
    grid-template-columns: 1fr 1fr;
  }


/* modal: detalhes do projeto */
}#resumoModal .modalCardClean,
#materiaisModal .modalCardClean{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(1200px 260px at 20% 0%, rgba(124,58,237,.16), transparent 55%),
    radial-gradient(900px 240px at 90% 10%, rgba(59,130,246,.14), transparent 55%),
    rgba(10, 14, 26, .78);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}

#resumoModal .modalTop,
#materiaisModal .modalTop{
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

#resumoModal .modalMini,
#materiaisModal .modalMini{
  margin-top: 6px;
  font-size: 13px;
  opacity: .75;
  font-weight: 600;
  letter-spacing: .2px;
}

#resumoModal .modalTextBlock{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 78ch;
}

#resumoModal .modalTextBlock p{
  line-height: 1.7;
  font-size: 15px;
  font-weight: 520;
  color: rgba(234,240,255,.90);
}

#resumoModal .modalTextBlock b{
  color: rgba(255,255,255,.98);
  font-weight: 760;
}

#resumoModal .modalActions3{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

#resumoModal a.proBtn.proBtnIcon{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  text-decoration: none;
}

#resumoModal a.proBtn.proBtnIcon:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

#resumoModal a.proBtn.proBtnIcon .ico{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(60px 60px at 30% 30%, rgba(124,58,237,.28), rgba(59,130,246,.10));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.30);
}

#resumoModal a.proBtn.proBtnIcon .ico svg{
  width: 18px;
  height: 18px;
  fill: rgba(240,245,255,.92);
  opacity: .95;
}

#resumoModal a.proBtn.proBtnIcon .label{
  font-weight: 750;
  color: rgba(255,255,255,.95);
  letter-spacing: .2px;
}

#resumoModal a.proBtn.proBtnIcon .hintTag{
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  opacity: .7;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

/* responsivo: ajustes por tela */
@media (max-width: 860px){#resumoModal .modalActions3{
    grid-template-columns: 1fr;
  }

/* modal: detalhes do projeto */
#resumoModal .modalTextBlock{
    max-width: 100%;
  }

}#resumoModal a.proBtn.proBtnIcon .ico{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(70px 70px at 30% 30%, rgba(124,58,237,.38), rgba(59,130,246,.14));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 14px 30px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06);
}

#resumoModal a.proBtn.proBtnIcon .ico svg{
  width: 18px;
  height: 18px;
  fill: rgba(250,252,255,.96);
}

/* estilo geral */
.accItem{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}

/* botões: aparência e interação resumo profissional */
.accBtn{
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
}

/* estilo geral */
.accItem:hover .accIcon{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.18);
}

.accPanel{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.accPanelInner{
  overflow: hidden;
  padding: 0 18px;
}

.accPanelInner p{
  margin: 0;
  padding: 0 0 16px 0;
  color: rgba(234,240,255,.88);
  line-height: 1.7;
  font-weight: 520;
  opacity: .92;
}

.accItem.open .accPanel{
  grid-template-rows: 1fr;
}

.accItem.open .accIcon{
  transform: rotate(45deg);
}

.xpList{
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.xpItem{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(700px 240px at 15% 0%, rgba(124,58,237,.12), transparent 60%),
    rgba(255,255,255,.04);
  box-shadow:
    0 18px 40px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}

/* estilo geral */
.xpLeft{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.xpTop{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.xpRole{
  font-weight: 900;
  color: rgba(255,255,255,.96);
  letter-spacing: .2px;
  font-size: 15px;
}

.xpTag{
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  opacity: .9;
}

.xpToggle{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  flex: 0 0 auto;
}

.xpToggle svg{
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.88);
}

.xpItem:hover .xpToggle{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-1px);
}

.xpItem.open .xpToggle{
  transform: rotate(180deg);
}

.xpPanel{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.xpItem.open .xpPanel{
  grid-template-rows: 1fr;
}

.xpInner{
  overflow: hidden;
  padding: 0 18px 18px 18px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease;
}

.xpItem.open .xpInner{
  opacity: 1;
  transform: translateY(0);
}

.xpInner p{
  margin: 10px 0 0 0;
  line-height: 1.75;
  font-size: 14.5px;
  color: rgba(234,240,255,.90);
}

/* estilo geral */
.xpLeft{
  gap: 4px; 
}

.xpIco{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background:
    radial-gradient(80px 80px at 30% 30%, rgba(124,58,237,.38), rgba(59,130,246,.16));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 16px 34px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.xpIco svg{
  width: 22px;
  height: 22px;
  color: rgba(250,252,255,.95);
}

.xpRole{
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .2px;
}

.xpTag{
  opacity: .85;
  background: rgba(255,255,255,.035);
}

.xpToggle{
  width: 38px;
  height: 38px;
  border-radius: 14px;
}

.xpList{
  gap: 12px;
}

.xpItem{
  border-radius: 16px;
}

/* estilo geral */
.xpIco{
  width: 34px !important;
  height: 34px !important;
  border-radius: 12px !important;
  box-shadow:
    0 10px 22px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
}

.xpIco svg{
  width: 18px !important;
  height: 18px !important;
}

.xpRole{
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 1.2;
}

.xpLeft{
  gap: 0 !important;
  min-width: 0;
}

.xpTop{
  gap: 10px;
}

.xpTag{
  font-size: 11px !important;
  padding: 5px 9px !important;
  opacity: .80;
}

.xpToggle{
  width: 32px !important;
  height: 32px !important;
  border-radius: 12px !important;
}

.xpInner{
  padding: 0 14px 12px 14px !important;
}

.xpInner p{
  font-size: 14px !important;
  margin-top: 8px !important;
  line-height: 1.7 !important;
}

/* === botões e interações: Tela contato da página principal === */
.iconBtn{
  --c: 124 58 237;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(160px 110px at 30% 25%, rgba(var(--c)/.34), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    rgba(255,255,255,.03);
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.07),
    0 0 0 1px rgba(var(--c)/.08),
    0 0 24px rgba(var(--c)/.16);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

/* === Mantém a cor quando passa a seta por cima === */
.iconBtn:hover{
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(var(--c)/.72);
  background:
    radial-gradient(180px 130px at 30% 25%, rgba(var(--c)/.55), rgba(0,0,0,0) 62%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    rgba(255,255,255,.035);
  box-shadow:
    0 26px 55px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.09),
    0 0 0 3px rgba(var(--c)/.14),
    0 0 34px rgba(var(--c)/.28),
    0 0 70px rgba(var(--c)/.18);
}

/* icone email */
.iconBtn.is-mail{ --c: 99 102 241; }
/* icone whatsapp */
.iconBtn.is-wpp { --c: 34 197 94; }
/* icone instagram */
.iconBtn.is-ig  { --c: 236 72 153; }

/* estilo geral dos botões*/
.talkDrive2{
  --c: 0 195 255;
  --p: 124 58 237;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.96);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid rgba(var(--c)/.28);
  background:
    radial-gradient(140px 70px at 22% 30%, rgba(var(--p)/.30), rgba(0,0,0,0) 60%),
    radial-gradient(180px 100px at 80% 120%, rgba(var(--c)/.22), rgba(0,0,0,0) 65%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)),
    rgba(10, 18, 40, .55);
  box-shadow:
    0 24px 60px rgba(0,0,0,.45),
    0 0 0 3px rgba(var(--c)/.08),
    0 0 34px rgba(var(--c)/.12),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.talkDrive2::before{
  content:"";
  position: absolute;
  inset: 0;
  width: 55%;
  border-radius: inherit;
  background: linear-gradient(90deg,
    rgba(0,0,0,0),
    rgba(var(--c)/.22),
    rgba(var(--p)/.18),
    rgba(0,0,0,0)
  );
  transform: translateX(-130%);
  opacity: 0;
  filter: blur(1px);
  pointer-events: none;
}

.talkDrive2:hover::before{
  opacity: .7;
  animation: talkDrive2Sweep 1.1s ease-in-out infinite;
}

@keyframes talkDrive2Sweep{
  0%   { transform: translateX(-130%);
  opacity: 0; }

15%  { opacity: .7; }

55%  { transform: translateX(55%);
  opacity: .7; }

80%  { opacity: 0; }

100% { transform: translateX(55%);
  opacity: 0; }

}

/* === Botão fale comigo designer === */
/* icone telefone do fale "fale comigo" */
.talkDrive2__icon{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(90px 50px at 30% 25%, rgba(var(--c)/.25), rgba(0,0,0,0) 65%),
    rgba(255,255,255,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
}

.talkDrive2__icon svg{
  width: 32px;
  height: 18px;
  fill: rgba(255,255,255,.92);
  filter: drop-shadow(0 0 12px rgba(var(--c)/.18));
}

.talkDrive2__text{
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.talkDrive2__lane{
  position: relative;
  width: 150px;
  height: 36px;
  border-radius: 999px;
  display: block;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  z-index: 1;
}

.talkDrive2__dock{
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
}

.talkDrive2__dock svg,
.talkDrive2__fly svg{
  width: 16px;
  height: 16px;
  fill: none;
  stroke: rgba(255,255,255,.92);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.talkDrive2__fly{
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  opacity: 0; 
}

.talkDrive2:hover .talkDrive2__fly{
  opacity: 1;
  animation: flyArrow 1.1s ease-in-out infinite;
  filter: drop-shadow(0 0 14px rgba(var(--c)/.22));
}

@keyframes flyArrow{
  0%   { left: 8px;
  opacity: .0; }

15%  { opacity: 1; }

55%  { left: calc(100% - 38px);
  opacity: 1; }

80%  { opacity: .0; }

100% { left: calc(100% - 38px);
  opacity: 0; }

}.talkDrive2:hover .talkDrive2__dock{
  border-color: rgba(var(--c)/.30);
  box-shadow:
    0 0 0 3px rgba(var(--c)/.10),
    0 0 26px rgba(var(--c)/.14),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.talkDrive2:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(var(--p)/.18),
    0 0 26px rgba(var(--p)/.16);
}

/* responsivo: ajustes por tela */
@media (prefers-reduced-motion: reduce){.talkDrive2:hover::before,
/* estilo geral */
  .talkDrive2:hover .talkDrive2__fly{
    animation: none !important;
  }

}.ctaRow .talkDrive2--plain{
  height: var(--ctaH, 50px);
  min-height: var(--ctaH, 50px);
  padding: 30.9px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ctaRow .ctaPrime{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(120, 220, 255, .35);
  box-shadow:
    0 0 0 3px rgba(70, 200, 255, .10),
    0 18px 60px rgba(40, 140, 255, .18);
  background:
    radial-gradient(120px 60px at 20% 30%, rgba(120, 80, 255, .55), rgba(0,0,0,0) 65%),
    radial-gradient(140px 70px at 80% 60%, rgba(60, 220, 200, .40), rgba(0,0,0,0) 60%),
    linear-gradient(120deg, rgba(120,80,255,.60), rgba(40,140,255,.55), rgba(60,220,200,.35));
  background-size: 200% 200%;
  animation: ctaPrimeFlow 4.6s ease-in-out infinite;
}

.ctaRow .ctaPrime::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.14) 35%,
    rgba(255,255,255,.28) 50%,
    rgba(255,255,255,.14) 65%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-120%);
  animation: ctaPrimeScan 2.6s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events:none;
  z-index:0;
}

.ctaRow .ctaPrime::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  box-shadow:
    0 0 0 1px rgba(120,220,255,.22),
    0 0 26px rgba(120,220,255,.20),
    0 0 54px rgba(120,80,255,.12);
  opacity:.9;
  animation: ctaPrimePulse 2.8s ease-in-out infinite;
  pointer-events:none;
  z-index:0;
}

.ctaRow .ctaPrime .talkDrive2__text{
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: .2px;
  text-shadow: 0 0 18px rgba(120,220,255,.12);
}

.ctaRow .ctaPrime:hover{
  transform: translateY(-1px);
  box-shadow:
    0 0 0 3px rgba(70, 200, 255, .14),
    0 22px 70px rgba(40, 140, 255, .22);
}

.ctaRow .ctaPrime:active{
  transform: translateY(0px);
}

@keyframes ctaPrimeFlow{
  0%   { background-position: 0% 50%; }

50%  { background-position: 100% 50%; }

100% { background-position: 0% 50%; }

}@keyframes ctaPrimeScan{
  0%   { transform: translateX(-120%);
  opacity: 0; }

20%  { opacity: .9; }

55%  { transform: translateX(120%);
  opacity: .9; }

70%  { opacity: 0; }

100% { transform: translateX(120%);
  opacity: 0; }

}@keyframes ctaPrimePulse{
  0%,100% { opacity: .70;
  filter: saturate(1.0); }

50%     { opacity: 1.0;
  filter: saturate(1.35); }

}@media (prefers-reduced-motion: reduce){.ctaRow .ctaPrime,
  .ctaRow .ctaPrime::before,
  .ctaRow .ctaPrime::after{
    animation: none !important;
  }

}.matCard{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}

.matCard.isOpen .matChevron{
  transform: rotate(45deg);
  border-color: rgba(var(--p)/.35);
}

.matCard:hover{
  border-color: rgba(var(--p)/.22);
  background: rgba(255,255,255,.035);
}

.matCard{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 10px 30px rgba(0,0,0,.25);
  overflow: hidden;
}

.matTop{
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px;
}

.matLeft{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.matIcon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(90px 60px at 30% 20%, rgba(var(--p)/.22), rgba(0,0,0,0) 65%),
    rgba(255,255,255,.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 12px 30px rgba(0,0,0,.25);
}

.matIcon svg{
  width: 22px;
  height: 22px;
  fill: rgba(255,255,255,.85);
  filter: drop-shadow(0 0 14px rgba(var(--p)/.14));
}

.matTitleBox{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.matName{
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.matRight{
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.matToggle{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .22s ease, border-color .22s ease;
}

.matPanel{
  padding: 0 16px;              
  display: grid;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  pointer-events: none;         
  transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
}

.matCard.isOpen .matPanel{
  padding: 0 16px 16px 16px;   
  pointer-events: auto;        
}

.matAction{
  height: 48px;
  border-radius: 16px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

.matAction:hover{
  transform: translateY(-1px);
  border-color: rgba(var(--p)/.35);
  background: rgba(var(--p)/.10);
}

.matActionTitle{
  font-weight: 800;
  font-size: 14px;
}

.matCard.isOpen .matPanel{
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
}

.matCard.isOpen .matToggle{
  transform: rotate(45deg);
  border-color: rgba(var(--p)/.35);
}

.matCard:hover{
  border-color: rgba(var(--p)/.22);
  background: rgba(255,255,255,.035);
}

.pdfIcon{
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

.pdfIcon svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255,255,255,.92);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* responsivo: ajustes por tela */
@media (max-width: 900px){}

/* fundo: canvas e efeitos */
#bgNet{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

html, body { overflow-x: hidden; }

body { overflow-y: auto; }

body.homePage { height: 100vh;
  overflow: hidden; }

/* estilo geral */
.homeWrap{
  width: min(1100px, 92%);
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 0;
}

/* hero: título e destaques */
.heroX{
  width: 100%;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 26px;
  align-items: center;
}

.heroX__title{
  margin-top: 14px;
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: -1px;
}

.heroX__name{
  background: linear-gradient(90deg, #a78bfa, #60a5fa, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 950;
}

.heroX__role{
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
  color: rgba(234,240,255,.82);
  font-weight: 850;
  letter-spacing: .2px;
}

/* estilo geral */
.ctaPulse{
  margin-top: 18px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(255,255,255,.96);
  font-weight: 950;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(120px 70px at 20% 20%, rgba(124,58,237,.55), rgba(0,0,0,0) 60%),
    radial-gradient(140px 90px at 80% 120%, rgba(59,130,246,.45), rgba(0,0,0,0) 65%),
    linear-gradient(135deg, rgba(124,58,237,.85), rgba(59,130,246,.70));
  box-shadow:
    0 22px 60px rgba(0,0,0,.50),
    0 0 0 3px rgba(59,130,246,.10);
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}

.ctaPulse::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.16) 35%,
    rgba(255,255,255,.28) 50%,
    rgba(255,255,255,.16) 65%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-120%);
  animation: ctaScan 2.8s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events:none;
}

.ctaPulse:hover{
  transform: translateY(-2px);
  box-shadow:
    0 26px 70px rgba(0,0,0,.58),
    0 0 0 4px rgba(124,58,237,.14),
    0 0 34px rgba(59,130,246,.20);
}

.ctaPulse__arrow{
  font-size: 18px;
  transform: translateY(-1px);
  opacity: .95;
}

@keyframes ctaScan{
  0%   { transform: translateX(-120%);
  opacity: 0; }

15%  { opacity: .9; }

55%  { transform: translateX(120%);
  opacity: .9; }

75%  { opacity: 0; }

100% { transform: translateX(120%);
  opacity: 0; }

/* hero: título e destaques */
}.heroX__right{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* estilo geral */
.photoFrameX{
  width: 380px;
  aspect-ratio: 1 / 1;
  position: relative;
  transform: rotate(10deg);
  transition: transform .22s ease;
}

.photoFrameX::before{
  content:"";
  position:absolute;
  inset:-22px;
  border-radius: 40px;
  background:
    radial-gradient(260px 180px at 20% 25%, rgba(124,58,237,.30), transparent 62%),
    radial-gradient(260px 180px at 85% 20%, rgba(59,130,246,.24), transparent 62%),
    radial-gradient(300px 240px at 50% 105%, rgba(34,197,94,.10), transparent 70%);
  filter: blur(14px);
  opacity: .95;
  z-index: 0;
  pointer-events:none;
}

.photoFrameX img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  clip-path: polygon(10% 0%, 92% 4%, 100% 22%, 96% 92%, 78% 100%, 8% 96%, 0% 78%, 4% 10%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
  background: rgba(255,255,255,.02);
}

.photoFrameX::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: 34px;
  clip-path: polygon(10% 0%, 92% 4%, 100% 22%, 96% 92%, 78% 100%, 8% 96%, 0% 78%, 4% 10%);
  border: 1.5px solid rgba(124,58,237,.35);
  box-shadow: 0 0 26px rgba(124,58,237,.14);
  z-index: 2;
  pointer-events:none;
}

.photoFrameX:hover{ transform: rotate(7deg) translateY(-2px); }

/* responsivo: ajustes por tela */
@media (max-width: 900px){.heroX{
    grid-template-columns: 1fr;
  gap: 18px;
  }

.heroX__title{ font-size: 38px; }

.photoFrameX{ width: min(320px, 86vw);
  transform: rotate(7deg); }

/* rodapé: layout e links */
}.homeFooter{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(8,10,18,.35);
  backdrop-filter: blur(10px);
}
/* Ajusta tamanho do rodapé da página home e projetos*/
.homeFooter__inner{
  width: min(1100px, 92%);
  margin: 0 auto;
  height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
/* Coloca o estilo da letra do rodapé */
.homeFooter__left{
  justify-self: start;
  color: rgba(234,240,255,.72);
  font-weight: 700;
  font-size: 13px;
}

/* Ajusta texto do lado direito do rodapé */
.homeFooter__right{
  justify-self: end;
  color: rgba(234,240,255,.62);
  font-weight: 700;
  font-size: 13px;
}

/* estilo geral */
.homeWrap{
  padding-bottom: 86px; 
}

@keyframes badgeFlowMove{
  0%   { background-position: 0% 50%; }

50%  { background-position: 100% 50%; }

100% { background-position: 0% 50%; }

}.welcomeFlow{
  font-weight: 1000;
  letter-spacing: -.6px;
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 10px;
  color: transparent;
  background-image: linear-gradient(90deg,
    rgba(167,139,250,1),
    rgba(96,165,250,1),
    rgba(34,197,94,1),
    rgba(96,165,250,1),
    rgba(167,139,250,1)
  );
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter:
    drop-shadow(0 0 14px rgba(124,58,237,.18))
    drop-shadow(0 0 26px rgba(59,130,246,.12));
  animation: welcomeMove 3.2s ease-in-out infinite;
}

@keyframes welcomeMove{
  0%   { background-position: 0% 50%; }

50%  { background-position: 100% 50%; }

100% { background-position: 0% 50%; }

}@media (max-width: 900px){.welcomeFlow{ font-size: 20px; }

/* rodapé: ajusta as posições de dentro dele */
}.homeFooter__mid{
  gap: 56px; 
}

/* estilo geral */
.ctaPulse__arrow{
  display: inline-block;
  margin-left: 2px;
  opacity: .95;
  animation: arrowPing 1.05s ease-in-out infinite;
}

@keyframes arrowPing{
  0%,100% { transform: translateX(0); }

50%     { transform: translateX(7px); }

}.ctaPulse:hover .ctaPulse__arrow{
  animation-duration: .85s;
  opacity: 1;
}

/* responsivo: ajustes por tela */
@media (prefers-reduced-motion: reduce){.ctaPulse__arrow{ animation: none !important; }

/* estilo geral */
}.ctaPulse{
  margin-left: 251px; 
}

/* === designer dos icones do rodapé das páginas === */
.homeFooter .iconBtn,
.footer .iconBtn{
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .9;
  transition: transform .16s ease, opacity .16s ease, filter .16s ease;
}

/* Efeitos visuais atrás dos Icones do rodapé*/
.homeFooter .iconBtn:hover,
.footer .iconBtn:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.homeFooter .iconBtn.is-in:hover,
.footer .iconBtn.is-in:hover{
  filter: drop-shadow(0 0 10px rgba(14,165,233,.55)) drop-shadow(0 0 18px rgba(14,165,233,.25));
}

.homeFooter .iconBtn.is-gh:hover,
.footer .iconBtn.is-gh:hover{
  filter: drop-shadow(0 0 10px rgba(148,163,184,.55)) drop-shadow(0 0 18px rgba(148,163,184,.25));
}

.homeFooter .iconBtn.is-ig:hover,
.footer .iconBtn.is-ig:hover{
  filter: drop-shadow(0 0 10px rgba(236,72,153,.55)) drop-shadow(0 0 18px rgba(236,72,153,.25));
}

/* responsivo: ajustes por tela */
@media (max-width: 900px){.homeFooter__mid{ gap: 34px; }

.homeFooter .iconBtn svg{ width: 24px;
  height: 24px; }

}

/* Rodapé projetos */
.homeFooter,
.homeFooter__bar,
.homeFooter__wrap,

/* Ajusta posição do rodapé na página Home e projetos */
.homeFooter__inner{
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

/* === Estilo da Logo === */
.logoFixa{
  position: fixed;
  top: 18px;
  left: 26px;
  z-index: 9999;
  display: inline-block;
  width: 300px;
  height: auto;
}

.logoFixa img{
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 14px rgba(59,130,246,.35))
    drop-shadow(0 0 26px rgba(124,58,237,.25));
  animation: logoPulse 2.6s ease-in-out infinite;
  transition: transform .18s ease, filter .18s ease;
}

.logoFixa:hover img{
  transform: scale(1.06) rotate(1deg);
  filter:
    drop-shadow(0 0 18px rgba(59,130,246,.55))
    drop-shadow(0 0 34px rgba(124,58,237,.45));
}

@keyframes logoPulse{
  0%, 100%{
    opacity: .92;
  filter:
      drop-shadow(0 0 12px rgba(59,130,246,.30))
      drop-shadow(0 0 22px rgba(124,58,237,.22));
  }

50%{
    opacity: 1;
  filter:
      drop-shadow(0 0 20px rgba(59,130,246,.55))
      drop-shadow(0 0 40px rgba(124,58,237,.40));
  }

/* projetos: cards, filtros e modal */
}.proj{
  width: min(1100px, calc(100% - 64px));
  margin: 0 auto;
  padding: 40px 0 70px;
}

.projTop{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.projSub{
  opacity: .85;
  max-width: 60ch;
  margin: 0;
}

.projActions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* botões: aparência e interação botão voltar para o portfólio página projetos */
.btnNeo, .btnGhost{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btnNeo{
  background: linear-gradient(135deg, rgba(124,92,255,.35), rgba(35,213,171,.22));
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.btnNeo:hover, .btnGhost:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 22px 55px rgba(0,0,0,.42);
}

.btnArrow{
  display: inline-block;
  transition: transform .22s ease;
}

.btnNeo:hover .btnArrow,
.btnGhost:hover .btnArrow{
  transform: translateX(6px);
}

/* projetos: cards, filtros e modal */
.projFilter{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

/* filtro: botões chip */
.chip{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.26);
}

.chip.is-active{
  background: linear-gradient(135deg, rgba(124,92,255,.45), rgba(35,213,171,.26));
  border-color: rgba(255,255,255,.28);
}

/* projetos: cards, filtros e modal */
.projGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* responsivo: ajustes por tela */
@media (max-width: 980px){.projTop{ grid-template-columns: 1fr;
  align-items: start; }

.projActions{ justify-content: flex-start; }

.projGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

}@media (max-width: 640px){.proj{ width: calc(100% - 28px); }

.projGrid{ grid-template-columns: 1fr; }

/* projetos: cards, filtros e modal */
}.projPills{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.projModal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.projModal.is-open{ display: block; }

.projModalBackdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.projModalCard{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(820px, calc(100% - 28px));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(25,28,60,.92), rgba(10,12,30,.92));
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  padding: 18px;
}

.projModalClose{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  color: rgba(255,255,255,.9);
}

.projModalHead{ padding-right: 44px; }

.projModalTag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  margin: 0 0 10px;
  opacity: .9;
}

.projModalTitle{
  margin: 0 0 8px;
  font-size: clamp(20px, 2.2vw, 28px);
}

.projModalDesc{
  margin: 0;
  opacity: .9;
  line-height: 1.55;
}

/* responsivo: ajustes por tela */
@media (max-width: 720px){}

/* projetos: cards, filtros e modal */
.projMetaLabel{
  margin: 0 0 8px;
  opacity: .75;
  font-weight: 800;
}

.projBullets{
  margin: 0;
  padding-left: 18px;
  opacity: .9;
}

.projBullets li{ margin: 6px 0; }

.projModalBtns{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* topo: barra de navegação */
.page-projetos .topo{
  position: relative;
  z-index: 20;
  padding: 22px clamp(16px, 4vw, 40px) 0;
}

/* projetos: cards, filtros e modal */
.page-projetos .nav{
  max-width: 1180px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

/* nome/logo: estilo e animação */
.page-projetos .navBrand{
  font-weight: 700;
  letter-spacing: .2px;
  opacity: .95;
}

/* projetos: cards, filtros e modal */
.page-projetos .navLinks{
  display:flex;
  gap: 22px;
}

.page-projetos .navLinks a{
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  opacity: .75;
  transition: opacity .2s ease, transform .2s ease;
}

.page-projetos .navLinks a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.page-projetos .projCard{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.page-projetos .projCard::before{
  content:"";
  position:absolute;
  inset: -2px;
  background: radial-gradient(600px 220px at 30% 10%, rgba(124,58,237,.20), transparent 60%),
              radial-gradient(520px 220px at 80% 30%, rgba(34,211,238,.16), transparent 55%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.page-projetos .projCard:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.page-projetos .projCard:hover::before{ opacity: 1; }

.page-projetos .projCardHead{
  display:flex;
  justify-content:flex-start;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.page-projetos .projBadge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  opacity: .95;
}

.page-projetos .projName{
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: .2px;
}

.page-projetos .projCardBtns{
  position: relative;
  z-index: 1;
  display:flex;
  justify-content:flex-end;
}

.page-projetos .projDetailBtn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: inherit;
  cursor: pointer;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.page-projetos .projDetailBtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
}

.page-projetos .projDetailBtn .arrow{
  display:inline-block;
  animation: arrowPulse 1.25s ease-in-out infinite;
}

@keyframes arrowPulse{
  0%,100%{ transform: translateX(0);
  opacity: .9; }

50%{ transform: translateX(6px);
  opacity: 1; }

}.page-projetos .projModalBox{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10, 14, 26, .72);
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  overflow: hidden;
  position: relative;
}

.page-projetos .projModalBox::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(680px 260px at 20% 0%, rgba(124,58,237,.25), transparent 60%),
              radial-gradient(680px 260px at 90% 30%, rgba(34,211,238,.20), transparent 55%);
  opacity: .9;
  pointer-events:none;
}

.page-projetos .projModalBox > *{ position: relative;
  z-index: 1; }

.page-projetos .projModalTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.page-projetos .projModalH3{
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: .2px;
  text-transform: uppercase;
  opacity: .8;
}

.page-projetos .projModalBtns{
  display:flex;
  justify-content:flex-end;
  margin-top: 18px;
}

.page-projetos #mGithub{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(90deg, rgba(124,58,237,.30), rgba(34,211,238,.22));
  transition: transform .2s ease, filter .2s ease;
}

.page-projetos #mGithub:hover{
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* rodapé: layout e links */
.page-projetos .footer{
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}

/* responsivo: ajustes por tela */
@media (max-width: 720px){.page-projetos .nav{ flex-direction: column;
  align-items:flex-start; }

.page-projetos .navLinks{ gap: 14px;
  flex-wrap: wrap; }

.page-projetos .projCardBtns{ justify-content:flex-start; }

/* rodapé: layout e links */
}.footer{
  border-top: 1px solid rgba(255,255,255,.08) !important;
  padding: 0 !important;
  height: 66px !important;
  display: flex !important;
  align-items: center !important;
  margin-top: 20px !important;
  background: transparent !important;
}

/* Centraliza os ícones do rodapé */ 
.footerInner{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);

  display: grid;
  grid-template-columns: 1fr auto 1fr; /* esquerda | meio | direita */
  align-items: center;
  gap: 12px;
}

.homeFooter__left{  justify-self: start; }
.homeFooter__mid{   justify-self: center; }
.homeFooter__right{ justify-self: end; text-align: right; }

/* projetos: cards, filtros e modal */
.page-projetos .navLinks a{
  opacity: .9 !important;
  font-weight: 700 !important;
  letter-spacing: .2px !important;
}

.page-projetos .navLinks a:hover{
  opacity: 1 !important;
}

.page-projetos .projModalTag{
  display: none;
}

.page-projetos .projModalSplit{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 0.95fr 18px 1.35fr;
  gap: 16px;
  align-items: start;
}

.page-projetos .projModalCol{
  min-width: 0;
}

.page-projetos .projPills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}

.page-projetos .projPill{
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}

.page-projetos .projPill:hover{
  transform: translateY(-2px);
  border-color: rgba(34,211,238,.35);
  filter: brightness(1.08);
}

.page-projetos #mGithub{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(90deg, rgba(124,58,237,.35), rgba(34,211,238,.28));
  box-shadow:
    0 18px 46px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.06) inset;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.page-projetos #mGithub::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.18) 45%,
    rgba(255,255,255,.28) 50%,
    rgba(255,255,255,.18) 55%,
    transparent 100%
  );
  transform: translateX(-120%);
  z-index: -1;
  animation: btnScan 2.8s ease-in-out infinite;
  opacity: .75;
}

.page-projetos #mGithub::after{
  content:"";
  position:absolute;
  inset:-20px;
  background: radial-gradient(circle at 30% 50%, rgba(34,211,238,.25), transparent 55%),
              radial-gradient(circle at 70% 50%, rgba(124,58,237,.25), transparent 55%);
  z-index:-2;
  filter: blur(14px);
  opacity: .85;
}

@keyframes btnScan{
  0%   { transform: translateX(-120%); }

45%  { transform: translateX(120%); }

100% { transform: translateX(120%); }

}.page-projetos #mGithub:hover{
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.12);
  box-shadow:
    0 22px 60px rgba(0,0,0,.55),
    0 0 22px rgba(34,211,238,.18),
    0 0 28px rgba(124,58,237,.16);
}

/* responsivo: ajustes por tela */
@media (max-width: 820px){.page-projetos .projModalSplit{
    grid-template-columns: 1fr;
  }

/* projetos: cards, filtros e modal */
.page-projetos .projTechLine{
    height: 18px;
  min-height: 18px;
  }

.page-projetos .projTechLine::before{
    inset: -200% -40%;
  transform: rotate(90deg);
  animation: techLineFlowH 2.6s linear infinite;
  }

@keyframes techLineFlowH{
    0%   { transform: translateX(40%) rotate(90deg);
  opacity: .65; }

50%  { opacity: 1; }

100% { transform: translateX(-40%) rotate(90deg);
  opacity: .65; }

}}

/* responsivo: ajustes por tela */
@media (max-width: 720px){#projModal .modalCard{
    padding: 18px;
  max-height: calc(100vh - 90px);
  }

/* projetos: cards, filtros e modal */
#projModal .modalBody{
    max-height: calc(100vh - 220px);
  }

/* estilo geral */
}.titleTech{
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: .5px;
  margin: 0 0 .4rem;
  line-height: 1.12;
  padding: .12em .04em;        
}

.titleTech span{
  display: inline-block;
  background: linear-gradient(90deg, #7c5cff, #2de2e6, #7c5cff);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleFlow 5s ease-in-out infinite;
  text-shadow:
    0 0 18px rgba(124, 92, 255, .25),
    0 0 30px rgba(45, 226, 230, .18);
  position: relative;
}

.titleTech span::after{
  content: "";
  display: block;
  height: 3px;
  margin-top: .25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,92,255,.0), rgba(45,226,230,.85), rgba(124,92,255,.0));
  filter: blur(.2px);
  opacity: .95;
}

@keyframes titleFlow{
  0%{ background-position: 0% 50%; }

50%{ background-position: 100% 50%; }

100%{ background-position: 0% 50%; }

/* projetos: cards, filtros e modal */
}body.page-projetos{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.page-projetos .proj{
  flex: 1;
}

/* rodapé: layout e links */
body.page-projetos .footer{
  margin-top: auto !important;
}

/* projetos: cards, filtros e modal */
.page-projetos .chip{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.page-projetos .chip::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.12),
    rgba(255,255,255,0)
  );
  transform: translateX(-120%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events:none;
}

.page-projetos .chip:hover::before{
  opacity: .9;
  animation: chipScan 1.2s ease-in-out infinite;
}

@keyframes chipScan{
  0%{ transform: translateX(-120%); }

55%{ transform: translateX(120%); }

100%{ transform: translateX(120%); }

}.page-projetos .chip.is-active{
  border-color: rgba(124,58,237,.35);
  box-shadow:
    0 0 0 3px rgba(124,58,237,.10),
    0 18px 40px rgba(0,0,0,.35);
}

.page-projetos .projCard{
  position: relative;
  border-radius: 20px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}

.page-projetos .projCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(260px 220px at var(--mx, 50%) var(--my, 50%),
      rgba(59,130,246,.22),
      rgba(124,58,237,.14),
      rgba(0,0,0,0) 60%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events:none;
}

.page-projetos .projCard::after{
  content:"";
  position:absolute;
  top:-45%;
  left:-65%;
  width:70%;
  height:220%;
  transform: rotate(25deg);
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,.12),
    transparent
  );
  opacity: 0;
  transition: opacity .18s ease, left .65s ease;
  pointer-events:none;
}

.page-projetos .projCard:hover{
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.40);
}

.page-projetos .projCard:hover::before{ opacity: 1; }

.page-projetos .projCard:hover::after{
  opacity: 1;
  left: 140%;
}

.page-projetos .projBadge{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.page-projetos #mTitle{
  position: relative;
  display: inline-block;
  font-weight: 950;
  letter-spacing: -0.3px;
  background: linear-gradient(90deg, #a78bfa, #60a5fa, #22d3ee);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(59,130,246,.12);
  animation: titleFlow 5.6s linear infinite;
}

@keyframes titleFlow{
  0%{ background-position: 0% 50%; }

100%{ background-position: 200% 50%; }

}.page-projetos #mTitle::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,.75), rgba(34,211,238,.65));
  opacity: .8;
  transform-origin: left;
  animation: titleUnderline 2.2s ease-in-out infinite;
}

@keyframes titleUnderline{
  0%,100%{ transform: scaleX(.85); }

50%{ transform: scaleX(1.15); }

/* topo: barra de navegação */
}.page-projetos .top{
  border-bottom: none !important;
}

/* projetos: cards, filtros e modal */
body.page-projetos{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.page-projetos .pageMain{
  flex: 1;
}


/* responsivo: ajustes por tela */
@media (min-width: 901px){
  .topMobile{ display: none !important; }
}

@media (max-width: 900px){
  .topDesktop{ display: none !important; }
}

/* nome/logo: estilo e animação */
.brandTech{
  font-weight: 800;
  letter-spacing: .35px;
  color: rgba(240,245,255,.92);
}

.brandTech .cursor{
  display:inline-block;
  width:10px;
  height:1em;
  margin-left:4px;
  transform: translateY(2px);
  background: rgba(140,255,220,.9);
  box-shadow: 0 0 14px rgba(140,255,220,.45);
  animation: blink 900ms steps(2,end) infinite;
}

@keyframes blink{ 50%{opacity:0;} }

.brandTech.is-done{
  background: linear-gradient(90deg,#7aa8ff,#7df9ff,#8affc1,#7aa8ff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 300% 50%; }
}

/* hero: título e destaques */
.heroType{
  display: inline-block;
  position: relative;
}

.heroType.is-typing::after{
  content:"";
  display:inline-block;
  width: 10px;
  height: 1em;
  margin-left: 6px;
  transform: translateY(2px);
  background: rgba(140,255,220,.9);
  box-shadow: 0 0 14px rgba(140,255,220,.45);
  animation: heroBlink 900ms steps(2,end) infinite;
}

@keyframes heroBlink{ 50%{ opacity:0; } }

/* Alinha os materiais profissionais */
#materiaisModal .matGrid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 900px){
  #materiaisModal .matGrid{
    grid-template-columns: 1fr;
  }
}

/* Materiais Modal - grid igual ao layout original */
#materiaisModal .matGrid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

#materiaisModal .matCard,
#materiaisModal .matTop{
  width: 100%;
}

/* mobile */
@media (max-width: 900px){
  #materiaisModal .matGrid{
    grid-template-columns: 1fr;
  }
}

/* PILL roxo (Dados / Dev / TI) igual ao layout antigo */
#materiaisModal .matTag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124,58,237,.20);
  border: 1px solid rgba(124,58,237,.35);
  color: rgba(234,240,255,.92);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}

/* garante que título + pill fiquem bem alinhados */
#materiaisModal .matLeft{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Ícones PNG dentro do quadradinho */
#materiaisModal .matIcon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

#materiaisModal .matIcon{
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;  /* centraliza */
  overflow: hidden;     /* corta o que passar */
}

 #materiaisModal .matIconImg{
  max-width: 100%;
  max-height: 110%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 10px rgba(124,58,237,.18));
  opacity: .95;
}

/* Botões Currículo/Carta: alinhar texto + ícone */
#materiaisModal .matAction{
  display: flex;
  align-items: center;          /* centraliza na altura */
  gap: 12px;
}

/* joga o ícone pra ponta direita */
#materiaisModal .matAction .matFileImg{
  margin-left: auto;            /* empurra pra direita */
  flex: 0 0 auto;
  align-self: center;           /* garante centro vertical */
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Ajuste de tamanhos incones */  
.iconBtn .iconImg{
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.iconBtn .iconImg{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Imagem do Linkedin / Whatsap */
.iconBtn .iconImg{
  width: 105%;
  height: 105%;
  object-fit: contain;
  display: block;
}

/* Só o Instagram (PNG) */
.iconBtn.is-ig .iconImg{
  width: 55%;
  height: 55%;
  object-fit: contain;
  display: block;
}

/* ===== ÍCONES DO RODAPÉ (só Home + Projetos + Principal) ===== */
body.homePage .homeFooter .iconBtn .iconImg,
body.page-projetos .homeFooter .iconBtn .iconImg{
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* LinkedIn (rodapé) */
body.homePage .homeFooter .iconBtn.is-in .iconImg,
body.page-projetos .homeFooter .iconBtn.is-in .iconImg{
  width: 65px;
  height: 65px;
  transform: translateX(16px);
}

/* GitHub (rodapé) */
body.homePage .homeFooter .iconBtn.is-gh .iconImg,
body.page-projetos .homeFooter .iconBtn.is-gh .iconImg{
  width: 44px;
  height: 44px;
}

/* Instagram (rodapé) */
body.homePage .homeFooter .iconBtn.is-ig .iconImg,
body.page-projetos .homeFooter .iconBtn.is-ig .iconImg{
  width: 28px;
  height: 28px;
}

/* Espaçamento igual (rodapé) */
body.homePage .homeFooter__mid,
body.page-projetos .homeFooter__mid{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

/* Espaçamento igual entre os ícones (Home + Projetos) */
body.homePage .homeFooter__mid,
body.page-projetos .homeFooter__mid{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;            /* aqui controla a distância */
}

/* Ajuste fino: empurra só o PNG do LinkedIn um pouco pra direita */
body.homePage .iconBtn.is-in .iconImg,
body.page-projetos .iconBtn.is-in .iconImg{
  transform: translateX(16px);
}

/* ===== Fale comigo: trilho encolhe junto (só esse botão) ===== */
.talkDrive2--callSmart{
  display: flex;
  align-items: center;
  min-width: 0;             /* permite encolher */
}

.talkDrive2--callSmart .talkDrive2__text{
  flex: 0 0 auto;           /* texto não encolhe */
}

.talkDrive2--callSmart .talkDrive2__lane{
  flex: 1 1 auto;           /* trilho ocupa o resto e encolhe */
  min-width: 0;             
  max-width: 100%;
}

/* garante que o "thumb" do trilho não vaze (se tiver) */
.talkDrive2--callSmart .talkDrive2__thumb,
.talkDrive2--callSmart .talkDrive2__dot,
.talkDrive2--callSmart .talkDrive2__arrow{
  flex: 0 0 auto;
}

/* layout página principal 2x2 */
@media (max-width: 1100px){

  .talkDrive2--smart{
    width: 100%;
    justify-content: space-between;
  }

  .talkDrive2--smart .talkDrive2__lane{
    flex: 1;
    min-width: auto;
  }
}

/* Modal do resumo com Experiência dentro */
#resumoModal .modalCardClean{
  max-height: calc(100vh - 140px);
  overflow: auto;
}

#resumoModal .modalSep{
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 16px 0;
}

/* Contato — mesmo fundo do Resumo */
#contatoModal .modalCardClean{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(1200px 260px at 20% 0%, rgba(124,58,237,.16), transparent 55%),
    radial-gradient(900px 240px at 90% 10%, rgba(59,130,246,.14), transparent 55%),
    rgba(10, 14, 26, .78);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}

#contatoModal .modalTop{
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

#contatoModal .modalMini{
  margin-top: 6px;
  font-size: 13px;
  opacity: .75;
  font-weight: 600;
  letter-spacing: .2px;
}

/* ===== Rodapé: ícones SEM quadrado (só na pagina principal) ===== */
.footer .homeFooter__mid{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px; /* ajuste se quiser */
}

/* tamanho padrão do PNG no rodapé */
.footer .iconBtn .iconImg{
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

/* se quiser tamanhos diferentes por ícone no rodapé */
.footer .iconBtn.is-in .iconImg{ width: 65px; height: 65px; }
.footer .iconBtn.is-gh .iconImg{ width: 44px; height: 44px; }
.footer .iconBtn.is-ig .iconImg{ width: 28px; height: 28px; }

/* Espaçamento só entre os ícones do rodapé (principal) */
body.page-principal .footer .homeFooter__mid{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

/* Empurra só o PNG do LinkedIn */
body.page-principal .footer .iconBtn.is-in .iconImg{
  transform: translateX(16px);
}

body.homePage{
  min-height: 100vh;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

/* === layout do rodapé === */
/* ===== Layout pra footer ser empurrado (zoom / expandir skills) ===== */
body.homePage,
body.page-principal,
body.page-projetos{
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
}

/* o "main" precisa ocupar o espaço pra jogar o footer pra baixo */
body.homePage main,
body.page-principal main{
  flex: 1;
}

body.page-projetos .pageMain{
  flex: 1;
}

/* rodapé sempre no final */
.footer,
.homeFooter{
  margin-top: auto;
}

/* =========================
   SKILLS — ÍCONES (FLUTUANDO)
   ========================= */

.skillList{
  list-style: none;          /* tira o bullet */
  padding: 0;
  margin: 0;
}

.skillItem{
  display: grid;
  grid-template-columns: 22px 1fr; /* coluna do ícone + texto */
  gap: 10px;
  align-items: start;
  padding: 6px 0;
}

/* ícone com animação leve */
.skillIcon{
  /* ajustes globais (padrão) */
  width: var(--i-size, 18px);
  height: var(--i-size, 18px);
  object-fit: contain;
  display: block;

  /* micro ajustes por ícone */
  transform: translateY(var(--i-y, 0px));

  /* animação de flutuar */
  animation: skillFloat var(--i-dur, 3.6s) ease-in-out infinite;
  animation-delay: var(--i-delay, 0s);

  /* melhora “nitidez” em alguns casos */
  image-rendering: auto;
}

@keyframes skillFloat{
  0%, 100% { transform: translateY(calc(var(--i-y, 0px) + 0px)); }
  50%      { transform: translateY(calc(var(--i-y, 0px) - var(--i-float, 3px))); }
}

/* acessibilidade: respeita quem desliga animações */
@media (prefers-reduced-motion: reduce){
  .skillIcon{ animation: none; }
}

/* Skills: manter ícone + texto em UMA linha */
.skillItem{
  display: flex;
  align-items: center;
  gap: 10px;          /* espaço entre ícone e texto */
  padding: 8px 0;     /* mais respiro entre tópicos */
}

/* ícone não encolhe e não empurra o texto pra baixo */
.skillIcon{
  flex: 0 0 auto;
  width: var(--i-size, 18px);
  height: var(--i-size, 18px);
  object-fit: contain;
  display: block;
}

/* =========================
   SKILLS — LISTA (LAYOUT)
   ========================= */

.skillList{
  display: flex;
  flex-direction: column;
  gap: 8px;              /* espaço entre itens (ajuste aqui) */
  margin: 0;
  padding: 0;
  list-style: none;
}

.skillItem{
  display: flex;
  align-items: center;
  gap: 12px;             /* espaço ícone -> texto */
  margin: 0;
  padding: 0;

  /* flutuação do CONJUNTO (ícone + texto) */
  --f-y: 0px;
  --f-float: 4px;
  --f-dur: 4s;
  --f-delay: 0s;

  animation: skillItemFloat var(--f-dur) ease-in-out infinite;
  animation-delay: var(--f-delay);
  will-change: transform;
}

@keyframes skillItemFloat{
  0%, 100% { transform: translateY(var(--f-y)); }
  50%      { transform: translateY(calc(var(--f-y) - var(--f-float))); }
}

/* =========================
   SKILLS — ÍCONE (BASE)
   ========================= */

.skillIcon{
  width: var(--i-size, 44px);   /* tamanho padrão */
  height: var(--i-size, 44px);
  object-fit: contain;
  display: block;
  flex: 0 0 auto;

  /* ícone NÃO anima sozinho (quem anima é o .skillItem) */
  animation: none;
}

/* =========================
   SKILLS — TAMANHO POR ÍCONE
   (tudo 44 por padrão; mude aqui quando precisar)
   ========================= */

.skillIcon.i-avalonia{ --i-size: 44px; }
.skillIcon.i-csharp  { --i-size: 44px; }
.skillIcon.i-dotnet  { --i-size: 44px; }
.skillIcon.i-htmlcss { --i-size: 44px; }
.skillIcon.i-js      { --i-size: 44px; }
.skillIcon.i-python  { --i-size: 44px; }
.skillIcon.i-sql     { --i-size: 44px; }
.skillIcon.i-vba     { --i-size: 44px; }

/* =========================
   SKILLS — COR DO TEXTO POR ÍCONE
   ========================= */

/* Nome com visual "tech": gradiente + leve brilho */
.skillItem .skillName{
  /* fallback se algum browser não suportar */
  color: var(--skill-color, #e9ecff);

  /* gradiente no texto */
  background-image: linear-gradient(
    90deg,
    color-mix(in srgb, var(--skill-color, #e9ecff) 35%, white),
    var(--skill-color, #e9ecff),
    color-mix(in srgb, var(--skill-color, #e9ecff) 35%, black)
  );

  background-size: 200% 100%;
  background-position: 0% 50%;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* “brilho” bem sutil */
  text-shadow: 0 0 10px color-mix(in srgb, var(--skill-color, #e9ecff) 35%, transparent);

  letter-spacing: 0.3px;
}

/* opcional: um micro “shimmer” tecnológico no hover */
.skillItem:hover .skillName{
  animation: techShimmer 1.2s linear infinite;
}

@keyframes techShimmer{
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* cada item define a própria cor */
.skillItem.is-avalonia{ --skill-color: #a855f7; } /* roxo */
.skillItem.is-csharp  { --skill-color: #a78bfa; } /* lilás */
.skillItem.is-dotnet  { --skill-color: #60a5fa; } /* azul */
.skillItem.is-htmlcss { --skill-color: #fb7185; } /* rosado (ajuste se quiser mais laranja/azul) */
.skillItem.is-js      { --skill-color: #f59e0b; } /* laranja */
.skillItem.is-python  { --skill-color: #facc15; } /* amarelo */
.skillItem.is-sql     { --skill-color: #93c5fd; } /* azul claro */
.skillItem.is-vba     { --skill-color: #f97316; } /* laranja */

/* =========================
   SKILLS — LINGUAGENS (3 colunas reservadas)
   4 linhas por coluna
   ========================= */

.skillPanel[data-panel="langs"] .skillList--langs{
  display: grid;

  /* reserva SEMPRE 3 colunas (começo/meio/fim) */
  grid-template-columns: repeat(3, minmax(0, 1fr));

  /* 4 itens por coluna */
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;

  column-gap: 0;     /* sem "buraco" exagerado */
  row-gap: 1px;

  margin: 0;
  padding: 0;
  list-style: none;

  /* deixa tudo alinhado pra esquerda dentro de cada coluna */
  justify-items: start;
  align-items: center;
}

/* garante que o painel não corte colunas */
.skillPanel[data-panel="langs"],
.skillPanel[data-panel="langs"] .skillPanelInner{
  overflow: visible;
}

