*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:       #07101F;
  --bg-2:     #0C1A30;
  --bg-3:     #112240;
  --bg-4:     #162A4E;
  --blue:     #2B7FFF;
  --blue-dim: #1A5FCC;
  --blue-pale:#1A3057;
  --green:    #1DBF6E;
  --green-dim:#129950;
  --text:     #E0E8F4;
  --text-2:   #7A90B2;
  --text-3:   #3E5577;
  --border:   rgba(43,127,255,.13);
  --border-2: rgba(43,127,255,.07);
  --r:        8px;
  --r-lg:     14px;
  --r-xl:     20px;
  --f-head:   'Outfit', system-ui, sans-serif;
  --f-body:   'DM Sans', system-ui, sans-serif;
  --wapp:     #25D366;
}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}
body{font-family:var(--f-body);background:var(--bg);color:var(--text);line-height:1.65;overflow-x:hidden}

/* ─── NAV ─── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 5vw;height:80px;
  transition:background .3s,border-color .3s,backdrop-filter .3s;
  border-bottom:1px solid transparent;
}
nav.scrolled{background:rgba(7,16,31,.92);backdrop-filter:blur(16px);border-color:var(--border)}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none;flex-shrink:0}
.nav-mark{width:34px;height:34px;background:var(--blue);border-radius:8px;display:grid;place-items:center}
.nav-mark svg{width:18px;height:18px;fill:#fff}
.nav-name{font-family:var(--f-head);font-size:1rem;font-weight:700;color:#fff;letter-spacing:-.01em}
.nav-links{display:flex;gap:2rem;list-style:none}
.nav-links a{color:var(--text-2);text-decoration:none;font-size:.875rem;font-weight:400;transition:color .2s;letter-spacing:.02em}
.nav-links a:hover{color:#fff}
.nav-cta{
  background:var(--blue);color:#fff;
  padding:.5rem 1.25rem;border-radius:var(--r);
  font-size:.875rem;font-weight:500;text-decoration:none;
  transition:background .2s,transform .15s;white-space:nowrap;
}
.nav-cta:hover{background:var(--blue-dim);transform:translateY(-1px)}
.nav-mobile{display:none;background:none;border:none;cursor:pointer;padding:4px}
.nav-mobile span{display:block;width:22px;height:2px;background:var(--text-2);margin:4px 0;transition:.3s}


/* ─── LOGO ─── */
.nav-logo-img{height:56px;width:auto;display:block}
.footer-logo-img{height:44px;width:auto;display:block}
/* ─── WAPP FLOAT ─── */
.wapp-float{
  position:fixed;bottom:1.5rem;right:1.5rem;z-index:300;
  width:56px;height:56px;border-radius:50%;
  background:var(--wapp);display:grid;place-items:center;
  box-shadow:0 4px 24px rgba(37,211,102,.35);
  text-decoration:none;transition:transform .2s,box-shadow .2s;
}
.wapp-float:hover{transform:scale(1.08);box-shadow:0 6px 32px rgba(37,211,102,.5)}
.wapp-float svg{width:28px;height:28px;fill:#fff}

/* ─── HERO ─── */
#hero{
  min-height:100vh;background:var(--bg);
  display:flex;flex-direction:column;justify-content:center;
  padding:0 5vw;position:relative;overflow:hidden;
}
.hero-bg-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(var(--border-2) 1px,transparent 1px),
    linear-gradient(90deg,var(--border-2) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(ellipse 70% 70% at 55% 50%,black 30%,transparent 100%);
}
.hero-glow{position:absolute;top:20%;right:10%;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(43,127,255,.12) 0%,transparent 70%);pointer-events:none}
.hero-content{position:relative;max-width:860px;padding-top:90px}
.hero-h1{
  font-family:var(--f-head);
  font-size:clamp(2.6rem,5.5vw,4.8rem);
  font-weight:700;line-height:1.06;
  color:#fff;letter-spacing:-.025em;
  margin-bottom:1.5rem;
}
.hero-h1 .accent{color:var(--blue)}
.hero-sub{
  font-size:clamp(1rem,1.5vw,1.15rem);
  color:var(--text-2);max-width:580px;
  line-height:1.8;margin-bottom:2.5rem;font-weight:300;
}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:3.5rem}
.btn-blue{
  background:var(--blue);color:#fff;
  padding:.8rem 1.75rem;border-radius:var(--r);
  font-size:.9375rem;font-weight:500;text-decoration:none;
  transition:all .2s;display:inline-flex;align-items:center;gap:.5rem;
}
.btn-blue:hover{background:var(--blue-dim);transform:translateY(-1px)}
.btn-outline{
  background:transparent;color:var(--text-2);
  padding:.8rem 1.75rem;border-radius:var(--r);
  font-size:.9375rem;font-weight:400;text-decoration:none;
  border:1px solid var(--border);
  transition:all .2s;display:inline-flex;align-items:center;gap:.5rem;
}
.btn-outline:hover{border-color:rgba(43,127,255,.4);color:#fff}
.hero-badges{display:flex;gap:1rem;flex-wrap:wrap}
.hero-badge{
  display:flex;align-items:center;gap:.5rem;
  background:var(--bg-3);border:1px solid var(--border);
  padding:.4rem 1rem;border-radius:40px;
  font-size:.8rem;color:var(--text-2);font-weight:400;
}
.hero-badge svg{width:13px;height:13px;fill:var(--green);flex-shrink:0}

/* ─── STRIP ─── */
.strip{
  background:var(--bg-2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:1.25rem 5vw;
  display:flex;align-items:center;justify-content:center;
  gap:2.5rem;flex-wrap:wrap;
}
.strip-item{
  display:flex;align-items:center;gap:.5rem;
  color:var(--text-3);font-size:.8rem;letter-spacing:.04em;white-space:nowrap;
}
.strip-item svg{width:12px;height:12px;fill:var(--green);flex-shrink:0}

/* ─── SECTIONS BASE ─── */
section{padding:4rem 5vw}
#sobre,#sistemas,#marketing,#clientes,#parceria{padding-top:1.25rem;padding-bottom:2rem;min-height:calc(100vh - 80px)}
.s-tag{
  font-size:.72rem;font-weight:600;color:var(--blue);
  letter-spacing:.12em;text-transform:uppercase;
  margin-bottom:.875rem;
}

.s-h2{
  font-family:var(--f-head);
  font-size:clamp(2rem,3.8vw,3rem);
  font-weight:700;line-height:1.1;
  letter-spacing:-.02em;color:#fff;margin-bottom:.5rem;
}
.s-sub{font-size:1.0625rem;color:var(--text-2);max-width:540px;font-weight:300;line-height:1.7;margin-bottom:1.25rem}

/* ─── SOBRE NÓS ─── */
#sobre{background:var(--bg-2)}
.sobre-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:start}
.sobre-text p{font-size:.9375rem;color:var(--text-2);font-weight:300;line-height:1.75;margin-bottom:.625rem}
.sobre-text p strong{color:var(--text);font-weight:500}
.sobre-equipes{display:flex;flex-direction:column;gap:.4rem;margin-top:.875rem}
.equipe-item{
  display:flex;align-items:flex-start;gap:.75rem;
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--r-lg);padding:.75rem;
}
.equipe-icon{
  width:40px;height:40px;border-radius:8px;
  background:rgba(43,127,255,.12);
  display:grid;place-items:center;flex-shrink:0;
}
.equipe-icon svg{width:18px;height:18px;fill:var(--blue)}
.equipe-name{font-family:var(--f-head);font-size:.95rem;font-weight:600;color:#fff;margin-bottom:.25rem}
.equipe-desc{font-size:.825rem;color:var(--text-2);font-weight:300;line-height:1.6}
.sobre-card{
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--r-xl);padding:1.75rem;
  display:flex;flex-direction:column;gap:1rem;
}
.sobre-stat{border-bottom:1px solid var(--border-2);padding-bottom:1.25rem}
.sobre-stat:last-child{border-bottom:none;padding-bottom:0}
.sobre-stat-num{
  font-family:var(--f-head);font-size:2.5rem;
  font-weight:800;color:var(--blue);line-height:1;margin-bottom:.25rem;
}
.sobre-stat-label{font-size:.875rem;color:var(--text-2);font-weight:300}

/* ─── SISTEMAS ─── */
#sistemas{background:var(--bg)}
.sistemas-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.25rem}
.sist-card{
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:var(--r-xl);padding:1.75rem;
  transition:transform .2s,border-color .2s,box-shadow .2s;
  display:flex;flex-direction:column;
}
.sist-card:hover{transform:translateY(-4px);border-color:rgba(43,127,255,.3);box-shadow:0 16px 48px rgba(0,0,0,.3)}
.sist-tag{
  display:inline-flex;align-items:center;gap:.375rem;
  background:rgba(43,127,255,.1);border:1px solid rgba(43,127,255,.2);
  color:var(--blue);padding:.3rem .75rem;border-radius:40px;
  font-size:.72rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  margin-bottom:1.5rem;width:fit-content;
}
.sist-tag.g{background:rgba(29,191,110,.1);border-color:rgba(29,191,110,.2);color:var(--green)}
.sist-tag.t{background:rgba(71,160,220,.1);border-color:rgba(71,160,220,.2);color:#47A0DC}
.sist-name{font-family:var(--f-head);font-size:1.5rem;font-weight:700;color:#fff;margin-bottom:.375rem;letter-spacing:-.02em}
.sist-tagline{font-size:.875rem;color:var(--text-2);margin-bottom:1rem;font-weight:300;line-height:1.6}
.sist-what{
  background:var(--bg-3);border:1px solid var(--border-2);
  border-radius:var(--r);padding:1rem 1.125rem;margin-bottom:1.5rem;
}
.sist-what-label{font-size:.7rem;font-weight:600;color:var(--text-3);letter-spacing:.08em;text-transform:uppercase;margin-bottom:.625rem}
.sist-what-text{font-size:.875rem;color:var(--text-2);font-weight:300;line-height:1.65}
.sist-list{list-style:none;display:flex;flex-direction:column;gap:.5rem;margin-bottom:auto}
.sist-list li{font-size:.845rem;color:var(--text-2);display:flex;align-items:flex-start;gap:.5rem;font-weight:300}
.sist-list li::before{content:'';width:5px;height:5px;background:var(--blue);border-radius:50%;flex-shrink:0;margin-top:.48rem}
.sist-list li.g::before{background:var(--green)}
.sist-list li.t::before{background:#47A0DC}
.sist-footer{margin-top:1.25rem;padding-top:1rem;border-top:1px solid var(--border-2)}
.btn-sist{
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  background:var(--bg-3);border:1px solid var(--border);
  color:var(--text);padding:.7rem 1rem;border-radius:var(--r);
  font-size:.875rem;font-weight:500;text-decoration:none;
  transition:all .2s;width:100%;
}
.btn-sist:hover{background:var(--blue);border-color:var(--blue);color:#fff}
.btn-sist svg{width:16px;height:16px;fill:currentColor}

/* ─── MARKETING ─── */
#marketing{background:var(--bg-2)}
.mkt-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:start}
.mkt-feats{display:grid;grid-template-columns:1fr 1fr;gap:.625rem;margin-bottom:1.25rem}
.mkt-feat{
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--r-lg);padding:1.25rem;
}
.mkt-feat-t{font-family:var(--f-head);font-size:.9rem;font-weight:600;color:#fff;margin-bottom:.375rem}
.mkt-feat-d{font-size:.8rem;color:var(--text-2);font-weight:300;line-height:1.6}
.mkt-pills{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:1rem}
.mkt-pill{
  background:rgba(43,127,255,.08);border:1px solid rgba(43,127,255,.15);
  color:var(--text-2);padding:.3rem .7rem;border-radius:40px;
  font-size:.775rem;font-weight:400;
}
.mkt-right{display:flex;flex-direction:column;gap:.5rem;padding-top:0}
.mkt-big-card{
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--r-xl);padding:1rem;
}
.mkt-big-title{font-family:var(--f-head);font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:.5rem}
.mkt-big-sub{font-size:.875rem;color:var(--text-2);font-weight:300;line-height:1.7}
.mkt-big-icon{
  width:44px;height:44px;background:rgba(43,127,255,.12);
  border-radius:10px;display:grid;place-items:center;margin-bottom:1rem;
}
.mkt-big-icon svg{width:22px;height:22px;fill:var(--blue)}

/* ─── QUEM ATENDEMOS ─── */
#clientes{background:var(--bg)}
.clientes-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.cli-card{
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:var(--r-xl);padding:2rem;position:relative;overflow:hidden;
}
.cli-num{
  font-family:var(--f-head);font-size:5rem;font-weight:800;
  color:var(--bg-3);line-height:1;
  position:absolute;top:1rem;right:1.5rem;letter-spacing:-.04em;
}
.cli-icon{
  width:42px;height:42px;background:var(--bg-3);
  border-radius:8px;display:grid;place-items:center;margin-bottom:1.25rem;
}
.cli-icon svg{width:20px;height:20px;fill:var(--blue)}
.cli-title{font-family:var(--f-head);font-size:1.2rem;font-weight:700;color:#fff;margin-bottom:.5rem;letter-spacing:-.01em}
.cli-desc{font-size:.875rem;color:var(--text-2);font-weight:300;line-height:1.75;margin-bottom:1.25rem}
.cli-tags{display:flex;flex-wrap:wrap;gap:.4rem}
.cli-tag{
  background:var(--bg-3);color:var(--text-3);
  padding:.25rem .625rem;border-radius:4px;
  font-size:.75rem;font-weight:400;
  border:1px solid var(--border-2);
}

/* ─── PARCERIA ─── */
#parceria{background:var(--bg-2)}
.parc-box{
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--r-xl);padding:3rem;
  display:grid;grid-template-columns:1fr auto;gap:3rem;align-items:center;
}
.parc-lead{font-size:1.05rem;color:var(--text-2);font-weight:300;line-height:1.85;max-width:500px;margin-bottom:2rem}
.parc-items{display:flex;flex-direction:column;gap:.875rem}
.parc-item{display:flex;align-items:flex-start;gap:.75rem}
.parc-item-ic{
  width:28px;height:28px;background:rgba(43,127,255,.12);
  border-radius:6px;display:grid;place-items:center;flex-shrink:0;margin-top:2px;
}
.parc-item-ic svg{width:13px;height:13px;fill:var(--blue)}
.parc-item-txt{font-size:.875rem;color:var(--text-2);font-weight:300;line-height:1.65}
.parc-item-txt strong{color:#fff;font-weight:500}
.parc-cta{text-align:right;display:flex;flex-direction:column;align-items:flex-end;gap:.875rem}
.parc-note{font-size:.775rem;color:var(--text-3);font-weight:300}

/* ─── FOOTER ─── */
footer{background:var(--bg-2);border-top:1px solid var(--border);padding:4rem 5vw 2rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:.875rem}
.footer-brand-name{font-family:var(--f-head);font-size:1rem;font-weight:700;color:#fff}
.footer-tagline{font-size:.875rem;color:var(--text-2);font-weight:300;line-height:1.75;max-width:260px}
.footer-col-t{font-size:.72rem;font-weight:600;color:var(--text-3);letter-spacing:.1em;text-transform:uppercase;margin-bottom:.875rem}
.footer-lks{list-style:none;display:flex;flex-direction:column;gap:.5rem}
.footer-lks a{color:var(--text-2);text-decoration:none;font-size:.875rem;font-weight:300;transition:color .2s}
.footer-lks a:hover{color:#fff}
.footer-contacts{display:flex;flex-direction:column;gap:.5rem}
.footer-ci{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:var(--text-2);font-weight:300;text-decoration:none;transition:color .2s}
.footer-ci:hover{color:#fff}
.footer-ci svg{width:14px;height:14px;fill:var(--blue);flex-shrink:0;opacity:.8}
.footer-bottom{border-top:1px solid var(--border-2);padding-top:1.5rem;display:flex;justify-content:space-between;align-items:center}
.footer-copy{font-size:.8rem;color:var(--text-3);font-weight:300}
.footer-badge{
  background:rgba(43,127,255,.1);border:1px solid rgba(43,127,255,.2);
  color:var(--blue);padding:.25rem .75rem;border-radius:40px;font-size:.75rem;font-weight:500;
}

/* ─── ANIMATE ─── */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .55s ease,transform .55s ease}
.reveal.on{opacity:1;transform:none}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}



/* ─── TEMA SISTEMAS (verde) ─── */
#sistemas{background:#071A0E}
#sistemas .s-tag{color:#1DBF6E}
#sistemas .sist-card{background:#0C2218;border-color:rgba(29,191,110,.14)}
#sistemas .sist-card:hover{border-color:rgba(29,191,110,.35);box-shadow:0 16px 48px rgba(0,0,0,.35)}
#sistemas .sist-what{background:rgba(29,191,110,.06);border-color:rgba(29,191,110,.12)}
#sistemas .sist-what-label{color:rgba(29,191,110,.55)}
#sistemas .sist-toggle{background:#0F2A1C;border-color:rgba(29,191,110,.18);color:var(--text-2)}
#sistemas .sist-toggle:hover{background:#163824;color:#fff}
#sistemas .sist-toggle svg{fill:#1DBF6E}
#sistemas .sist-toggle.open{background:#163824}
#sistemas .sist-list li::before{background:#1DBF6E}
#sistemas .btn-sist{background:#0F2A1C;border-color:rgba(29,191,110,.2)}
#sistemas .btn-sist:hover{background:#1DBF6E;border-color:#1DBF6E;color:#071A0E}
#sistemas .sist-footer{border-color:rgba(29,191,110,.12)}
#sistemas .sist-tag{background:rgba(29,191,110,.1);border-color:rgba(29,191,110,.22);color:#1DBF6E}
#sistemas .sist-tag.g{background:rgba(29,191,110,.14);border-color:rgba(29,191,110,.28);color:#33D48E}
#sistemas .sist-tag.t{background:rgba(71,180,140,.1);border-color:rgba(71,180,140,.2);color:#47B48C}
#sistemas .s-h2{color:#fff}
#sistemas .s-sub{color:rgba(180,230,200,.6)}

/* ─── TEMA MARKETING (rosa) ─── */
#marketing{background:#16090F}
#marketing .s-tag{color:#D45F9A}
#marketing .mkt-feat{background:#220D18;border-color:rgba(212,95,154,.13)}
#marketing .mkt-feat:hover{border-color:rgba(212,95,154,.28)}
#marketing .mkt-feat-t{color:#fff}
#marketing .mkt-feat-d{color:var(--text-2)}
#marketing .mkt-pill{background:rgba(212,95,154,.08);border-color:rgba(212,95,154,.18);color:rgba(220,180,200,.7)}
#marketing .mkt-big-card{background:#220D18;border-color:rgba(212,95,154,.13)}
#marketing .mkt-big-title{color:#E070B0}
#marketing .mkt-big-icon{background:rgba(212,95,154,.12)}
#marketing .mkt-big-icon svg{fill:#D45F9A;stroke:#D45F9A}
#marketing .s-sub{color:rgba(220,180,200,.6)}
#marketing .s-h2{color:#fff}
#marketing .btn-blue{background:#C04A88}
#marketing .btn-blue:hover{background:#A83A74}

/* ─── TEMA PARCEIROS (roxo) ─── */
#parceria{background:#0A0814}
#parceria .s-tag{color:#8B6FE8}
#parceria .parc-box{background:#130E26;border-color:rgba(139,111,232,.15)}
#parceria .parc-lead{color:rgba(200,190,240,.6)}
#parceria .parc-item-ic{background:rgba(139,111,232,.12)}
#parceria .parc-item-ic svg{fill:#8B6FE8}
#parceria .parc-item-txt{color:rgba(200,190,240,.6)}
#parceria .parc-item-txt strong{color:#fff}
#parceria .parc-note{color:rgba(139,111,232,.4)}
#parceria .s-h2{color:#fff}
#parceria .btn-blue{background:#7B60E0}
#parceria .btn-blue:hover{background:#6448C8}

/* ─── TEMA QUEM ATENDEMOS (azul mais claro) ─── */
#clientes{background:#091628}
#clientes .s-tag{color:#5A9FFF}
#clientes .cli-card{background:#0E1E38;border-color:rgba(43,127,255,.18)}
#clientes .cli-card:hover{border-color:rgba(43,127,255,.35)}
#clientes .cli-num{color:#132240}
#clientes .cli-icon{background:#132240}
/* ─── ACCORDION SISTEMAS ─── */
.sist-expand{max-height:0;overflow:hidden;transition:max-height .45s ease,opacity .35s ease;opacity:0;margin-bottom:0}
.sist-expand.open{max-height:800px;opacity:1;margin-bottom:1.25rem}
.sist-list{list-style:none;display:flex;flex-direction:column;gap:.5rem;margin-top:.875rem}
.sist-toggle{
  display:flex;align-items:center;justify-content:space-between;
  width:100%;background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--r);padding:.65rem 1rem;
  color:var(--text-2);font-size:.845rem;font-family:var(--f-body);
  cursor:pointer;transition:background .2s,color .2s;
  margin-bottom:1.25rem;
}
.sist-toggle:hover{background:var(--bg-4);color:var(--text)}
.sist-toggle svg{width:14px;height:14px;fill:var(--blue);transition:transform .3s;flex-shrink:0}
.sist-toggle.open svg{transform:rotate(180deg)}

/* ─── RESPONSIVE TABLET ─── */
@media(max-width:1024px){
  .sobre-grid,.mkt-grid{grid-template-columns:1fr}
  .sobre-card{display:grid;grid-template-columns:1fr 1fr 1fr;gap:1rem}
  .sobre-stat{border-bottom:none;border-right:1px solid var(--border-2);padding-right:1rem}
  .sobre-stat:last-child{border-right:none}
  .parc-box{grid-template-columns:1fr}
  .parc-cta{text-align:left;align-items:flex-start}
  .footer-grid{grid-template-columns:1fr 1fr}
  .mkt-right{padding-top:0}
}

/* ─── RESPONSIVE MOBILE ─── */
@media(max-width:768px){

  /* NAV */
  .nav-links,.nav-cta{display:none}
  .nav-mobile{display:block}
  nav.nav-open{background:rgba(7,16,31,.98);backdrop-filter:blur(16px)}
  nav.nav-open .nav-links{
    display:flex;flex-direction:column;gap:0;
    position:fixed;top:80px;left:0;right:0;
    background:rgba(7,16,31,.98);backdrop-filter:blur(16px);
    padding:.5rem 0 1rem;
    border-bottom:1px solid var(--border);
    z-index:199;
  }
  nav.nav-open .nav-links a{
    display:block;padding:.875rem 6vw;
    font-size:1rem;color:var(--text);
    border-bottom:1px solid var(--border-2);
  }
  nav.nav-open .nav-cta{
    display:block;margin:1rem 6vw 0;
    text-align:center;
  }
  .nav-mobile.active span:nth-child(1){transform:translateY(6px) rotate(45deg)}
  .nav-mobile.active span:nth-child(2){opacity:0;transform:scaleX(0)}
  .nav-mobile.active span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
  .nav-mobile span{transition:transform .25s,opacity .25s}

  /* HERO */
  #hero{min-height:100svh;padding:0 6vw}
  .hero-content{padding-top:100px}
  .hero-h1{font-size:clamp(2rem,8vw,2.8rem);letter-spacing:-.02em}
  .hero-sub{font-size:.9375rem;margin-bottom:1.75rem}
  .hero-actions{flex-direction:column;gap:.625rem}
  .btn-blue,.btn-outline{width:100%;justify-content:center;padding:.875rem 1.25rem}
  .hero-badges{flex-direction:column;gap:.4rem}
  .hero-badge{font-size:.75rem}
  .hero-glow{width:280px;height:280px}

  /* STRIP */
  .strip{gap:.75rem;padding:1rem 5vw;justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap}
  .strip::-webkit-scrollbar{display:none}

  /* SEÇÕES */
  #sobre,#sistemas,#marketing,#clientes,#parceria{
    padding-top:1.5rem;padding-bottom:2rem;
    min-height:unset;
  }
  .s-h2{font-size:clamp(1.6rem,6vw,2.2rem)}
  .s-sub{font-size:.9375rem;margin-bottom:1rem}

  /* SOBRE */
  .sobre-grid{grid-template-columns:1fr;gap:1.5rem}
  .sobre-card{grid-template-columns:1fr;gap:.75rem;padding:1.25rem}
  .sobre-stat{border-right:none;border-bottom:1px solid var(--border-2);padding-bottom:.875rem}
  .sobre-stat:last-child{border-bottom:none;padding-bottom:0}
  .sobre-stat-num{font-size:2rem}
  .equipe-item{padding:.875rem}
  .equipe-name{font-size:.875rem}
  .equipe-desc{font-size:.8rem}

  /* SISTEMAS */
  .sistemas-grid{grid-template-columns:1fr}
  .sist-card{padding:1.25rem}
  .sist-name{font-size:1.25rem}

  /* MARKETING */
  .mkt-grid{grid-template-columns:1fr;gap:1.5rem}
  .mkt-feats{grid-template-columns:1fr;gap:.5rem}
  .mkt-pills{gap:.375rem}
  .mkt-big-card{padding:.875rem}
  .mkt-big-title{font-size:.9rem}
  .mkt-big-sub{font-size:.8rem}
  .mkt-right{gap:.5rem}

  /* CLIENTES */
  .clientes-grid{grid-template-columns:1fr}
  .cli-num{font-size:3.5rem}

  /* PARCERIA */
  .parc-box{padding:1.5rem;grid-template-columns:1fr}
  .parc-cta{text-align:left;align-items:flex-start}
  .parc-lead{font-size:.9375rem}

  /* FOOTER */
  .footer-grid{grid-template-columns:1fr;gap:1.5rem}
  .footer-bottom{flex-direction:column;gap:.75rem;text-align:center}
  .footer-tagline{max-width:100%}

  /* WAPP FLOAT */
  .wapp-float{width:48px;height:48px;bottom:1rem;right:1rem}
  .wapp-float svg{width:24px;height:24px}
}

/* ─── RESPONSIVE SMALL PHONE ─── */
@media(max-width:400px){
  .hero-h1{font-size:1.85rem}
  .s-h2{font-size:1.5rem}
  nav{padding:0 4vw}
  section{padding:1.25rem 4vw}
  .sistemas-grid,.clientes-grid{gap:.875rem}
}
