
:root{
  --header-h: 88px;
  --bg:#060818;
  --bg2:#0B1020;
  --text:#F2F6FF;
  --muted:rgba(242,246,255,.70);
  --line:rgba(255,255,255,.10);
  --glass:rgba(255,255,255,.05);
  --glass2:rgba(255,255,255,.03);

  --a:#2BE7FF;
  --b:#8B7BFF;

  --shadow: 0 22px 60px rgba(0,0,0,.55);
  --r: 28px;
  --container: 1120px;
}

*{box-sizing:border-box}

/* Skip Link - Accessibility */
.skip-link{
  position:absolute;
  top:-40px;
  left:0;
  background:var(--a);
  color:var(--bg);
  padding:8px 16px;
  text-decoration:none;
  z-index:9999;
  border-radius:0 0 var(--r) 0;
  font-weight:600;
  font-size:14px;
}

.skip-link:focus{
  top:0;
}

html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 540px at 20% 20%, rgba(124,92,255,.20), transparent 60%),
    radial-gradient(880px 520px at 90% 15%, rgba(43,231,198,.14), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
  padding-top: var(--header-h);
}

a{color:inherit;text-decoration:none}
.container{width:min(var(--container),calc(100% - 48px));margin:0 auto}

/* Fundo circuito (sutil) */
.circuit{
  position:fixed;
  inset:-40px;
  width:calc(100% + 80px);
  height:calc(100% + 80px);
  opacity:.55;
  pointer-events:none;
  z-index:-1;
}

/* Header */
.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:50;
  background:rgba(6,8,24,.55);
  backdrop-filter: blur(16px);
  border-bottom:1px solid rgba(255,255,255,.08);
  will-change: transform;
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand__logo{
  width:54px;
  height:54px;
  object-fit:contain;
  filter: drop-shadow(0 0 26px rgba(124,92,255,0.35));
}
.brand__name{
  font-weight:900;
  letter-spacing:.3px;
  line-height:1.0;
}
.brand__sub{
  margin-top:4px;
  font-size:12px;
  font-weight:800;
  color: rgba(242,246,255,.66);
}
.nav{
  display:flex;
  gap:10px;
  padding:10px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.03);
}
.nav a{
  padding:8px 12px;
  border-radius:999px;
  color: rgba(242,246,255,.78);
  font-weight:800;
  font-size:13px;
}
.nav a:hover{background:rgba(255,255,255,.06)}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--text);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.18); }
.btn--primary{
  border:1px solid rgba(124,92,255,.45);
  background: linear-gradient(180deg, rgba(124,92,255,.95), rgba(124,92,255,.55));
  box-shadow: 0 18px 44px rgba(124,92,255,.20);
}
.btn--ghost{ background: rgba(255,255,255,.02); }
.mobile__cta{ margin-top: 6px; }

/* Menu mobile */
.menu{
  display:none;
  width:44px;height:44px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  border-radius:14px;
  padding:10px;
  cursor:pointer;
}
.menu span{
  display:block;
  height:2px;
  width:100%;
  background: rgba(242,246,255,.80);
  margin:6px 0;
  border-radius:2px;
}
.mobile{
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(6,8,24,.78);
  backdrop-filter: blur(16px);
}
.mobile__inner{
  padding:16px 0 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile__link{
  padding:14px 14px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  background: rgba(255,255,255,.03);
  font-weight:900;
  color: rgba(242,246,255,.82);
}

/* Hero */
.hero{ padding: 70px 0 38px; }
.hero__inner{ display:grid; grid-template-columns: 1fr; gap:18px; }
.hero__kicker{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; color: rgba(242,246,255,.72); font-weight:800; font-size:12px; }
.badge{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.hero__title{
  margin:0;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-1.2px;
  max-width: 20ch;
}
.accent{
  background: linear-gradient(90deg, var(--a), var(--b));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__subtitle{
  margin:0;
  color: var(--muted);
  font-size:18px;
  line-height:1.6;
  max-width: 70ch;
}
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 6px; }

/* KPIs */
.kpis{
  margin-top: 8px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.kpi{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:14px;
}
.kpi__value{ font-weight:900; font-size:16px; }
.kpi__label{ margin-top:6px; color: var(--muted); font-size:12px; line-height:1.45; }

/* Sections */
.section{ padding: 56px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head h2{
  margin:0;
  font-size:30px;
  letter-spacing:-.5px;
}
.section__head p{
  margin:10px 0 0;
  color: var(--muted);
  line-height:1.6;
}

/* About (Quem sou) */
.section--about{ padding: 42px 0 30px; }
.about__grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
  align-items: stretch;
}
.about__panel{
  border-radius: var(--r);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(138,107,255,.16), transparent 55%),
    rgba(255,255,255,.03);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.about__kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .35px;
  color: rgba(242,246,255,.72);
  margin-bottom: 10px;
}
.about__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.about__title{
  margin: 0;
  font-size: 22px;
  letter-spacing: -.4px;
}
.about__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.about__tags{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about__panel--stats{
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(43,231,255,.14), transparent 55%),
    rgba(255,255,255,.03);
  display:flex;
  flex-direction: column;
  height: 100%;
}
.aboutStat{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.aboutStat:last-of-type{ border-bottom: 0; }
.aboutStat__value{
  font-weight: 950;
  letter-spacing: -.3px;
}
.aboutStat__label{
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(242,246,255,.70);
}
.about__actions{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}
.about__actions--inline{
  margin-top: 0;
  padding-top: 0;
  flex-shrink: 0;
}
.btn--sm{
  height: 40px !important;
  padding: 0 12px !important;
  font-size: 13px !important;
}
.btn--sm .iconLinkedIn{
  width: 16px !important;
  height: 16px !important;
}
.about__actions .btn{
  height: 48px;
}

@media (max-width: 520px){
  .about__actions{ flex-direction: column; }
  .btn--linkedin{ width: 100%; }
}

/* About (Quem Somos) – extra chips on the right */
.about__mini{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.about__miniTitle{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .35px;
  color: rgba(242,246,255,.72);
  margin-bottom: 10px;
}
.about__miniChips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip--mini{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
  margin-top: 18px;
}
.card{
  border-radius: var(--r);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.card h3{ margin:0 0 8px; font-size:16px; }
.card p{ margin:0 0 12px; color: var(--muted); line-height:1.6; }
.card ul{ margin:0; padding-left: 18px; color: rgba(242,246,255,.82); }
.card li{ margin: 6px 0; }

/* Tech icons */
.iconBadge{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(43,231,255,.28);
  background: radial-gradient(circle at 30% 30%, rgba(43,231,255,.20), rgba(255,255,255,.02));
  box-shadow: 0 0 0 1px rgba(139,123,255,.10), 0 0 28px rgba(43,231,255,.12);
  color: rgba(242,246,255,.92);
  flex: 0 0 auto;
}
.iconBadge svg{ width: 22px; height: 18px; opacity: .95; }
.iconBadge--sm{ width: 40px; height: 40px; border-radius: 14px; }
.iconBadge--sm svg{ width: 20px; height: 20px; }

.card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 8px;
}
.card__top h3{ margin: 0; }

.miniFlow{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin: 10px 0 12px;
}
.miniFlow--bullets{ margin-top: 12px; }
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(242,246,255,.78);
  font-size: 12px;
  font-weight: 850;
}
.chip svg{ width: 16px; height: 16px; opacity: .92; }
.chip--bullet{
  padding: 7px 10px;
  font-weight: 800;
}
.chip--bullet svg{ width: 14px; height: 14px; opacity: .95; }

/* Equal buttons on CTAs */
.contactCard__actions .btn,
.contact__actions .btn{
  flex: 1 1 220px;
  text-align: center;
}

/* Steps */
.steps{
  list-style:none;
  margin: 18px 0 0;
  padding:0;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.step{
  display:flex;
  gap:14px;
  border-radius: var(--r);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 16px;
}
.step__num{
  width:58px;height:58px;
  border-radius:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(124,92,255,.65), rgba(43,231,198,.18));
  border:1px solid rgba(124,92,255,.35);
}
.step__num svg{ width: 20px; height: 20px; opacity: .92; margin-bottom: 2px; }
.step__n{ font-size: 12px; letter-spacing: .5px; opacity: .92; }
.step h3{ margin:0 0 6px; font-size:16px; }
.step p{ margin:0; color: var(--muted); line-height:1.6; }

/* Bullets */
.bullets{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
  margin-top: 18px;
}
.bullet{
  border-radius: var(--r);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(140% 110% at 0% 0%, rgba(43,231,198,.10), transparent 60%),
    rgba(255,255,255,.03);
  padding:16px;
}
.bullet h3{ margin:0 0 8px; font-size:16px; }
.bullet p{ margin:0; color: var(--muted); line-height:1.6; }

.bullet__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 8px;
}
.bullet__top h3{ margin: 0; }

/* Contact */
.section--contact{ padding: 64px 0; }
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.contact__card{
  border-radius: var(--r);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(124,92,255,.14), transparent 55%),
    rgba(255,255,255,.03);
  padding:20px;
  box-shadow: var(--shadow);
}
.contact__grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.contact__item{
  display:flex;
  align-items:center;
  gap: 12px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.contact__meta{ min-width: 0; }
.contact__item:hover{ transform: translateY(-1px); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.16); }
.contact__label{ font-size:12px; color: rgba(242,246,255,.68); font-weight:800; }
.contact__value{ margin-top:6px; font-weight:900; }
.contact__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 16px; }
.muted{ color: var(--muted); margin: 6px 0 0; }

/* Hero terminal */
.terminal{
  width: 100%;
  max-width: 860px;
  margin-top: 6px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(43,231,255,.12);
}
.terminal__bar{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.tDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(242,246,255,.18);
  border: 1px solid rgba(255,255,255,.14);
}
.terminal__title{
  margin-left: auto;
  font-size: 12px;
  font-weight: 850;
  color: rgba(242,246,255,.62);
  letter-spacing: .2px;
}
.terminal__body{
  margin: 0;
  padding: 14px 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(242,246,255,.80);
  overflow: auto;
}
.terminal__body code{ font-family: inherit; }

.aside__box{
  border-radius: var(--r);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.aside__box h3{ margin:0 0 10px; font-size:16px; }
.check{ margin:0; padding-left: 18px; }
.check li{ margin: 8px 0; color: rgba(242,246,255,.82); }

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  background: rgba(6,8,24,.45);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer__brand{ display:flex; align-items:center; gap:10px; }
.footer__logo{ width:34px; height:34px; object-fit:contain; opacity:.95; }
.footer__title{ font-weight:900; }
.footer__subtitle{ font-size:12px; color: var(--muted); margin-top:4px; }
.footer__links{ display:flex; gap:14px; font-weight:900; font-size:13px; color: rgba(242,246,255,.84); }
.footer__links a:hover{ text-decoration: underline; }
.footer__copy{ font-size:12px; color: rgba(242,246,255,.62); }

/* Aviso legal (mais limpo e com "ler mais") */
.footer__legal{
  width:100%;
  margin-top:12px;
  max-width: 980px;
  margin-left:auto;
  margin-right:auto;
}
.footer__legal summary{
  list-style:none;
  cursor:pointer;
  user-select:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background: rgba(255,255,255,.04);
  font-size:12px;
  color: rgba(242,246,255,.74);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer__legal summary:hover{ transform: translateY(-1px); border-color: rgba(25,198,255,.22); }
.footer__legal summary::-webkit-details-marker{ display:none; }
.footer__legal summary::after{
  content: "+";
  font-weight:900;
  opacity:.75;
  margin-left:2px;
}
.footer__legal[open] summary{ background: rgba(25,198,255,.08); border-color: rgba(25,198,255,.22); }
.footer__legal[open] summary::after{ content: "–"; }

.footer__legalLabel{ font-weight:900; }
.footer__legalHint{ color: rgba(242,246,255,.60); font-weight:700; }

.footer__legal p{
  margin: 10px auto 0;
  padding: 0 10px;
  font-size:11px;
  color: rgba(242,246,255,.55);
  line-height:1.6;
  text-align:left;
}

@media (max-width: 740px){
  .footer__legal summary{ justify-content:space-between; }
  .footer__legal p{ text-align:center; }
}

/* Responsive */
@media (max-width: 980px){
  :root{ --header-h: 76px; }
  .nav{ display:none; }
  .menu{ display:block; }
  .kpis{ grid-template-columns: 1fr 1fr; }
  .cards{ grid-template-columns: 1fr 1fr; }
  .bullets{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .contact__grid{ grid-template-columns: 1fr; }
  .about__grid{ grid-template-columns: 1fr; }
  .section--about{ padding: 38px 0 18px; }
  .hero__title{ font-size:44px; }
}
@media (max-width: 520px){
  .kpis{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .bullets{ grid-template-columns: 1fr; }
  .hero__title{ font-size:38px; }
}


/* ===== Tech polish (micro-interactions) ===== */
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

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

/* Subtle float on hero elements */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Gradient shimmer for primary CTA */
.btn--primary{
  position: relative;
  overflow: hidden;
}
.btn--primary::after{
  content:"";
  position:absolute;
  inset:-60% -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.22) 50%, transparent 65%);
  transform: translateX(-60%) rotate(12deg);
  opacity:.0;
  transition: opacity .2s ease;
}
.btn--primary:hover::after{
  opacity:.85;
  animation: shine 1.1s ease forwards;
}
@keyframes shine{
  from { transform: translateX(-70%) rotate(12deg); }
  to   { transform: translateX(70%) rotate(12deg); }
}

/* Glass hover glow */
.card, .kpi, .bullet, .step, .contact__item, .aside__box{
  transition: transform .14s ease, border-color .14s ease, background .14s ease, box-shadow .14s ease;
}
.card:hover, .kpi:hover, .bullet:hover, .step:hover, .aside__box:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
  box-shadow: 0 18px 60px rgba(0,0,0,.30);
}
.contact__item:hover{
  box-shadow: 0 18px 60px rgba(124,92,255,.10);
}

/* Neon underline on nav hover */
.nav a{
  position: relative;
}
.nav a::after{
  content:"";
  position:absolute;
  left:14px; right:14px; bottom:6px;
  height:2px;
  border-radius:2px;
  background: linear-gradient(90deg, var(--a), var(--b));
  opacity:0;
  transform: scaleX(.65);
  transition: opacity .14s ease, transform .14s ease;
}
.nav a:hover::after{
  opacity:.9;
  transform: scaleX(1);
}

/* Circuit subtle motion (very light) */
.circuit{
  transform: translate3d(0,0,0);
  animation: circuitDrift 16s ease-in-out infinite;
}
@keyframes circuitDrift{
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-10px, 6px, 0) scale(1.01); }
}

/* Accent glow on headline */
.hero__title{
  text-shadow: 0 0 22px rgba(124,92,255,.10);
}

/* Slight animated glow for logo */
.brand__logo{
  animation: logoPulse 6s ease-in-out infinite;
}
@keyframes logoPulse{
  0%,100%{ filter: drop-shadow(0 0 22px rgba(124,92,255,0.25)); }
  50%{ filter: drop-shadow(0 0 30px rgba(43,231,198,0.18)); }
}

/* Active nav item */
.nav a.is-active{
  background: rgba(255,255,255,.06);
  border-radius: 999px;
}
.nav a.is-active::after{
  opacity: 1;
  transform: scaleX(1);
}


/* ===== Premium Neon Tech (cyan dominant) ===== */
body::before{
  content:"";
  position:fixed;
  inset:-140px;
  z-index:-3;
  pointer-events:none;
  opacity:.35;
  background-image:
    linear-gradient(rgba(43,231,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,123,255,.10) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(720px 420px at 50% 0%, #000 35%, transparent 72%);
  filter: blur(.25px);
}
.circuit{ opacity:.62; }
.btn--primary{
  box-shadow:
    0 22px 58px rgba(43,231,255,.18),
    0 12px 34px rgba(139,123,255,.10);
}
.btn--primary:hover{
  box-shadow:
    0 26px 70px rgba(43,231,255,.22),
    0 14px 40px rgba(139,123,255,.14);
}
.accent{
  text-shadow:
    0 0 16px rgba(43,231,255,.26),
    0 0 26px rgba(139,123,255,.14);
}
.card, .kpi, .bullet, .step, .contact__item, .aside__box{
  background: rgba(255,255,255,.032);
}
.card:hover, .kpi:hover, .bullet:hover, .step:hover, .aside__box:hover{
  box-shadow:
    0 22px 70px rgba(0,0,0,.32),
    0 0 0 1px rgba(43,231,255,.18),
    0 0 34px rgba(43,231,255,.10);
}
.kpi{ position:relative; overflow:hidden; }
.kpi::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:20px;
  padding:1px;
  background: linear-gradient(120deg, rgba(43,231,255,.45), rgba(139,123,255,.25), rgba(43,231,255,.35));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity:.55;
  pointer-events:none;
}
.kpi:hover::before{ opacity:.85; }


/* ===== Header layout (Option C): logo centered above menu ===== */
.header__inner{
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.brand{
  min-width: unset;
  justify-content: center;
}
.brand__logo{
  width: 88px;
  height: 88px;
}
.brand__text{ text-align:center; }
@media (min-width: 981px){
  .header__inner{ align-items: stretch; }
  .header__row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    width: 100%;
  }
  .header__spacer{ width: 180px; }
}


/* ===== Match chosen template (Neon Premium Tech) ===== */
.header__inner--classic{
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.brand--compact{ min-width: unset; }
.brand__mark{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(43,231,255,.35);
  background: radial-gradient(circle at 30% 30%, rgba(43,231,255,.20), rgba(255,255,255,.02));
  box-shadow: 0 0 0 1px rgba(139,123,255,.10), 0 0 26px rgba(43,231,255,.18);
  overflow:hidden;
}
.brand__mark img{
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: .95;
  filter: drop-shadow(0 0 10px rgba(43,231,255,.25)) brightness(1.1) contrast(1.15);
}
.brand__logo{ display:none !important; } /* use mark instead */
.brand__text{ text-align:left; }

.nav--pill{
  display:flex;
  gap:10px;
  padding:10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  box-shadow: 0 0 0 1px rgba(43,231,255,.06), 0 0 28px rgba(43,231,255,.10);
}

.btn--neon{
  border-color: rgba(43,231,255,.40);
  background: linear-gradient(180deg, rgba(43,231,255,.28), rgba(139,123,255,.18));
  box-shadow: 0 22px 58px rgba(43,231,255,.18), 0 12px 34px rgba(139,123,255,.10);
}
.btn--neon:hover{
  border-color: rgba(43,231,255,.55);
  box-shadow: 0 26px 70px rgba(43,231,255,.22), 0 14px 40px rgba(139,123,255,.14);
}
.btn--neonGhost{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
}
.btn--neonGhost:hover{
  border-color: rgba(43,231,255,.22);
}

/* HERO neon background (lines + subtle noise) */
.hero--neon{
  position:relative;
  padding: 72px 0 28px;
}
.hero__bg{
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 50% 5%, rgba(43,231,255,.22), transparent 62%),
    radial-gradient(900px 520px at 30% 25%, rgba(139,123,255,.12), transparent 64%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
}

.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.06) 0 1px, rgba(255,255,255,0) 1px 10px),
    repeating-linear-gradient(90deg, rgba(43,231,255,.10) 0 1px, rgba(255,255,255,0) 1px 22px),
    radial-gradient(520px 420px at 78% 62%, rgba(139,123,255,.14), transparent 70%);
  mask-image: radial-gradient(620px 520px at 78% 62%, #000 34%, transparent 78%);
}

@media (max-width: 860px){
  .hero__bg::after{
    opacity:.16;
    mask-image: radial-gradient(520px 520px at 70% 72%, #000 32%, transparent 76%);
  }
}
@media (max-width: 620px){
  .hero__bg::after{ opacity: 0; }
}
.hero--neon::before{
  content:"";
  position:absolute;
  inset:-40px;
  z-index:-1;
  opacity:.55;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(43,231,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,231,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(760px 420px at 50% 0%, #000 38%, transparent 72%);
  filter: blur(.2px);
}

/* Emblem ring */
.hero__inner--neon{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 14px;
}
.hero__emblem{
  width: 170px;
  height: 170px;
  position:relative;
  margin-bottom: 6px;
}
.emblem__ring{
  position:absolute;
  inset:0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.0) 58%, rgba(0,0,0,.0) 59%),
    conic-gradient(from 180deg, rgba(43,231,255,.0), rgba(43,231,255,.95), rgba(139,123,255,.55), rgba(43,231,255,.95), rgba(43,231,255,.0));
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 58%, #000 59%);
  mask: radial-gradient(circle at 50% 50%, transparent 58%, #000 59%);
  filter: drop-shadow(0 0 18px rgba(43,231,255,.55)) drop-shadow(0 0 30px rgba(43,231,255,.22));
}
.emblem__core{
  position:absolute;
  inset: 18px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  letter-spacing: .6px;
  font-size: 40px;
  color: rgba(242,246,255,.96);
  background: radial-gradient(circle at 30% 30%, rgba(43,231,255,.18), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 0 0 1px rgba(43,231,255,.10), 0 0 40px rgba(43,231,255,.14);
}

/* Typography */
.hero__title--neon{
  max-width: 22ch;
  font-size: 44px;
  line-height:1.05;
  letter-spacing:-.9px;
  margin:0;
  text-shadow: 0 0 18px rgba(43,231,255,.12);
}
.hero__subtitle--neon{
  max-width: 72ch;
  margin: 0;
  color: rgba(242,246,255,.74);
  font-size: 16px;
  line-height: 1.7;
}

/* Checks */
.hero__checks{
  margin-top: 4px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  color: rgba(242,246,255,.78);
  font-weight: 800;
  font-size: 13px;
}
.checkItem{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-start;
  width: 100%;
}
.checkDot{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(43,231,255,.14);
  border: 1px solid rgba(43,231,255,.28);
  box-shadow: 0 0 18px rgba(43,231,255,.16);
  color: rgba(242,246,255,.95);
  font-weight: 950;
  font-size: 12px;
}

/* Actions */
.hero__actions--neon{
  margin-top: 6px;
}

/* Fade to next section */
.hero__fade{
  margin-top: 12px;
  height: 16px;
  width: 100%;
  max-width: 980px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(43,231,255,.18), transparent);
  opacity: .35;
}

/* Responsive */
@media (max-width: 980px){
  .nav--pill{ display:none; }
  .hero__checks{ grid-template-columns: 1fr; }
  .hero__title--neon{ font-size: 38px; }
  .hero--neon{ padding-top: 52px; }
}/* HERO CTAs (compactos) */
.hero__ctas{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.09); }
.btn--primary{
  background: linear-gradient(90deg, rgba(43,231,255,.22), rgba(139,123,255,.22));
  border-color: rgba(43,231,255,.26);
}
.btn--ghost{ background: rgba(255,255,255,.03); }
.btn--sm{ padding: 10px 14px; border-radius: 12px; font-weight: 700; }

/* Mini-sobre */
.section--aboutMini .about__actions{ margin-top: 14px; }

/* Card CTA */
.contactCard{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  align-items:center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.contactCard__actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Floating WhatsApp */
.wa-float{
  position: fixed;
  transition: transform .18s ease, box-shadow .18s ease;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #25D366;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 14px 36px rgba(0,0,0,.50);
  z-index: 9999;
}
.wa-float svg{ width: 34px; height: 34px; fill: currentColor; }
.wa-float{ color: #fff; }
.wa-float:hover{ transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.52); }
@media (max-width: 520px){ .wa-float{ right: 14px; bottom: 14px; } }
@media print{ .wa-float{ display:none; } }


/* --- About (Quem Sou) refinements --- */
.about__bullets{
  margin: 14px 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: 0.95rem;
  line-height: 1.35;
}
.about__bullets li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.about__bullets li::before{
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(76, 201, 240, .9);
  box-shadow: 0 0 0 3px rgba(76, 201, 240, .18);
  flex: 0 0 10px;
}

/* LinkedIn icon button */
.btn--linkedin{
  width: 56px;
  min-width: 56px;
  padding: 0;
  border-radius: 16px;
  background: #0A66C2;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 30px rgba(0,0,0,.30);
}
.btn--linkedin:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.btn--linkedin:active{
  transform: translateY(0);
  filter: brightness(0.98);
}
.btn--linkedin .iconLinkedIn{
  width: 22px;
  height: 22px;
  fill: #fff;
}
