/* =====================================================================
   TRIVORI — Landing v2 (moderna, banner animado)
   ===================================================================== */
:root{
  --bg:#05070f;
  --bg-2:#070b16;
  --surface:rgba(255,255,255,.04);
  --surface-2:rgba(255,255,255,.07);
  --stroke:rgba(255,255,255,.09);
  --stroke-strong:rgba(255,255,255,.17);
  --text:#eaf1ff;
  --muted:#96a5c6;
  --muted-2:#6a7aa0;

  --blue:#2f7eff;
  --blue-lt:#7fb7ff;
  --blue-dk:#0f3ecb;
  --indigo:#4f46e5;
  --cyan:#22d3ee;
  --teal:#5eead4;
  --whats:#25d366;

  --grad-blue:linear-gradient(135deg,#7fb7ff 0%,#2f7eff 45%,#0f3ecb 100%);
  --grad-cyan:linear-gradient(135deg,#5eead4 0%,#22b8e6 100%);
  --grad-text:linear-gradient(115deg,#a8caff 0%,#2f7eff 50%,#5eead4 100%);

  --radius:18px;
  --radius-lg:26px;
  --maxw:1200px;
  --shadow:0 28px 70px -26px rgba(3,10,35,.9);
  --ease:cubic-bezier(.2,.7,.2,1);
  --font:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --display:'Sora',var(--font);
  --brand-font:'Aldrich',var(--display);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font);background:var(--bg);color:var(--text);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4,h5{font-family:var(--display);font-weight:700;line-height:1.08;letter-spacing:-.02em}
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

/* ---------- Animated aurora banner ---------- */
.aurora{position:fixed;inset:0;z-index:-2;overflow:hidden;background:
  radial-gradient(1000px 600px at 78% -8%,rgba(47,126,255,.10),transparent 60%),
  linear-gradient(180deg,#05070f 0%,#070c18 55%,#05070f 100%)}
.aurora__blob{position:absolute;border-radius:50%;filter:blur(90px);opacity:.55;mix-blend-mode:screen}
.aurora .a1{width:620px;height:620px;background:radial-gradient(circle,#2f7eff,transparent 68%);top:-160px;left:-120px;animation:drift1 20s var(--ease) infinite}
.aurora .a2{width:520px;height:520px;background:radial-gradient(circle,#4f46e5,transparent 68%);top:10%;right:-140px;animation:drift2 24s var(--ease) infinite}
.aurora .a3{width:480px;height:480px;background:radial-gradient(circle,#22d3ee,transparent 70%);bottom:-160px;left:20%;opacity:.32;animation:drift3 26s var(--ease) infinite}
.aurora .a4{width:420px;height:420px;background:radial-gradient(circle,#7fb7ff,transparent 70%);top:40%;left:45%;opacity:.22;animation:drift1 30s var(--ease) infinite reverse}
@keyframes drift1{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(120px,80px) scale(1.15)}}
@keyframes drift2{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-140px,60px) scale(1.2)}}
@keyframes drift3{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(80px,-90px) scale(1.1)}}
.aurora__grid{position:absolute;inset:0;background-image:
  linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
  linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse 75% 60% at 50% 0%,#000 20%,transparent 72%);
  -webkit-mask-image:radial-gradient(ellipse 75% 60% at 50% 0%,#000 20%,transparent 72%)}
.aurora__noise{position:absolute;inset:0;opacity:.35;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E")}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.55em;font-family:var(--display);font-weight:600;font-size:.95rem;
  padding:.82em 1.5em;border-radius:999px;border:1px solid transparent;cursor:pointer;position:relative;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),background .25s,border-color .25s;white-space:nowrap}
.btn--sm{padding:.6em 1.1em;font-size:.85rem}
.btn--lg{padding:1em 1.8em;font-size:1.02rem}
.btn--block{width:100%}
.btn--primary{background:var(--grad-blue);color:#fff;box-shadow:0 16px 38px -14px rgba(47,126,255,.85)}
.btn--primary:hover{transform:translateY(-3px);box-shadow:0 24px 50px -14px rgba(47,126,255,1)}
.btn--cyan{background:var(--grad-cyan);color:#04121c;box-shadow:0 16px 38px -14px rgba(34,211,238,.75)}
.btn--cyan:hover{transform:translateY(-3px);box-shadow:0 24px 50px -14px rgba(34,211,238,.95)}
.btn--ghost{background:var(--surface);color:var(--text);border-color:var(--stroke-strong);backdrop-filter:blur(8px)}
.btn--ghost:hover{background:var(--surface-2);border-color:var(--blue);transform:translateY(-3px)}
.btn--whatsapp{background:var(--whats);color:#04140a;box-shadow:0 16px 38px -14px rgba(37,211,102,.8)}
.btn--whatsapp:hover{transform:translateY(-3px);box-shadow:0 24px 50px -14px rgba(37,211,102,1)}

/* ---------- Pills / eyebrow / tags ---------- */
.pill{display:inline-flex;align-items:center;gap:.5em;font-size:.82rem;font-weight:600;padding:.45em 1em;border-radius:999px;background:var(--surface);border:1px solid var(--stroke);color:var(--muted)}
.pill--glow{box-shadow:0 0 34px -8px rgba(47,126,255,.55)}
.pill .dot{width:8px;height:8px;border-radius:50%;background:var(--blue);box-shadow:0 0 12px var(--blue);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.eyebrow{display:inline-block;font-family:var(--display);font-weight:700;font-size:.8rem;letter-spacing:.16em;text-transform:uppercase;color:var(--blue-lt);margin-bottom:14px}
.grad-text{background:var(--grad-text);-webkit-background-clip:text;background-clip:text;color:transparent}
.tag{font-size:.72rem;font-weight:700;font-family:var(--display);letter-spacing:.06em;text-transform:uppercase;padding:.35em .8em;border-radius:999px}
.tag--blue{background:rgba(47,126,255,.16);color:var(--blue-lt);border:1px solid rgba(47,126,255,.32)}
.tag--cyan{background:rgba(34,211,238,.14);color:var(--teal);border:1px solid rgba(34,211,238,.32)}

/* ---------- Brand ---------- */
.brand{display:flex;align-items:center;gap:12px}
.brand__mark{filter:drop-shadow(0 4px 16px rgba(47,126,255,.55))}
.brand__word{font-family:var(--brand-font);font-size:1.28rem;letter-spacing:.28em;padding-left:.1em}
.brand--footer .brand__word{font-size:1.5rem}

/* ---------- Header ---------- */
.header{position:fixed;top:0;left:0;right:0;z-index:100;transition:all .35s var(--ease)}
.header__inner{display:flex;align-items:center;justify-content:space-between;height:76px}
.header.scrolled{background:rgba(5,7,15,.72);backdrop-filter:blur(16px);border-bottom:1px solid var(--stroke)}
.nav{display:flex;align-items:center;gap:6px}
.nav__link{padding:.5em .85em;border-radius:10px;font-weight:500;font-size:.94rem;color:var(--muted);transition:color .2s,background .2s}
.nav__link:hover{color:var(--text);background:var(--surface)}
.nav__cta{margin-left:10px}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px}
.nav-toggle span{width:24px;height:2px;background:var(--text);border-radius:2px;transition:.3s var(--ease)}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- Hero (centered, animated) ---------- */
.hero{position:relative;padding:170px 0 0;text-align:center;overflow:hidden}
.hero__inner{max-width:900px;margin:0 auto;padding-bottom:70px;display:flex;flex-direction:column;align-items:center}
.hero__title{font-size:clamp(2.5rem,6.2vw,4.6rem);font-weight:800;margin:22px 0 22px}
.hero__lead{font-size:1.14rem;color:var(--muted);max-width:640px}
.hero__lead strong{color:var(--text);font-weight:600}
.hero__actions{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;margin:34px 0 34px}
.hero__trust{display:flex;align-items:center;gap:22px;flex-wrap:wrap;justify-content:center}
.trust__item{display:flex;flex-direction:column;text-align:center}
.trust__item b{font-family:var(--display);font-size:1.02rem}
.trust__item span{font-size:.8rem;color:var(--muted-2)}
.trust__dot{width:5px;height:5px;border-radius:50%;background:var(--stroke-strong)}

/* Rotator */
.rotator{display:inline-block;height:1.05em;overflow:hidden;vertical-align:bottom;position:relative;top:.02em}
.rotator__list{display:flex;flex-direction:column;animation:rotate 11s infinite}
.rotator__list b{display:block;height:1.05em;line-height:1.05em;font-weight:800;
  background:var(--grad-text);-webkit-background-clip:text;background-clip:text;color:transparent;white-space:nowrap}
@keyframes rotate{
  0%,15%{transform:translateY(0)}
  20%,35%{transform:translateY(-20%)}
  40%,55%{transform:translateY(-40%)}
  60%,75%{transform:translateY(-60%)}
  80%,100%{transform:translateY(-80%)}
}

/* Marquees */
.marquee{position:relative;overflow:hidden;padding:16px 0;border-top:1px solid var(--stroke);border-bottom:1px solid var(--stroke);
  background:rgba(255,255,255,.02);
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.marquee--bottom{border-top:0}
.marquee__track{display:inline-flex;align-items:center;gap:26px;white-space:nowrap;will-change:transform;animation:scrollx 34s linear infinite}
.marquee__track--rev{animation-direction:reverse;animation-duration:40s}
.marquee__track span{font-family:var(--display);font-weight:600;font-size:1.15rem;color:var(--text);opacity:.9}
.marquee__track span.cy{color:var(--teal)}
.marquee__track i{color:var(--blue);font-style:normal;font-size:.7rem;opacity:.7}
@keyframes scrollx{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ---------- Sections ---------- */
.section{padding:100px 0;position:relative}
.section__head{text-align:center;max-width:720px;margin:0 auto 56px}
.section__title{font-size:clamp(1.9rem,3.6vw,2.8rem)}
.section__sub{color:var(--muted);font-size:1.08rem;margin-top:16px}

/* Soluções */
.solutions{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.sol-card{display:block;padding:36px;border-radius:var(--radius-lg);border:1px solid var(--stroke);position:relative;overflow:hidden;
  background:linear-gradient(165deg,rgba(255,255,255,.06),rgba(255,255,255,.015));transition:transform .4s var(--ease),border-color .4s,box-shadow .4s}
.sol-card__glow{position:absolute;inset:-2px;opacity:0;transition:opacity .45s;pointer-events:none;border-radius:inherit}
.sol-card--digreja .sol-card__glow{background:radial-gradient(460px 200px at 25% -10%,rgba(47,126,255,.22),transparent 60%)}
.sol-card--pay .sol-card__glow{background:radial-gradient(460px 200px at 25% -10%,rgba(34,211,238,.2),transparent 60%)}
.sol-card:hover{transform:translateY(-8px);box-shadow:var(--shadow)}
.sol-card--digreja:hover{border-color:rgba(47,126,255,.5)}
.sol-card--pay:hover{border-color:rgba(34,211,238,.5)}
.sol-card:hover .sol-card__glow{opacity:1}
.sol-card__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}
.sol-card h3{font-size:1.7rem;margin-bottom:10px}
.sol-card p{color:var(--muted)}
.sol-card__link{display:inline-flex;align-items:center;gap:8px;margin-top:22px;font-family:var(--display);font-weight:600;color:var(--blue-lt)}
.sol-card--pay .sol-card__link{color:var(--teal)}
.arrow{width:18px;height:10px;background:currentColor;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 12'%3E%3Cpath d='M0 6h20M15 1l6 5-6 5' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 12'%3E%3Cpath d='M0 6h20M15 1l6 5-6 5' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;transition:transform .3s var(--ease)}
.sol-card:hover .arrow{transform:translateX(5px)}

/* Split product */
.split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-bottom:70px}
.split--reverse .split__copy{order:2}.split--reverse .split__visual{order:1}
.product-logo{height:60px;width:auto;margin-bottom:22px}
.product-logo--pay{height:52px}
.check-list{list-style:none;margin:26px 0 30px;display:grid;gap:12px}
.check-list li{position:relative;padding-left:34px;color:var(--muted)}
.check-list li::before{content:"";position:absolute;left:0;top:2px;width:22px;height:22px;border-radius:50%;background:var(--grad-blue)}
.check-list li::after{content:"";position:absolute;left:6px;top:8px;width:10px;height:6px;border-left:2px solid #05070f;border-bottom:2px solid #05070f;transform:rotate(-45deg)}
.check-list--cyan li::before{background:var(--grad-cyan)}
.split__actions{display:flex;gap:14px;flex-wrap:wrap}

/* App frame */
.app-frame{background:linear-gradient(160deg,rgba(255,255,255,.07),rgba(255,255,255,.015));border:1px solid var(--stroke);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow)}
.app-frame__bar{display:flex;gap:7px;padding:16px 18px;border-bottom:1px solid var(--stroke)}
.app-frame__bar span{width:11px;height:11px;border-radius:50%;background:var(--stroke-strong)}
.app-frame__bar span:first-child{background:#ff5f57}.app-frame__bar span:nth-child(2){background:#febc2e}.app-frame__bar span:nth-child(3){background:#28c840}
.app-frame__body{padding:26px}
.app-stat{display:flex;flex-direction:column;margin-bottom:22px}
.app-stat__k{color:var(--muted);font-size:.85rem}
.app-stat b{font-family:var(--display);font-size:2.4rem;background:var(--grad-text);-webkit-background-clip:text;background-clip:text;color:transparent}
.app-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:24px}
.app-tile{display:flex;flex-direction:column;align-items:center;gap:8px;padding:16px 8px;border-radius:14px;background:var(--surface);border:1px solid var(--stroke);font-size:.8rem;color:var(--muted);text-align:center;transition:.3s}
.app-tile:hover{background:var(--surface-2);color:var(--text);transform:translateY(-3px)}
.app-tile .ico{width:22px;height:22px;color:var(--blue-lt)}
.app-bars{display:flex;align-items:flex-end;gap:10px;height:90px}
.app-bars span{flex:1;height:var(--h);border-radius:6px 6px 0 0;background:var(--grad-blue);opacity:.85;transform-origin:bottom;animation:grow 1.1s var(--ease) both}
@keyframes grow{from{transform:scaleY(0)}to{transform:scaleY(1)}}
.float-y{animation:floaty 6s ease-in-out infinite}
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}

/* Cards grid */
.cards-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:16px}
.cards-grid:not(.cards-grid--4){grid-template-columns:repeat(4,1fr)}
.mini-card{padding:24px;border-radius:var(--radius);background:var(--surface);border:1px solid var(--stroke);transition:.35s var(--ease)}
.mini-card:hover{transform:translateY(-6px);border-color:rgba(47,126,255,.4);background:var(--surface-2)}
.mini-card--cyan:hover{border-color:rgba(34,211,238,.4)}
.mini-card .ico{width:28px;height:28px;color:var(--blue-lt);margin-bottom:14px}
.mini-card--cyan .ico{color:var(--teal)}
.mini-card h4{font-size:1.05rem;margin-bottom:6px}
.mini-card p{font-size:.88rem;color:var(--muted)}

/* Pay visual */
.pay-visual{display:flex;flex-direction:column;align-items:center;gap:22px}
.terminal{width:260px;background:linear-gradient(165deg,#141b2e,#0a0f1c);border:1px solid var(--stroke-strong);border-radius:28px;padding:22px;box-shadow:var(--shadow),inset 0 1px 0 rgba(255,255,255,.06)}
.terminal__screen{background:linear-gradient(160deg,#0c1424,#070d19);border:1px solid var(--stroke);border-radius:16px;padding:22px 18px;text-align:center;margin-bottom:18px}
.terminal__screen img{margin:0 auto 4px}
.terminal__val{font-family:var(--display);font-weight:800;font-size:1.7rem;margin:12px 0 14px;background:var(--grad-cyan);-webkit-background-clip:text;background-clip:text;color:transparent}
.terminal__tap{font-size:.78rem;color:var(--muted);display:flex;align-items:center;justify-content:center;gap:4px}
.terminal__tap span{width:6px;height:6px;border-radius:50%;background:var(--teal);animation:tap 1.4s infinite}
.terminal__tap span:nth-child(2){animation-delay:.2s}.terminal__tap span:nth-child(3){animation-delay:.4s}
@keyframes tap{0%,100%{opacity:.3;transform:scale(.8)}50%{opacity:1;transform:scale(1.2)}}
.terminal__keys{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.terminal__keys b{height:34px;border-radius:9px;background:var(--surface);border:1px solid var(--stroke)}
.pay-badges{display:flex;gap:10px;flex-wrap:wrap;justify-content:center}
.pay-badge{font-family:var(--display);font-weight:600;font-size:.8rem;padding:.5em 1em;border-radius:999px;background:var(--surface);border:1px solid var(--stroke)}

/* Sync */
.section--sync{padding:76px 0}
.sync{text-align:center;padding:54px 34px;border-radius:var(--radius-lg);border:1px solid var(--stroke);background:linear-gradient(160deg,rgba(255,255,255,.05),rgba(255,255,255,.015))}
.sync__row{display:flex;align-items:center;justify-content:center;gap:0;margin-bottom:30px}
.sync__node{display:flex;flex-direction:column;align-items:center;gap:10px;font-family:var(--display);font-weight:700}
.sync__flow{position:relative;width:180px;height:2px;background:linear-gradient(90deg,rgba(47,126,255,.3),rgba(34,211,238,.3));margin:0 6px}
.sync__pulse{position:absolute;top:50%;width:9px;height:9px;border-radius:50%;background:#fff;box-shadow:0 0 12px var(--blue);transform:translateY(-50%);animation:travel 2.4s linear infinite}
.sync__pulse:nth-child(2){animation-delay:.8s}.sync__pulse:nth-child(3){animation-delay:1.6s}
@keyframes travel{from{left:-4px}to{left:180px}}
.sync .section__title,.sync .section__sub{max-width:640px;margin-left:auto;margin-right:auto}

/* Bento */
.bento{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.bento__cell{padding:30px;border-radius:var(--radius-lg);background:var(--surface);border:1px solid var(--stroke);transition:.35s var(--ease)}
.bento__cell:hover{transform:translateY(-5px);border-color:var(--stroke-strong);background:var(--surface-2)}
.bento__cell--wide{grid-column:span 2;background:linear-gradient(150deg,rgba(47,126,255,.1),rgba(255,255,255,.02))}
.bento__cell .ico{width:30px;height:30px;color:var(--blue-lt);margin-bottom:14px}
.bento__cell h3{font-size:1.4rem;margin-bottom:10px}
.bento__cell h4{font-size:1.1rem;margin-bottom:6px}
.bento__cell p{color:var(--muted);font-size:.94rem}

/* Stats */
.stats-band{padding:60px 0;border-top:1px solid var(--stroke);border-bottom:1px solid var(--stroke);background:linear-gradient(180deg,rgba(47,126,255,.06),transparent)}
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.stat b{display:block;font-family:var(--display);font-weight:800;font-size:clamp(2rem,4vw,3rem);background:var(--grad-text);-webkit-background-clip:text;background-clip:text;color:transparent}
.stat span{color:var(--muted);font-size:.92rem}

/* Contato */
.contato{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start}
.contato__list{list-style:none;display:grid;gap:14px;margin:24px 0 28px}
.contato__list li{display:flex;align-items:center;gap:12px;color:var(--muted)}
.contato__list .ico{width:20px;height:20px;color:var(--blue-lt);flex-shrink:0}
.form{background:linear-gradient(165deg,rgba(255,255,255,.06),rgba(255,255,255,.015));border:1px solid var(--stroke);border-radius:var(--radius-lg);padding:34px;box-shadow:var(--shadow)}
.field{margin-bottom:16px;display:flex;flex-direction:column}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field label{font-size:.85rem;font-weight:600;color:var(--muted);margin-bottom:7px}
.field input,.field select,.field textarea{width:100%;padding:.85em 1em;border-radius:12px;background:rgba(0,0,0,.28);border:1px solid var(--stroke);color:var(--text);font-family:var(--font);font-size:.95rem;transition:border-color .25s,box-shadow .25s}
.field input::placeholder,.field textarea::placeholder{color:var(--muted-2)}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(47,126,255,.2)}
.field select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2396a5c6' stroke-width='1.6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1em center;background-size:12px}
.form__note{font-size:.8rem;color:var(--muted-2);margin-top:12px;text-align:center}
.field.error input,.field.error textarea{border-color:#ff5f57;box-shadow:0 0 0 3px rgba(255,95,87,.18)}

/* Footer */
.footer{border-top:1px solid var(--stroke);padding:60px 0 30px;margin-top:20px;background:var(--bg-2)}
.footer__inner{display:grid;grid-template-columns:1.3fr 2fr;gap:48px;margin-bottom:40px}
.footer__tag{font-family:var(--brand-font);font-size:.72rem;letter-spacing:.22em;color:var(--blue-lt);margin:14px 0 10px}
.footer__desc{color:var(--muted);max-width:280px}
.footer__cols{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.footer__col h5{font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted-2);margin-bottom:14px}
.footer__col a{display:block;color:var(--muted);padding:5px 0;transition:color .2s}
.footer__col a:hover{color:var(--blue-lt)}
.footer__bottom{display:flex;justify-content:space-between;align-items:center;padding-top:24px;border-top:1px solid var(--stroke);color:var(--muted-2);font-size:.85rem;flex-wrap:wrap;gap:10px}

/* WhatsApp float */
.wa-float{position:fixed;right:22px;bottom:22px;z-index:90;width:58px;height:58px;border-radius:50%;background:var(--whats);display:flex;align-items:center;justify-content:center;box-shadow:0 14px 34px -10px rgba(37,211,102,.7);transition:transform .3s var(--ease);animation:waBob 3s ease-in-out infinite}
.wa-float .ico{width:30px;height:30px;color:#04140a}
.wa-float:hover{transform:scale(1.1) rotate(4deg)}
@keyframes waBob{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}

/* ---------- Icons ---------- */
.ico{display:inline-block;width:24px;height:24px;background-color:currentColor;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-size:contain;mask-size:contain}
.ico--people{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='7' r='3'/%3E%3Cpath d='M3 21v-1a6 6 0 0 1 12 0v1'/%3E%3Cpath d='M16 3.5a3 3 0 0 1 0 7M17 14a6 6 0 0 1 4 6v1'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='7' r='3'/%3E%3Cpath d='M3 21v-1a6 6 0 0 1 12 0v1'/%3E%3Cpath d='M16 3.5a3 3 0 0 1 0 7M17 14a6 6 0 0 1 4 6v1'/%3E%3C/svg%3E")}
.ico--net{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='2.5'/%3E%3Ccircle cx='5' cy='19' r='2.5'/%3E%3Ccircle cx='19' cy='19' r='2.5'/%3E%3Cpath d='M12 7.5v4M12 11.5l-5.5 5M12 11.5l5.5 5'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='2.5'/%3E%3Ccircle cx='5' cy='19' r='2.5'/%3E%3Ccircle cx='19' cy='19' r='2.5'/%3E%3Cpath d='M12 7.5v4M12 11.5l-5.5 5M12 11.5l5.5 5'/%3E%3C/svg%3E")}
.ico--kids{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='6' r='3'/%3E%3Cpath d='M12 9v7M8 12h8M9 21l3-4 3 4'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='6' r='3'/%3E%3Cpath d='M12 9v7M8 12h8M9 21l3-4 3 4'/%3E%3C/svg%3E")}
.ico--book{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h7a2 2 0 0 1 2 2v14a2 2 0 0 0-2-2H4z'/%3E%3Cpath d='M20 4h-7a2 2 0 0 0-2 2v14a2 2 0 0 1 2-2h7z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h7a2 2 0 0 1 2 2v14a2 2 0 0 0-2-2H4z'/%3E%3Cpath d='M20 4h-7a2 2 0 0 0-2 2v14a2 2 0 0 1 2-2h7z'/%3E%3C/svg%3E")}
.ico--calendar{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 9h18M8 3v4M16 3v4'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 9h18M8 3v4M16 3v4'/%3E%3C/svg%3E")}
.ico--heart{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20s-7-4.5-9.5-9A4.5 4.5 0 0 1 12 6a4.5 4.5 0 0 1 9.5 5c-2.5 4.5-9.5 9-9.5 9z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20s-7-4.5-9.5-9A4.5 4.5 0 0 1 12 6a4.5 4.5 0 0 1 9.5 5c-2.5 4.5-9.5 9-9.5 9z'/%3E%3C/svg%3E")}
.ico--coin{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v10M9.5 9.5a2.5 2 0 0 1 5 0c0 2.5-5 1-5 4a2.5 2 0 0 0 5 0'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v10M9.5 9.5a2.5 2 0 0 1 5 0c0 2.5-5 1-5 4a2.5 2 0 0 0 5 0'/%3E%3C/svg%3E")}
.ico--globe{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/%3E%3C/svg%3E")}
.ico--chat{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H8l-4 4V5a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H8l-4 4V5a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2z'/%3E%3C/svg%3E")}
.ico--card{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cpath d='M2 10h20M6 15h4'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cpath d='M2 10h20M6 15h4'/%3E%3C/svg%3E")}
.ico--shield{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 5-3.5 8-7 10-3.5-2-7-5-7-10V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 5-3.5 8-7 10-3.5-2-7-5-7-10V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E")}
.ico--bolt{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L4 14h7l-1 8 9-12h-7z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L4 14h7l-1 8 9-12h-7z'/%3E%3C/svg%3E")}
.ico--phone{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2.5'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2.5'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E")}
.ico--mail{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E")}
.ico--whats{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15l-1.4 5 5.1-1.3A10 10 0 1 0 12 2zm5.3 14.1c-.2.6-1.3 1.2-1.8 1.2-.5.1-1 .3-3.4-.7-2.9-1.2-4.7-4.1-4.9-4.3-.1-.2-1.1-1.5-1.1-2.8 0-1.3.7-2 .9-2.2.2-.3.5-.3.7-.3h.5c.2 0 .4 0 .6.5.2.5.7 1.8.8 1.9.1.1.1.3 0 .5-.3.6-.6.8-.8 1.1-.2.2-.3.4-.1.7.2.3.9 1.4 1.9 2.3 1.3 1.1 2.3 1.4 2.6 1.6.3.1.5.1.6-.1.2-.2.7-.8.9-1.1.2-.3.4-.2.6-.1.3.1 1.6.8 1.8.9.3.1.4.2.5.3.1.2.1.7-.1 1.3z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15l-1.4 5 5.1-1.3A10 10 0 1 0 12 2zm5.3 14.1c-.2.6-1.3 1.2-1.8 1.2-.5.1-1 .3-3.4-.7-2.9-1.2-4.7-4.1-4.9-4.3-.1-.2-1.1-1.5-1.1-2.8 0-1.3.7-2 .9-2.2.2-.3.5-.3.7-.3h.5c.2 0 .4 0 .6.5.2.5.7 1.8.8 1.9.1.1.1.3 0 .5-.3.6-.6.8-.8 1.1-.2.2-.3.4-.1.7.2.3.9 1.4 1.9 2.3 1.3 1.1 2.3 1.4 2.6 1.6.3.1.5.1.6-.1.2-.2.7-.8.9-1.1.2-.3.4-.2.6-.1.3.1 1.6.8 1.8.9.3.1.4.2.5.3.1.2.1.7-.1 1.3z'/%3E%3C/svg%3E")}

/* Reveal */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal.in{opacity:1;transform:none}

/* Responsive */
@media (max-width:960px){
  .split,.contato,.footer__inner{grid-template-columns:1fr}
  .split--reverse .split__copy{order:1}.split--reverse .split__visual{order:2}
  .solutions{grid-template-columns:1fr}
  .cards-grid,.cards-grid--4{grid-template-columns:repeat(2,1fr)}
  .bento{grid-template-columns:1fr 1fr}.bento__cell--wide{grid-column:span 2}
  .footer__inner{gap:32px}
}
@media (max-width:720px){
  .nav{position:fixed;inset:76px 0 auto 0;flex-direction:column;align-items:stretch;gap:4px;padding:16px 24px 26px;background:rgba(5,7,15,.97);backdrop-filter:blur(16px);border-bottom:1px solid var(--stroke);transform:translateY(-140%);transition:transform .4s var(--ease);z-index:99}
  .nav.open{transform:translateY(0)}
  .nav__link{padding:.85em 0}.nav__cta{margin:8px 0 0}
  .nav-toggle{display:flex}
  .hero{padding:130px 0 0}
  .stats{grid-template-columns:1fr 1fr;gap:30px}
  .footer__bottom{flex-direction:column;text-align:center}
  .field-row{grid-template-columns:1fr}
  .sync__flow{width:90px}
  @keyframes travel{from{left:-4px}to{left:90px}}
}
@media (max-width:480px){
  .cards-grid,.cards-grid--4,.bento{grid-template-columns:1fr}
  .bento__cell--wide{grid-column:span 1}
  .section{padding:70px 0}
  .marquee__track span{font-size:1rem}
}
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
  .rotator{height:auto}
  .rotator__list{transform:none!important}
  .rotator__list b:not(:first-child){display:none}
}
