/*
  Direção de arte Franco Creative.
  Referência de ritmo: grandes cenas, navegação flutuante, luz localizada,
  tipografia dominante e elementos conectados durante o scroll.
*/
:root{
  --scene:#070911;
  --scene-soft:#0d1120;
  --scene-card:rgba(17,21,36,.74);
  --scene-line:rgba(244,241,234,.13);
  --scene-text:#f4f1ea;
  --scene-muted:#aeb5c7;
  --paper-strong:#f7f4ed;
  --blue-glow:rgba(49,92,255,.34);
  --pointer-x:50vw;
  --pointer-y:30vh;
}

html{background:var(--scene)}
body{background:var(--scene);color:var(--scene-text)}
body:before{
  content:"";
  position:fixed;
  z-index:100;
  inset:0;
  pointer-events:none;
  opacity:.16;
  background-image:radial-gradient(circle,rgba(255,255,255,.6) .55px,transparent .7px);
  background-size:5px 5px;
  mix-blend-mode:soft-light;
}
body:after{
  content:"";
  position:fixed;
  z-index:-1;
  inset:0;
  pointer-events:none;
  background:radial-gradient(500px circle at var(--pointer-x) var(--pointer-y),rgba(49,92,255,.08),transparent 72%);
}

.container{width:min(1180px,calc(100% - 48px))}
.section{padding:clamp(6.5rem,10vw,10.5rem) 0}
.section h2{font-size:clamp(3.1rem,6.2vw,6.2rem);line-height:.96;letter-spacing:-.07em}
.section-intro{max-width:940px}
.section-intro>p:not(.eyebrow){font-size:clamp(.98rem,1.35vw,1.13rem);line-height:1.72;max-width:660px}
.eyebrow{letter-spacing:.2em;font-size:.64rem;margin-bottom:1.8rem}
.eyebrow span{width:32px;box-shadow:0 0 16px rgba(49,92,255,.6)}

/* Navegação flutuante, ampla e legível. */
.site-header{
  position:fixed;
  top:18px;
  left:50%;
  width:min(1180px,calc(100% - 48px));
  transform:translateX(-50%);
  z-index:50;
  border:1px solid rgba(255,255,255,.76);
  border-radius:20px;
  background:rgba(247,244,237,.92);
  color:var(--ink);
  box-shadow:0 22px 55px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter:blur(22px) saturate(150%);
  transition:top .4s var(--motion-ease),width .4s var(--motion-ease),background .35s,box-shadow .35s;
}
.site-header.is-scrolled{top:10px;width:min(1080px,calc(100% - 36px));background:rgba(247,244,237,.96);border-color:rgba(255,255,255,.9);box-shadow:0 16px 42px rgba(0,0,0,.28)}
.header-inner{width:100%;min-height:76px;padding:0 16px 0 20px}
.brand{position:relative;width:190px;height:52px;overflow:hidden;flex:0 0 190px}
.brand img{position:absolute;left:50%;top:50%;width:220px;height:220px;max-width:none;object-fit:contain;transform:translate(-50%,-50%) scale(1.15);transition:transform .35s var(--motion-ease)}
.brand:hover{transform:none}.brand:hover img{transform:translate(-50%,-50%) scale(1.19)}
.primary-nav{gap:1.25rem;font-size:.72rem;text-transform:uppercase;letter-spacing:.025em}
.site-header .primary-nav,.site-header .primary-nav>a:not(.button){color:#111318!important;font-weight:800;text-shadow:none}
.primary-nav .button{border-radius:12px;text-transform:none;letter-spacing:0;padding:1rem 1.2rem;background:linear-gradient(112deg,#315cff,#6080ff);box-shadow:0 10px 28px rgba(49,92,255,.3)}

/* Hero: cena única, texto e filme equilibrados. */
.hero{
  min-height:920px;
  padding:clamp(9.5rem,14vw,12.5rem) 0 clamp(7rem,10vw,10rem);
  overflow:hidden;
  color:var(--scene-text);
  background:
    radial-gradient(ellipse 44% 60% at 79% 45%,rgba(49,92,255,.2),transparent 72%),
    radial-gradient(ellipse 36% 40% at 47% 90%,rgba(85,50,190,.16),transparent 76%),
    linear-gradient(145deg,#070815 0%,#090c17 52%,#06070c 100%);
  border-radius:0 0 clamp(42px,7vw,92px) clamp(42px,7vw,92px);
  box-shadow:0 42px 90px rgba(0,0,0,.42);
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:radial-gradient(ellipse at 60% 45%,black 12%,transparent 72%);
}
.hero:after{
  left:auto;
  right:-8%;
  top:14%;
  width:56vw;
  height:72%;
  transform:none;
  border-radius:50%;
  filter:blur(38px);
  opacity:.72;
  background:radial-gradient(ellipse at center,rgba(49,92,255,.27),rgba(49,92,255,.06) 42%,transparent 72%);
}
.hero-layout{width:min(1360px,calc(100% - 64px));grid-template-columns:minmax(0,.88fr) minmax(540px,1.12fr);gap:clamp(3.5rem,6vw,7rem);align-items:center}
.hero-copy{max-width:650px;margin:0;text-align:left}
.hero-copy .eyebrow{justify-content:flex-start;color:#c3cbdd}
.hero h1{max-width:650px;margin:0;font-size:clamp(3.7rem,5.45vw,6.25rem);line-height:.93;letter-spacing:-.075em}
.hero h1 em{display:inline-block;color:#315cff;background:none;background-clip:initial;-webkit-background-clip:initial;text-shadow:none;filter:none}
.hero-text{max-width:570px;margin:2rem 0 2.25rem;color:var(--scene-muted);font-size:1rem;line-height:1.8}
.hero .button-row{justify-content:flex-start;gap:1.1rem}
.hero .button{border-radius:14px;padding:1.15rem 1.45rem;background:linear-gradient(112deg,#315cff,#5476ff);box-shadow:0 15px 36px rgba(49,92,255,.3)}
.hero .text-link{color:var(--scene-text);border-color:rgba(244,241,234,.36)}
.hero-notes{justify-content:flex-start;margin-top:2.4rem;color:#939caf;font-size:.69rem}
.hero-art{padding:0;overflow:visible}
.hero-art:before{inset:50% auto auto 50%;width:115%;height:90%;transform:translate(-50%,-50%);filter:blur(32px);opacity:.8;background:radial-gradient(ellipse,rgba(49,92,255,.25),rgba(85,50,190,.08) 44%,transparent 72%)}
.hero-video-stage{
  aspect-ratio:16/10;
  border-radius:26px;
  clip-path:inset(0 round 26px);
  border:1px solid rgba(255,255,255,.14);
  background:#101526;
  box-shadow:0 48px 110px rgba(0,0,0,.58),0 0 0 10px rgba(255,255,255,.025),0 0 90px rgba(49,92,255,.18);
  transform:perspective(1100px) rotateY(-5deg) rotateX(1.5deg) scale(.985);
  animation:studio-screen-in 1.6s var(--motion-ease-cinematic) .2s both;
}
.hero-video-stage:before{height:2px;background:linear-gradient(90deg,transparent,#315cff,#aebcff,transparent)}
.hero-video-stage:after{background:linear-gradient(180deg,rgba(8,10,18,.18),transparent 18%),linear-gradient(110deg,transparent 36%,rgba(175,193,255,.26) 50%,transparent 64%);background-size:100% 100%,28% 100%}
.hero-video{object-fit:cover}
@keyframes studio-screen-in{0%{opacity:0;transform:perspective(1100px) rotateY(-10deg) rotateX(3deg) translate3d(50px,35px,0) scale(.94);clip-path:inset(46% 0 46% 0 round 26px)}60%{opacity:1}100%{opacity:1;transform:perspective(1100px) rotateY(-5deg) rotateX(1.5deg) translate3d(0,0,0) scale(.985);clip-path:inset(0 round 26px)}}

/* Cena clara sobreposta ao hero. */
.positioning{
  z-index:2;
  margin-top:-54px;
  padding-top:clamp(8rem,12vw,11rem)!important;
  color:var(--ink);
  background:var(--paper-strong)!important;
  border-radius:0 0 clamp(42px,7vw,88px) clamp(42px,7vw,88px);
  box-shadow:0 35px 85px rgba(0,0,0,.3);
  overflow:hidden;
}
.positioning:before{content:"";position:absolute;right:-12%;top:-14%;width:48vw;height:48vw;border-radius:50%;background:radial-gradient(circle,rgba(49,92,255,.1),transparent 68%);pointer-events:none}
.positioning .split-heading{grid-template-columns:76px minmax(0,900px);justify-content:center}
.positioning .split-heading h2{max-width:830px;font-size:clamp(3.2rem,6.1vw,6.1rem)}
.positioning .lead{max-width:720px;font-size:clamp(1.25rem,2.2vw,1.9rem);color:#3f4653}
.positioning-concepts{width:min(980px,calc(100% - 48px));gap:1.25rem;margin-top:4rem}
.positioning-concept{min-height:210px;padding:1.7rem 1.4rem 1.4rem;border:1px solid rgba(17,19,24,.1);border-radius:24px;background:rgba(255,255,255,.46);box-shadow:0 18px 44px rgba(20,23,34,.06);overflow:hidden;transition:transform .55s var(--motion-ease),border-color .4s,box-shadow .55s}
.positioning-concept:before{inset:auto -15% -45% auto;width:150px;height:150px;border:0;border-radius:50%;background:radial-gradient(circle,rgba(49,92,255,.13),transparent 68%);transform:none!important}
.positioning-concept:after{top:1.65rem;left:auto;right:1.45rem;width:7px;height:7px;box-shadow:0 0 0 7px rgba(49,92,255,.08)}
.positioning-concept:hover{transform:translateY(-8px);border-color:rgba(49,92,255,.25);box-shadow:0 28px 58px rgba(20,23,34,.1)}
.concept-motion{z-index:0;left:1.35rem;top:auto;bottom:1.25rem;opacity:.72}
.positioning .concept-motion{display:none}
.positioning-concept>div{position:relative;z-index:1}
.positioning-concept p{font-size:.86rem}
.positioning-closing{max-width:min(650px,calc(100% - 48px));margin:2.5rem auto 0;padding:1.25rem 1.45rem;border:1px solid rgba(49,92,255,.15);border-radius:18px;background:linear-gradient(115deg,rgba(49,92,255,.09),rgba(255,255,255,.5));box-shadow:0 16px 38px rgba(17,19,24,.05)}
.positioning-closing p{font-size:clamp(1rem,1.35vw,1.2rem);line-height:1.48}

/* Problemas: percurso em uma grande cena escura. */
#problemas{z-index:1;margin-top:-72px;padding-top:clamp(10rem,15vw,14rem);background:radial-gradient(ellipse 45% 38% at 22% 60%,rgba(49,92,255,.17),transparent 72%),linear-gradient(150deg,#080a12,#101425 56%,#07080d);overflow:hidden}
#problemas:after{content:"";position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(circle,rgba(255,255,255,.14) .7px,transparent .8px);background-size:22px 22px;mask-image:linear-gradient(130deg,black,transparent 66%);opacity:.22}
#problemas .container{position:relative;z-index:1}
#problemas .section-intro{margin-inline:auto;text-align:center}
#problemas .section-intro .eyebrow{justify-content:center}
#problemas .section-intro>p:not(.eyebrow){margin-inline:auto}
.problem-sequence{max-width:1100px;margin-top:5rem;padding:1.1rem 0}
.problem-sequence:before{left:50%;background:linear-gradient(180deg,transparent,#315cff 8%,rgba(49,92,255,.45) 75%,transparent)!important;box-shadow:0 0 18px rgba(49,92,255,.28)}
.problem-flow-item{border:0!important;min-height:250px;align-items:center}
.problem-flow-item:after{top:50%;width:9px;height:9px;box-shadow:0 0 0 7px #0d1020,0 0 26px rgba(49,92,255,.7)!important}
.problem-flow-content{width:calc(50% - 52px);padding:2rem 2.1rem;border:1px solid rgba(255,255,255,.11);border-radius:22px;background:linear-gradient(145deg,rgba(18,23,40,.84),rgba(9,12,23,.66));box-shadow:0 24px 58px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.035);backdrop-filter:blur(14px);align-self:center}
.problem-flow-content>span{font-size:clamp(2.5rem,4vw,3.8rem);opacity:.95}
.problem-flow-content h3{font-size:clamp(1.55rem,2.3vw,2.15rem)}
.problem-flow-item:nth-child(odd) .problem-flow-content{margin-left:0;transform:none}
.problem-flow-item:nth-child(even) .problem-flow-content{margin-left:auto;transform:none}
html.motion-enabled .problem-sequence[data-motion] .problem-flow-item.problem-motion{opacity:0!important;transform:translate3d(0,34px,0)!important;filter:blur(7px);transition:opacity .65s var(--motion-ease),transform .9s var(--motion-ease-cinematic),filter .65s var(--motion-ease)}
html.motion-enabled .problem-sequence[data-motion] .problem-flow-item.problem-motion.is-problem-visible{opacity:1!important;transform:none!important;filter:none}
.problem-conclusion{width:min(680px,80%);margin:3.6rem auto 0;padding:1.6rem 2rem;text-align:center;border:1px solid rgba(49,92,255,.28);border-radius:18px;background:rgba(49,92,255,.08);box-shadow:0 0 55px rgba(49,92,255,.08)}

/* Sistema: diagrama luminoso, conectado e central. */
#solucoes{background:linear-gradient(180deg,#0b0e19 0%,#111628 100%);overflow:hidden;padding-bottom:clamp(8rem,12vw,12rem)}
#solucoes:before{content:"";position:absolute;left:50%;top:52%;width:780px;height:780px;transform:translate(-50%,-50%);border-radius:50%;background:radial-gradient(circle,rgba(49,92,255,.16),rgba(49,92,255,.03) 38%,transparent 70%);pointer-events:none}
#solucoes .section-intro{margin-inline:auto;text-align:center}
#solucoes .section-intro .eyebrow{justify-content:center}
#solucoes .section-intro>p:not(.eyebrow){margin-inline:auto}
#solucoes .system-diagram{height:760px;margin-top:5rem;display:grid;grid-template-columns:minmax(270px,1fr) minmax(260px,.8fr) minmax(270px,1fr);grid-template-rows:repeat(3,1fr);gap:1.25rem 4.5rem;align-items:center}
#solucoes .system-core{width:236px;height:236px;border-color:rgba(174,188,255,.4);background:radial-gradient(circle at 35% 25%,rgba(75,109,255,.32),rgba(13,17,32,.94) 56%);box-shadow:0 0 0 12px rgba(49,92,255,.04),0 0 0 30px rgba(49,92,255,.025),0 0 90px rgba(49,92,255,.28),0 30px 60px rgba(0,0,0,.38)}
#solucoes .system-core:before{border-color:rgba(174,188,255,.2);box-shadow:0 0 0 7px rgba(13,17,30,.52),0 0 30px rgba(49,92,255,.18)}
#solucoes .system-core span{color:var(--scene-text)}
#solucoes .system-node{position:relative;top:auto;right:auto;bottom:auto;left:auto;width:auto;padding:1.35rem 1.45rem;border:1px solid rgba(255,255,255,.1);border-radius:18px;background:linear-gradient(145deg,rgba(20,25,44,.86),rgba(10,13,24,.74));box-shadow:0 20px 48px rgba(0,0,0,.22);backdrop-filter:blur(12px)}
#solucoes .system-node:before{top:0;left:1.4rem;width:38px;background:var(--blue)}
#solucoes .system-node:after{display:none}
#solucoes .system-node p{font-size:.79rem}
#solucoes .system-node>span{display:block!important;padding:0!important;margin:0 0 .72rem!important;color:#6c8aff}
#solucoes .system-link{display:none}
#solucoes .node-one{grid-column:1;grid-row:1}#solucoes .node-two{grid-column:3;grid-row:1}#solucoes .node-three{grid-column:1;grid-row:2}#solucoes .node-four{grid-column:3;grid-row:2}#solucoes .node-five{grid-column:1;grid-row:3}#solucoes .node-six{grid-column:3;grid-row:3}

/* Comparativo claro, com grandes faixas editoriais. */
.project-types{z-index:2;margin-top:-60px;padding-top:clamp(9rem,13vw,12rem);background:var(--paper-strong)!important;color:var(--ink);border-radius:clamp(42px,7vw,88px) clamp(42px,7vw,88px) 0 0;box-shadow:0 -36px 80px rgba(0,0,0,.34)}
.project-types .split-heading{grid-template-columns:76px minmax(0,900px);justify-content:center;margin-bottom:4.5rem}
.project-types .split-heading h2{max-width:900px}
.solution-paths{border-top:0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.2rem;max-width:1140px}
.solution-path{position:relative;display:flex;flex-direction:column;gap:1.2rem;min-height:490px;padding:2rem;border:1px solid rgba(17,19,24,.11);border-radius:24px;background:linear-gradient(145deg,rgba(255,255,255,.7),rgba(240,237,230,.82));box-shadow:0 20px 50px rgba(17,19,24,.06);overflow:hidden;transition:transform .5s var(--motion-ease),box-shadow .5s,border-color .4s}
.solution-path:before{content:"";position:absolute;right:-45px;bottom:-65px;width:180px;height:180px;border-radius:50%;background:radial-gradient(circle,rgba(49,92,255,.14),transparent 68%)}
.solution-path:hover{transform:translateY(-10px)!important;border-color:rgba(49,92,255,.24);box-shadow:0 32px 70px rgba(17,19,24,.12)}
.path-number{font-size:3.1rem}
.path-main{padding-top:.5rem}.path-main h3{font-size:clamp(1.8rem,2.7vw,2.5rem)}
.path-fit{margin-top:auto;padding-top:1.4rem;border-top:1px solid rgba(17,19,24,.12)}
.path-fit ul{display:grid;gap:.6rem}
.project-types .center-cta{margin-top:2rem;padding:1.5rem;border:1px solid rgba(49,92,255,.14);border-radius:16px;background:rgba(49,92,255,.055)}

/* Processo: grande painel azul-noturno, rota protagonista. */
#processo{background:radial-gradient(ellipse 45% 34% at 18% 68%,rgba(49,92,255,.18),transparent 70%),linear-gradient(145deg,#090c17,#111a32 58%,#080a12);overflow:hidden}
#processo .section-intro{margin-inline:auto;text-align:center}
#processo .section-intro .eyebrow{justify-content:center}
#processo .section-intro>p:not(.eyebrow){margin-inline:auto}
#processo .process-map{height:780px;margin-top:5rem}
#processo .process-step{width:min(330px,32%);padding:1.45rem;border:1px solid rgba(255,255,255,.11);border-radius:20px;background:linear-gradient(145deg,rgba(18,25,44,.84),rgba(9,13,24,.72));box-shadow:0 22px 52px rgba(0,0,0,.24);backdrop-filter:blur(12px)}
#processo .process-step>span{font-size:clamp(2.3rem,3.3vw,3rem)}
#processo .route-base{stroke:rgba(244,241,234,.16);stroke-width:2}
#processo .route-accent{stroke:#5c7cff;stroke-width:3;filter:drop-shadow(0 0 6px rgba(49,92,255,.65))}
#processo .process-route circle{fill:#0d1325;filter:drop-shadow(0 0 5px rgba(49,92,255,.65))}
#processo .process-brand-symbol{width:92px;opacity:.3;filter:drop-shadow(0 0 20px rgba(49,92,255,.35))}

/* Sobre: fotografia como peça editorial. */
.about-section{background:var(--paper-strong)!important;color:var(--ink);overflow:hidden}
.about-section:before{content:"";position:absolute;left:-18%;top:5%;width:55vw;height:55vw;border-radius:50%;background:radial-gradient(circle,rgba(49,92,255,.1),transparent 69%)}
.about-layout{grid-template-columns:minmax(330px,.85fr) minmax(0,1.15fr);gap:clamp(4rem,9vw,8rem)}
.portrait-wrap{max-width:390px}
.portrait-wrap:before{top:24px;left:-24px;border-radius:28px;background:linear-gradient(150deg,#315cff,#17276d);box-shadow:0 30px 70px rgba(49,92,255,.25)}
.portrait-wrap img{border-radius:28px;box-shadow:0 38px 85px rgba(17,19,24,.2)}
.portrait-caption{margin-top:-1px;border-radius:0 0 20px 20px;background:#111522;padding:1.2rem 1.35rem}
.about-copy h2{font-size:clamp(3rem,5.1vw,5rem);line-height:.97}

/* FAQ e fechamento. */
.faq-section{background:#e9e6df!important;color:var(--ink)}
.faq-section .section-intro{margin-inline:auto;text-align:center}.faq-section .eyebrow{justify-content:center}
.faq-list{max-width:980px;margin:4rem auto 0;border-top:0;display:grid;gap:.8rem}
.faq-list details{border:1px solid rgba(17,19,24,.12);border-radius:16px;background:rgba(255,255,255,.38);overflow:hidden;transition:background .3s,border-color .3s,transform .35s var(--motion-ease)}
.faq-list details:hover{background:rgba(255,255,255,.65);border-color:rgba(49,92,255,.22);transform:translateX(5px)}
.faq-list summary{padding:1.45rem 1.3rem}
.faq-list details p{padding:0 3rem 1.5rem 1.3rem}
.final-cta{overflow:hidden;padding:clamp(8rem,13vw,12rem) 0;background:radial-gradient(ellipse 55% 85% at 82% 42%,rgba(49,92,255,.42),transparent 70%),linear-gradient(145deg,#0a0c14,#121a34);border-radius:clamp(42px,7vw,88px) clamp(42px,7vw,88px) 0 0}
.final-cta:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:68px 68px;mask-image:radial-gradient(circle at 75% 50%,black,transparent 72%)}
.final-cta h2{font-size:clamp(3.4rem,6.5vw,6.5rem);line-height:.94;max-width:900px}
.cta-layout{grid-template-columns:1.2fr .8fr;align-items:center}
.cta-actions .button{border-radius:16px;padding:1.2rem 1.5rem}
.site-footer{background:#070910;padding-top:5rem}
.footer-brand{position:relative}.footer-brand img{width:330px;height:112px;object-fit:cover;object-position:center center}

/* Motion de entrada: mais deslocamento, menos blur, ritmo escalonado. */
.reveal{transform:translate3d(0,34px,0);filter:blur(10px);transition-duration:1s}
.reveal.visible{transform:none;filter:none}
html.motion-enabled [data-motion="layer"]{transform:translate3d(0,28px,0) scale(.97);filter:blur(8px);transition-duration:1.15s}
.problem-flow-item,.system-node,.solution-path,.process-step{will-change:transform,opacity}

@media(max-width:1000px){
  .hero{min-height:auto}
  .hero-layout{grid-template-columns:1fr;gap:3.6rem}
  .hero-copy{max-width:900px;margin-inline:auto;text-align:center}
  .hero-copy .eyebrow,.hero .button-row,.hero-notes{justify-content:center}
  .hero h1,.hero-text{margin-inline:auto}
  .hero-art{max-width:900px;margin-inline:auto}
  .solution-paths{grid-template-columns:1fr}
  .solution-path{min-height:0}
  .path-fit{margin-top:1rem}
}

@media(max-width:900px){
  .site-header,.site-header.is-scrolled{top:10px;width:calc(100% - 24px);border-radius:16px}
  .header-inner{min-height:70px;padding-inline:12px}
  .brand{width:165px;height:48px;flex-basis:165px}
  .brand img{width:190px;height:190px}
  .primary-nav{top:78px;left:-1px;right:-1px;border-radius:16px;padding:1rem 1.2rem 1.3rem;background:rgba(247,244,237,.98);color:var(--ink);box-shadow:0 20px 40px rgba(0,0,0,.2)}
  .menu-toggle span:not(.sr-only){background:var(--ink)}
  #solucoes .system-diagram{height:auto}
  #solucoes .system-core{transform:none}
  #solucoes .system-node{width:auto}
  .positioning-concepts{grid-template-columns:1fr}
  .positioning-concept:last-child{grid-column:auto;max-width:none}
  .positioning-concept{min-height:180px}
  .problem-flow-content{width:48%}
  #processo .process-step{width:min(310px,40%)}
}

@media(max-width:600px){
  :root{--gutter:20px}
  body:before{opacity:.1}
  .container{width:calc(100% - 32px)}
  .section{padding:5.7rem 0}
  .section h2{font-size:clamp(2.6rem,12.2vw,4.1rem);line-height:.98}
  .site-header,.site-header.is-scrolled{width:calc(100% - 16px);top:8px}
  .header-inner{min-height:64px}
  .brand{width:145px;height:42px;flex-basis:145px}
  .brand img{width:168px;height:168px}
  .primary-nav{top:71px}
  .hero{padding:8.5rem 0 6.5rem;border-radius:0 0 42px 42px}
  .hero-layout{width:calc(100% - 32px);gap:2.8rem}
  .hero h1{font-size:clamp(3rem,14vw,4.35rem)}
  .hero-text{font-size:.94rem;line-height:1.7}
  .hero .button-row{display:grid;grid-template-columns:1fr;width:100%;gap:.8rem}
  .hero .button,.hero .text-link{width:100%}
  .hero .text-link{padding:1rem;text-align:center;border:1px solid rgba(244,241,234,.18);border-radius:12px}
  .hero-notes{font-size:.65rem;gap:.45rem}
  .hero-video-stage{aspect-ratio:4/3;border-radius:17px;clip-path:inset(0 round 17px);transform:none;animation:studio-screen-mobile 1.35s var(--motion-ease-cinematic) .15s both}
  @keyframes studio-screen-mobile{from{opacity:0;transform:translateY(24px) scale(.95);clip-path:inset(48% 0 48% 0 round 17px)}to{opacity:1;transform:none;clip-path:inset(0 round 17px)}}
  .positioning{margin-top:-34px;padding-top:7.3rem!important;border-radius:0 0 42px 42px}
  .positioning .split-heading,.project-types .split-heading{grid-template-columns:1fr;gap:1rem}
  .positioning-concepts{width:calc(100% - 32px);margin-top:2.8rem}
  .positioning-concept{min-height:0;padding:1.4rem 1.2rem 4.2rem}
  .positioning-closing{padding:1.4rem}
  #problemas{margin-top:-38px;padding-top:8rem}
  #problemas .section-intro{text-align:left}.problem-sequence{padding-left:24px;margin-top:3.3rem}.problem-sequence:before{left:6px}.problem-flow-item{min-height:0;padding-bottom:1.2rem}.problem-flow-item:after{left:2px;top:2.5rem}.problem-flow-content,.problem-flow-item:nth-child(even) .problem-flow-content{width:100%;margin:0;padding:1.35rem;transform:none!important;grid-template-columns:54px minmax(0,1fr)}.problem-flow-content>span{font-size:2.4rem}.problem-flow-content h3{font-size:1.45rem}.problem-conclusion{width:100%;padding:1.25rem;font-size:1.1rem}
  #solucoes .section-intro,#processo .section-intro,.faq-section .section-intro{text-align:left}#solucoes .section-intro .eyebrow,#processo .section-intro .eyebrow,.faq-section .eyebrow{justify-content:flex-start}
  #solucoes .system-diagram{display:grid;grid-template-columns:1fr;grid-template-rows:auto;gap:1.1rem;margin-top:3.5rem}
  #solucoes .system-core{margin-bottom:1.4rem;width:174px;height:174px}
  #solucoes .system-node{padding:1.25rem 1.2rem;border-left:1px solid rgba(255,255,255,.11)}
  #solucoes .node-one,#solucoes .node-two,#solucoes .node-three,#solucoes .node-four,#solucoes .node-five,#solucoes .node-six{grid-column:1;grid-row:auto}
  .project-types{margin-top:-35px;padding-top:7rem;border-radius:42px 42px 0 0}.project-types .split-heading{margin-bottom:2.7rem}
  .solution-paths{display:grid;grid-template-columns:1fr;gap:1rem}.solution-path{padding:1.5rem;min-height:0}.path-number{font-size:2.5rem}.path-main h3{font-size:1.8rem}
  #processo .process-map{height:auto;margin-top:3.4rem;padding-left:22px;gap:1rem}
  #processo .process-step,#processo .step-one,#processo .step-two,#processo .step-three,#processo .step-four,#processo .step-five{width:100%;padding:1.2rem;grid-template-columns:48px minmax(0,1fr)}
  #processo .process-step:before{left:-20px;background:#0d1325}
  .about-layout{grid-template-columns:1fr;gap:4rem}.portrait-wrap{width:calc(100% - 20px);margin-left:20px}.about-copy h2{font-size:clamp(2.7rem,11vw,4rem)}
  .faq-list{margin-top:2.8rem}.faq-list details:hover{transform:none}
  .final-cta{padding:7rem 0;border-radius:42px 42px 0 0}.final-cta h2{font-size:clamp(3rem,13vw,4.5rem)}.cta-layout{grid-template-columns:1fr}
  .footer-brand img{width:285px;height:102px}
}

@media(prefers-reduced-motion:reduce){
  body:after{display:none}
  .hero-video-stage{opacity:1;transform:none;clip-path:none;animation:none}
  .positioning-concept,.solution-path,.faq-list details{transform:none!important}
}

/* Posicionamento: cartões compactos com sequência de leitura. */
.positioning-concepts{align-items:stretch}
.positioning-concept{min-height:178px;padding:1.45rem 1.3rem;overflow:visible}
.concept-next{position:absolute;z-index:3;top:50%;right:-1.45rem;display:grid;place-items:center;width:2.45rem;height:2.45rem;padding:0;transform:translateY(-50%);border:1px solid rgba(49,92,255,.24);border-radius:50%;background:rgba(244,241,234,.9);box-shadow:0 7px 18px rgba(17,19,24,.1);color:var(--blue);font-size:0;line-height:0;text-align:center;opacity:.72;pointer-events:none}.concept-next:before{content:"→";display:block;transform:translateY(-.04em);font:500 1.85rem/1 var(--title)}
html.motion-enabled .positioning-concept:not(.is-in-view) .concept-next{opacity:0}
html.motion-enabled .positioning-concept.is-in-view .concept-next{transition:opacity .42s var(--motion-ease) calc(var(--motion-delay) + 420ms)}
@media(max-width:900px){.positioning-concept{min-height:164px}.concept-next{top:auto;right:auto;bottom:-1.15rem;left:50%;transform:translateX(-50%) rotate(90deg)}}
@media(max-width:600px){.positioning-concepts{gap:2.25rem}.positioning-concept{min-height:164px;padding:1.35rem 1.15rem}.concept-next{bottom:-1.22rem}}

/* Problemas: diagnóstico urgente, sem sair da paleta da marca. */
#problemas{background:radial-gradient(ellipse 46% 34% at 50% 31%,rgba(49,92,255,.2),transparent 72%),radial-gradient(ellipse 34% 30% at 12% 72%,rgba(49,92,255,.16),transparent 75%),linear-gradient(155deg,#05060b 0%,#0b1020 48%,#05060a 100%)}
#problemas:before{content:"";position:absolute;z-index:0;inset:-20% 0;pointer-events:none;background:linear-gradient(180deg,transparent 0%,rgba(49,92,255,.055) 47%,rgba(117,143,255,.18) 50%,rgba(49,92,255,.045) 53%,transparent 100%);transform:translateY(-35%);animation:problem-scan 8s linear infinite}
#problemas .section-intro{max-width:920px}
#problemas .section-intro h2{text-shadow:0 18px 60px rgba(0,0,0,.55)}
#problemas .section-intro .eyebrow{color:#9caeff}
#problemas .section-intro .eyebrow span{position:relative;box-shadow:0 0 18px rgba(49,92,255,.9)}
#problemas .section-intro .eyebrow span:after{content:"";position:absolute;inset:-6px;border:1px solid rgba(49,92,255,.42);border-radius:50%;animation:problem-ping 1.8s ease-out infinite}
.problem-alert{position:relative;display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;gap:1.15rem;width:min(760px,100%);margin:3rem auto 0;padding:1rem 1.25rem;border:1px solid rgba(117,143,255,.32);border-radius:16px;background:linear-gradient(110deg,rgba(49,92,255,.16),rgba(12,16,30,.72) 55%,rgba(49,92,255,.07));box-shadow:0 18px 48px rgba(0,0,0,.28),0 0 60px rgba(49,92,255,.08);overflow:hidden}
.problem-alert:after{content:"";position:absolute;top:0;bottom:0;left:0;width:3px;background:#315cff;box-shadow:0 0 20px rgba(49,92,255,.85)}
.problem-alert-symbol{position:relative;display:grid;place-items:center;width:46px;height:46px;border:1px solid rgba(156,174,255,.48);border-radius:50%;color:#fff;box-shadow:inset 0 0 22px rgba(49,92,255,.2),0 0 22px rgba(49,92,255,.18)}
.problem-alert-symbol i{position:absolute;inset:-1px;border:1px solid rgba(49,92,255,.48);border-radius:50%;animation:problem-alert-ring 1.8s ease-out infinite}
.problem-alert-symbol b{font:700 1.25rem/1 var(--title)}
.problem-alert p{display:grid;gap:.18rem;color:#b8bdc9;font-size:.84rem;line-height:1.5}
.problem-alert strong{color:#fff;font:700 1rem/1.3 var(--title);letter-spacing:-.025em}
.problem-alert p span{display:block}
.problem-sequence{margin-top:4rem}
.problem-sequence:before{width:2px;background:linear-gradient(180deg,transparent,#7d96ff 7%,#315cff 50%,rgba(49,92,255,.28) 91%,transparent)!important;box-shadow:0 0 24px rgba(49,92,255,.5)}
.problem-flow-item{min-height:275px}
.problem-flow-item:after{background:#9caeff;animation:problem-node 2.2s ease-in-out infinite}
.problem-flow-content{position:relative;grid-template-columns:72px minmax(0,1fr);gap:1.15rem;padding:2.15rem;border-color:rgba(117,143,255,.19);background:linear-gradient(135deg,rgba(22,29,52,.94),rgba(7,9,17,.9));box-shadow:0 30px 75px rgba(0,0,0,.36),inset 0 1px 0 rgba(255,255,255,.055);overflow:hidden;transition:transform .5s var(--motion-ease),border-color .45s,box-shadow .55s}
.problem-flow-content:before{content:"";position:absolute;top:0;left:0;width:42%;height:2px;background:linear-gradient(90deg,#315cff,transparent);box-shadow:0 0 18px rgba(49,92,255,.7)}
.problem-flow-content:after{content:"";position:absolute;right:-110px;bottom:-135px;width:270px;height:270px;border:1px solid rgba(49,92,255,.14);border-radius:50%;box-shadow:0 0 0 28px rgba(49,92,255,.025),0 0 0 60px rgba(49,92,255,.018);pointer-events:none}
.problem-flow-item:nth-child(2) .problem-flow-content{border-color:rgba(117,143,255,.23)}
.problem-flow-item:nth-child(3) .problem-flow-content{border-color:rgba(117,143,255,.27);box-shadow:0 34px 82px rgba(0,0,0,.4),0 0 45px rgba(49,92,255,.055)}
.problem-flow-item:nth-child(4) .problem-flow-content{border-color:rgba(117,143,255,.34);box-shadow:0 38px 90px rgba(0,0,0,.44),0 0 62px rgba(49,92,255,.08)}
.problem-flow-content>.problem-signal{position:relative;z-index:2;display:grid;place-items:center;width:58px;height:58px;border:1px solid rgba(156,174,255,.48);border-radius:50%;color:#fff;font:inherit;letter-spacing:0;opacity:1;background:radial-gradient(circle,rgba(49,92,255,.28),rgba(49,92,255,.05) 62%,transparent 64%);box-shadow:0 0 0 7px rgba(49,92,255,.055),0 0 28px rgba(49,92,255,.23)}
.problem-signal i{position:absolute;inset:5px;border:1px solid rgba(156,174,255,.3);border-radius:50%}
.problem-signal b{font:800 1.42rem/1 var(--title);text-shadow:0 0 15px rgba(156,174,255,.8)}
.problem-kicker{margin:0 0 .65rem!important;color:#9caeff!important;font:700 .64rem/1.2 var(--body)!important;letter-spacing:.13em;text-transform:uppercase}
.problem-flow-content h3{max-width:390px;margin-bottom:1rem;line-height:1.04}
.problem-flow-content>div>p:not(.problem-kicker){color:#b4bac7}
html.motion-enabled .problem-flow-item.is-problem-visible .problem-signal{animation:problem-signal-arrival .8s var(--motion-ease-cinematic) both}
@media(hover:hover) and (pointer:fine){.problem-flow-content:hover{border-color:rgba(117,143,255,.48);box-shadow:0 38px 88px rgba(0,0,0,.46),0 0 65px rgba(49,92,255,.12)}.problem-flow-content:hover .problem-signal{box-shadow:0 0 0 9px rgba(49,92,255,.07),0 0 38px rgba(49,92,255,.38)}}
@keyframes problem-scan{0%{transform:translateY(-42%)}100%{transform:translateY(42%)}}
@keyframes problem-ping{0%{opacity:.8;transform:scale(.55)}100%{opacity:0;transform:scale(2.1)}}
@keyframes problem-alert-ring{0%{opacity:.75;transform:scale(.8)}100%{opacity:0;transform:scale(1.65)}}
@keyframes problem-node{0%,100%{opacity:.7;transform:scale(.84)}50%{opacity:1;transform:scale(1.18)}}
@keyframes problem-signal-arrival{0%{opacity:0;transform:scale(.55) rotate(-12deg);filter:blur(4px)}70%{opacity:1;transform:scale(1.08) rotate(2deg);filter:none}100%{opacity:1;transform:none;filter:none}}
@media(max-width:900px){.problem-flow-content{grid-template-columns:64px minmax(0,1fr);padding:1.75rem}.problem-flow-content>.problem-signal{width:52px;height:52px}.problem-flow-item{min-height:250px}}
@media(max-width:600px){
  #problemas{padding-top:7.5rem}
  #problemas:before{opacity:.68;animation-duration:12s}
  #problemas .section-intro h2{font-size:clamp(2.35rem,10.8vw,3rem);line-height:1;letter-spacing:-.06em}
  #problemas .section-intro>p:not(.eyebrow){font-size:.9rem;line-height:1.68}
  #problemas .section-intro .eyebrow{font-size:.61rem;letter-spacing:.13em}
  .problem-alert{grid-template-columns:38px minmax(0,1fr);width:100%;max-width:100%;margin-top:2.15rem;padding:.95rem .9rem;gap:.8rem;border-radius:14px}
  .problem-alert-symbol{width:38px;height:38px}
  .problem-alert-symbol b{font-size:1.08rem}
  .problem-alert p{min-width:0;font-size:.76rem;line-height:1.45}
  .problem-alert strong{font-size:.9rem;line-height:1.25}
  .problem-alert p span{overflow-wrap:anywhere}
  .problem-sequence{width:100%;max-width:100%;margin-top:2.75rem;padding-left:18px}
  .problem-sequence:before{left:4px}
  .problem-flow-item{min-height:0;padding-bottom:1.3rem}
  .problem-flow-item:after{left:0;top:2.15rem;width:9px;height:9px}
  .problem-flow-content,.problem-flow-item:nth-child(even) .problem-flow-content{grid-template-columns:46px minmax(0,1fr);width:100%;max-width:100%;min-width:0;margin:0;padding:1.15rem;gap:.75rem;border-radius:18px}
  .problem-flow-content>div{min-width:0}
  .problem-flow-content:after{right:-100px;bottom:-120px;width:220px;height:220px}
  .problem-flow-content>.problem-signal{width:42px;height:42px;box-shadow:0 0 0 5px rgba(49,92,255,.05),0 0 22px rgba(49,92,255,.2)}
  .problem-signal i{inset:4px}
  .problem-signal b{font-size:1.16rem}
  .problem-kicker{margin-bottom:.48rem!important;font-size:.55rem!important;line-height:1.35!important;letter-spacing:.1em;overflow-wrap:anywhere}
  .problem-flow-content h3{max-width:100%;margin-bottom:.75rem;font-size:clamp(1.22rem,5.8vw,1.4rem);line-height:1.08;overflow-wrap:anywhere}
  .problem-flow-content>div>p:not(.problem-kicker){max-width:100%;font-size:.82rem;line-height:1.62;overflow-wrap:anywhere}
  .problem-conclusion{width:100%;margin-top:2rem;padding:1.1rem;font-size:1rem;line-height:1.5;border-radius:15px}
}
@media(max-width:380px){
  #problemas .section-intro h2{font-size:2.2rem}
  .problem-alert{grid-template-columns:34px minmax(0,1fr);padding:.85rem .8rem;gap:.7rem}
  .problem-alert-symbol{width:34px;height:34px}
  .problem-alert p{font-size:.72rem}
  .problem-alert strong{font-size:.84rem}
  .problem-sequence{padding-left:16px}
  .problem-sequence:before{left:3px}
  .problem-flow-item:after{left:-1px}
  .problem-flow-content,.problem-flow-item:nth-child(even) .problem-flow-content{grid-template-columns:40px minmax(0,1fr);padding:1rem;gap:.68rem}
  .problem-flow-content>.problem-signal{width:38px;height:38px}
  .problem-flow-content h3{font-size:1.2rem}
}
@media(prefers-reduced-motion:reduce){#problemas:before,.problem-alert-symbol i,#problemas .eyebrow span:after,.problem-flow-item:after,.problem-flow-item.is-problem-visible .problem-signal{animation:none!important}}

/* Soluções: sistema estratégico vivo e conectado. */
#solucoes{background:radial-gradient(ellipse 42% 34% at 50% 56%,rgba(49,92,255,.2),transparent 72%),radial-gradient(ellipse 30% 24% at 14% 30%,rgba(49,92,255,.1),transparent 75%),linear-gradient(180deg,#080b15 0%,#11182c 52%,#080b14 100%)}
#solucoes:before{width:860px;height:860px;transform:translate(-50%,-50%);background:radial-gradient(circle,rgba(49,92,255,.19),rgba(49,92,255,.035) 38%,transparent 69%);animation:solution-breathe 6s ease-in-out infinite}
#solucoes .section-intro .eyebrow span{box-shadow:0 0 16px rgba(49,92,255,.75)}
#solucoes .system-diagram{isolation:isolate;overflow:visible}
#solucoes .system-diagram:before{opacity:.42;mask-image:radial-gradient(circle at center,black 12%,rgba(0,0,0,.72) 52%,transparent 82%)}
#solucoes .system-diagram:after{width:430px;height:430px;left:50%;top:50%;transform:translate(-50%,-50%) rotate(18deg);border:1px solid rgba(117,143,255,.15);border-radius:50%;animation:solution-orbit 22s linear infinite}
#solucoes .system-link{display:block;z-index:0;width:39%;height:1px;border:0;background:linear-gradient(90deg,rgba(49,92,255,.72),rgba(156,174,255,.22) 72%,transparent);box-shadow:0 0 14px rgba(49,92,255,.16);overflow:visible}
#solucoes .link-three,#solucoes .link-four{width:34%}
#solucoes .system-link:before{content:"";position:absolute;left:0;top:-2px;width:5px;height:5px;border-radius:50%;background:#9caeff;box-shadow:0 0 13px rgba(117,143,255,.95)}
#solucoes .system-link:after{content:"";position:absolute;left:0;top:-1px;width:3px;height:3px;border-radius:50%;background:#fff;box-shadow:0 0 14px #7d96ff;animation:solution-packet 3.2s ease-in-out infinite}
#solucoes .link-two:after,#solucoes .link-four:after,#solucoes .link-six:after{animation-delay:-1.6s}
#solucoes .link-three:after,#solucoes .link-five:after{animation-delay:-.8s}
#solucoes .system-core{z-index:4;width:246px;height:246px;border-color:rgba(174,188,255,.48);background:radial-gradient(circle at 34% 26%,rgba(86,119,255,.42),rgba(14,19,36,.97) 57%);box-shadow:0 0 0 12px rgba(49,92,255,.05),0 0 0 31px rgba(49,92,255,.025),0 0 110px rgba(49,92,255,.34),0 34px 70px rgba(0,0,0,.46)}
#solucoes .system-core:before{inset:-34px;border-style:dashed;border-color:rgba(156,174,255,.26);box-shadow:0 0 0 7px rgba(13,17,30,.62),0 0 36px rgba(49,92,255,.24);animation:solution-ring-spin 24s linear infinite reverse}
#solucoes .system-core:after{inset:13px;border-color:rgba(156,174,255,.62);border-right-color:transparent;border-bottom-color:transparent;animation:solution-core-spin 8s linear infinite}
#solucoes .system-core span{font-size:.68rem;letter-spacing:.12em;text-transform:uppercase}
#solucoes .system-core strong{font-size:1.6rem;text-shadow:0 0 26px rgba(117,143,255,.5)}
#solucoes .system-core small{margin-top:.72rem;padding:.35rem .62rem;border:1px solid rgba(156,174,255,.2);border-radius:999px;background:rgba(49,92,255,.08);color:#9caeff;font:600 .55rem/1 var(--body);letter-spacing:.11em;text-transform:uppercase}
#solucoes .system-node{z-index:2;min-height:188px;padding:1.3rem 1.4rem 1.35rem;border-color:rgba(156,174,255,.12);background:linear-gradient(145deg,rgba(23,30,53,.92),rgba(7,10,20,.86));box-shadow:0 24px 58px rgba(0,0,0,.3),inset 0 1px 0 rgba(255,255,255,.045);overflow:hidden;transition:transform .55s var(--motion-ease-cinematic),border-color .4s,box-shadow .55s}
#solucoes .system-node:before{left:0;width:72px;height:2px;background:linear-gradient(90deg,#315cff,transparent);box-shadow:0 0 16px rgba(49,92,255,.65)}
#solucoes .system-node:after{content:"";display:block;position:absolute;right:-80px;bottom:-105px;width:190px;height:190px;border:1px solid rgba(49,92,255,.12);border-radius:50%;box-shadow:0 0 0 24px rgba(49,92,255,.022),0 0 0 48px rgba(49,92,255,.012);pointer-events:none}
#solucoes .system-node h3{margin-bottom:.62rem;font-size:1.3rem;line-height:1.08}
#solucoes .system-node p{position:relative;z-index:1;max-width:330px;color:#aeb5c4;font-size:.77rem;line-height:1.62}
#solucoes .system-node>.system-glyph{position:relative;z-index:2;display:block!important;width:46px;height:46px;margin:0 0 .85rem!important;padding:0!important;border:1px solid rgba(156,174,255,.25);border-radius:13px;background:linear-gradient(145deg,rgba(49,92,255,.18),rgba(49,92,255,.035));color:#9caeff;box-shadow:inset 0 1px 0 rgba(255,255,255,.07),0 9px 22px rgba(0,0,0,.18)}
.system-glyph i,.system-glyph b{position:absolute;display:block}
.glyph-strategy:before{content:"";position:absolute;inset:10px;border:1px solid currentColor;border-radius:50%;box-shadow:inset 0 0 0 5px rgba(49,92,255,.08)}
.glyph-strategy:after{content:"";position:absolute;left:50%;top:50%;width:5px;height:5px;border-radius:50%;background:#fff;box-shadow:0 0 11px #7d96ff;transform:translate(-50%,-50%)}
.glyph-strategy i:first-child{left:22px;top:5px;width:1px;height:36px;background:linear-gradient(transparent,currentColor,transparent)}
.glyph-strategy i:nth-child(2){left:5px;top:22px;width:36px;height:1px;background:linear-gradient(90deg,transparent,currentColor,transparent)}
.glyph-copy i{left:10px;height:2px;border-radius:2px;background:currentColor;transform-origin:left;animation:glyph-copy-line 2.8s ease-in-out infinite}
.glyph-copy i:first-child{top:14px;width:26px}.glyph-copy i:nth-child(2){top:22px;width:20px;animation-delay:-.8s}.glyph-copy b{left:10px;top:30px;width:14px;height:2px;border-radius:2px;background:#fff;box-shadow:0 0 8px rgba(156,174,255,.7)}
.glyph-design i,.glyph-design b{width:11px;height:11px;border:1px solid currentColor;border-radius:3px}
.glyph-design i:first-child{left:10px;top:10px;background:rgba(49,92,255,.2)}.glyph-design i:nth-child(2){right:10px;top:10px}.glyph-design b{left:10px;bottom:10px;box-shadow:17px 0 0 -1px rgba(49,92,255,.22),17px 0 0 0 currentColor}
.glyph-responsive i:first-child{left:9px;top:9px;width:27px;height:22px;border:1px solid currentColor;border-radius:3px}.glyph-responsive i:nth-child(2){right:8px;bottom:7px;width:12px;height:22px;border:1px solid #fff;border-radius:3px;background:#12182b;box-shadow:0 0 10px rgba(117,143,255,.28)}.glyph-responsive b{right:12px;bottom:10px;width:4px;height:1px;background:currentColor}
.glyph-seo:before{content:"";position:absolute;left:10px;top:9px;width:19px;height:19px;border:1px solid currentColor;border-radius:50%}.glyph-seo:after{content:"";position:absolute;left:28px;top:28px;width:10px;height:2px;border-radius:2px;background:#fff;transform:rotate(45deg);transform-origin:left}.glyph-seo i:first-child{left:16px;top:15px;width:7px;height:7px;border:1px solid rgba(156,174,255,.55);border-radius:50%}
.glyph-conversion i:first-child{left:9px;top:22px;width:25px;height:1px;background:currentColor;transform-origin:left;animation:glyph-conversion-path 2.5s ease-in-out infinite}.glyph-conversion i:nth-child(2){right:9px;top:17px;width:10px;height:10px;border-top:1px solid #fff;border-right:1px solid #fff;transform:rotate(45deg)}.glyph-conversion b{left:9px;top:19px;width:7px;height:7px;border-radius:50%;background:#315cff;box-shadow:0 0 12px #315cff}
@media(hover:hover) and (pointer:fine){#solucoes .node-one:hover,#solucoes .node-three:hover,#solucoes .node-five:hover{transform:translate3d(8px,-4px,0)!important}#solucoes .node-two:hover,#solucoes .node-four:hover,#solucoes .node-six:hover{transform:translate3d(-8px,-4px,0)!important}#solucoes .system-node:hover{border-color:rgba(117,143,255,.38);box-shadow:0 34px 74px rgba(0,0,0,.4),0 0 48px rgba(49,92,255,.09)}#solucoes .system-node:hover .system-glyph{border-color:rgba(156,174,255,.48);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 0 28px rgba(49,92,255,.2)}}
@keyframes solution-breathe{0%,100%{opacity:.74;transform:translate(-50%,-50%) scale(.94)}50%{opacity:1;transform:translate(-50%,-50%) scale(1.06)}}
@keyframes solution-orbit{to{transform:translate(-50%,-50%) rotate(378deg)}}
@keyframes solution-ring-spin{to{transform:rotate(360deg)}}
@keyframes solution-core-spin{to{transform:rotate(326deg)}}
@keyframes solution-packet{0%{left:1%;opacity:0}12%{opacity:1}82%{opacity:1}100%{left:96%;opacity:0}}
@keyframes glyph-copy-line{0%,100%{transform:scaleX(.45);opacity:.45}50%{transform:scaleX(1);opacity:1}}
@keyframes glyph-conversion-path{0%,100%{transform:scaleX(.35);opacity:.45}55%{transform:scaleX(1);opacity:1}}
@media(max-width:1000px){#solucoes .system-diagram{height:auto;gap:1.35rem 1.2rem}#solucoes .system-diagram:after{display:none}#solucoes .system-link{display:none!important}#solucoes .system-core{width:208px;height:208px;margin-bottom:1.4rem}#solucoes .system-core:before{inset:-24px}#solucoes .system-node{min-height:205px}#solucoes .system-node p{max-width:none}}
@media(max-width:600px){#solucoes{padding-top:6.5rem;padding-bottom:8rem}#solucoes .section-intro h2{font-size:clamp(2.45rem,11.4vw,3.15rem)}#solucoes .system-diagram{gap:1rem;margin-top:3rem}#solucoes .system-diagram:after{display:none}#solucoes .system-core{width:178px;height:178px;margin-bottom:1.6rem}#solucoes .system-core:before{inset:-18px}#solucoes .system-core strong{font-size:1.3rem}#solucoes .system-core small{margin-top:.55rem;font-size:.49rem}#solucoes .system-node{display:grid;grid-template-columns:46px minmax(0,1fr);column-gap:.9rem;min-height:0;padding:1.15rem;border-radius:17px}#solucoes .system-node>.system-glyph{grid-column:1;grid-row:1/3;width:42px;height:42px;margin:0!important}#solucoes .system-node h3{grid-column:2;margin:.08rem 0 .5rem;font-size:1.18rem}#solucoes .system-node p{grid-column:2;font-size:.75rem;line-height:1.58;overflow-wrap:anywhere}.glyph-strategy i:first-child{left:20px;height:32px}.glyph-strategy i:nth-child(2){top:20px;width:32px}.glyph-copy i:first-child{width:22px}.glyph-design b{box-shadow:15px 0 0 -1px rgba(49,92,255,.22),15px 0 0 0 currentColor}}
@media(prefers-reduced-motion:reduce){#solucoes:before,#solucoes .system-diagram:after,#solucoes .system-core:before,#solucoes .system-core:after,#solucoes .system-link:after,.glyph-copy i,.glyph-conversion i{animation:none!important}}

/* Refinamento dos cartões: símbolos sólidos e superfícies sem círculos decorativos. */
#solucoes .system-node{min-height:176px;padding:1.28rem 1.35rem 1.3rem;border:1px solid rgba(156,174,255,.14);border-left:2px solid rgba(49,92,255,.78);border-radius:12px;background:linear-gradient(132deg,rgba(24,31,53,.96),rgba(8,11,21,.9));box-shadow:0 18px 42px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.035)}
#solucoes .system-node:before,#solucoes .system-node:after{display:none}
#solucoes .system-node h3{margin-bottom:.58rem;font-size:1.26rem;letter-spacing:-.045em}
#solucoes .system-node p{color:#aeb5c4;font-size:.78rem;line-height:1.58}
#solucoes .system-node>.system-glyph{display:grid!important;place-items:center;width:38px;height:38px;margin:0 0 .9rem!important;padding:0!important;border:0;border-radius:8px;background:#315cff;color:#fff;box-shadow:0 8px 18px rgba(49,92,255,.24);font:700 1.2rem/1 var(--title)}
.system-glyph:before{display:block;line-height:1}.system-glyph i,.system-glyph b,.system-glyph:after{display:none!important}
.glyph-strategy:before{content:"◆";font-size:1rem}.glyph-copy:before{content:"“";font-size:1.75rem;line-height:.7;transform:translateY(.08em)}.glyph-design:before{content:"✦";font-size:1.2rem}.glyph-responsive:before{content:"▣";font-size:1.05rem}.glyph-seo:before{content:"✳";font-size:1.12rem}.glyph-conversion:before{content:"↗";font-size:1.35rem}
#solucoes .node-two>.system-glyph,#solucoes .node-five>.system-glyph{background:#5476ff}#solucoes .node-three>.system-glyph,#solucoes .node-six>.system-glyph{background:#234be2}
/* Remove por completo os traços herdados da composição anterior dos ícones. */
#solucoes .system-glyph:before{position:static;inset:auto;top:auto;right:auto;bottom:auto;left:auto;width:auto;height:auto;border:0;border-radius:0;background:none;box-shadow:none;transform:none}
#solucoes .glyph-copy:before{transform:translateY(.08em)}

/* Ícones CSS: sem dependência de caracteres que possam falhar na renderização. */
#solucoes .system-node>.system-glyph{display:flex!important;align-items:center;justify-content:center;background:rgba(49,92,255,.1);border:1px solid rgba(117,143,255,.55);box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 8px 18px rgba(0,0,0,.16)}
#solucoes .node-two>.system-glyph,#solucoes .node-five>.system-glyph,#solucoes .node-three>.system-glyph,#solucoes .node-six>.system-glyph{background:rgba(49,92,255,.1)}
#solucoes .system-glyph:before{content:"";display:block;flex:0 0 auto;margin:0;color:#dfe5ff}
#solucoes .glyph-strategy:before{width:11px;height:11px;border:2px solid currentColor;transform:rotate(45deg)}
#solucoes .glyph-copy:before{content:'"';width:auto;height:auto;border:0;font-size:1.85rem;font-family:Georgia,serif;font-weight:700;line-height:.55;transform:translateY(.1em)}
#solucoes .glyph-design:before{width:7px;height:7px;background:currentColor;box-shadow:11px 0 0 currentColor,0 11px 0 currentColor,11px 11px 0 currentColor}
#solucoes .glyph-responsive:before{width:18px;height:12px;border:2px solid currentColor;border-radius:2px;box-shadow:inset 0 -3px 0 rgba(223,229,255,.35)}
#solucoes .glyph-seo:before{content:"+";width:auto;height:auto;border:0;font-size:1.45rem;font-family:Arial,sans-serif;font-weight:400;line-height:.9}
#solucoes .glyph-conversion:before{width:11px;height:11px;border-top:2px solid currentColor;border-right:2px solid currentColor;transform:rotate(45deg) translate(-1px,1px)}
@media(hover:hover) and (pointer:fine){#solucoes .system-node:hover{border-left-color:#9caeff;box-shadow:0 28px 58px rgba(0,0,0,.34),0 0 30px rgba(49,92,255,.07)}#solucoes .system-node:hover .system-glyph{transform:translateY(-2px);box-shadow:0 12px 24px rgba(49,92,255,.34)}}
@media(max-width:1000px){#solucoes .system-node{min-height:190px}}
@media(max-width:600px){#solucoes .system-node{min-height:0;padding:1.05rem 1rem;border-radius:10px}#solucoes .system-node>.system-glyph{width:36px;height:36px;margin:0!important;border-radius:7px}#solucoes .system-node h3{font-size:1.15rem}#solucoes .system-node p{font-size:.74rem;line-height:1.56}}

/* Ícones semânticos: leitura imediata e presença visual maior. */
#solucoes .system-node>.system-glyph{width:48px;height:48px;border-radius:14px;background:linear-gradient(145deg,rgba(73,109,255,.34),rgba(28,57,176,.16));border-color:rgba(151,170,255,.7);color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.16),0 12px 26px rgba(22,49,155,.24)}
#solucoes .system-glyph:before{display:none!important}
#solucoes .system-glyph .fa-solid,#solucoes .system-glyph .fa-brands{position:static!important;display:block!important;margin:0!important;color:#f4f6ff;font-size:1.45rem;line-height:1;filter:drop-shadow(0 2px 5px rgba(0,0,0,.28))}
#solucoes .node-two>.system-glyph{background:linear-gradient(145deg,rgba(93,127,255,.36),rgba(44,71,191,.17))}
#solucoes .node-three>.system-glyph{background:linear-gradient(145deg,rgba(116,142,255,.38),rgba(53,74,188,.18))}
#solucoes .node-four>.system-glyph{background:linear-gradient(145deg,rgba(80,116,255,.36),rgba(30,62,184,.18))}
#solucoes .node-five>.system-glyph{background:linear-gradient(145deg,rgba(104,133,255,.36),rgba(41,72,190,.18))}
#solucoes .node-six>.system-glyph{background:linear-gradient(145deg,rgba(72,108,255,.42),rgba(25,55,180,.2))}
@media(max-width:600px){#solucoes .system-node>.system-glyph{width:43px;height:43px;border-radius:12px}#solucoes .system-glyph .fa-solid,#solucoes .system-glyph .fa-brands{font-size:1.25rem}}

/* Soluções por momento: cartões ilustrados como interfaces reais. */
.project-types{background:radial-gradient(circle at 14% 28%,rgba(49,92,255,.09),transparent 26%),linear-gradient(180deg,#f4f1ea 0%,#e9e6df 100%)!important}
.project-types .split-heading{margin-bottom:clamp(3rem,5vw,4.8rem)}
.solution-paths{position:relative;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem;max-width:1180px;margin-inline:auto;border:0}
.solution-path{position:relative;display:grid;grid-template-columns:minmax(0,1fr);grid-template-rows:190px auto 1fr;gap:1.35rem;min-height:570px;padding:1rem 1rem 1.55rem;border:1px solid rgba(17,19,24,.11);border-radius:26px;background:rgba(255,255,255,.72);box-shadow:0 22px 55px rgba(17,19,24,.08);overflow:hidden;isolation:isolate;transition:transform .55s var(--motion-ease-cinematic),box-shadow .55s,border-color .4s}
.solution-path:before{content:"";position:absolute;z-index:-1;inset:auto -90px -110px auto;width:260px;height:260px;border-radius:50%;background:radial-gradient(circle,rgba(49,92,255,.13),transparent 68%);pointer-events:none}
.solution-path:after{content:"";position:absolute;z-index:-1;left:0;right:0;top:0;height:42%;background:linear-gradient(180deg,rgba(49,92,255,.035),transparent);pointer-events:none}
.path-number{display:none!important}
.path-visual{position:relative;min-width:0;height:190px;border:1px solid rgba(113,134,226,.18);border-radius:19px;background:linear-gradient(145deg,#11182c,#080b14);box-shadow:inset 0 1px 0 rgba(255,255,255,.06),0 16px 30px rgba(12,18,35,.18);overflow:hidden}
.path-visual:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:22px 22px;mask-image:linear-gradient(145deg,#000,transparent 82%);pointer-events:none}
.visual-browser{position:absolute;left:26px;right:26px;top:22px;bottom:-13px;border:1px solid rgba(156,174,255,.28);border-radius:11px 11px 0 0;background:#f4f1ea;box-shadow:0 18px 42px rgba(0,0,0,.35);overflow:hidden;transform:perspective(500px) rotateX(2deg)}
.visual-browser-bar{height:20px;display:flex;align-items:center;gap:4px;padding:0 8px;border-bottom:1px solid rgba(17,19,24,.1);background:#e3e1dc}
.visual-browser-bar i{width:4px;height:4px;border-radius:50%;background:#315cff}.visual-browser-bar i:nth-child(2){opacity:.55}.visual-browser-bar i:nth-child(3){opacity:.25}
.visual-badge{position:absolute;right:13px;top:12px;display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(255,255,255,.22);border-radius:13px;background:linear-gradient(145deg,#5276ff,#234be2);color:#fff;box-shadow:0 10px 24px rgba(49,92,255,.4);font-size:1.05rem}
.landing-preview{position:relative;height:calc(100% - 20px);padding:22px 18px;background:radial-gradient(circle at 80% 23%,rgba(49,92,255,.18),transparent 28%),#f6f3ed}
.landing-preview .preview-label{display:block;width:42px;height:5px;margin-bottom:12px;border-radius:4px;background:#315cff}
.landing-preview strong,.landing-preview b{display:block;height:8px;border-radius:3px;background:#111318}.landing-preview strong{width:76%;margin-bottom:7px}.landing-preview b{width:53%;opacity:.2}
.landing-preview .preview-cta{display:block;width:55px;height:17px;margin-top:17px;border-radius:4px;background:#315cff;box-shadow:0 6px 12px rgba(49,92,255,.22)}
.visual-cursor{position:absolute;right:51px;bottom:20px;color:#fff;font-size:1.1rem;filter:drop-shadow(0 4px 4px rgba(0,0,0,.55));transform:rotate(-9deg)}
.institutional-preview{display:grid;grid-template-columns:42px 1fr;height:calc(100% - 20px)}
.institutional-preview aside{display:flex;flex-direction:column;gap:9px;padding:17px 10px;background:#101522}.institutional-preview aside span{display:block;height:3px;border-radius:3px;background:#7288e5}.institutional-preview aside span:nth-child(2){width:70%;opacity:.58}.institutional-preview aside span:nth-child(3){width:82%;opacity:.34}
.institutional-main{padding:13px;background:#f6f3ed}
.institutional-hero{position:relative;height:66px;padding:13px;border-radius:7px;background:linear-gradient(135deg,#1b2a5b,#315cff);color:#fff;overflow:hidden}.institutional-hero>i{position:absolute;right:12px;bottom:-4px;font-size:2.7rem;opacity:.23}.institutional-hero strong,.institutional-hero b{display:block;height:5px;border-radius:3px;background:#fff}.institutional-hero strong{width:50%;margin:7px 0}.institutional-hero b{width:34%;opacity:.45}
.institutional-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;margin-top:8px}.institutional-cards i{height:35px;border:1px solid rgba(17,19,24,.1);border-radius:5px;background:#fff;box-shadow:inset 0 3px 0 #315cff}.institutional-cards i:nth-child(2){box-shadow:inset 0 3px 0 #6c8aff}.institutional-cards i:nth-child(3){box-shadow:inset 0 3px 0 #9caeff}
.visual-redesign{display:grid;grid-template-columns:1fr 1fr;padding:23px 25px;gap:12px;background:linear-gradient(145deg,#161a25,#0a0d15)}
.redesign-before,.redesign-after{position:relative;display:flex;flex-direction:column;gap:8px;padding:15px 12px;border-radius:10px;overflow:hidden}
.redesign-before{border:1px solid rgba(255,255,255,.12);background:#292c34;color:#747984;filter:saturate(.25)}.redesign-before>i{margin-bottom:5px;font-size:1.2rem}.redesign-before span{height:5px;border-radius:4px;background:currentColor;opacity:.55}.redesign-before span:nth-child(2){width:70%}.redesign-before span:nth-child(3){width:88%}.redesign-before span:nth-child(4){width:54%}
.redesign-after{border:1px solid rgba(117,143,255,.58);background:radial-gradient(circle at 80% 20%,rgba(117,143,255,.3),transparent 35%),#111b3a;color:#fff;box-shadow:0 12px 28px rgba(49,92,255,.25)}.redesign-after>i{align-self:flex-end;color:#9caeff;font-size:1rem}.redesign-after strong,.redesign-after b,.redesign-after span{display:block;border-radius:4px}.redesign-after strong{width:78%;height:8px;margin-top:6px;background:#fff}.redesign-after b{width:54%;height:5px;background:#8fa8ff}.redesign-after span{width:44px;height:15px;margin-top:7px;background:#315cff}
.redesign-divider{position:absolute;z-index:2;left:50%;top:50%;display:grid;place-items:center;width:34px;height:34px;border:4px solid #101522;border-radius:50%;background:#315cff;color:#fff;font-size:.68rem;box-shadow:0 8px 18px rgba(0,0,0,.4);transform:translate(-50%,-50%)}
.visual-redesign .visual-badge{right:12px;top:11px}
.path-main{padding:.2rem .45rem 0}
.path-main:before{display:none}
.path-main h3{margin-bottom:.8rem;font-size:clamp(1.7rem,2.3vw,2.25rem);line-height:1;letter-spacing:-.055em}
.path-main p{max-width:none;color:#555c68;font-size:.89rem;line-height:1.67}
.path-fit{align-self:end;margin-top:.2rem;padding:1.2rem .45rem 0;border-top:1px solid rgba(17,19,24,.11)}
.path-fit>p{margin-bottom:.75rem;color:#111318}
.path-fit ul{display:flex;flex-wrap:wrap;gap:.48rem}
.path-fit li{padding:.43rem .64rem .43rem 1.25rem;border:1px solid rgba(49,92,255,.13);border-radius:999px;background:rgba(49,92,255,.055);color:#4d5460;font-size:.7rem;line-height:1.2}
.path-fit li:before{left:.66rem;top:50%;width:4px;height:4px;transform:translateY(-50%)}
@media(hover:hover) and (pointer:fine){.solution-path:hover{transform:translateY(-10px)!important;border-color:rgba(49,92,255,.28);box-shadow:0 34px 75px rgba(17,19,24,.15)}.solution-path:hover .visual-browser{transform:perspective(500px) rotateX(0) translateY(-4px)}.solution-path:hover .visual-badge{transform:rotate(-5deg) scale(1.08)}.visual-browser,.visual-badge{transition:transform .55s var(--motion-ease-cinematic)}}
@media(max-width:1000px){.solution-paths{grid-template-columns:1fr;max-width:760px}.solution-path{grid-template-columns:280px minmax(0,1fr);grid-template-rows:auto auto;min-height:0;padding:1rem 1.3rem 1.3rem;gap:1rem 1.5rem}.path-visual{grid-row:1/3;height:230px}.path-main{align-self:end;padding-right:.5rem}.path-fit{align-self:start;margin-top:0}.visual-browser{left:32px;right:32px}}
@media(max-width:680px){.project-types{padding-top:6.8rem}.solution-paths{gap:1rem}.solution-path{display:grid;grid-template-columns:1fr;grid-template-rows:auto;min-height:0;padding:.8rem .8rem 1.15rem;border-radius:20px}.path-visual{grid-row:auto;height:190px;border-radius:15px}.path-main{padding:.35rem .4rem 0}.path-main h3{font-size:1.65rem}.path-main p{font-size:.86rem}.path-fit{padding:1rem .4rem 0}.visual-browser{left:24px;right:24px}.visual-redesign{padding-inline:18px}}
@media(prefers-reduced-motion:reduce){.solution-path,.visual-browser,.visual-badge{transition:none!important}}

/* Assets oficiais dos três tipos de projeto. */
.path-visual:before{display:none}
.path-visual>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;transform:scale(1.001);transition:transform .65s var(--motion-ease-cinematic)}
@media(hover:hover) and (pointer:fine){.solution-path:hover .path-visual>img{transform:scale(1.035)}}
@media(prefers-reduced-motion:reduce){.path-visual>img{transition:none!important}}

/* Processo: narrativa guiada por uma rota luminosa. */
#processo{isolation:isolate;padding-block:clamp(8rem,11vw,11rem);background:radial-gradient(circle at 8% 23%,rgba(69,49,255,.2),transparent 24%),radial-gradient(circle at 92% 42%,rgba(36,111,255,.16),transparent 24%),radial-gradient(circle at 10% 66%,rgba(255,113,42,.11),transparent 24%),radial-gradient(circle at 88% 84%,rgba(30,202,160,.11),transparent 25%),linear-gradient(160deg,#080914 0%,#0b0d18 48%,#05070c 100%);overflow:hidden}
#processo:before{content:"";position:absolute;z-index:-1;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:54px 54px;mask-image:radial-gradient(ellipse at center,#000 12%,transparent 78%);pointer-events:none}
#processo:after{content:"";position:absolute;z-index:-1;inset:0;background:linear-gradient(105deg,transparent 18%,rgba(49,92,255,.035) 48%,transparent 74%);pointer-events:none}
#processo .section-intro{max-width:930px;margin-inline:auto;text-align:center}
#processo .section-intro .eyebrow{justify-content:center}
#processo .section-intro h2{max-width:930px;margin-inline:auto;font-size:clamp(3.15rem,5.8vw,6rem);line-height:.96}
#processo .section-intro h2 em{display:block;margin-top:.08em;color:#8fa8ff;font-family:var(--title);font-size:.79em;font-weight:inherit;font-style:normal;letter-spacing:-.055em;text-shadow:0 0 36px rgba(49,92,255,.24)}
#processo .section-intro>p:not(.eyebrow){max-width:620px;margin:1.8rem auto 0;font-size:.96rem;line-height:1.7}
#processo .process-map{position:relative;display:block;width:min(1100px,100%);height:1280px;margin:6rem auto 0;padding:0}
#processo .process-map:before,#processo .process-map:after{display:none}
#processo .process-route{display:block;position:absolute;z-index:0;inset:0;width:100%;height:100%;overflow:visible}
#processo .route-base{stroke:rgba(146,158,210,.17);stroke-width:7;stroke-dasharray:none;filter:drop-shadow(0 0 10px rgba(49,92,255,.14))}
#processo .route-accent{stroke:#5d81ff;stroke-width:2.5;stroke-dasharray:1;stroke-dashoffset:calc(1 - var(--process-route-progress,0));stroke-linecap:round;filter:drop-shadow(0 0 5px rgba(49,92,255,.95)) drop-shadow(0 0 15px rgba(49,92,255,.48));transition:stroke-dashoffset .12s linear}
html.motion-enabled #processo .process-map[data-motion] .route-base{stroke-dasharray:none;stroke-dashoffset:0;transition:none}
html.motion-enabled #processo .process-map[data-motion] .route-accent{stroke-dasharray:1;stroke-dashoffset:calc(1 - var(--process-route-progress,0));transition:stroke-dashoffset .12s linear}
#processo .process-route circle{fill:#0a0c16;stroke:#7895ff;stroke-width:3;filter:drop-shadow(0 0 7px rgba(79,114,255,.9))}
html.motion-enabled #processo .process-map[data-motion] .process-route circle{opacity:.3;transform-box:fill-box;transform-origin:center;transform:scale(.72);transition:opacity .22s var(--motion-ease),transform .3s var(--motion-ease-cinematic),filter .3s var(--motion-ease)}
html.motion-enabled #processo .process-map[data-motion] .process-route circle.is-route-reached{opacity:1;transform:scale(1);filter:drop-shadow(0 0 11px rgba(93,129,255,1))}
#processo .process-step{--step-accent:#5476ff;position:absolute;z-index:2;display:block;width:min(390px,38%);min-height:205px;padding:1.35rem 1.45rem 1.5rem;border:1px solid color-mix(in srgb,var(--step-accent) 34%,rgba(255,255,255,.08));border-radius:24px;background:linear-gradient(145deg,rgba(18,18,39,.96),rgba(7,9,19,.92));box-shadow:0 25px 64px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.045);backdrop-filter:blur(16px);overflow:hidden}
#processo .process-step:after{content:"";position:absolute;right:-70px;top:-90px;width:210px;height:210px;border-radius:50%;background:radial-gradient(circle,color-mix(in srgb,var(--step-accent) 22%,transparent),transparent 68%);pointer-events:none}
#processo .process-step:before{content:"";position:absolute;left:0;top:0;width:92px;height:2px;background:linear-gradient(90deg,var(--step-accent),transparent);box-shadow:0 0 18px color-mix(in srgb,var(--step-accent) 72%,transparent)}
#processo .step-one{--step-accent:#765cff;top:2%;left:3%;right:auto}
#processo .step-two{--step-accent:#3f79ff;top:20%;right:3%;left:auto}
#processo .step-three{--step-accent:#32a0ff;top:39%;left:3%;right:auto}
#processo .step-four{--step-accent:#ff7b3d;top:59%;right:3%;left:auto}
#processo .step-five{--step-accent:#2fcf9f;top:79%;left:3%;right:auto;bottom:auto}
.process-step-top{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;margin-bottom:1.15rem}
.process-icon{display:grid;place-items:center;width:48px;height:48px;border:1px solid color-mix(in srgb,var(--step-accent) 48%,transparent);border-radius:14px;background:color-mix(in srgb,var(--step-accent) 12%,rgba(11,13,25,.9));color:var(--step-accent);box-shadow:0 0 24px color-mix(in srgb,var(--step-accent) 14%,transparent);font-size:1.05rem}
.process-number{color:color-mix(in srgb,var(--step-accent) 74%,#fff);font:700 .68rem/1 var(--body);letter-spacing:.16em}
#processo .process-step h3{position:relative;z-index:1;margin:0 0 .68rem;color:#f4f1ea;font-size:clamp(1.45rem,2vw,1.8rem);letter-spacing:-.045em}
#processo .process-step p{position:relative;z-index:1;max-width:315px;color:#aeb4c2;font-size:.84rem;line-height:1.65}
#processo .process-brand-symbol{position:absolute;z-index:2;top:auto;right:auto;bottom:3px;left:50%;width:64px;opacity:.24;filter:drop-shadow(0 0 22px rgba(49,92,255,.55));transform:translateX(-50%);pointer-events:none}
@media(hover:hover) and (pointer:fine){#processo .process-step{transition:transform .55s var(--motion-ease-cinematic),border-color .4s,box-shadow .55s}#processo .process-step:hover{transform:translateY(-8px)!important;border-color:color-mix(in srgb,var(--step-accent) 58%,rgba(255,255,255,.1));box-shadow:0 34px 78px rgba(0,0,0,.46),0 0 42px color-mix(in srgb,var(--step-accent) 9%,transparent)}#processo .process-step:hover .process-icon{transform:rotate(-6deg) scale(1.08)}.process-icon{transition:transform .45s var(--motion-ease-cinematic)}}
@media(max-width:900px){
  #processo{padding-block:7rem}
  #processo .section-intro{text-align:left}
  #processo .section-intro .eyebrow{justify-content:flex-start}
  #processo .section-intro h2{margin-inline:0;font-size:clamp(3rem,8vw,4.8rem)}
  #processo .section-intro>p:not(.eyebrow){margin-left:0}
  #processo .process-map{display:grid;grid-template-columns:minmax(0,1fr);height:auto;margin-top:4rem;padding-left:42px;gap:1rem}
  #processo .process-map:before{content:"";display:block;position:absolute;left:12px;top:9px;bottom:9px;width:1px;height:auto;background:linear-gradient(#765cff,#3f79ff 28%,#32a0ff 50%,#ff7b3d 74%,#2fcf9f);box-shadow:0 0 12px rgba(79,114,255,.45);opacity:.8}
  #processo .process-route{display:none}
  #processo .process-step,#processo .step-one,#processo .step-two,#processo .step-three,#processo .step-four,#processo .step-five{position:relative;top:auto;right:auto;bottom:auto;left:auto;display:block;width:100%;min-height:0;margin:0;padding:1.25rem 1.3rem 1.35rem}
  #processo .process-step:before{left:-36px;top:31px;width:13px;height:13px;border:3px solid #090b14;border-radius:50%;background:var(--step-accent);box-shadow:0 0 14px var(--step-accent)}
  #processo .process-step:after{right:-80px}
  #processo .process-brand-symbol{display:none}
}
@media(max-width:600px){
  #processo{padding-block:5.8rem}
  #processo .section-intro h2{font-size:clamp(2.65rem,11.5vw,3.6rem)}
  #processo .section-intro h2 em{margin-top:.12em;font-size:.82em}
  #processo .process-map{margin-top:3rem;padding-left:28px;gap:.85rem}
  #processo .process-map:before{left:6px}
  #processo .process-step,#processo .step-one,#processo .step-two,#processo .step-three,#processo .step-four,#processo .step-five{padding:1.05rem 1.05rem 1.15rem;border-radius:18px}
  #processo .process-step:before{left:-27px;top:27px;width:11px;height:11px}
  .process-step-top{margin-bottom:.95rem}
  .process-icon{width:42px;height:42px;border-radius:12px;font-size:.95rem}
  #processo .process-step h3{font-size:1.36rem}
  #processo .process-step p{font-size:.79rem;line-height:1.62}
}
@media(prefers-reduced-motion:reduce){#processo .process-step,.process-icon{transition:none!important}}

/* Hero: vídeo integrado à seção e conteúdo centralizado. */
.hero{
  position:relative;
  display:grid;
  min-height:clamp(760px,100svh,980px);
  padding:clamp(10rem,15vw,13rem) 0 clamp(7rem,10vw,9rem);
  align-items:center;
  isolation:isolate;
  overflow:hidden;
  background:#080a12;
}
.hero:after{display:none}
.hero.section-grid:before{
  z-index:1;
  opacity:.34;
  mask-image:linear-gradient(to bottom,transparent 0,#000 24%,#000 78%,transparent 100%);
}
.hero-media{
  position:absolute;
  z-index:0;
  inset:0;
  overflow:hidden;
  background:#080a12;
  pointer-events:none;
}
.hero-media:before,
.hero-media:after{
  content:"";
  position:absolute;
  z-index:1;
  inset:0;
  pointer-events:none;
}
.hero-media:before{
  background:
    linear-gradient(180deg,rgba(5,7,14,.78) 0%,rgba(5,7,14,.46) 28%,rgba(5,7,14,.57) 68%,rgba(5,7,14,.94) 100%),
    linear-gradient(90deg,rgba(5,7,14,.34),transparent 28%,transparent 72%,rgba(5,7,14,.34));
}
.hero-media:after{
  background:
    radial-gradient(circle at 50% 48%,rgba(49,92,255,.08),transparent 38%),
    linear-gradient(180deg,transparent 62%,#080a12 100%);
}
.hero-media .hero-video{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:.76;
  filter:saturate(.72) contrast(1.08) brightness(.82);
  transform:scale(1.015);
}
.hero .hero-layout{
  position:relative;
  z-index:2;
  display:block;
  width:min(1120px,calc(100% - (var(--gutter) * 2)));
}
.hero .hero-copy{
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:0;
  text-align:center;
  text-shadow:0 2px 28px rgba(0,0,0,.42);
}
.hero .hero-copy .eyebrow,
.hero .button-row,
.hero .hero-notes{justify-content:center}
.hero h1{
  max-width:980px;
  margin-inline:auto;
  color:var(--paper);
}
.hero .hero-text{
  max-width:720px;
  margin:1.85rem auto 2.2rem;
  color:#c6c9d1;
}
.hero .hero-notes{
  max-width:800px;
  margin-inline:auto;
  color:#b8bcc6;
}
@media(max-width:900px){
  .hero{
    min-height:760px;
    padding:9rem 0 6rem;
  }
  .hero .hero-layout{width:min(100% - 40px,760px)}
  .hero-media .hero-video{object-position:50% 50%}
}
@media(max-width:600px){
  .hero{
    min-height:720px;
    padding:8.5rem 0 5rem;
  }
  .hero .hero-layout{width:calc(100% - 32px)}
  .hero-media:before{
    background:linear-gradient(180deg,rgba(5,7,14,.82) 0%,rgba(5,7,14,.52) 26%,rgba(5,7,14,.65) 67%,rgba(5,7,14,.96) 100%);
  }
  .hero-media .hero-video{
    opacity:.7;
    filter:saturate(.68) contrast(1.06) brightness(.78);
  }
  .hero .hero-text{max-width:34rem}
}
@media(prefers-reduced-motion:reduce){
  .hero-media .hero-video{transform:none}
}

/* Separador de marca entre diagnóstico e solução. */
.brand-marquee{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  min-height:92px;
  overflow:hidden;
  border-block:1px solid rgba(122,148,255,.32);
  background:linear-gradient(90deg,#070913,#111a35 50%,#070913);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035),0 0 30px rgba(49,92,255,.12);
}
.brand-marquee-track{
  display:flex;
  width:max-content;
  animation:brand-marquee-scroll 26s linear infinite;
  will-change:transform;
}
.brand-marquee-group{
  display:flex;
  align-items:center;
  gap:clamp(2.4rem,4.5vw,5.8rem);
  flex:none;
  min-width:100vw;
  padding-inline:clamp(2.4rem,4.5vw,5.8rem);
}
.brand-marquee img{
  width:32px;
  height:32px;
  flex:none;
  object-fit:contain;
  opacity:.75;
  filter:drop-shadow(0 0 9px rgba(49,92,255,.5));
}
.brand-marquee span{
  width:5px;
  height:5px;
  flex:none;
  border-radius:50%;
  background:#315cff;
  box-shadow:0 0 11px rgba(49,92,255,.92);
}
@keyframes brand-marquee-scroll{to{transform:translateX(-50%)}}

/* Escala tipográfica única para os títulos de seção. */
.positioning .split-heading,
.project-types .split-heading{grid-template-columns:minmax(0,900px)}
.positioning .split-heading h2,
.project-types .split-heading h2,
#problemas .section-intro h2,
#solucoes .section-intro h2,
#processo .section-intro h2,
.about-copy h2,
.faq-section .section-intro h2,
.final-cta h2{
  font-size:clamp(2.2rem,4.35vw,4.32rem);
  line-height:.98;
  letter-spacing:-.06em;
}
#processo .section-intro h2 em{color:var(--blue)}

/* Ações complementares no CTA final. */
.cta-buttons{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:.85rem}
.cta-actions .button-price{
  border:1px solid rgba(244,241,234,.52);
  background:rgba(10,13,25,.24);
  color:var(--paper);
  box-shadow:none;
}
.cta-actions .button-price:hover{
  border-color:var(--paper);
  background:rgba(244,241,234,.12);
  box-shadow:none;
}
@media(max-width:600px){
  .brand-marquee{min-height:76px}
  .brand-marquee-group{gap:2.4rem;padding-inline:2.4rem}
  .brand-marquee img{width:27px;height:27px}
  .positioning .split-heading h2,
  .project-types .split-heading h2,
  #problemas .section-intro h2,
  #solucoes .section-intro h2,
  #processo .section-intro h2,
  .about-copy h2,
  .faq-section .section-intro h2,
  .final-cta h2{font-size:clamp(2.35rem,10.8vw,3rem);line-height:1}
  .cta-buttons{display:grid;grid-template-columns:1fr;justify-content:stretch}
  .cta-buttons .button{width:100%}
}
@media(prefers-reduced-motion:reduce){.brand-marquee-track{animation:none;transform:none}}

/* Sobre: painel editorial alinhado às cenas escuras do site. */
#sobre.about-section{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:radial-gradient(circle at 12% 72%,rgba(49,92,255,.24),transparent 31%),radial-gradient(circle at 86% 18%,rgba(101,78,255,.14),transparent 27%),linear-gradient(145deg,#080a12 0%,#10172b 54%,#080a12 100%)!important;
  color:var(--paper);
}
#sobre.about-section:before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:0;
  width:auto;
  height:auto;
  border-radius:0;
  background-image:linear-gradient(rgba(255,255,255,.032) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.032) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:radial-gradient(ellipse at center,#000 5%,transparent 77%);
}
#sobre.about-section:after{
  content:"";
  position:absolute;
  z-index:-1;
  right:-9rem;
  bottom:-12rem;
  width:38rem;
  height:38rem;
  border:1px solid rgba(137,158,255,.18);
  border-radius:50%;
  box-shadow:0 0 0 46px rgba(49,92,255,.025),0 0 0 92px rgba(49,92,255,.014);
}
#sobre .about-layout{
  grid-template-columns:minmax(300px,.78fr) minmax(0,1.22fr);
  align-items:center;
  gap:clamp(3rem,7vw,7rem);
}
#sobre .portrait-wrap{
  width:100%;
  max-width:420px;
  margin:0;
  padding:10px;
  border:1px solid rgba(146,166,255,.28);
  border-radius:26px;
  background:linear-gradient(145deg,rgba(49,92,255,.18),rgba(9,12,24,.8) 40%,rgba(49,92,255,.06));
  box-shadow:0 30px 75px rgba(0,0,0,.36),inset 0 1px 0 rgba(255,255,255,.09);
}
#sobre .portrait-wrap:before{display:none}
#sobre .portrait-wrap img{
  aspect-ratio:4/4.65;
  border-radius:17px 17px 0 0;
  filter:saturate(.92) contrast(1.04);
  box-shadow:none;
}
#sobre .portrait-caption{
  position:relative;
  margin:0;
  padding:1.15rem 1.2rem 1.2rem;
  border-radius:0 0 17px 17px;
  background:linear-gradient(110deg,#0f1831,#0a0d18);
  color:#f4f1ea;
}
#sobre .portrait-caption:before{
  content:"";
  position:absolute;
  top:0;
  left:1.2rem;
  width:48px;
  height:2px;
  background:#315cff;
  box-shadow:0 0 14px rgba(49,92,255,.85);
}
#sobre .portrait-caption strong{font-size:.86rem}
#sobre .portrait-caption span{margin-top:.18rem;color:#9caeff}
#sobre .about-copy{
  position:relative;
  padding:clamp(2rem,4vw,3.4rem);
  border:1px solid rgba(162,177,255,.16);
  border-radius:28px;
  background:linear-gradient(140deg,rgba(24,31,56,.84),rgba(8,11,22,.78));
  box-shadow:0 28px 70px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.055);
  backdrop-filter:blur(14px);
}
#sobre .about-copy:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100px;
  height:2px;
  border-radius:0 2px 2px 0;
  background:linear-gradient(90deg,#315cff,transparent);
  box-shadow:0 0 18px rgba(49,92,255,.72);
}
#sobre .about-copy .eyebrow{color:#aabaff}
#sobre .about-copy h2{max-width:790px;margin-bottom:1.85rem;color:#f4f1ea}
#sobre .about-copy>p:not(.eyebrow){max-width:710px;margin-bottom:1.05rem;color:#b1b8c8;font-size:.94rem;line-height:1.78}
#sobre .about-copy>p:last-child{margin-bottom:0;color:#d5d9e4}
@media(max-width:900px){
  #sobre .about-layout{grid-template-columns:1fr;gap:2.25rem}
  #sobre .portrait-wrap{max-width:500px}
}
@media(max-width:600px){
  #sobre.about-section{padding-block:5.8rem}
  #sobre .portrait-wrap{width:100%;margin:0;padding:7px;border-radius:20px}
  #sobre .portrait-wrap img{border-radius:13px 13px 0 0}
  #sobre .portrait-caption{padding:1rem;border-radius:0 0 13px 13px}
  #sobre .portrait-caption:before{left:1rem}
  #sobre .about-copy{padding:1.45rem;border-radius:20px}
  #sobre .about-copy h2{margin-bottom:1.35rem}
  #sobre .about-copy>p:not(.eyebrow){font-size:.87rem;line-height:1.72}
}

/* Processo: marco de conclusão da rota. */
#processo .process-finish{
  position:absolute;
  z-index:4;
  bottom:-2px;
  left:50%;
  display:grid;
  place-items:center;
  width:88px;
  height:88px;
  opacity:.72;
  transform:translateX(-50%) scale(.92);
  pointer-events:none;
}
#processo .process-finish:before,
#processo .process-finish:after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
#processo .process-finish:before{
  inset:6px;
  border:1px solid rgba(115,145,255,.48);
  box-shadow:0 0 22px rgba(49,92,255,.28),inset 0 0 18px rgba(49,92,255,.1);
}
#processo .process-finish:after{
  inset:15px;
  z-index:-1;
  background:radial-gradient(circle,rgba(49,92,255,.34),transparent 68%);
  filter:blur(5px);
}
#processo .process-finish .process-brand-symbol{
  position:relative;
  inset:auto;
  z-index:1;
  display:block;
  width:76px;
  height:auto;
  opacity:.92;
  filter:drop-shadow(0 0 10px rgba(101,133,255,.94)) drop-shadow(0 0 25px rgba(49,92,255,.58));
  transform:none;
  pointer-events:none;
}
html.motion-enabled #processo .process-finish{opacity:.28;transform:translateX(-50%) scale(.68);transition:opacity .32s var(--motion-ease),transform .58s var(--motion-ease-cinematic)}
html.motion-enabled #processo .process-finish.is-route-complete{opacity:1;animation:process-finish-arrival .82s var(--motion-ease-cinematic) both}
html.motion-enabled #processo .process-finish.is-route-complete .process-brand-symbol{animation:process-finish-breathe 2.7s 1s ease-in-out infinite}
html.motion-enabled #processo .process-finish.is-route-complete:before{animation:process-finish-ring 2.7s 1s ease-out infinite}
@keyframes process-finish-arrival{0%{opacity:.12;transform:translateX(-50%) scale(.48)}64%{opacity:1;transform:translateX(-50%) scale(1.12)}100%{opacity:1;transform:translateX(-50%) scale(1)}}
@keyframes process-finish-breathe{0%,100%{transform:scale(1)}50%{transform:scale(1.1)}}
@keyframes process-finish-ring{0%{opacity:.85;transform:scale(.72)}75%,100%{opacity:0;transform:scale(1.65)}}
@media(max-width:900px){#processo .process-finish{display:none}}
@media(prefers-reduced-motion:reduce){#processo .process-finish{opacity:1;transform:translateX(-50%)}#processo .process-finish:before{animation:none}#processo .process-finish .process-brand-symbol{animation:none}}
