.login-layout{position:relative;display:flex;flex-direction:column;align-items:stretch;justify-content:stretch;min-height:100vh;width:100%;background:var(--login-page-bg);color:var(--tertiary-900)}@keyframes login-fade-down{0%{opacity:0;transform:translateY(-18px)}to{opacity:1;transform:translateY(0)}}@keyframes login-fade-up{0%{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}}@keyframes login-slide-in-left{0%{opacity:0;transform:translate(-36px)}to{opacity:1;transform:translate(0)}}@keyframes login-slide-in-right{0%{opacity:0;transform:translate(40px)}to{opacity:1;transform:translate(0)}}@keyframes login-fade-in{0%{opacity:0}to{opacity:1}}.login-logo-float{position:absolute;top:1rem;left:1.5rem;z-index:2;margin:0;padding:0;line-height:0;background:transparent;pointer-events:none;animation:login-fade-down .65s cubic-bezier(.22,1,.36,1) both}.login-logo{display:block;height:auto;width:clamp(160px,42vw,220px);max-height:42px;object-fit:contain;object-position:left center;background:transparent;vertical-align:top}.login-container{display:flex;flex-direction:row;flex:1 1 auto;width:100%;min-height:0}.login-container--loading{flex-direction:column;align-items:center;justify-content:center;gap:.75rem;padding:2rem}.login-container--loading .muted{animation:login-fade-in .55s ease-out .15s both}.login-side{position:relative;flex:0 0 52%;display:flex;align-items:center;justify-content:center;padding:3rem 2.5rem 3rem 2.75rem;background:var(--login-side-bg);overflow:hidden;border-right:3px solid var(--login-accent-stripe)}.login-side-video{position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;width:100%;height:100%;object-fit:cover;object-position:center;pointer-events:none}.login-side-overlay{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:none;background:radial-gradient(ellipse 70% 55% at 20% 35%,rgba(143,180,53,.14) 0%,transparent 58%),linear-gradient(105deg,#173f3ed1,#173f3e80 48%,#173f3ead)}.login-side-content{position:relative;z-index:2;max-width:26rem;color:#fff;animation:login-slide-in-left .78s cubic-bezier(.22,1,.36,1) .08s both}.login-side-title{margin:0 0 1.1rem;font-size:clamp(1.65rem,2.8vw,2.2rem);font-weight:700;color:#fff;letter-spacing:-.03em;line-height:1.22}.login-side-subtitle{margin:0;font-size:clamp(.98rem,1.15vw,1.08rem);color:#d3e4e4f2;line-height:1.65;font-weight:400}.login-form-panel{flex:1 1 0;display:flex;flex-direction:column;align-items:stretch;justify-content:center;gap:1.25rem;min-width:0;width:100%;padding:clamp(2.25rem,7vh,3.75rem) clamp(1.5rem,5vw,3.5rem) clamp(2.25rem,7vh,3.75rem) clamp(1.75rem,4vw,3rem);background:var(--login-page-bg);animation:login-slide-in-right .8s cubic-bezier(.22,1,.36,1) .06s both;transition:background .3s ease}.login-form-panel--sesuite{background:linear-gradient(180deg,#f8fcfa 0%,var(--login-page-bg) 42%)}.login-form-panel__inner{display:flex;flex-direction:column;align-items:stretch;gap:1.85rem;width:100%;animation:login-mode-in .38s cubic-bezier(.22,1,.36,1) both}@keyframes login-mode-in{0%{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}.login-form-header{margin:0;width:100%}.login-form-eyebrow{margin:0 0 .65rem;font-size:.7rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--secondary-600);animation:login-fade-up .48s ease-out .48s both}.login-form-title{margin:0 0 .45rem;font-size:clamp(1.45rem,2.4vw,1.75rem);font-weight:700;color:var(--secondary-900);letter-spacing:-.03em;line-height:1.2;animation:login-fade-up .48s ease-out .54s both}.login-form-subtitle{margin:0;font-size:clamp(.92rem,1.15vw,1rem);color:var(--tertiary-600);font-weight:400;line-height:1.55;animation:login-fade-up .48s ease-out .6s both}.login-form{display:flex;flex-direction:column;gap:1.25rem;width:100%;animation:login-fade-up .55s ease-out .68s both}.field{margin:0}.field>label{display:block;font-weight:500;font-size:.875rem;margin-bottom:.4rem;color:var(--tertiary-600)}.field-label-row{display:flex;align-items:baseline;justify-content:space-between;gap:.75rem;margin-bottom:.5rem}.field-label-row label{margin:0;font-weight:500;font-size:.875rem;color:var(--tertiary-600)}.login-forgot-link{font-size:.8125rem;font-weight:600;color:var(--secondary-600);text-decoration:none;white-space:nowrap;flex-shrink:0}.login-forgot-link:hover{color:var(--secondary-800);text-decoration:underline}.field input{width:100%;padding:.82rem 1rem;border:1px solid transparent;border-radius:10px;font-family:inherit;font-size:1rem;background:var(--login-input-fill);color:var(--tertiary-900);transition:border-color .2s ease,background .2s ease,transform .2s ease}.field-password{position:relative}.field-password input{padding-right:2.85rem}.login-layout .field-password input:hover:not(:disabled){transform:none}.field-password__toggle{position:absolute;top:50%;right:.45rem;display:inline-flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;padding:0;border:none;border-radius:8px;background:transparent;color:var(--tertiary-600);cursor:pointer;transform:translateY(-50%);transition:color .2s ease,background .2s ease}.field-password__toggle:hover:not(:disabled){color:var(--secondary-700);background:#ffffff8c}.field-password__toggle:focus-visible{outline:2px solid var(--secondary-600);outline-offset:1px}.field-password__toggle:disabled{opacity:.45;cursor:not-allowed}.field-password__icon{width:1.15rem;height:1.15rem}.field input[type=password]{-webkit-text-security:disc;text-security:disc}.login-layout .field input:hover:not(:disabled){transform:translateY(-1px)}.field input::placeholder{color:var(--tertiary-600);opacity:.6}.field input:focus{outline:none;border-color:var(--secondary-500);background:#fff}.field input:focus-visible{outline:2px solid var(--secondary-600);outline-offset:2px}.field input:disabled{opacity:.55;cursor:not-allowed;background:var(--secondary-100)}.alert{display:flex;align-items:flex-start;gap:.75rem;background:#fff5f5;border:1px solid #fcd4d4;color:#991b1b;padding:.8rem .95rem;border-radius:10px;font-size:.9rem;margin:0;line-height:1.5}.alert-icon{width:20px;height:20px;flex-shrink:0;margin-top:1px}.login-divider{display:flex;align-items:center;gap:.85rem;width:100%;margin:.25rem 0 0;animation:login-fade-in .45s ease-out .82s both}.login-divider-line{flex:1;height:1px;background:var(--login-divider-line)}.login-divider-text{font-size:.7rem;font-weight:700;color:var(--tertiary-600);text-transform:uppercase;letter-spacing:.12em}.btn-login-primary{width:100%;padding:.9rem 1.35rem;border:none;border-radius:10px;background:var(--secondary-700);color:#fff;font-weight:600;font-size:1rem;cursor:pointer;transition:background .2s ease,transform .2s ease;margin:0;display:flex;align-items:center;justify-content:center;gap:.5rem}.btn-login-suite{width:100%;display:flex;align-items:center;justify-content:center;gap:.65rem;padding:.82rem 1.2rem;border:1px solid var(--secondary-400);border-radius:10px;background:transparent;color:var(--secondary-800);font-family:inherit;font-weight:600;font-size:.95rem;cursor:pointer;animation:login-fade-up .5s ease-out .92s both;transition:border-color .2s ease,background .2s ease,color .2s ease,transform .2s ease}.btn-login-suite:hover{border-color:var(--secondary-600);background:var(--login-input-fill);color:var(--secondary-900);transform:translateY(-2px)}.btn-login-suite:active{transform:translateY(1px)}.btn-login-suite-icon{display:block;flex-shrink:0}.btn-login-suite-icon--hub{display:block;flex-shrink:0;object-fit:contain}.btn-login-suite-label{line-height:1.2}.btn-login-suite--sap{border-color:#d1d5db;color:var(--tertiary-700, #3d4f4f)}.btn-login-suite--sap:hover{border-color:var(--secondary-500);background:#fff;color:var(--secondary-900)}.btn-login-primary:hover:not(:disabled){background:var(--secondary-800);transform:translateY(-2px)}.btn-login-primary:active:not(:disabled){transform:translateY(0)}.btn-login-primary:disabled{opacity:.7;cursor:not-allowed;transform:none}.spinner{width:20px;height:20px;animation:spin .8s linear infinite}.spinner-track{opacity:.25}@keyframes spin{to{transform:rotate(360deg)}}@media (prefers-reduced-motion: reduce){.login-layout .login-logo-float,.login-layout .login-side-content,.login-layout .login-form-panel,.login-layout .login-form-eyebrow,.login-layout .login-form-title,.login-layout .login-form-subtitle,.login-layout .login-form,.login-layout .login-divider,.login-layout .btn-login-suite,.login-layout .login-form-panel__inner,.login-container--loading .muted{animation:none!important}.login-layout .field input:hover:not(:disabled){transform:none}.btn-login-primary:hover:not(:disabled),.btn-login-suite:hover{transform:none}}.swal2-hub-popup{font-family:inherit;border-radius:12px}.swal2-hub-popup .swal2-title{font-weight:700;letter-spacing:-.02em;color:var(--secondary-900)}.swal2-hub-confirm,.swal2-hub-cancel,.swal2-hub-deny{font-weight:600!important;border-radius:8px!important}.login-version.hub-version-label{margin:0;text-align:center;pointer-events:none;font-size:.72rem;font-weight:500;font-variant-numeric:tabular-nums;letter-spacing:.02em;color:var(--tertiary-600);opacity:.8;white-space:nowrap}.login-version .hub-version-label__sep{opacity:.55;font-weight:400}@media (max-width: 968px){.login-logo-float{top:.75rem;left:1rem}.login-container{flex-direction:column}.login-side{flex:0 0 auto;min-height:35vh;padding:2rem 1.5rem;border-right:none;border-bottom:3px solid var(--login-accent-stripe)}.login-side-title{font-size:1.85rem}.login-side-subtitle{font-size:.95rem}.login-form-panel{flex:1 1 auto;justify-content:flex-start;padding:clamp(1.75rem,5vh,2.5rem) clamp(1.25rem,4vw,1.75rem)}}.hub-main.hub-main--home{max-width:none;padding-top:0}.hub-main.hub-main--embedded-tool{width:100%;max-width:none;min-height:calc(100vh - var(--hub-chrome-offset, 120px));padding:0}.hub-embed{display:flex;width:100%;min-height:calc(100vh - var(--hub-chrome-offset, 120px));flex-direction:column;background:#020617}.hub-embed--funil{background:linear-gradient(180deg,#082f49f0,#020617fa 4.25rem),#020617}.hub-embed__frame{display:block;width:100%;flex:1;min-height:calc(100vh - var(--hub-chrome-offset, 120px));border:0;background:#fff}.hub-hs{display:flex;align-items:flex-start;gap:0;padding:1.25rem 0 2rem}.hub-hs--editing{flex-direction:row;align-items:stretch;gap:0}.hub-hs__shell{flex:1;min-width:0;display:flex;flex-direction:column;gap:1.75rem;transition:transform .42s cubic-bezier(.22,1,.36,1)}.hub-hs--editing .hub-hs__shell{animation:hub-hs-shell-shift .42s cubic-bezier(.22,1,.36,1) both}@keyframes hub-hs-shell-shift{0%{transform:translate(12px);opacity:.92}to{transform:translate(0);opacity:1}}.hub-hs__palette-slot{flex-shrink:0;overflow:hidden;width:0;margin-right:0;animation:hub-hs-palette-slot-open .42s cubic-bezier(.22,1,.36,1) forwards}@keyframes hub-hs-palette-slot-open{0%{width:0;margin-right:0}to{width:296px;margin-right:1rem}}.hub-hs__palette{width:280px;align-self:flex-start;position:sticky;top:calc(var(--hub-chrome-offset, 120px) + .5rem);max-height:calc(100vh - var(--hub-chrome-offset, 120px) - 1.5rem);z-index:5;display:flex;flex-direction:column;border:1px solid #e5e7eb;border-radius:12px;background:#fff;box-shadow:0 4px 20px #0f172a0f;overflow:hidden;transform-origin:left center;animation:hub-hs-palette-panel-in .42s cubic-bezier(.22,1,.36,1) both}@keyframes hub-hs-palette-panel-in{0%{opacity:0;transform:translate(-18px) scale(.97);box-shadow:0 0 #0f172a00}to{opacity:1;transform:translate(0) scale(1);box-shadow:0 4px 20px #0f172a0f}}@keyframes hub-hs-palette-fade-in{0%{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}.hub-hs__palette-list li{opacity:0;animation:hub-hs-palette-item-in .34s cubic-bezier(.22,1,.36,1) both;animation-delay:var(--palette-delay, .16s)}@keyframes hub-hs-palette-item-in{0%{opacity:0;transform:translate(-10px)}to{opacity:1;transform:translate(0)}}@media (prefers-reduced-motion: reduce){.hub-hs__palette-slot,.hub-hs__palette,.hub-hs__palette-head,.hub-hs__palette-foot,.hub-hs__palette-list li,.hub-hs__drag-ghost,.hub-hs--editing .hub-hs__shell{animation:none!important;transition:none!important;opacity:1;transform:none;width:296px;margin-right:1rem}.hub-hs__drag-ghost{width:auto;margin-right:0}}.hub-hs__palette-head{padding:1rem 1rem .5rem;border-bottom:1px solid #f3f4f6;animation:hub-hs-palette-fade-in .35s cubic-bezier(.22,1,.36,1) .08s both}.hub-hs__palette-title{margin:0;font-size:.95rem;font-weight:700;color:#111827}.hub-hs__palette-sub{margin:.25rem 0 0;font-size:.78rem;color:#6b7280}.hub-hs__palette-scroll{flex:1;min-height:0;overflow-y:auto;padding:.35rem .5rem .5rem}.hub-hs__palette-section+.hub-hs__palette-section{margin-top:.85rem;padding-top:.65rem;border-top:1px solid #f3f4f6}.hub-hs__palette-section-head{display:flex;align-items:center;gap:.45rem;margin:0 0 .45rem;padding:0 .35rem}.hub-hs__palette-section-icon{width:1.5rem;height:1.5rem;border-radius:6px}.hub-hs__palette-section-icon .hub-hs__palette-icon-svg{width:.9rem;height:.9rem}.hub-hs__palette-section-title{margin:0;font-size:.68rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#6b7280}.hub-hs__palette-list{margin:0;padding:0;list-style:none}.hub-hs__palette-item-wrap{cursor:grab;-webkit-user-select:none;user-select:none;border-radius:8px}.hub-hs__palette-item-wrap:active{cursor:grabbing}.hub-hs__palette-item{display:flex;align-items:center;gap:.55rem;padding:.55rem .6rem;border:1px solid #e5e7eb;border-radius:8px;background:#fafafa;transition:border-color .15s,box-shadow .15s,background .15s,opacity .15s,transform .15s}.hub-hs__palette-item-wrap:hover .hub-hs__palette-item{border-color:var(--hub-verde-forte, #119531);background:#fff;box-shadow:0 2px 8px #11953114}.hub-hs__palette-item--dragging{opacity:.35;transform:scale(.98)}.hub-hs__palette-item--floating{width:248px;padding:.65rem .7rem;border-color:var(--hub-verde-forte, #119531);background:#fff;box-shadow:0 12px 32px #0f172a2e,0 0 0 1px #1195311f;cursor:grabbing}.hub-hs__palette-list li+li{margin-top:.35rem}.hub-hs__palette-icon{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:8px;background:#f3f4f6;color:#4b5563}.hub-hs__palette-icon-svg{width:1.15rem;height:1.15rem}.hub-hs__palette-icon--kpi{color:#2563eb;background:#eff6ff}.hub-hs__palette-icon--progress{color:#119531;background:#ecfdf3}.hub-hs__palette-icon--donut{color:#7c3aed;background:#f5f3ff}.hub-hs__palette-icon--map{color:#0891b2;background:#ecfeff}.hub-hs__palette-icon--list{color:#d97706;background:#fffbeb}.hub-hs__palette-icon--tiles{color:#4f46e5;background:#eef2ff}.hub-hs__palette-grip{flex-shrink:0;margin-left:auto;color:#9ca3af;font-size:.85rem;line-height:1}.hub-hs__drag-ghost{position:fixed;z-index:10000;pointer-events:none;transform:translate(-50%,calc(-100% - 14px));filter:drop-shadow(0 8px 20px rgba(15,23,42,.15));animation:hub-hs-drag-ghost-pop .18s cubic-bezier(.22,1,.36,1) both}@keyframes hub-hs-drag-ghost-pop{0%{opacity:0;transform:translate(-50%,calc(-100% - 6px)) scale(.92)}to{opacity:1;transform:translate(-50%,calc(-100% - 14px)) scale(1)}}.hub-hs__palette-item-body{display:flex;flex-direction:column;gap:.12rem;min-width:0}.hub-hs__palette-item-head{display:flex;align-items:center;gap:.35rem;min-width:0}.hub-hs__palette-item-head strong{font-size:.8rem;color:#111827;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hub-hs__palette-item-area{flex-shrink:0;padding:.1rem .35rem;border-radius:4px;font-size:.58rem;font-weight:700;letter-spacing:.03em;text-transform:uppercase;color:#6b7280;background:#f3f4f6}.hub-hs__palette-item-desc{font-size:.7rem;color:#6b7280;line-height:1.35;display:-webkit-box;line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-hs__palette-foot{padding:.75rem;border-top:1px solid #f3f4f6;animation:hub-hs-palette-fade-in .35s cubic-bezier(.22,1,.36,1) .12s both}.hub-hs__btn--block{width:100%}.hub-hs__toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.75rem 1rem;margin-bottom:.5rem}.hub-hs__toolbar-left,.hub-hs__toolbar-right{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem}.hub-hs__toolbar-hint{font-size:.85rem;color:#6b7280}.hub-hs__toolbar-hint--muted{color:#9ca3af}.hub-hs__btn{padding:.45rem .85rem;border-radius:8px;font-family:inherit;font-size:.82rem;font-weight:600;cursor:pointer;border:1px solid transparent}.hub-hs__btn--primary{background:var(--hub-verde-forte, #119531);color:#fff;border-color:var(--hub-verde-forte, #119531)}.hub-hs__btn--primary:hover{filter:brightness(1.05)}.hub-hs__btn--ghost{background:#fff;color:#374151;border-color:#d1d5db}.hub-hs__btn--ghost:hover{background:#f9fafb}.hub-hs__add-wrap{position:relative}.hub-hs__add-menu{position:absolute;top:calc(100% + .35rem);right:0;z-index:50;min-width:16rem;max-width:20rem;max-height:16rem;overflow-y:auto;padding:.35rem;border-radius:10px;border:1px solid #e5e7eb;background:#fff;box-shadow:0 8px 24px #0f172a1f}.hub-hs__add-item{display:flex;flex-direction:column;align-items:flex-start;gap:.15rem;width:100%;padding:.55rem .65rem;border:none;border-radius:6px;background:none;font-family:inherit;text-align:left;cursor:pointer}.hub-hs__add-item:hover{background:#f3f4f6}.hub-hs__add-item strong{font-size:.82rem;color:#111827}.hub-hs__add-item span{font-size:.72rem;color:#6b7280;line-height:1.35}.hub-hs__grid{width:100%;position:relative}.hub-hs__grid--edit{min-height:320px;border:2px dashed #d1d5db;border-radius:12px;padding:.75rem;background:#fafafa;transition:border-color .15s,background .15s}.hub-hs__grid--drag-over{border-color:var(--hub-verde-forte, #119531);background:#f0fdf4}.hub-hs__grid-drop-hint{display:flex;align-items:center;justify-content:center;min-height:280px;pointer-events:none}.hub-hs__grid-drop-hint p{margin:0;font-size:.95rem;font-weight:600;color:#9ca3af}.hub-hs__grid-layout{min-height:200px}.hub-hs__grid-item{position:relative;display:flex;flex-direction:column;height:100%;background:#fff;border:1px solid #e8eaed;border-radius:10px;box-shadow:0 1px 2px #0f172a0a;overflow:hidden}.hub-hs__grid--edit .hub-hs__grid-item{border-color:#93c5fd;box-shadow:0 0 0 1px #3b82f640;cursor:grab}.hub-hs__grid--edit .hub-hs__grid-item.react-draggable-dragging{cursor:grabbing;z-index:10}.hub-hs__grid--edit .hub-hs__widget-body{pointer-events:none;-webkit-user-select:none;user-select:none}.hub-hs__widget-chrome{position:absolute;top:.35rem;right:.35rem;z-index:3;display:flex;align-items:center;justify-content:flex-end;pointer-events:auto}.hub-hs__widget-remove{width:1.65rem;height:1.65rem;border:1px solid #e5e7eb;border-radius:6px;background:#fff;box-shadow:0 1px 4px #0f172a14;font-size:1.1rem;line-height:1;color:#9ca3af;cursor:pointer}.hub-hs__widget-remove:hover{background:#fee2e2;border-color:#fecaca;color:#dc2626}.hub-hs__widget-body{flex:1 1 auto;min-height:0;overflow:auto;padding:.65rem .75rem .75rem;display:flex;flex-direction:column}.hub-hs__widget-body .hub-hs__top-card,.hub-hs__widget-body .hub-hs__meta-card,.hub-hs__widget-body .hub-hs__rfv-panel{height:100%;width:100%;border:none;box-shadow:none;padding:0}.hub-hs__widget-mini-map{flex:1;min-height:0;display:flex;flex-direction:column;gap:.5rem}.hub-hs__widget-mini-map-head{display:flex;align-items:center;justify-content:space-between;gap:.5rem;flex-shrink:0}.hub-hs__widget-mini-map .hub-hs__mini-map-wrap{flex:1;min-height:0}.hub-hs__widget-mini-map .hub-hs__mini-map-leaflet{min-height:0;height:100%}.hub-hs__widget-mini-map .hub-hs__mini-map-leaflet-inner{min-height:120px;height:100%}.react-grid-placeholder{background:#1195311f!important;border-radius:10px;opacity:.9}.hub-hs__empty{padding:2rem 0 3rem}.hub-hs__empty-card{max-width:32rem;margin:0 auto;padding:2rem 1.75rem;text-align:center;border-radius:12px;border:1px dashed #cbd5e1;background:#f8fafc}.hub-hs__empty-title{margin:0 0 .65rem;font-size:1.2rem;font-weight:700;color:#111827}.hub-hs__empty-text{margin:0 0 1.25rem;font-size:.9rem;line-height:1.55;color:#6b7280}.hub-hs__empty-hint{margin:0;font-size:.88rem;color:#4b5563}html.hub-home--presentation .hub-chrome,html.hub-home--presentation .hub-footer{display:none!important}html.hub-home--presentation .hub-home{min-height:100vh;min-height:100dvh}html.hub-home--presentation .hub-main.hub-main--home{flex:1;min-height:100vh;min-height:100dvh;padding:1rem 1.25rem 1.5rem;box-sizing:border-box}html.hub-home--presentation .hub-hs{padding-top:0;min-height:calc(100vh - 2rem);min-height:calc(100dvh - 2rem)}html.hub-home--presentation .hub-hs__palette{top:.75rem;max-height:calc(100vh - 1.5rem);max-height:calc(100dvh - 1.5rem)}.hub-hg{padding-bottom:1rem;border-bottom:1px solid #e5e7eb}.hub-hg--presentation{border-bottom-color:#f3f4f6}.hub-hg__main{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:1rem 1.25rem}.hub-hg__text{flex:1 1 12rem;min-width:0}.hub-hg__head{display:flex;align-items:flex-start;justify-content:space-between;gap:.75rem 1rem;margin-bottom:.2rem}.hub-hg__head-actions{flex-shrink:0;display:flex;align-items:center}.hub-hg__date{margin:0 0 .65rem;font-size:.9rem;line-height:1.45;color:#64748b}.hub-hg__chips{display:flex;flex-wrap:wrap;gap:.4rem .5rem;margin:0;padding:0;list-style:none}.hub-hg__chip{display:inline-flex;align-items:center;gap:.35rem;padding:.35rem .65rem;border:1px solid #e5e7eb;border-radius:999px;background:#f9fafb;font-size:.8rem;font-weight:500;line-height:1.35;color:#4b5563}.hub-hg__chip--systems{color:#374151}.hub-hg__chip-dot{color:#22c55e;font-size:.5rem;line-height:1}.hub-hg__edit-banner{margin:0;font-size:.85rem;line-height:1.5;color:#6b7280}.hub-hg__actions{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:.5rem;flex-shrink:0;align-self:flex-start}.hub-hg__empty-hint{display:none}@media (min-width: 900px){.hub-hg__empty-hint{display:inline}}.hub-hg__presentation-hint{margin:.65rem 0 0;font-size:.78rem;color:#9ca3af}.hub-hg__presentation-hint kbd{padding:.1rem .35rem;border:1px solid #e5e7eb;border-radius:4px;background:#f9fafb;font-family:inherit;font-size:.72rem}.hub-hs__options-wrap{position:relative}.hub-hs__options-btn{display:inline-flex;align-items:center;justify-content:center;width:2.15rem;height:2.15rem;padding:0;border:1px solid #d1d5db;border-radius:8px;background:#fff;color:#4b5563;cursor:pointer;transition:background .15s,border-color .15s,color .15s}.hub-hs__options-btn:hover{border-color:#9ca3af;background:#f9fafb;color:#111827}.hub-hs__options-btn--open{border-color:var(--hub-verde-forte, #119531);background:#f0fdf4;color:var(--hub-verde-forte, #119531)}.hub-hs__options-btn:disabled{opacity:.5;cursor:not-allowed}.hub-hs__options-btn-ico{width:1.1rem;height:1.1rem}.hub-hs__options-menu{position:absolute;top:calc(100% + .35rem);right:0;z-index:60;min-width:15rem;padding:.35rem;border:1px solid #e5e7eb;border-radius:10px;background:#fff;box-shadow:0 10px 28px #0f172a1f}.hub-hs__options-item{display:flex;align-items:center;gap:.55rem;width:100%;padding:.55rem .65rem;border:none;border-radius:6px;background:none;font-family:inherit;font-size:.82rem;font-weight:600;color:#374151;text-align:left;cursor:pointer}.hub-hs__options-item:hover{background:#f3f4f6;color:#111827}.hub-hs__options-item-ico{flex-shrink:0;width:1.1rem;height:1.1rem;color:#6b7280}.hub-hg__title{margin:0;font-size:1.5rem;font-weight:700;line-height:1.25;color:#111827}.hub-hs__top-cards{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.75rem}.hub-hs__rfv-link{flex-shrink:0;padding:0;border:none;background:none;font:inherit;font-size:.72rem;font-weight:600;color:#2563eb;text-decoration:none;cursor:pointer;white-space:nowrap}.hub-hs__rfv-link:hover{text-decoration:underline}.hub-hs__rfv-alert p{margin:0 0 .4rem;font-size:.72rem;line-height:1.45;color:#7f1d1d}.hub-hs__rfv-alert-link{padding:0;border:none;background:none;font:inherit;font-size:.72rem;font-weight:700;color:#b91c1c;cursor:pointer;text-decoration:none}.hub-hs__rfv-alert-link:hover{text-decoration:underline}.hub-hs__error{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.75rem 1rem;border-radius:8px;background:#fef2f2;border:1px solid #fecaca;font-size:.9375rem;color:#b91c1c}.hub-hs__error button{padding:.35rem .75rem;border:1px solid #d1d5db;border-radius:6px;background:#fff;color:#374151;font-size:.875rem;font-weight:600;cursor:pointer;font-family:inherit}.hub-hs__section-title{margin:0 0 .75rem;font-size:1.0625rem;font-weight:700;color:#111827}.hub-hs__stats-row{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.75rem}.hub-hs__stat{display:flex;flex-direction:column;align-items:flex-start;gap:.2rem;padding:1rem;border-radius:8px;border:1px solid #e5e7eb;background:#fff;text-align:left;font-family:inherit;cursor:pointer}.hub-hs__stat:hover{border-color:#d1d5db;background:#f9fafb}.hub-hs__stat-value{font-size:1.5rem;font-weight:700;line-height:1.2;color:#111827;font-variant-numeric:tabular-nums}.hub-hs__stat-label{font-size:.875rem;font-weight:600;color:#374151;line-height:1.35}.hub-hs__stat-sub{font-size:.8125rem;color:#6b7280}.hub-hs__two-col{display:grid;grid-template-columns:1fr 1fr;gap:1rem;align-items:start}.hub-hs__card{padding:1rem 1.125rem;border-radius:8px;border:1px solid #e5e7eb;background:#fff}.hub-hs__mini-map-wrap{display:flex;flex-direction:column;gap:.65rem;min-width:0}.hub-hs__mini-map-leaflet{position:relative;z-index:0;isolation:isolate;display:block;width:100%;min-height:320px;padding:0;border:1px solid #e2e8f0;border-radius:10px;overflow:hidden;background:#e8eef4}.hub-hs__mini-map-leaflet-inner.leaflet-container{z-index:0}.hub-hs__mini-map-leaflet--loading{display:flex;align-items:center;justify-content:center;color:#6b7280;font-size:.9rem;cursor:default}.hub-hs__mini-map-leaflet-inner{width:100%;height:100%;min-height:320px}.hub-hs__mini-map-hint{margin:0;font-size:.72rem;color:#6b7280;line-height:1.35}.hub-hs__mini-map-legend{margin:0;padding:0;list-style:none;display:flex;flex-wrap:wrap;gap:.5rem 1rem}.hub-hs__mini-map-legend li{display:flex;align-items:center;gap:.4rem;font-size:.78rem;color:#4b5563}.hub-hs__mini-map-legend-dot{width:.65rem;height:.65rem;border-radius:50%;border:1px solid rgba(255,255,255,.9);box-shadow:0 0 0 1px #0f172a14;flex-shrink:0}.hub-hs__mini-map-legend strong{margin-left:.15rem;font-weight:700;color:#111827;font-variant-numeric:tabular-nums}.hub-hs__mini-map-empty{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:.75rem;min-height:320px;border:1px dashed #cbd5e1;border-radius:10px;background:#f8fafc;color:#6b7280;font-size:.9rem}.hub-hs__card-title{margin:0 0 .75rem;padding-bottom:.65rem;border-bottom:1px solid #f3f4f6;font-size:1rem;font-weight:700;color:#111827}.hub-hs__card-link{display:inline-block;margin-top:.75rem;padding:0;border:none;background:none;font-family:inherit;font-size:.9375rem;font-weight:600;color:var(--hub-verde-forte);cursor:pointer;text-decoration:underline;text-underline-offset:2px}.hub-hs__pr-list{margin:0;padding:0;list-style:none}.hub-hs__pr-item{display:flex;align-items:flex-start;gap:.65rem;padding:.65rem 0;border-bottom:1px solid #f3f4f6;text-decoration:none;color:inherit}.hub-hs__pr-item:last-child{border-bottom:none}.hub-hs__pr-item:hover .hub-hs__pr-nome{color:var(--hub-verde-forte)}.hub-hs__pr-item--static:hover .hub-hs__pr-nome{color:#111827}.hub-hs__pr-num{flex-shrink:0;width:1.5rem;font-size:.875rem;font-weight:600;color:#9ca3af;line-height:1.5}.hub-hs__pr-body{flex:1 1 0;min-width:0;display:flex;flex-direction:column;gap:.15rem}.hub-hs__pr-nome{font-size:.9375rem;font-weight:600;color:#111827}.hub-hs__pr-meta{font-size:.8125rem;color:#6b7280}.hub-hs__pr-motivo{font-size:.8125rem;color:#4b5563;line-height:1.4}@media (max-width: 900px){.hub-hs__top-cards,.hub-hs__stats-row{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width: 760px){.hub-hs__two-col,.hub-hs__mini-map{grid-template-columns:1fr}}@media (max-width: 560px){.hub-hs{gap:1.25rem;padding-top:.75rem}.hub-hs__stats-row{grid-template-columns:1fr 1fr;gap:.5rem}.hub-hs__stat-value{font-size:1.3125rem}.hub-hs__top-cards{grid-template-columns:1fr}}.hub-home-header{margin-bottom:1.75rem}.hub-home-greet{margin:0 0 .35rem;font-size:1.05rem;font-weight:700;color:var(--hub-verde-escuro)}.hub-home-agenda{margin:0;font-size:.92rem;line-height:1.55;color:#0f28169e}.hub-home-agenda strong{font-weight:700;color:var(--hub-verde-escuro)}.hub-home-next__label{margin:0 0 .65rem;font-size:.72rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase;color:var(--hub-verde-forte)}.hub-home-panels{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;align-items:start}.hub-home-panel{padding:1rem 1.1rem 1.1rem;border-radius:14px;border:1px solid rgba(74,159,42,.2);background:#fff}.hub-home-panel__head{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.5rem;margin-bottom:.85rem}.hub-home-panel__title{margin:0;font-size:.95rem;font-weight:800;color:var(--hub-verde-escuro)}.hub-home-panel__badge{padding:.2rem .5rem;border-radius:999px;font-size:.7rem;font-weight:700;color:var(--hub-verde-escuro);background:#1195311a}.hub-home-panel__badge--alert{color:#9a3412;background:#ea580c1f}.hub-home-panel__link{display:inline-flex;margin-top:.85rem;padding:0;border:none;background:none;font-family:inherit;font-size:.82rem;font-weight:700;color:var(--hub-verde-forte);cursor:pointer;text-decoration:underline;text-underline-offset:2px}.hub-home-action{padding:1.15rem 1.2rem 1.2rem;border-radius:14px;border:1px solid rgba(96,185,55,.32);background:linear-gradient(165deg,#fff,#f8fcf5)}.hub-home-action__title{margin:0 0 .65rem;font-size:1.02rem;font-weight:800;color:var(--hub-verde-escuro)}.hub-home-action__text{margin:0 0 .9rem;font-size:.9rem;line-height:1.6;color:#0f2816b8}.hub-home-action__actions{display:flex;flex-wrap:wrap;gap:.55rem .65rem}.hub-home-action__btn{display:inline-flex;align-items:center;justify-content:center;padding:.55rem 1rem;border-radius:10px;font-family:inherit;font-size:.84rem;font-weight:700;cursor:pointer;transition:background .15s ease}.hub-home-action__btn--primary{border:1px solid var(--hub-verde-vivo);background:var(--hub-verde-vivo);color:#fff}.hub-home-action__btn--ghost{border:1px solid rgba(96,185,55,.45);background:#fff;color:var(--hub-verde-forte)}.hub-clock{display:flex;flex-direction:column;align-items:flex-end;gap:1px;flex-shrink:0;padding:.5rem .75rem;border-radius:8px;transition:background .15s ease}.hub-clock:hover{background:#1195310a}.hub-clock__time{font-size:.88rem;font-weight:600;font-variant-numeric:tabular-nums;color:#374151;letter-spacing:.01em;line-height:1.2}.hub-clock__date{font-size:.68rem;font-weight:500;color:#9ca3af;white-space:nowrap;line-height:1.2}@media (max-width: 900px){.hub-appsearch__field{width:220px}.hub-appsearch__dropdown{width:280px}.hub-catnav__trigger{padding:0 .75rem;font-size:.74rem}.hub-catnav__panel{min-width:min(20rem,94vw)}}.hub-main{flex:1 1 auto;width:100%;max-width:1400px;margin:0 auto;padding:1.5rem 1.25rem 1rem;animation:hubFadeIn .6s ease-out}.hub-main__intro{margin:0 0 1.25rem;font-size:.9rem;line-height:1.5;color:var(--tertiary-600)}.hub-main__intro strong{color:var(--hub-verde-forte)}.react-grid-layout{position:relative;transition:height .2s ease}.react-grid-item{transition:all .2s ease;transition-property:left,top,width,height}.react-grid-item img{pointer-events:none;-webkit-user-select:none;user-select:none}.react-grid-item.cssTransforms{transition-property:transform,width,height}.react-grid-item.resizing{transition:none;z-index:1;will-change:width,height}.react-grid-item.react-draggable-dragging{transition:none;z-index:3;will-change:transform}.react-grid-item.dropping{visibility:hidden}.react-grid-item.react-grid-placeholder{background:red;opacity:.2;transition-duration:.1s;z-index:2;-webkit-user-select:none;user-select:none}.react-grid-item.react-grid-placeholder.placeholder-resizing{transition:none}.react-grid-item>.react-resizable-handle{position:absolute;width:20px;height:20px;opacity:0}.react-grid-item:hover>.react-resizable-handle{opacity:1}.react-grid-item>.react-resizable-handle:after{content:"";position:absolute;right:3px;bottom:3px;width:5px;height:5px;border-right:2px solid rgba(0,0,0,.4);border-bottom:2px solid rgba(0,0,0,.4)}.react-resizable-hide>.react-resizable-handle{display:none}.react-grid-item>.react-resizable-handle.react-resizable-handle-sw{bottom:0;left:0;cursor:sw-resize;transform:rotate(90deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-se{bottom:0;right:0;cursor:se-resize}.react-grid-item>.react-resizable-handle.react-resizable-handle-nw{top:0;left:0;cursor:nw-resize;transform:rotate(180deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-ne{top:0;right:0;cursor:ne-resize;transform:rotate(270deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-w,.react-grid-item>.react-resizable-handle.react-resizable-handle-e{top:50%;margin-top:-10px;cursor:ew-resize}.react-grid-item>.react-resizable-handle.react-resizable-handle-w{left:0;transform:rotate(135deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-e{right:0;transform:rotate(315deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-n,.react-grid-item>.react-resizable-handle.react-resizable-handle-s{left:50%;margin-left:-10px;cursor:ns-resize}.react-grid-item>.react-resizable-handle.react-resizable-handle-n{top:0;transform:rotate(225deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-s{bottom:0;transform:rotate(45deg)}.react-resizable{position:relative}.react-resizable-handle{position:absolute;width:20px;height:20px;background-repeat:no-repeat;background-origin:content-box;box-sizing:border-box;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+);background-position:bottom right;padding:0 3px 3px 0}.react-resizable-handle-sw{bottom:0;left:0;cursor:sw-resize;transform:rotate(90deg)}.react-resizable-handle-se{bottom:0;right:0;cursor:se-resize}.react-resizable-handle-nw{top:0;left:0;cursor:nw-resize;transform:rotate(180deg)}.react-resizable-handle-ne{top:0;right:0;cursor:ne-resize;transform:rotate(270deg)}.react-resizable-handle-w,.react-resizable-handle-e{top:50%;margin-top:-10px;cursor:ew-resize}.react-resizable-handle-w{left:0;transform:rotate(135deg)}.react-resizable-handle-e{right:0;transform:rotate(315deg)}.react-resizable-handle-n,.react-resizable-handle-s{left:50%;margin-left:-10px;cursor:ns-resize}.react-resizable-handle-n{top:0;transform:rotate(225deg)}.react-resizable-handle-s{bottom:0;transform:rotate(45deg)}.hub-hs__agenda{flex:1;min-height:0;display:flex;flex-direction:column;gap:.75rem}.hub-hs__agenda-head{display:flex;align-items:flex-start;justify-content:space-between;gap:.75rem;flex-shrink:0;padding-bottom:.65rem;border-bottom:1px solid #f3f4f6}.hub-hs__agenda-head-text{min-width:0}.hub-hs__agenda-heading{margin:0;display:flex;align-items:center;gap:.45rem;font-size:1.05rem;font-weight:700;line-height:1.3;color:#111827;letter-spacing:-.02em}.hub-hs__agenda-heading-icon{display:inline-flex;align-items:center;justify-content:center;width:1.65rem;height:1.65rem;border-radius:.45rem;background:linear-gradient(135deg,#dbeafe,#dcfce7);font-size:.9rem;line-height:1}.hub-hs__agenda-summary{margin:.25rem 0 0;font-size:.78rem;line-height:1.4;color:#6b7280}.hub-hs__agenda-full{flex-shrink:0;font-size:.78rem;font-weight:600;color:#2563eb;text-decoration:none;white-space:nowrap;padding-top:.15rem}.hub-hs__agenda-full:hover{color:#1d4ed8;text-decoration:underline}.hub-hs__agenda-body{flex:1;min-height:0;overflow:auto}.hub-hs__agenda-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.5rem}.hub-hs__agenda-row{display:grid;grid-template-columns:3.5rem minmax(0,1fr) auto;align-items:start;gap:.65rem;padding:.7rem .75rem;border-radius:.65rem;border:1px solid #f3f4f6;text-decoration:none;color:inherit;transition:border-color .15s ease,box-shadow .15s ease,transform .12s ease}.hub-hs__agenda-row--green{background:linear-gradient(90deg,#f0fdf4,#fff 55%);border-left:3px solid #22c55e}.hub-hs__agenda-row--blue{background:linear-gradient(90deg,#eff6ff,#fff 55%);border-left:3px solid #3b82f6}.hub-hs__agenda-row--orange{background:linear-gradient(90deg,#fff7ed,#fff 55%);border-left:3px solid #f97316}.hub-hs__agenda-row--purple{background:linear-gradient(90deg,#faf5ff,#fff 55%);border-left:3px solid #a855f7}.hub-hs__agenda-row--grey{background:linear-gradient(90deg,#f9fafb,#fff 55%);border-left:3px solid #9ca3af}.hub-hs__agenda-row--partner{background:linear-gradient(90deg,#ecfeff,#fff 55%);border-left:3px solid #06b6d4}.hub-hs__agenda-row:hover{border-color:#e5e7eb;box-shadow:0 2px 8px #1118270f}.hub-hs__agenda-row--static:hover{box-shadow:none;border-color:#f3f4f6}.hub-hs__agenda-time{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.1rem;min-height:2.75rem;padding:.35rem .25rem;border-radius:.5rem;text-align:center}.hub-hs__agenda-time--green{background:#dcfce7}.hub-hs__agenda-time--blue{background:#dbeafe}.hub-hs__agenda-time--orange{background:#ffedd5}.hub-hs__agenda-time--purple{background:#f3e8ff}.hub-hs__agenda-time--grey{background:#f3f4f6}.hub-hs__agenda-time--partner{background:#cffafe}.hub-hs__agenda-clock{font-size:.875rem;font-weight:800;font-variant-numeric:tabular-nums;color:#111827;line-height:1.2}.hub-hs__agenda-duration{font-size:.65rem;font-weight:600;color:#6b7280;line-height:1.2}.hub-hs__agenda-main{min-width:0;display:flex;flex-direction:column;gap:.15rem;padding-top:.05rem}.hub-hs__agenda-title{font-size:.875rem;font-weight:700;line-height:1.35;color:#111827}.hub-hs__agenda-activity{font-size:.8125rem;font-weight:600;line-height:1.35}.hub-hs__agenda-activity--green{color:#15803d}.hub-hs__agenda-activity--blue{color:#1d4ed8}.hub-hs__agenda-activity--orange{color:#c2410c}.hub-hs__agenda-activity--purple{color:#7e22ce}.hub-hs__agenda-activity--grey{color:#374151}.hub-hs__agenda-activity--partner{color:#0e7490}.hub-hs__agenda-meta{font-size:.75rem;line-height:1.4;color:#9ca3af}.hub-hs__agenda-tag{flex-shrink:0;align-self:start;margin-top:.1rem;padding:.22rem .55rem;border-radius:999px;font-size:.6rem;font-weight:800;letter-spacing:.04em;line-height:1.2;white-space:nowrap}.hub-hs__agenda-tag--green{color:#166534;background:#bbf7d0}.hub-hs__agenda-tag--blue{color:#1e40af;background:#bfdbfe}.hub-hs__agenda-tag--orange{color:#9a3412;background:#fed7aa}.hub-hs__agenda-tag--purple{color:#6b21a8;background:#e9d5ff}.hub-hs__agenda-tag--grey{color:#374151;background:#e5e7eb}.hub-hs__agenda-tag--partner{color:#155e75;background:#a5f3fc}.hub-hs__ag-loading{flex:1;min-height:3.5rem}@media (max-width: 520px){.hub-hs__agenda-head{flex-direction:column;align-items:stretch}.hub-hs__agenda-row{grid-template-columns:3.25rem minmax(0,1fr);grid-template-rows:auto auto}.hub-hs__agenda-tag{grid-column:2;justify-self:start;margin-top:.15rem}}.hub-hs__widget-title{margin:0 0 .5rem;font-size:.95rem;font-weight:700;color:#111827}.hub-hs__widget-shell{position:relative;display:flex;flex-direction:column;flex:1;min-height:0;height:100%}.hub-hs__widget-shell-content{position:relative;flex:1;min-height:0;height:100%;display:flex;flex-direction:column;padding-right:2rem}.hub-hs__widget-shell-inner{flex:1;min-height:0;display:flex;flex-direction:column}.hub-hs__widget-shell-content--loading .hub-hs__widget-shell-inner{opacity:.35;pointer-events:none}.hub-hs__widget-loading{position:absolute;top:0;right:0;bottom:0;left:0;z-index:15;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem;padding:.75rem;background:#ffffffd1;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.hub-hs__widget-loading-spin{width:1.75rem;height:1.75rem;border:2px solid #e5e7eb;border-top-color:#2563eb;border-radius:50%;animation:hub-hs-widget-loading-spin .7s linear infinite}.hub-hs__widget-loading-text{font-size:.75rem;font-weight:600;color:#6b7280}@keyframes hub-hs-widget-loading-spin{to{transform:rotate(360deg)}}@media (prefers-reduced-motion: reduce){.hub-hs__widget-loading-spin{animation:none;border-top-color:#2563eb;opacity:.85}}.hub-hs__meta-loading,.hub-hs__cp-loading,.hub-hs__pr-loading,.hub-hs__ag-loading,.hub-hs__rfv-loading{flex:1;min-height:3.5rem}.hub-hs__widget-info{position:absolute;top:.25rem;right:.25rem;z-index:20;display:inline-flex;align-items:center;gap:.35rem;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .15s ease,visibility .15s ease}.hub-hs__grid-item:hover .hub-hs__widget-info,.hub-hs__widget-info:focus-within,.hub-hs__widget-info:has(.hub-hs__widget-info-btn--open){opacity:1;visibility:visible;pointer-events:auto}.hub-hs__widget-info-icon-btn{display:inline-flex;align-items:center;justify-content:center;width:1.75rem;height:1.75rem;padding:0;border:1px solid #e5e7eb;border-radius:999px;background:#fff;color:#6b7280;cursor:pointer;transition:color .15s ease,border-color .15s ease,background .15s ease,box-shadow .15s ease}.hub-hs__widget-info-icon-btn:hover:not(:disabled){color:#2563eb;border-color:#bfdbfe;background:#eff6ff;box-shadow:0 1px 3px #2563eb1f}.hub-hs__widget-info-icon-btn:disabled{opacity:.65;cursor:wait}.hub-hs__widget-info-btn{display:inline-flex;align-items:center;justify-content:center;width:1.75rem;height:1.75rem;padding:0;border:1px solid #e5e7eb;border-radius:999px;background:#fff;color:#6b7280;cursor:pointer;transition:color .15s ease,border-color .15s ease,background .15s ease,box-shadow .15s ease}.hub-hs__widget-info-btn:hover,.hub-hs__widget-info-btn--open{color:#2563eb;border-color:#bfdbfe;background:#eff6ff;box-shadow:0 1px 3px #2563eb1f}.hub-hs__widget-info-btn-ico{width:1rem;height:1rem}.hub-hs__widget-info-panel{position:absolute;top:calc(100% + .35rem);right:0;z-index:600;width:min(18.5rem,calc(100vw - 2rem));padding:.85rem 1rem;border:1px solid #e5e7eb;border-radius:10px;background:#fff;box-shadow:0 10px 25px #0f172a1f,0 2px 6px #0f172a0f}.hub-hs__widget-info-panel-title{margin:0 0 .65rem;font-size:.8125rem;font-weight:700;color:#111827}.hub-hs__widget-info-list{margin:0;display:grid;gap:.45rem}.hub-hs__widget-info-row{display:grid;grid-template-columns:1fr auto;gap:.5rem .75rem;align-items:baseline;font-size:.75rem;line-height:1.35}.hub-hs__widget-info-row dt{margin:0;color:#6b7280;font-weight:500}.hub-hs__widget-info-row dd{margin:0;color:#111827;font-weight:600;text-align:right;font-variant-numeric:tabular-nums}.hub-hs__widget-info-error{margin:.65rem 0 0;padding:.45rem .55rem;border-radius:6px;background:#fef2f2;color:#b91c1c;font-size:.72rem;line-height:1.4}.hub-hs__widget-info-btn-ico.is-spinning{animation:hub-hs-widget-info-spin .85s linear infinite}@keyframes hub-hs-widget-info-spin{to{transform:rotate(360deg)}}.hub-hs__widget-scroll{flex:1;min-height:0;overflow:auto;display:flex;flex-direction:column}.hub-hs__widget-mini-map{flex:1;min-height:0;display:flex;flex-direction:column}.hub-hs__widget-mini-map .hub-hs__mini-map{flex:1;min-height:0;height:100%}.hub-hs__muted{margin:0;font-size:.9375rem;line-height:1.55;color:#6b7280}.hub-hs__qk-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:.55rem;margin:0;padding:0;list-style:none;align-content:start}.hub-hs__qk-card{display:flex;flex-direction:column;align-items:flex-start;gap:.45rem;min-height:5.75rem;height:100%;padding:.7rem .65rem;border-radius:10px;border:1px solid #e8ecef;background:#fff;text-decoration:none;color:inherit;transition:border-color .15s ease,box-shadow .15s ease,transform .12s ease}.hub-hs__qk-card:hover{border-color:#d1d5db;box-shadow:0 2px 10px #0f172a0f;transform:translateY(-1px)}.hub-hs__qk-card:active{transform:translateY(0)}.hub-hs__qk-card:focus-visible{outline:2px solid var(--hub-verde-forte, #119531);outline-offset:2px}.hub-hs__qk-card-icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:2rem;height:2rem;border-radius:8px}.hub-hs__qk-card-icon img{width:1.15rem;height:1.15rem;object-fit:contain}.hub-hs__qk-card-fallback{font-size:.85rem;font-weight:700;line-height:1}.hub-hs__qk-card-title{font-size:.78rem;font-weight:700;color:#111827;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-hs__qk-card-sub{margin-top:auto;font-size:.68rem;color:#9ca3af;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-hs__qk-card--blue .hub-hs__qk-card-icon{background:#eff6ff;color:#2563eb}.hub-hs__qk-card--green .hub-hs__qk-card-icon{background:#ecfdf3;color:#16a34a}.hub-hs__qk-card--orange .hub-hs__qk-card-icon{background:#fff7ed;color:#ea580c}.hub-hs__qk-card--purple .hub-hs__qk-card-icon{background:#f5f3ff;color:#7c3aed}.hub-hs__qk-card--red .hub-hs__qk-card-icon{background:#fef2f2;color:#dc2626}.hub-hs__qk-card--teal .hub-hs__qk-card-icon{background:#ecfeff;color:#0891b2}.hub-hs__qk-empty{margin:0;font-size:.82rem;color:#9ca3af;text-align:center;padding:1rem .5rem}@media (max-width: 1280px){.hub-hs__qk-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media (max-width: 900px){.hub-hs__qk-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (max-width: 640px){.hub-hs__qk-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.45rem}.hub-hs__qk-card{min-height:5.25rem;padding:.6rem .55rem}}.hub-hs__cp-prompt{display:flex;flex-direction:column;gap:.85rem;padding:.25rem 0}.hub-hs__cp-prompt-text{margin:0;font-size:.875rem;line-height:1.5;color:#4b5563}.hub-hs__cp-prompt-text--warn{color:#b45309}.hub-hs__cp-locate-btn{align-self:flex-start;padding:.5rem .85rem;border:1px solid #bfdbfe;border-radius:8px;background:#eff6ff;color:#1d4ed8;font-size:.8125rem;font-weight:600;cursor:pointer;transition:background .15s ease,border-color .15s ease}.hub-hs__cp-locate-btn:hover{background:#dbeafe;border-color:#93c5fd}.hub-hs__cp-hint{margin:0 0 .5rem;font-size:.75rem;color:#9ca3af;line-height:1.4}.hub-hs__cp-list{margin:0;padding:0;list-style:none}.hub-hs__cp-item{display:flex;align-items:flex-start;gap:.65rem;width:100%;padding:.65rem 0;border:none;border-bottom:1px solid #f3f4f6;background:transparent;text-align:left;text-decoration:none;cursor:pointer;color:inherit;transition:background .12s ease}.hub-hs__cp-item--static{cursor:default}.hub-hs__cp-item:last-child{border-bottom:none}.hub-hs__cp-item:hover{background:#f9fafb}.hub-hs__cp-item--static:hover{background:transparent}.hub-hs__cp-dist{flex-shrink:0;min-width:3.25rem;padding:.2rem .35rem;border-radius:6px;background:#ecfdf5;color:#047857;font-size:.75rem;font-weight:700;text-align:center;font-variant-numeric:tabular-nums;line-height:1.35}.hub-hs__cp-body{flex:1;min-width:0;display:flex;flex-direction:column;gap:.12rem}.hub-hs__cp-nome{font-size:.9375rem;font-weight:600;color:#111827;line-height:1.35}.hub-hs__cp-meta{font-size:.8125rem;color:#6b7280}.hub-hs__cp-codigo{font-size:.75rem;color:#9ca3af;font-variant-numeric:tabular-nums}.hub-hs__cp-refresh-loc{margin-top:.65rem;padding:0;border:none;background:none;color:#2563eb;font-size:.75rem;font-weight:600;cursor:pointer;text-decoration:underline;text-underline-offset:2px}.hub-hs__cp-refresh-loc:hover{color:#1d4ed8}.hub-hs__meta-card{display:flex;flex-direction:column;gap:.5rem;width:100%;padding:.85rem 1rem .9rem;border-radius:12px;border:1px solid #e8eaed;background:#fff;box-shadow:0 1px 2px #0f172a0a}.hub-hs__meta-head{display:flex;align-items:center;justify-content:space-between;gap:.5rem}.hub-hs__meta-title{font-size:.8rem;font-weight:500;color:#6b7280;letter-spacing:-.01em}.hub-hs__meta-icon-wrap{display:inline-flex;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:8px;background:#ecfdf3;color:#16a34a;flex-shrink:0}.hub-hs__meta-icon-svg{width:1.1rem;height:1.1rem}.hub-hs__meta-values{margin:.1rem 0 0;display:flex;flex-wrap:wrap;align-items:baseline;gap:.35rem;line-height:1.15}.hub-hs__meta-actual{font-size:1.65rem;font-weight:700;color:#0f172a;font-variant-numeric:tabular-nums;letter-spacing:-.02em}.hub-hs__meta-goal{font-size:1rem;font-weight:500;color:#9ca3af;font-variant-numeric:tabular-nums}.hub-hs__meta-status{display:flex;align-items:center;flex-wrap:wrap;gap:.3rem .4rem;margin:0;font-size:.78rem;line-height:1.3}.hub-hs__meta-trend-svg{width:.85rem;height:.85rem;flex-shrink:0}.hub-hs__meta-pct{font-weight:700;font-variant-numeric:tabular-nums}.hub-hs__meta-pace{color:#9ca3af;font-weight:400}.hub-hs__meta-status--good{color:#16a34a}.hub-hs__meta-status--good .hub-hs__meta-pace{color:#9ca3af}.hub-hs__meta-status--warn{color:#d97706}.hub-hs__meta-status--warn .hub-hs__meta-pace{color:#9ca3af}.hub-hs__meta-status--risk{color:#dc2626}.hub-hs__meta-status--risk .hub-hs__meta-pace{color:#9ca3af}.hub-hs__meta-progress{width:100%;height:5px;margin-top:.15rem;border-radius:999px;background:#eef0f3;overflow:hidden}.hub-hs__meta-progress-fill{display:block;height:100%;border-radius:999px;transition:width .35s ease}.hub-hs__meta-progress-fill--good{background:#22c55e}.hub-hs__meta-progress-fill--warn{background:#f59e0b}.hub-hs__meta-progress-fill--risk{background:#ef4444}.hub-hs__meta-loading,.hub-hs__meta-empty{margin:.25rem 0 0;font-size:.85rem;color:#9ca3af}.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:#ffffff80}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px #000000a6;border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px #0006;background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:#fffc;margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:#fffc;text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.hub-hs__widget-mini-map .hub-hs__mini-map{display:grid;grid-template-columns:minmax(248px,.46fr) minmax(0,1fr);gap:1.25rem 1.75rem;align-items:stretch;min-height:280px}.hub-hs__widget-mini-map .hub-hs__mini-summary{display:flex;flex-direction:column;min-width:0;height:100%}.hub-hs__widget-mini-map .hub-hs__mini-summary-head{margin:0 0 .25rem;padding-bottom:1rem;border-bottom:1px solid #e5e7eb}.hub-hs__widget-mini-map .hub-hs__mini-summary-title{margin:0 0 .4rem;font-size:1.0625rem;font-weight:700;letter-spacing:-.025em;line-height:1.25;color:#111827}.hub-hs__widget-mini-map .hub-hs__mini-summary-sub{margin:0;font-size:.8125rem;line-height:1.45;color:#6b7280}.hub-hs__widget-mini-map .hub-hs__mini-metrics{margin:0;padding:0;list-style:none;flex:1}.hub-hs__widget-mini-map .hub-hs__mini-metric{display:flex;align-items:flex-start;gap:1.125rem;padding:1rem 0;border-bottom:1px solid #e5e7eb}.hub-hs__widget-mini-map .hub-hs__mini-metric:last-child{border-bottom:none;padding-bottom:.5rem}.hub-hs__widget-mini-map .hub-hs__mini-metric-val{flex:0 0 5.75rem;font-size:1.875rem;font-weight:700;line-height:1;letter-spacing:-.03em;font-variant-numeric:tabular-nums;font-feature-settings:"tnum" 1;text-align:left;white-space:nowrap}.hub-hs__widget-mini-map .hub-hs__mini-metric-val.is-loading{color:#d1d5db}.hub-hs__widget-mini-map .hub-hs__mini-metric--total .hub-hs__mini-metric-val{color:#16a34a}.hub-hs__widget-mini-map .hub-hs__mini-metric--active .hub-hs__mini-metric-val{color:#2563eb}.hub-hs__widget-mini-map .hub-hs__mini-metric--dormant .hub-hs__mini-metric-val{color:#ea580c}.hub-hs__widget-mini-map .hub-hs__mini-metric-body{flex:1;min-width:0;display:flex;flex-direction:column;gap:.25rem;padding-top:.15rem}.hub-hs__widget-mini-map .hub-hs__mini-metric-label{font-size:.875rem;font-weight:600;line-height:1.35;color:#111827}.hub-hs__widget-mini-map .hub-hs__mini-metric-desc{font-size:.75rem;font-weight:400;line-height:1.45;color:#6b7280}.hub-hs__widget-mini-map .hub-hs__mini-map-cta{display:inline-flex;align-items:center;gap:.35rem;margin-top:auto;padding:.875rem 0 0;border:none;background:none;font-family:inherit;font-size:.875rem;font-weight:600;color:#2563eb;cursor:pointer;text-align:left;transition:color .15s ease}.hub-hs__widget-mini-map .hub-hs__mini-map-cta:hover{color:#1d4ed8}.hub-hs__widget-mini-map .hub-hs__mini-map-cta:hover .hub-hs__mini-map-cta-arrow{transform:translate(2px)}.hub-hs__widget-mini-map .hub-hs__mini-map-cta-arrow{display:inline-block;font-size:1rem;line-height:1;transition:transform .15s ease}.hub-hs__mini-map-visual{min-width:0;min-height:0;display:flex;flex-direction:column;flex:1}.hub-hs__mini-map-leaflet-wrap{display:flex;flex-direction:column;gap:.35rem;flex:1;min-height:0}.hub-hs__mini-map-leaflet{position:relative;z-index:0;isolation:isolate;flex:1;min-height:220px;width:100%;border:1px solid #e2e8f0;border-radius:12px;overflow:hidden;background:#e8eef4}.hub-hs__mini-map-leaflet-inner.leaflet-container{z-index:0;width:100%;height:100%;min-height:220px}body:has(.hub-psb__root--in) .hub-hs__mini-map-leaflet{visibility:hidden;pointer-events:none}.hub-hs__mini-map-leaflet-overlay{position:absolute;top:0;right:0;bottom:0;left:0;z-index:450;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem;text-align:center;padding:1rem;border-radius:inherit}.hub-hs__mini-map-leaflet--loading{background:#f8fafc;color:#6b7280}.hub-hs__mini-map-leaflet--loading:after{content:"";width:1.75rem;height:1.75rem;border:2px solid #e5e7eb;border-top-color:#119531;border-radius:50%;animation:hub-hs-mini-map-spin .75s linear infinite}@keyframes hub-hs-mini-map-spin{to{transform:rotate(360deg)}}.hub-hs__mini-map-empty{background:#f8fafcf0;color:#6b7280;font-size:.9rem}.hub-hs__mini-map-leaflet-inner .leaflet-control-zoom{border:none;box-shadow:0 1px 4px #0f172a1f}.hub-hs__mini-map-marker--clickable{cursor:pointer}.hub-hs__mini-map-tooltip{font-size:.75rem;font-weight:600;border:none;box-shadow:0 2px 8px #0f172a26}.hub-hs__mini-map-hint{margin:0;font-size:.68rem;color:#9ca3af;line-height:1.35}.hub-hs__mini-map-legend{margin:0;padding:0;list-style:none;display:flex;flex-wrap:wrap;gap:.35rem .65rem}.hub-hs__mini-map-legend--overlay{position:absolute;left:.5rem;bottom:.5rem;z-index:500;padding:.35rem .5rem;border-radius:8px;background:#ffffffeb;box-shadow:0 1px 6px #0f172a1a;pointer-events:none}.hub-hs__mini-map-legend li{display:flex;align-items:center;gap:.3rem;font-size:.68rem;color:#4b5563}.hub-hs__mini-map-legend-dot{width:.55rem;height:.55rem;border-radius:50%;border:1px solid rgba(255,255,255,.9);flex-shrink:0}.hub-hs__mini-map-legend strong{font-weight:700;color:#111827;font-variant-numeric:tabular-nums}@media (max-width: 760px){.hub-hs__widget-mini-map .hub-hs__mini-map{grid-template-columns:1fr}}.hub-hs__prio{display:flex;flex-direction:column;min-height:0;height:100%}.hub-hs__prio-head{display:flex;align-items:flex-start;justify-content:space-between;gap:.75rem;margin-bottom:.65rem;padding-bottom:.65rem;border-bottom:1px solid #f3f4f6}.hub-hs__prio-head-main{min-width:0;display:flex;flex-direction:column;gap:.55rem}.hub-hs__prio-title{margin:0;display:flex;align-items:center;gap:.45rem;font-size:.95rem;font-weight:700;color:#111827;letter-spacing:-.02em}.hub-hs__prio-count{display:inline-flex;align-items:center;justify-content:center;min-width:1.35rem;height:1.35rem;padding:0 .35rem;border-radius:999px;background:#f3f4f6;font-size:.7rem;font-weight:700;color:#6b7280}.hub-hs__prio-filters{display:flex;flex-wrap:wrap;gap:.35rem}.hub-hs__prio-filter{padding:.28rem .65rem;border:1px solid #e5e7eb;border-radius:999px;background:#fff;font-size:.68rem;font-weight:600;color:#6b7280;cursor:pointer;transition:background .12s ease,border-color .12s ease,color .12s ease}.hub-hs__prio-filter:hover{border-color:#d1d5db;color:#374151}.hub-hs__prio-filter--active{background:#f3f4f6;border-color:#e5e7eb;color:#111827}.hub-hs__prio-all{flex-shrink:0;font-size:.75rem;font-weight:600;color:#2563eb;text-decoration:none;white-space:nowrap;padding-top:.1rem}.hub-hs__prio-all:hover{color:#1d4ed8;text-decoration:underline}.hub-hs__prio-body{flex:1;min-height:0;overflow:auto}.hub-hs__prio-table-wrap{overflow-x:auto;margin:0 -.15rem}.hub-hs__prio-table{width:100%;min-width:32rem;border-collapse:collapse;font-size:.78rem}.hub-hs__prio-table thead th{padding:.35rem .5rem .55rem;text-align:left;font-size:.62rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#9ca3af;border-bottom:1px solid #f3f4f6}.hub-hs__prio-row{border-bottom:1px solid #f3f4f6}.hub-hs__prio-row:last-child{border-bottom:none}.hub-hs__prio-cell{padding:.65rem .5rem;vertical-align:middle;color:#374151}.hub-hs__prio-cell--cliente{min-width:9rem;max-width:14rem}.hub-hs__prio-cliente-link{display:flex;flex-direction:column;gap:.12rem;text-decoration:none;color:inherit}.hub-hs__prio-cliente-link:hover .hub-hs__prio-nome{color:#166534}.hub-hs__prio-nome{font-size:.8rem;font-weight:700;color:#111827;line-height:1.3}.hub-hs__prio-sub{font-size:.68rem;color:#9ca3af;line-height:1.35}.hub-hs__prio-seg{display:inline-flex;align-items:center;gap:.3rem;padding:.18rem .5rem;border-radius:999px;font-size:.62rem;font-weight:700;white-space:nowrap}.hub-hs__prio-seg-dot{width:.35rem;height:.35rem;border-radius:50%;flex-shrink:0}.hub-hs__prio-seg--nao_perder{color:#b91c1c;background:#fee2e2}.hub-hs__prio-seg--nao_perder .hub-hs__prio-seg-dot{background:#ef4444}.hub-hs__prio-seg--em_risco,.hub-hs__prio-seg--atencao{color:#c2410c;background:#ffedd5}.hub-hs__prio-seg--em_risco .hub-hs__prio-seg-dot,.hub-hs__prio-seg--atencao .hub-hs__prio-seg-dot{background:#f97316}.hub-hs__prio-seg--hibernando{color:#7e22ce;background:#f3e8ff}.hub-hs__prio-seg--hibernando .hub-hs__prio-seg-dot{background:#a855f7}.hub-hs__prio-seg--promissores{color:#0f766e;background:#ccfbf1}.hub-hs__prio-seg--promissores .hub-hs__prio-seg-dot{background:#14b8a6}.hub-hs__prio-seg--campeoes{color:#15803d;background:#dcfce7}.hub-hs__prio-seg--campeoes .hub-hs__prio-seg-dot{background:#22c55e}.hub-hs__prio-seg--potenciais,.hub-hs__prio-seg--fidelizados{color:#1d4ed8;background:#dbeafe}.hub-hs__prio-seg--potenciais .hub-hs__prio-seg-dot,.hub-hs__prio-seg--fidelizados .hub-hs__prio-seg-dot{background:#3b82f6}.hub-hs__prio-cell--compra,.hub-hs__prio-cell--valor{white-space:nowrap;font-variant-numeric:tabular-nums}.hub-hs__prio-cell--valor{font-weight:600;color:#111827}.hub-hs__prio-actions{display:flex;align-items:center;justify-content:flex-end;gap:.3rem}.hub-hs__prio-action{display:inline-flex;align-items:center;justify-content:center;width:1.65rem;height:1.65rem;border:1px solid #e5e7eb;border-radius:.4rem;background:#fff;font-size:.75rem;line-height:1;text-decoration:none;cursor:pointer;transition:border-color .12s ease,background .12s ease}.hub-hs__prio-action:hover{border-color:#d1d5db;background:#f9fafb}.hub-hs__prio-action--disabled{opacity:.35;cursor:default}.hub-hs__prio-loading{min-height:6rem}.hub-hs__sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}@media (max-width: 640px){.hub-hs__prio-head{flex-direction:column;align-items:stretch}}.hub-hs__rfv-alerta{display:flex;flex-direction:column;min-height:0;height:100%}.hub-hs__rfv-alerta-head{display:flex;align-items:flex-start;justify-content:space-between;gap:.75rem;margin-bottom:.35rem;padding-bottom:.65rem;border-bottom:1px solid #f3f4f6}.hub-hs__rfv-alerta-head-text{min-width:0}.hub-hs__rfv-alerta-title{margin:0;font-size:.95rem;font-weight:700;color:#111827;letter-spacing:-.02em}.hub-hs__rfv-alerta-sub{margin:.2rem 0 0;font-size:.72rem;color:#9ca3af;line-height:1.35}.hub-hs__rfv-alerta-all{flex-shrink:0;font-size:.75rem;font-weight:600;color:#2563eb;text-decoration:none;white-space:nowrap;padding-top:.1rem}.hub-hs__rfv-alerta-all:hover{color:#1d4ed8;text-decoration:underline}.hub-hs__rfv-alerta-list{margin:0;padding:0;list-style:none;flex:1;min-height:0;overflow-y:auto}.hub-hs__rfv-alerta-row{display:flex;align-items:center;gap:.65rem;padding:.7rem 0;border-bottom:1px solid #f3f4f6;text-decoration:none;color:inherit;transition:background .12s ease}.hub-hs__rfv-alerta-list li:last-child .hub-hs__rfv-alerta-row{border-bottom:none}.hub-hs__rfv-alerta-row:hover{background:#fafafa;margin:0 -.35rem;padding-left:.35rem;padding-right:.35rem;border-radius:8px}.hub-hs__rfv-alerta-row:hover .hub-hs__rfv-alerta-nome{color:#111827}.hub-hs__rfv-alerta-avatar{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:8px;background:#f3f4f6;font-size:.68rem;font-weight:700;letter-spacing:.02em;color:#6b7280}.hub-hs__rfv-alerta-body{flex:1;min-width:0;display:flex;flex-direction:column;gap:.12rem}.hub-hs__rfv-alerta-nome{font-size:.82rem;font-weight:600;color:#111827;line-height:1.3;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hub-hs__rfv-alerta-meta{font-size:.68rem;color:#9ca3af;line-height:1.35;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hub-hs__rfv-alerta-badge{flex-shrink:0;padding:.2rem .45rem;border-radius:999px;font-size:.62rem;font-weight:700;letter-spacing:.01em;white-space:nowrap}.hub-hs__rfv-alerta-badge--vip{background:#fee2e2;color:#b91c1c}.hub-hs__rfv-alerta-badge--risco{background:#fef3c7;color:#b45309}.hub-hs__rfv-alerta-badge--hibernando{background:#f3e8ff;color:#7e22ce}.hub-hs__rfv-alerta-loading{flex:1;min-height:6rem;border-radius:8px;background:linear-gradient(90deg,#f3f4f6,#e5e7eb,#f3f4f6);background-size:200% 100%;animation:hub-hs-rfv-alerta-shimmer 1.1s ease-in-out infinite}@keyframes hub-hs-rfv-alerta-shimmer{0%{background-position:100% 0}to{background-position:-100% 0}}.hub-hs__rfv-alerta-empty{margin:0;padding:1.25rem .5rem;text-align:center;font-size:.82rem;color:#9ca3af}.hub-hs__rfv-panel{display:flex;flex-direction:column;gap:1.15rem;padding:1.25rem 1.35rem 1.35rem;border-radius:12px;border:1px solid #e8eaed;background:#fff;box-shadow:0 1px 2px #0f172a0a}.hub-hs__rfv-head{display:flex;align-items:flex-start;justify-content:space-between;gap:.65rem}.hub-hs__rfv-title{margin:0;font-size:1.05rem;font-weight:700;line-height:1.3;color:#0f172a;letter-spacing:-.01em}.hub-hs__rfv-loading{margin:0;font-size:.85rem;color:#9ca3af}.hub-hs__rfv-donut-wrap{display:flex;justify-content:center;padding:.25rem 0 .35rem}.hub-hs__rfv-donut{width:220px;height:220px;border-radius:50%;display:flex;align-items:center;justify-content:center}.hub-hs__rfv-donut-hole{width:142px;height:142px;border-radius:50%;background:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.15rem;text-align:center;box-shadow:inset 0 0 0 1px #f1f5f9}.hub-hs__rfv-donut-hole strong{font-size:2rem;font-weight:800;line-height:1;color:#0f172a;font-variant-numeric:tabular-nums}.hub-hs__rfv-donut-hole span{font-size:.68rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:#9ca3af;max-width:7.5rem;line-height:1.2}.hub-hs__rfv-legend{display:grid;grid-template-columns:1fr 1fr;gap:.35rem .75rem}.hub-hs__rfv-legend-col{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.4rem}.hub-hs__rfv-legend-col li{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:.4rem;font-size:.8rem;line-height:1.25}.hub-hs__rfv-dot{width:.55rem;height:.55rem;border-radius:50%;flex-shrink:0}.hub-hs__rfv-seg-label{color:#4b5563;font-weight:500}.hub-hs__rfv-seg-count{font-weight:700;color:#111827;font-variant-numeric:tabular-nums}.hub-hs__rfv-alert{padding:.65rem .7rem;border-radius:8px;border:1px solid #fecaca;background:#fef2f2}.hub-hs__rfv-alert p{margin:0;font-size:.72rem;line-height:1.45;color:#7f1d1d}.hub-hs__rfv-alert-icon{margin-right:.2rem}.hub-hs__rfv-alert strong{font-weight:700;color:#991b1b}.hub-hs__top-card{display:flex;flex-direction:column;align-items:flex-start;gap:.35rem;width:100%;padding:.8rem .9rem .65rem;border-radius:10px;border:1px solid #e5e7eb;background:#fff;text-align:left;font-family:inherit;cursor:pointer}.hub-hs__top-card:hover{background:#f9fafb}.hub-hs__top-card--static{cursor:default}.hub-hs__top-card--static:hover{background:#fff}.hub-hs__top-title{font-size:.78rem;font-weight:600;color:#6b7280}.hub-hs__top-value{font-size:1.55rem;font-weight:700;line-height:1.1;color:#111827;font-variant-numeric:tabular-nums}.hub-hs__top-meta{font-size:.72rem;line-height:1.3;color:#6b7280}.hub-hs__top-progress{width:100%;height:3px;border-radius:999px;background:#e5e7eb;overflow:hidden}.hub-hs__top-progress-fill{display:block;height:100%;width:0}.hub-hs__top-card--blue .hub-hs__top-progress-fill{background:#2563eb}.hub-hs__top-card--green .hub-hs__top-progress-fill{background:#16a34a}.hub-hs__top-card--orange .hub-hs__top-progress-fill{background:#d97706}.hub-hs__top-card--purple .hub-hs__top-progress-fill{background:#7c3aed}.hub-footer{--hub-footer-h: 2.75rem;margin-top:auto;flex-shrink:0;border-top:1px solid rgba(17,149,49,.1);background:var(--tertiary-100)}.hub-footer__inner{max-width:1280px;margin:0 auto;padding:.3rem clamp(.85rem,3vw,2.5rem);min-height:var(--hub-footer-h);display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.35rem 1rem}.hub-footer__logo{height:22px;width:auto;display:block;opacity:.88}.hub-footer__nav{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:.2rem .4rem;font-size:.75rem}.hub-footer__nav a{color:var(--tertiary-600);text-decoration:none}.hub-footer__nav a:hover{color:var(--hub-verde-forte, #119531);text-decoration:underline;text-underline-offset:2px}.hub-footer__nav a:focus-visible{outline:2px solid var(--hub-verde-forte, #119531);outline-offset:2px;border-radius:2px}.hub-footer__sep{color:var(--tertiary-300);-webkit-user-select:none;user-select:none}.hub-footer__version{margin:0;font-size:.75rem;font-weight:300;color:var(--tertiary-600);white-space:nowrap}@media (max-width: 560px){.hub-footer{--hub-footer-h: auto}.hub-footer__inner{flex-direction:column;padding-top:.45rem;padding-bottom:.45rem;min-height:0;text-align:center}.hub-footer__nav{order:3;width:100%}}.hub-home{--hub-verde-forte: #119531;--hub-verde-escuro: #0d7a28;--hub-verde-medio: #4a9f2a;--hub-verde-vivo: #60b937;--hub-verde-musgo: #36881e;--hub-verde-fundo: #f8fafc;--hub-verde-fundo-2: #f1f5f9;min-height:100vh;min-height:100dvh;display:flex;flex-direction:column;background:#fff;color:var(--tertiary-900)}.hub-chrome{position:sticky;top:0;z-index:520;isolation:isolate;display:flex;flex-direction:column;background:var(--hub-verde-forte, #119531);overflow:visible}.hub-home--app-mode{background:#020617}.hub-nav{--hub-unified-search-width: 28rem;--hub-nav-fg: #fff;--hub-nav-fg-muted: rgba(255, 255, 255, .88);--hub-nav-hover-bg: rgba(255, 255, 255, .14);--hub-nav-active-bg: rgba(255, 255, 255, .2);display:flex;flex-direction:column;align-items:stretch;background:linear-gradient(90deg,var(--hub-verde-escuro, #0d7a28) 0%,var(--hub-verde-forte, #119531) 45%,var(--hub-verde-medio, #4a9f2a) 100%);color:var(--hub-nav-fg);border-bottom:1px solid rgba(0,0,0,.14);overflow:visible}.hub-nav:before{content:"";display:block;height:1px;background:#fff3}.hub-nav__inner{display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);align-items:center;gap:.65rem 1rem;padding:.45rem 1rem;min-height:3.25rem;overflow:visible}.hub-nav__slot-left{grid-column:1;display:flex;align-items:center;justify-content:flex-start;gap:.85rem;min-width:0;width:100%;justify-self:stretch;position:relative;z-index:1}.hub-nav__slot-left:has(.hub-catnav__item--open){z-index:30}.hub-nav__slot-right{grid-column:3;display:flex;align-items:center;justify-content:flex-end;gap:.5rem;min-width:0;width:100%;justify-self:stretch}.hub-nav__cats{flex:1 1 auto;min-width:0;display:flex;align-items:stretch;overflow:visible}.hub-nav__head{display:flex;align-items:center;flex:0 0 auto;min-width:0}.hub-nav__start,.hub-nav__left{grid-column:1;display:flex;align-items:center;gap:.65rem;min-width:0;justify-self:stretch}@media (min-width: 769px){.hub-nav__tools{grid-column:2;grid-row:1;justify-self:center}.hub-nav__slot-right .hub-nav__end{flex:0 0 auto}}.hub-nav__search-wrap{flex:0 1 auto;min-width:0;width:100%;max-width:var(--hub-unified-search-width)}.hub-brand{display:inline-flex;align-items:center;gap:.5rem;flex-shrink:0;text-decoration:none;color:inherit}.hub-brand--with-app{min-width:0}.hub-brand__logo{height:1.85rem;width:auto;max-width:6.5rem;object-fit:contain;object-position:left center;filter:brightness(0) invert(1)}.hub-brand__app{display:inline-flex;align-items:center;gap:.45rem;min-width:0;max-width:16rem;color:#fff;overflow:hidden;transform-origin:left center}.hub-brand__connector{font-size:1.05rem;font-weight:500;line-height:1;letter-spacing:-.02em;color:#ffffffd1}.hub-brand__app-icon{width:1.75rem;height:1.75rem;object-fit:contain;filter:brightness(0) invert(1)}.hub-brand__app-name{max-width:12rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:1rem;font-weight:500;letter-spacing:-.01em;color:#fff}.hub-brand__version{font-size:.8rem;font-weight:600;letter-spacing:.04em;color:#c4cdd8;line-height:1;-webkit-user-select:none;user-select:none}.hub-version-label{margin:0;font-size:.8125rem;font-weight:500;font-variant-numeric:tabular-nums;letter-spacing:.02em;color:var(--tertiary-600);white-space:nowrap}.hub-version-label__sep{opacity:.55;font-weight:400}.hub-nav__end{display:flex;align-items:center;justify-content:flex-end;gap:.35rem;flex:0 0 auto;min-width:0}.hub-nav__actions{display:flex;align-items:center;gap:.35rem;flex-shrink:0}.hub-nav__icon-btn{position:relative;display:flex;align-items:center;justify-content:center;padding:.5rem;border:none;border-radius:8px;background:transparent;color:var(--hub-nav-fg-muted, #fff);cursor:pointer;font-family:inherit;text-decoration:none;transition:all .15s ease}.hub-nav__icon-btn:hover{background:var(--hub-nav-hover-bg, rgba(255, 255, 255, .14));color:var(--hub-nav-fg, #fff)}.hub-nav__icon-btn--open{background:var(--hub-nav-active-bg, rgba(255, 255, 255, .2));color:var(--hub-nav-fg, #fff)}.hub-nav__icon-btn:focus-visible{outline:2px solid #fff;outline-offset:2px}.hub-nav__icon-btn-ico{width:1.35rem;height:1.35rem;flex-shrink:0}.hub-nav__icon-btn-ico--spinning{animation:hub-nav-icon-spin .85s linear infinite}@keyframes hub-nav-icon-spin{to{transform:rotate(360deg)}}.hub-nav__icon-btn:disabled{opacity:.65;cursor:wait}.hub-nav__notif{position:relative}.hub-nav__notif-panel{position:absolute;top:calc(100% + .5rem);right:0;width:min(26rem,calc(100vw - 1.25rem));background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:16px;box-shadow:0 18px 48px #0f172a24,0 4px 12px #0f172a0f;z-index:220;overflow:hidden;animation:hubMegaFadeIn .15s ease-out}.hub-nav__notif-head{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:1rem 1.1rem .85rem;border-bottom:1px solid #eef2f6;background:#fff}.hub-nav__notif-view-all{flex-shrink:0;font-size:.72rem;font-weight:600;color:#64748b;text-decoration:none;line-height:1.3;transition:color .12s ease}.hub-nav__notif-view-all:hover{color:var(--hub-verde-forte, #119531);text-decoration:underline}.hub-nav__notif-badge{position:absolute;top:.02rem;right:.02rem;min-width:1.1rem;height:1.1rem;padding:0 .25rem;border-radius:999px;background:#dc2626;color:#fff;font-size:.6rem;font-weight:800;line-height:1.1rem;text-align:center;border:2px solid var(--hub-verde-forte, #119531);box-shadow:0 1px 3px #0003;pointer-events:none}.hub-nav__notif-title{margin:0;font-size:.95rem;font-weight:700;letter-spacing:0;text-transform:none;color:#0f172a}.hub-nav__notif-body{max-height:min(28rem,62vh);overflow-y:auto;padding:.65rem;background:#f4f6f8}.hub-nav__notif-empty{display:flex;flex-direction:column;align-items:center;gap:.55rem;margin:0;padding:2rem 1.25rem;font-size:.86rem;line-height:1.45;color:#64748b;text-align:center}.hub-nav__notif-empty p{margin:0}.hub-nav__notif-empty-icon{display:flex;align-items:center;justify-content:center;width:2.5rem;height:2.5rem;border-radius:999px;background:#eef2f6;color:#94a3b8}.hub-nav__notif-item{position:relative;width:100%;margin:0;padding:.9rem .95rem;border:1px solid #e8edf2;border-radius:14px;background:#fff;color:inherit;text-align:left;font:inherit;box-sizing:border-box;transition:border-color .12s ease,box-shadow .12s ease}.hub-nav__notif-item+.hub-nav__notif-item{margin-top:.55rem}.hub-nav__notif-item:hover{border-color:#d7dee8;box-shadow:0 4px 14px #0f172a0f}.hub-nav__notif-item--unread{border-color:#f0e4d8;background:#fffdfb}.hub-nav__notif-item-dot{position:absolute;top:.7rem;right:.7rem;width:.5rem;height:.5rem;border-radius:999px;background:#f97316;box-shadow:0 0 0 2px #fff}.hub-nav__notif-item-inner{display:flex;align-items:flex-start;gap:.8rem}.hub-nav__notif-item-icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:2.35rem;height:2.35rem;border-radius:999px;background:#eef7f0;color:var(--hub-verde-forte, #119531)}.hub-nav__notif-item-icon svg{width:1.05rem;height:1.05rem}.hub-nav__notif-item-icon--pedido{background:#eef7f0;color:#119531}.hub-nav__notif-item-icon--cotacao{background:#eff6ff;color:#2563eb}.hub-nav__notif-item-icon--oportunidade{background:#f5f3ff;color:#7c3aed}.hub-nav__notif-item-icon--nota_fiscal{background:#1195311f;color:#0d7a28}.hub-nav__notif-item-icon--default{background:#f1f5f9;color:#64748b}.hub-nav__notif-item-body{display:flex;flex-direction:column;gap:.55rem;min-width:0;flex:1;padding-right:.35rem}.hub-nav__notif-item-text{margin:0;font-size:.8rem;font-weight:400;color:#334155;line-height:1.5}.hub-nav__notif-item-text strong{font-weight:700;color:#0f172a}.hub-nav__notif-item-actions{display:flex;flex-wrap:wrap;gap:.45rem}.hub-nav__notif-item-btn{display:inline-flex;align-items:center;justify-content:center;padding:.38rem .75rem;border-radius:8px;font-size:.72rem;font-weight:700;line-height:1.2;text-decoration:none;cursor:pointer;transition:background .12s ease,border-color .12s ease,color .12s ease}.hub-nav__notif-item-btn--primary{border:1px solid #1e293b;background:#1e293b;color:#fff}.hub-nav__notif-item-btn--primary:hover{background:#0f172a;border-color:#0f172a}.hub-nav__notif-item-meta{font-size:.68rem;font-weight:500;color:#94a3b8;line-height:1.3}.hub-nav__tools{display:flex;align-items:center;justify-content:center;padding:0;background:transparent;border:none;border-radius:0;box-shadow:none;flex-shrink:0}.hub-nav__tools-label{display:none}.hub-nav__search{display:inline-flex;flex-wrap:nowrap;align-items:center;justify-content:center;gap:.45rem;min-width:0}.hub-nav__search-btn{display:inline-flex;flex-direction:row;align-items:center;justify-content:center;gap:.4rem;flex:0 0 auto;padding:.5rem .85rem;min-height:2rem;font-size:.8rem;font-weight:600;letter-spacing:.01em;color:var(--hub-nav-fg-muted, #fff);background:transparent;border:none;border-radius:8px;cursor:pointer;font-family:inherit;white-space:nowrap;transition:background .15s ease,border-color .15s ease,color .15s ease,box-shadow .15s ease,transform .12s ease}.hub-nav__search-btn:hover{background:var(--hub-nav-hover-bg, rgba(255, 255, 255, .14));color:var(--hub-nav-fg, #fff)}.hub-nav__search-btn:focus-visible{outline:2px solid #fff;outline-offset:2px}.hub-nav__search-btn:active:not(:disabled){background:var(--hub-nav-active-bg, rgba(255, 255, 255, .2))}.hub-nav__search-btn--active{background:var(--hub-nav-active-bg, rgba(255, 255, 255, .2));color:var(--hub-nav-fg, #fff)}.hub-nav__search-ico{width:1.1rem;height:1.1rem;flex-shrink:0;color:currentColor}.hub-nav__search-text{white-space:nowrap;line-height:1.2}.hub-nav__user{flex:0 0 auto;margin-left:auto;display:none;align-items:center;gap:.65rem;min-width:0;padding:.1rem 0 .1rem .85rem;border-left:3px solid var(--hub-verde-vivo);background:transparent}.hub-nav__user-text{display:flex;flex-direction:column;align-items:flex-start;gap:.1rem;min-width:0;max-width:12rem}.hub-nav__welcome{font-size:.62rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--hub-verde-medio)}.hub-nav__name{font-size:.92rem;font-weight:800;color:var(--hub-verde-forte);line-height:1.2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.hub-nav__logout{flex-shrink:0;padding:.48rem 1rem;margin-left:.25rem;font-size:.78rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#fff;background:linear-gradient(180deg,var(--hub-verde-medio) 0%,var(--hub-verde-forte) 100%);border:none;border-radius:9px;cursor:pointer;font-family:inherit;transition:filter .2s ease,transform .15s ease}.hub-nav__logout:hover:not(:disabled){filter:brightness(1.08)}.hub-nav__logout:focus-visible{outline:2px solid var(--hub-verde-vivo);outline-offset:3px}.hub-nav__logout:disabled{opacity:.55;cursor:not-allowed;filter:none}.hub-nav__avatar{width:2.55rem;height:2.55rem;border-radius:10px;background:linear-gradient(145deg,var(--hub-verde-musgo) 0%,var(--hub-verde-forte) 55%,var(--hub-verde-escuro) 100%);color:#fff;font-weight:800;font-size:1.05rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;border:2px solid var(--hub-verde-vivo)}.hub-appsearch{position:relative;display:flex;align-items:center;gap:0;flex-shrink:1;min-width:0}.hub-appsearch__field{display:flex;align-items:center;gap:8px;background:#f3f4f6;border-radius:10px;padding:0 16px;height:48px;width:400px;transition:box-shadow .15s ease,background .15s ease}.hub-appsearch__field:focus-within{box-shadow:0 0 0 2px var(--hub-verde-vivo);background:#fff}.hub-appsearch__search-ico{width:16px;height:16px;color:#9ca3af;flex-shrink:0}.hub-appsearch__input{flex:1;border:none;background:transparent;outline:none;font-size:.85rem;color:#1f2937;font-family:inherit;min-width:0}.hub-appsearch__input::placeholder{color:#9ca3af}.hub-appsearch__dropdown{position:absolute;top:100%;left:0;margin-top:6px;width:320px;max-height:380px;overflow-y:auto;background:#fff;border-radius:12px;box-shadow:0 8px 32px #00000024,0 1px 4px #0000000f;z-index:9000;list-style:none;padding:6px;scrollbar-width:thin;scrollbar-color:#d1d5db transparent;animation:hubAppSearchIn .15s ease-out}@keyframes hubAppSearchIn{0%{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}.hub-appsearch__item{display:flex;align-items:center;gap:12px;width:100%;border:none;background:transparent;padding:9px 10px;border-radius:9px;cursor:pointer;font-family:inherit;text-align:left;transition:background .12s ease}.hub-appsearch__item:hover:not(:disabled){background:#11953114}.hub-appsearch__item:active:not(:disabled){background:#11953126}.hub-appsearch__item:focus-visible{outline:2px solid var(--hub-verde-vivo);outline-offset:-1px}.hub-appsearch__item--disabled{opacity:.4;cursor:not-allowed}.hub-appsearch__item-ico{width:30px;height:30px;object-fit:contain;flex-shrink:0;border-radius:6px}.hub-appsearch__item-name{flex:1;font-size:.85rem;font-weight:500;color:#1f2937;line-height:1.3}.hub-appsearch__item:hover:not(:disabled) .hub-appsearch__item-name{color:var(--hub-verde-forte)}.hub-appsearch__item-badge{font-size:.6rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:#fff;background:#f97316;padding:2px 7px;border-radius:9999px;flex-shrink:0}.hub-appsearch__empty{text-align:center;padding:24px 12px;color:#9ca3af;font-size:.82rem}.hub-catnav{position:relative;z-index:2;width:100%;background:#fff;border-bottom:1px solid #e5e7eb}.hub-catnav--inline{width:auto;flex:1 1 auto;min-width:0;border-bottom:none;background:transparent;overflow:visible}@media (min-width: 769px){.hub-catnav--inline .hub-catnav__list{padding:0;min-height:0;flex-wrap:nowrap;overflow:visible}.hub-catnav--inline .hub-catnav__item--open{z-index:40}.hub-catnav--inline .hub-catnav__panel{z-index:50}}.hub-catnav--inline .hub-catnav__trigger{min-height:2.35rem;padding:0 .85rem;font-size:.76rem}.hub-nav .hub-catnav--inline .hub-catnav__trigger{color:var(--hub-nav-fg-muted, rgba(255, 255, 255, .92))}.hub-nav .hub-catnav__trigger:hover,.hub-nav .hub-catnav__item--open>.hub-catnav__trigger,.hub-nav .hub-catnav__trigger--active{color:var(--hub-nav-fg, #fff);background:var(--hub-nav-hover-bg, rgba(255, 255, 255, .14))}.hub-nav .hub-catnav__item--active>.hub-catnav__trigger--home{color:var(--hub-nav-fg, #fff);box-shadow:inset 0 -2px #ffffffd9}.hub-catnav__list{display:flex;align-items:stretch;justify-content:flex-start;gap:0;margin:0;padding:0 1rem;list-style:none;min-height:44px}.hub-catnav__item{position:relative;flex:0 1 auto}.hub-catnav__item--open{z-index:20}.hub-catnav__trigger{display:inline-flex;align-items:center;justify-content:center;gap:.35rem;min-height:44px;padding:0 1.1rem;border:none;background:transparent;color:#374151;font-family:inherit;font-size:.8rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;text-decoration:none;cursor:pointer;white-space:nowrap;transition:color .15s ease,background .15s ease}.hub-catnav__trigger--home{letter-spacing:.06em}.hub-catnav__trigger:hover,.hub-catnav__item--open>.hub-catnav__trigger,.hub-catnav__trigger--active{color:var(--hub-verde-forte, #119531);background:#1195310f}.hub-catnav__item--active>.hub-catnav__trigger--home{color:var(--hub-verde-forte, #119531);box-shadow:inset 0 -2px 0 var(--hub-verde-forte, #119531)}.hub-catnav__count{display:inline-flex;align-items:center;justify-content:center;min-width:1.15rem;height:1.15rem;padding:0 .3rem;border-radius:999px;background:#1195311f;color:var(--hub-verde-escuro, #0d7a28);font-size:.62rem;font-weight:700;letter-spacing:0;text-transform:none}.hub-catnav__panel{position:absolute;top:100%;left:0;margin-top:2px;transform:translateY(4px);min-width:min(22rem,92vw);max-width:min(36rem,96vw);padding:.65rem;background:#fff;border:1px solid rgba(17,149,49,.14);border-radius:12px;box-shadow:0 12px 40px #0f172a1f,0 2px 8px #0f172a0f;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .18s ease,transform .18s ease,visibility .18s linear;z-index:250}.hub-catnav__panel--open{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)}.hub-catnav__panel:before{content:"";position:absolute;left:0;right:0;top:-8px;height:8px}.hub-catnav__panel-inner{display:flex;flex-direction:column;gap:.25rem;max-height:min(70vh,24rem);overflow-y:auto}.hub-catnav__tool{display:flex;align-items:flex-start;gap:.75rem;width:100%;padding:.55rem .65rem;border:none;border-radius:10px;background:transparent;text-align:left;cursor:pointer;transition:background .15s ease;font-family:inherit;font-size:inherit;color:inherit;text-decoration:none;box-sizing:border-box}.hub-catnav__tool:hover{background:#11953114}.hub-catnav__tool--disabled{opacity:.45;cursor:default}.hub-catnav__tool--multi{cursor:default}.hub-catnav__tool--multi:hover{background:#1195310d}.hub-catnav__tool-links{display:flex;flex-wrap:wrap;gap:.35rem;margin-top:.35rem}.hub-catnav__tool-link{display:inline-flex;align-items:center;padding:.2rem .5rem;border-radius:6px;border:1px solid rgba(17,149,49,.35);background:#1195310f;color:#0f6b2d;font-size:.72rem;font-weight:600;line-height:1.25;text-decoration:none;transition:background .15s ease,border-color .15s ease}.hub-catnav__tool-link:hover{background:#11953124;border-color:#1195318c}.hub-catnav__tool-ico-wrap{position:relative;flex-shrink:0;width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:#f8fafc;border:1px solid #e5e7eb}.hub-catnav__tool-ico{width:28px;height:28px;object-fit:contain}.hub-catnav__tool-badge{position:absolute;top:-3px;right:-3px;padding:.1rem .3rem;border-radius:4px;background:#ef4444;color:#fff;font-size:.55rem;font-weight:700;text-transform:uppercase;line-height:1.2}.hub-catnav__tool-body{display:flex;flex-direction:column;gap:.2rem;min-width:0}.hub-catnav__tool-name{font-size:.88rem;font-weight:600;color:#111827;line-height:1.25}.hub-catnav__tool-summary{font-size:.75rem;font-weight:400;color:#6b7280;line-height:1.35}.hub-usermenu{position:relative;flex:0 0 auto}.hub-usermenu__cluster{display:flex;align-items:center;gap:.4rem}.hub-usermenu__cache-btn{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:2rem;height:2rem;padding:0;border:none;border-radius:999px;color:#fff;background:linear-gradient(180deg,var(--hub-verde-vivo, #60b937) 0%,var(--hub-verde-forte, #119531) 55%,var(--hub-verde-escuro, #0d7a28) 100%);box-shadow:0 2px 10px #11953161;cursor:pointer;transition:transform .12s ease,box-shadow .15s ease,filter .15s ease}.hub-usermenu__cache-btn:hover:not(:disabled){filter:brightness(1.06);box-shadow:0 3px 14px #11953173}.hub-usermenu__cache-btn:active:not(:disabled){transform:scale(.96)}.hub-usermenu__cache-btn:focus-visible{outline:2px solid #fff;outline-offset:2px;box-shadow:0 0 0 3px var(--hub-verde-forte, #119531),0 2px 10px #11953161}.hub-nav .hub-usermenu__cache-btn{background:#ffffff24;border:1px solid rgba(255,255,255,.35);box-shadow:none}.hub-nav .hub-usermenu__cache-btn:hover:not(:disabled){background:#ffffff38;filter:none;box-shadow:none}.hub-nav .hub-usermenu__cache-btn:focus-visible{outline:2px solid #fff;outline-offset:2px;box-shadow:none}.hub-usermenu__cache-btn:disabled{opacity:.82;cursor:wait}.hub-usermenu__cache-btn-ico{width:1.1rem;height:1.1rem;flex-shrink:0;color:#fff}.hub-usermenu__cache-btn-ico--spinning{animation:hub-usermenu-cache-spin .85s linear infinite}@keyframes hub-usermenu-cache-spin{to{transform:rotate(360deg)}}.hub-usermenu__trigger{display:flex;align-items:center;justify-content:center;padding:.5rem;border:none;border-radius:8px;background:transparent;color:var(--hub-nav-fg-muted, #6b7280);cursor:pointer;font-family:inherit;transition:color .15s ease,background .15s ease}.hub-nav .hub-usermenu__trigger{color:var(--hub-nav-fg-muted, rgba(255, 255, 255, .92))}.hub-usermenu__trigger:hover{background:#1195310f;color:var(--hub-verde-escuro)}.hub-nav .hub-usermenu__trigger:hover{background:var(--hub-nav-hover-bg, rgba(255, 255, 255, .14));color:var(--hub-nav-fg, #fff)}.hub-usermenu__trigger--open{background:#1195311a;color:var(--hub-verde-escuro)}.hub-nav .hub-usermenu__trigger--open{background:var(--hub-nav-active-bg, rgba(255, 255, 255, .2));color:var(--hub-nav-fg, #fff)}.hub-usermenu__trigger:focus-visible{outline:2px solid var(--hub-verde-vivo);outline-offset:2px}.hub-nav .hub-usermenu__trigger:focus-visible{outline-color:#fff}.hub-usermenu__trigger--photo{padding:.15rem}.hub-usermenu__trigger--photo:hover,.hub-usermenu__trigger--photo.hub-usermenu__trigger--open{background:transparent}.hub-usermenu__icon{width:1.35rem;height:1.35rem;flex-shrink:0}.hub-nav .hub-usermenu__icon{color:var(--hub-nav-fg, #fff)}.hub-usermenu__avatar{width:2rem;height:2rem;flex-shrink:0;border-radius:999px;object-fit:cover;display:block;border:2px solid rgba(17,149,49,.2);background:#f3f4f6}.hub-nav .hub-usermenu__avatar{border-color:#ffffffa6}.hub-usermenu__avatar--panel{width:2.75rem;height:2.75rem}.hub-usermenu__panel{position:absolute;top:calc(100% + .4rem);right:0;width:280px;background:#fff;border:1px solid rgba(17,149,49,.15);border-radius:14px;box-shadow:0 12px 40px #0000001f,0 2px 8px #1195310f;padding:0;z-index:200;overflow:hidden;animation:hubMegaFadeIn .15s ease-out}.hub-usermenu__identity{display:flex;align-items:center;gap:.75rem;padding:.95rem 1rem .8rem;background:var(--hub-verde-fundo);border-bottom:1px solid rgba(17,149,49,.1)}.hub-usermenu__fullname{display:block;font-size:.92rem;font-weight:700;color:var(--hub-verde-escuro);line-height:1.35;word-break:break-word}.hub-usermenu__section{padding:.75rem 1rem}.hub-usermenu__section-title{display:flex;align-items:center;gap:.4rem;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--hub-verde-medio);margin-bottom:.35rem}.hub-usermenu__section-title svg{color:var(--hub-verde-forte)}.hub-usermenu__regions{display:flex;flex-wrap:wrap;gap:.35rem;margin:0;padding:0;list-style:none}.hub-usermenu__region-pill{display:inline-flex;align-items:center;padding:.2rem .55rem;border-radius:999px;font-size:.75rem;font-weight:700;color:var(--hub-verde-forte);background:#60b93724;border:1px solid rgba(17,149,49,.18)}.hub-usermenu__region-empty{margin:0;font-size:.8rem;color:var(--tertiary-600);line-height:1.4}.hub-usermenu__divider{height:1px;background:#0000000f;margin:0}.hub-usermenu__action{display:flex;align-items:center;gap:.55rem;width:100%;padding:.75rem 1rem;border:none;background:transparent;cursor:pointer;font-family:inherit;font-size:.82rem;font-weight:600;color:var(--tertiary-700);transition:background .12s ease}.hub-usermenu__action:hover:not(:disabled){background:#00000008}.hub-usermenu__action--logout{color:#dc2626}.hub-usermenu__action--logout:hover:not(:disabled){background:#dc26260d}.hub-usermenu__action:disabled{opacity:.5;cursor:not-allowed}.hub-profile-sidebar__root{position:fixed;top:0;right:0;bottom:0;left:0;z-index:600;pointer-events:none}.hub-profile-sidebar__root--in{pointer-events:auto}.hub-profile-sidebar__backdrop{position:absolute;top:0;right:0;bottom:0;left:0;margin:0;padding:0;border:none;background:#0e302f61;cursor:pointer;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);opacity:0;transition:opacity .28s ease}.hub-profile-sidebar__root--in .hub-profile-sidebar__backdrop{opacity:1}.hub-profile-sidebar__panel{position:absolute;top:0;right:0;bottom:0;width:min(22.5rem,100vw);max-width:100%;display:flex;flex-direction:column;background:#fff;box-shadow:-8px 0 32px #0000001f;transform:translate(100%);transition:transform .34s cubic-bezier(.22,1,.36,1);will-change:transform}.hub-profile-sidebar__root--in .hub-profile-sidebar__panel{transform:translate(0)}.hub-profile-sidebar__head{flex-shrink:0;display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:1rem 1.1rem;border-bottom:1px solid rgba(17,149,49,.12);background:var(--hub-verde-fundo)}.hub-profile-sidebar__title{margin:0;font-size:1rem;font-weight:700;color:var(--hub-verde-escuro)}.hub-profile-sidebar__close{display:flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;border:none;border-radius:8px;background:transparent;color:var(--hub-verde-medio);cursor:pointer}.hub-profile-sidebar__close:hover{background:#11953114;color:var(--hub-verde-escuro)}.hub-profile-sidebar__body{flex:1;overflow:auto;padding:1.1rem 1.1rem .5rem}.hub-profile-sidebar__hero{display:flex;flex-direction:column;align-items:center;text-align:center;gap:.5rem;margin-bottom:1.25rem}.hub-profile-sidebar__avatar{width:5.5rem;height:5.5rem;border-radius:999px;object-fit:cover;border:3px solid rgba(17,149,49,.2);background:#f3f4f6}.hub-profile-sidebar__avatar--placeholder{display:flex;align-items:center;justify-content:center;color:var(--hub-verde-medio)}.hub-profile-sidebar__name{margin:0;font-size:1.05rem;font-weight:700;color:var(--hub-verde-escuro);line-height:1.35}.hub-profile-sidebar__subtitle{margin:0;font-size:.82rem;color:var(--tertiary-600)}.hub-profile-sidebar__loading{display:flex;flex-direction:column;align-items:center;gap:.65rem;padding:2rem 0;color:var(--tertiary-600);font-size:.85rem}.hub-profile-sidebar__field{margin-bottom:1rem}.hub-profile-sidebar__field-label{display:block;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:var(--hub-verde-medio);margin-bottom:.3rem}.hub-profile-sidebar__field-value{display:block;font-size:.9rem;color:var(--tertiary-800);line-height:1.45;word-break:break-word}.hub-profile-sidebar__regions{margin-top:.35rem}.hub-profile-sidebar__meta{margin-top:.5rem;padding:.75rem .85rem;border-radius:10px;background:#60b93714;border:1px solid rgba(17,149,49,.12);font-size:.8rem;color:var(--tertiary-700);line-height:1.5}.hub-profile-sidebar__meta p{margin:0 0 .35rem}.hub-profile-sidebar__meta p:last-child{margin-bottom:0}.hub-profile-sidebar__foot{flex-shrink:0;padding:.85rem 1.1rem 1.1rem;border-top:1px solid rgba(0,0,0,.06)}.hub-profile-sidebar__logout{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;padding:.75rem 1rem;border:1px solid rgba(220,38,38,.25);border-radius:10px;background:#dc26260a;color:#dc2626;font-family:inherit;font-size:.88rem;font-weight:600;cursor:pointer;transition:background .12s ease}.hub-profile-sidebar__logout:hover:not(:disabled){background:#dc262614}.hub-profile-sidebar__logout:disabled{opacity:.55;cursor:not-allowed}.hub-main--welcome{display:flex;align-items:center;justify-content:center;padding:3rem 1.5rem}.hub-welcome{text-align:center;max-width:520px}.hub-welcome--topleft{text-align:left;align-self:flex-start;max-width:none;padding:2rem 2rem 0}.hub-welcome__title{margin:0 0 .75rem;font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:800;color:var(--hub-verde-escuro);letter-spacing:-.02em}.hub-welcome__name{color:var(--hub-verde-forte)}.hub-welcome__subtitle{margin:0;font-size:1rem;color:var(--tertiary-600);line-height:1.6}.hub-welcome__subtitle strong{color:var(--hub-verde-forte)}:root{--hub-mobile-max: 768px;--hub-mobile-gutter: .75rem;--hub-mobile-header-gap: .5rem}@media (max-width: 768px){.hub-chrome{overflow:visible;box-shadow:0 1px #0000001f;padding-bottom:.55rem;transition:box-shadow .32s ease,padding-bottom .34s cubic-bezier(.4,0,.2,1)}.hub-chrome--compact{box-shadow:0 2px 10px #0000002e;padding-bottom:.45rem}.hub-nav{overflow:visible}.hub-nav__inner{display:grid;grid-template-columns:minmax(0,1fr) auto;grid-template-areas:"head end" "cats cats" "tools tools";align-items:center;gap:.4rem;padding:.5rem var(--hub-mobile-gutter, .75rem) .15rem;min-height:0;transition:gap .34s cubic-bezier(.4,0,.2,1),padding .34s cubic-bezier(.4,0,.2,1)}.hub-nav__slot-left,.hub-nav__slot-right{display:contents}.hub-nav__head{grid-area:head}.hub-nav__end{grid-area:end;align-self:center}.hub-nav__cats{grid-area:cats;width:100%;min-width:0;overflow:hidden}.hub-chrome--compact .hub-nav__inner{gap:.3rem;padding-bottom:.12rem;grid-template-areas:"head end" "tools tools"}.hub-nav__cats{max-height:9rem;opacity:1;transform:translateY(0);transition:max-height .36s cubic-bezier(.4,0,.2,1),opacity .28s ease,transform .36s cubic-bezier(.4,0,.2,1)}.hub-chrome--compact .hub-nav__cats{max-height:0;opacity:0;transform:translateY(-.35rem);pointer-events:none;overflow:hidden}.hub-chrome--compact .hub-nav__tools{padding-top:.05rem}.hub-chrome--compact .hub-nav__search-btn{min-height:1.85rem;padding:.28rem .3rem;font-size:.66rem}.hub-nav__cats .hub-catnav--inline{width:100%}.hub-nav__cats .hub-catnav__list{padding:0;overflow-x:auto;-webkit-overflow-scrolling:touch}.hub-nav__actions{transition:opacity .24s ease,max-width .32s cubic-bezier(.4,0,.2,1),margin .32s cubic-bezier(.4,0,.2,1);max-width:6rem;overflow:hidden}.hub-chrome--compact .hub-nav__actions{opacity:0;max-width:0;margin:0;pointer-events:none}.hub-chrome-handle{position:absolute;left:50%;bottom:0;z-index:220;display:inline-flex;flex-direction:column;align-items:center;justify-content:center;gap:.08rem;width:3.1rem;height:1.45rem;padding:.15rem .55rem .2rem;border:1px solid rgba(17,149,49,.22);border-radius:999px;background:#fff;color:#64748b;box-shadow:0 3px 14px #0f172a1f;transform:translate(-50%,42%);cursor:pointer;transition:color .24s ease,border-color .24s ease,background .24s ease,box-shadow .24s ease,transform .34s cubic-bezier(.4,0,.2,1)}.hub-chrome-handle:active{transform:translate(-50%,42%) scale(.96)}.hub-chrome-handle--compact{color:var(--hub-verde-escuro, #0d7a28);border-color:#11953161;background:#f0fdf4;box-shadow:0 4px 16px #11953124}.hub-chrome-handle__bar{width:1.35rem;height:.14rem;border-radius:999px;background:currentColor;opacity:.45;transition:width .28s ease,opacity .24s ease}.hub-chrome-handle--compact .hub-chrome-handle__bar{width:1rem;opacity:.65}.hub-chrome-handle__chevron{width:.95rem;height:.95rem;flex-shrink:0;transition:transform .36s cubic-bezier(.4,0,.2,1)}.hub-chrome-handle--compact .hub-chrome-handle__chevron{transform:rotate(180deg)}.hub-nav__head{display:flex;align-items:center;gap:.5rem;width:100%;min-width:0}.hub-brand{flex-shrink:0;min-width:0}.hub-brand__logo{height:1.5rem;max-width:5rem}.hub-brand__app{gap:.34rem}.hub-brand__connector{font-size:.92rem}.hub-brand__app-icon{width:1.45rem;height:1.45rem}.hub-brand__app-name{max-width:8rem;font-size:.86rem}.hub-brand__version{display:none}.hub-nav__actions{display:flex;align-items:center;gap:0;flex-shrink:0}.hub-nav__icon-btn{flex-shrink:0;width:2rem;height:2rem;padding:0}.hub-nav__icon-btn-ico{width:1.05rem;height:1.05rem}.hub-usermenu{flex-shrink:0}.hub-usermenu__trigger{flex-shrink:0;width:2rem;height:2rem;min-width:2rem;padding:0}.hub-usermenu__trigger--photo{padding:.1rem}.hub-usermenu__avatar{width:1.75rem;height:1.75rem;border-width:1.5px}.hub-usermenu__icon{width:1.15rem;height:1.15rem}.hub-nav__notif-panel{right:0;left:auto;width:min(24rem,calc(100vw - 1rem))}.hub-nav__tools{grid-area:tools;display:block;width:100%;min-width:0;padding:0;position:static}.hub-nav__search{display:flex;align-items:stretch;gap:.3rem;width:100%}.hub-nav__search-btn{flex:1 1 0;min-width:0;display:inline-flex;flex-direction:row;align-items:center;justify-content:center;gap:.3rem;min-height:2rem;padding:.3rem .35rem;border-radius:8px;border:1px solid rgba(255,255,255,.32);background:#ffffff1a;font-size:.68rem;font-weight:600;line-height:1.2;color:#fff;text-align:left;white-space:nowrap;box-shadow:none}.hub-nav__search-btn:hover,.hub-nav__search-btn--active{border-color:#ffffff8c;background:#ffffff2e;color:#fff}.hub-nav__search-ico{width:.95rem;height:.95rem;flex-shrink:0}.hub-nav__search-text{overflow:hidden;text-overflow:ellipsis;min-width:0}.hub-cp__tabs-rail{top:var(--hub-chrome-offset, 0);padding-left:var(--hub-mobile-gutter, .75rem);padding-right:var(--hub-mobile-gutter, .75rem)}}@media (max-width: 768px) and (prefers-reduced-motion: reduce){.hub-chrome,.hub-nav__inner,.hub-nav__cats,.hub-nav__actions,.hub-chrome-handle,.hub-chrome-handle__bar,.hub-chrome-handle__chevron{transition:none!important}.hub-chrome--compact .hub-nav__cats{transform:none}}@media (max-width: 400px){.hub-nav__search-text{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.hub-nav__search-btn{justify-content:center;padding:.35rem;min-height:2.1rem}.hub-nav__search-ico{width:1.1rem;height:1.1rem}}@media (max-width: 768px){.hub-catnav{position:relative;z-index:1;background:#fff;border-bottom:1px solid #e2e8f0}.hub-nav .hub-catnav,.hub-nav .hub-catnav--inline{background:transparent;border-bottom:none}.hub-catnav__list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.28rem;margin:0;padding:.35rem var(--hub-mobile-gutter, .75rem) .45rem;list-style:none}.hub-catnav__item{position:static;min-width:0}.hub-catnav__trigger{display:flex;align-items:center;justify-content:center;width:100%;min-height:1.85rem;padding:.28rem .2rem;border:none;border-radius:7px;background:transparent;color:#64748b;font-size:.6rem;font-weight:600;line-height:1.1;letter-spacing:0;text-transform:none;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:background .12s ease,color .12s ease}.hub-catnav__trigger--home{font-weight:700}@media (hover: hover){.hub-catnav__trigger:hover{background:#f1f5f9;color:#334155}.hub-nav .hub-catnav__trigger:hover{background:#ffffff24;color:#fff}}.hub-nav .hub-catnav__trigger{color:#ffffffeb}.hub-catnav__item--active>.hub-catnav__trigger--home,.hub-catnav__trigger--active.hub-catnav__trigger--home{color:var(--hub-verde-escuro, #0d7a28);background:#1195311f}.hub-catnav__item--open>.hub-catnav__trigger:not(.hub-catnav__trigger--home){color:#fff;background:var(--hub-verde-forte, #119531)}.hub-nav .hub-catnav__item--open>.hub-catnav__trigger{color:#fff;background:#ffffff38}.hub-catnav__count{display:none}.hub-catnav__panel{display:none!important}.hub-catnav__scrim{position:fixed;top:0;right:0;bottom:0;left:0;z-index:510;margin:0;padding:0;border:none;background:#0f172a80;cursor:pointer;animation:hub-catnav-scrim-in .2s ease}@keyframes hub-catnav-scrim-in{0%{opacity:0}to{opacity:1}}.hub-catnav__sheet{position:fixed;left:0;right:0;bottom:0;z-index:520;display:flex;flex-direction:column;max-height:min(88vh,36rem);border-radius:14px 14px 0 0;background:#fff;box-shadow:0 -10px 40px #0f172a33;transform:translateY(100%);animation:hub-catnav-sheet-in .28s cubic-bezier(.22,1,.36,1) forwards}@keyframes hub-catnav-sheet-in{0%{transform:translateY(100%)}to{transform:translateY(0)}}.hub-catnav__sheet-head{flex-shrink:0;display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.7rem var(--hub-mobile-gutter, .75rem) .6rem;border-bottom:1px solid #e2e8f0;background:#f8fafc}.hub-catnav__sheet-title{margin:0;font-size:.88rem;font-weight:800;color:#0f172a}.hub-catnav__sheet-close{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:1.85rem;height:1.85rem;margin:0;padding:0;border:1px solid #e2e8f0;border-radius:8px;background:#fff;font-size:1.15rem;line-height:1;color:#64748b;cursor:pointer}.hub-catnav__sheet-body{flex:1 1 auto;min-height:0;display:flex;flex-direction:column;gap:.3rem;padding:.45rem var(--hub-mobile-gutter, .75rem) calc(.65rem + env(safe-area-inset-bottom,0px));overflow-y:auto;-webkit-overflow-scrolling:touch}.hub-catnav__sheet-body .hub-catnav__tool{align-items:center;gap:.65rem;min-height:2.85rem;padding:.55rem .65rem;border:1px solid #f1f5f9;border-radius:9px;background:#fff;flex-shrink:0}.hub-catnav__sheet-body .hub-catnav__tool-ico-wrap{width:2.35rem;height:2.35rem;border-radius:10px}.hub-catnav__sheet-body .hub-catnav__tool-ico{width:1.6rem;height:1.6rem}.hub-catnav__sheet-body .hub-catnav__tool-name{font-size:.85rem}.hub-catnav__sheet-body .hub-catnav__tool-summary{font-size:.74rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}}@media (max-width: 400px){.hub-catnav__list{grid-template-columns:repeat(2,minmax(0,1fr))}.hub-catnav__trigger{min-height:1.75rem;font-size:.58rem}}@media (max-width: 768px){.hub-main.hub-main--home{padding-left:var(--hub-mobile-gutter, .75rem);padding-right:var(--hub-mobile-gutter, .75rem)}.hub-main.hub-main--home.hub-main--embedded-tool{padding-left:0;padding-right:0}.hub-hs{padding-top:.65rem;padding-bottom:1.25rem}.hub-hg{padding-bottom:.85rem}.hub-hg__main{flex-direction:column;align-items:stretch;gap:.75rem}.hub-hg__text{flex:none;width:100%}.hub-hg__head{display:flex;align-items:flex-start;justify-content:space-between;gap:.5rem;margin-bottom:.15rem}.hub-hg__title{margin:0;font-size:1.2rem;line-height:1.3}.hub-hg__head-actions{flex-shrink:0;margin-top:.05rem}.hub-hg__date{margin:0 0 .55rem;font-size:.8rem;line-height:1.4;color:#64748b}.hub-hg__chips{display:flex;flex-direction:column;gap:.35rem;margin:0;padding:0;list-style:none}.hub-hg__chip{display:flex;align-items:center;gap:.35rem;padding:.42rem .6rem;border:1px solid #e2e8f0;border-radius:8px;background:#f8fafc;font-size:.78rem;font-weight:500;line-height:1.35;color:#475569}.hub-hg__chip--systems{color:#334155}.hub-hg__chip-dot{color:#22c55e;font-size:.5rem;line-height:1}.hub-hg__edit-banner{margin:0;font-size:.8rem;line-height:1.45;color:#64748b}.hub-hg__actions{width:100%;justify-content:stretch;gap:.45rem}.hub-hg__actions .hub-hs__btn{flex:1 1 auto;min-width:0;justify-content:center}.hub-hg__actions .hub-hs__options-wrap{flex:0 0 auto}.hub-hg__empty-hint{display:block;flex:1 1 100%;text-align:center;font-size:.78rem;line-height:1.4}.hub-hg__presentation-hint{font-size:.74rem}}@media (max-width: 768px){.hub-hs__grid--stack{position:static}.hub-hs__stack{display:flex;flex-direction:column;gap:.75rem;width:100%}.hub-hs__grid-item--stack{position:relative;width:100%;height:auto;min-height:0;flex-shrink:0}.hub-hs__grid-item--stack .hub-hs__widget-body{flex:1 1 auto;min-height:inherit;overflow:visible}.hub-hs__grid-item--stack .hub-widget-shell{min-height:0}.hub-hs__grid-item--stack .hub-hs__widget-mini-map .hub-hs__mini-map-leaflet-inner{min-height:10rem}}@media (max-width: 768px){.hub-psb--clients .hub-psb__main,.hub-psb--products .hub-psb__main{padding:0 var(--hub-mobile-gutter, .75rem) .65rem}.hub-psb--clients .hub-psb__scroll,.hub-psb--products .hub-psb__scroll{padding-top:.15rem}.hub-psb--products .hub-csb__close,.hub-psb--clients .hub-csb__close{width:1.85rem;height:1.85rem;font-size:1.1rem}}@media (max-width: 768px){.hub-psb--clients .hub-csb__toolbar{padding:.5rem var(--hub-mobile-gutter, .75rem) .55rem}.hub-psb--clients .hub-csb__search-input{min-height:2.35rem;font-size:.88rem}.hub-psb--clients .hub-csb-filtros{padding:.75rem var(--hub-mobile-gutter, .75rem) .85rem}.hub-psb--clients .hub-csb-filtros-applied{padding:.45rem var(--hub-mobile-gutter, .75rem) .55rem}.hub-csb-filtros-applied__row{gap:.35rem .45rem}.hub-psb--clients .hub-csb-filtros-applied__label{font-size:.72rem}.hub-psb--clients .hub-csb-filtros-applied__tag{font-size:.7rem;padding:.18rem .5rem}.hub-psb--clients .hub-csb-filtros-applied__clear{padding:.32rem .65rem;font-size:.72rem;border-radius:8px}.hub-psb--clients .hub-psb__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.5rem}.hub-psb--clients .hub-psb__card{border-radius:10px}.hub-psb--clients .hub-psb__card:hover{transform:none}.hub-psb--clients .hub-csb__card-img-wrap,.hub-psb--clients .hub-psb__card-img-wrap{aspect-ratio:1;min-height:0;padding:0}.hub-psb--clients .hub-csb__photo{width:100%;height:100%;object-fit:cover}.hub-psb--clients .hub-csb__photo-overlay{padding:.35rem .4rem .4rem}.hub-psb--clients .hub-csb__photo-title{font-size:.62rem;line-height:1.2;-webkit-line-clamp:2}.hub-psb--clients .hub-csb__photo-fallback{min-height:4.5rem;padding:.4rem}.hub-psb--clients .hub-csb__photo-title--only{font-size:.68rem}.hub-psb--clients .hub-psb__card-body{min-height:0;padding:.4rem .45rem .45rem;gap:.12rem}.hub-psb--clients .hub-psb__card-code{font-size:.62rem}.hub-psb--clients .hub-psb__card-name{font-size:.72rem;line-height:1.25;-webkit-line-clamp:2}.hub-psb--clients .hub-psb__card-stock{font-size:.62rem;line-height:1.25;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}}@media (max-width: 768px){.hub-psb--products .hub-csb__toolbar{padding:.5rem var(--hub-mobile-gutter, .75rem) .55rem}.hub-psb--products .hub-csb__search-input{min-height:2.35rem;font-size:.88rem}.hub-psb--products .hub-csb-filtros{padding:.75rem var(--hub-mobile-gutter, .75rem) .85rem;max-height:min(46vh,22rem);overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}.hub-psb--products .hub-csb-filtros-applied{padding:.45rem var(--hub-mobile-gutter, .75rem) .55rem}.hub-psb--products .hub-csb-filtros-applied__label{font-size:.72rem}.hub-psb--products .hub-csb-filtros-applied__tag{font-size:.7rem;padding:.18rem .5rem}.hub-psb--products .hub-csb-filtros-applied__clear{padding:.32rem .65rem;font-size:.72rem;border-radius:8px}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__filial-dd{position:static;width:100%}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__filial-dd-panel{position:static;left:auto;right:auto;top:auto;width:100%;min-width:0;max-width:none;max-height:min(18rem,42vh);margin-top:.35rem;padding:.55rem .65rem;overflow-y:auto;-webkit-overflow-scrolling:touch;border:1px solid #e2e8f0;border-radius:8px;box-shadow:none}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__chk{align-items:center;min-height:2.15rem;padding:.38rem .45rem;font-size:.8rem;border-radius:6px}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__chk input{width:1rem;height:1rem;flex-shrink:0}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__chk--todas{font-weight:600;background:#f8fafc;border:1px solid #e2e8f0;margin-bottom:.2rem}.hub-psb--products .hub-psb__main{padding:0 var(--hub-mobile-gutter, .75rem) .65rem;min-height:0;flex:1 1 auto}.hub-psb--products .hub-psb__inner{min-height:0}.hub-psb--products .hub-psb__scroll{padding-top:.15rem}.hub-psb--products .hub-psb__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.5rem}.hub-psb--products .hub-psb__card{border-radius:10px}.hub-psb--products .hub-psb__card:hover{transform:none}.hub-psb--products .hub-psb__card-img-wrap{aspect-ratio:1;min-height:0;padding:.5rem}.hub-psb--products .hub-psb__card-body{min-height:0;padding:.4rem .45rem .45rem;gap:.12rem}.hub-psb--products .hub-psb__card-code{font-size:.62rem}.hub-psb--products .hub-psb__card-name{font-size:.72rem;line-height:1.25;-webkit-line-clamp:2}.hub-psb--products .hub-psb__card-stock,.hub-psb--products .hub-psb__card-preco{font-size:.62rem;line-height:1.25}.hub-psb--products .hub-psb__card-hint{display:none}}@media (max-width: 768px){.hub-psb--map .hub-psb__toolbar{display:grid;grid-template-columns:1fr auto;align-items:center;gap:.35rem .5rem;padding:.4rem var(--hub-mobile-gutter, .75rem)}.hub-psb--map .hub-psb__title{margin:0;font-size:.88rem}.hub-psb--map .hub-psb__close{width:1.85rem;height:1.85rem;font-size:1.1rem}.hub-cmap-view--mobile .hub-cmap__main{width:100%}.hub-cmap-view--mobile .hub-cmap__sidebar-toggle{bottom:1rem;left:var(--hub-mobile-gutter, .75rem)}.hub-cmap-view--mobile:has(.hub-cmap-nearby) .hub-cmap__sidebar-toggle{bottom:calc(5.75rem + env(safe-area-inset-bottom,0px))}.hub-cmap-mobile-locate{position:absolute;right:var(--hub-mobile-gutter, .75rem);bottom:1rem;z-index:550;display:flex;align-items:center;justify-content:center;width:2.75rem;height:2.75rem;padding:0;border:none;border-radius:999px;background:#fff;color:#2563eb;box-shadow:0 4px 16px #0f172a29;cursor:pointer}.hub-cmap-view--mobile:has(.hub-cmap-nearby) .hub-cmap-mobile-locate{bottom:calc(5.75rem + env(safe-area-inset-bottom,0px))}.hub-cmap-view--mobile:has(.hub-cmap__popup) .hub-cmap-mobile-locate{bottom:calc(1rem + env(safe-area-inset-bottom,0px))}.hub-cmap-mobile-locate:active{transform:scale(.96)}.hub-cmap-mobile-locate__icon{width:1.35rem;height:1.35rem}.hub-cmap-mobile-geo-hint{position:absolute;top:.5rem;left:var(--hub-mobile-gutter, .75rem);right:var(--hub-mobile-gutter, .75rem);z-index:520;display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.45rem .65rem;border-radius:.55rem;background:#fffffff5;border:1px solid rgba(220,38,38,.22);box-shadow:0 4px 14px #0f172a1a;font-size:.74rem;line-height:1.35;color:#7f1d1d}.hub-cmap-mobile-geo-hint--loading{justify-content:center;border-color:#2563eb38;color:#1e40af}.hub-cmap-mobile-geo-hint__retry{flex-shrink:0;padding:.25rem .55rem;border:1px solid rgba(220,38,38,.35);border-radius:999px;background:#fff;font-size:.72rem;font-weight:600;color:#b91c1c;cursor:pointer}.hub-cmap-nearby{position:absolute;left:0;right:0;bottom:0;z-index:540;padding:.45rem var(--hub-mobile-gutter, .75rem) calc(.55rem + env(safe-area-inset-bottom,0px));pointer-events:none}.hub-cmap-nearby__label{margin:0 0 .35rem;font-size:.68rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#ffffffeb;text-shadow:0 1px 3px rgba(15,23,42,.45)}.hub-cmap-nearby__scroll{display:flex;gap:.45rem;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding-bottom:.15rem;pointer-events:auto}.hub-cmap-nearby__scroll::-webkit-scrollbar{display:none}.hub-cmap-nearby__card{flex:0 0 auto;scroll-snap-align:start;display:flex;flex-direction:column;align-items:flex-start;gap:.15rem;min-width:8.5rem;max-width:11rem;padding:.5rem .65rem;border:1px solid rgba(0,129,116,.18);border-radius:.65rem;background:#fffffff7;box-shadow:0 6px 20px #0f172a24;text-align:left;cursor:pointer}.hub-cmap-nearby__name{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;font-size:.78rem;font-weight:600;line-height:1.25;color:#0f172a}.hub-cmap-nearby__dist{font-size:.72rem;font-weight:700;color:var(--hub-cmap-accent, #008174)}.hub-cmap-view--mobile .hub-cmap__popup{bottom:calc(.65rem + env(safe-area-inset-bottom,0px));max-height:min(72vh,calc(100dvh - 5rem))}.hub-cmap-user-marker-wrap{background:transparent!important;border:none!important}.hub-cmap-user-marker{position:relative;width:48px;height:48px}.hub-cmap-user-marker__dot{position:absolute;left:50%;top:50%;width:14px;height:14px;margin:-7px 0 0 -7px;border:3px solid #fff;border-radius:50%;background:#2563eb;box-shadow:0 2px 8px #2563eb73;z-index:2}.hub-cmap-user-marker__pulse{position:absolute;left:50%;top:50%;width:36px;height:36px;margin:-18px 0 0 -18px;border-radius:50%;background:#2563eb38;animation:hub-cmap-user-pulse 2s ease-out infinite;z-index:1}}@keyframes hub-cmap-user-pulse{0%{transform:scale(.55);opacity:.85}70%{transform:scale(1.35);opacity:0}to{transform:scale(1.35);opacity:0}}@media (max-width: 768px) and (prefers-reduced-motion: reduce){.hub-cmap-user-marker__pulse{animation:none;opacity:.35;transform:scale(1)}}.hub-home:has(.hub-cmap-page){min-height:100vh;min-height:100dvh;height:100vh;height:100dvh;overflow:hidden}.hub-main.hub-cmap-page,.hub-cmap-view{--hub-cmap-accent: #008174;--hub-cmap-sidebar-w: 20rem;max-width:none;width:100%;padding:0;margin:0;flex:1 1 auto;display:flex;min-height:0;height:0;position:relative;overflow:hidden}.hub-cmap-overlay__inner{display:flex;flex-direction:column}.hub-cmap-overlay__body{flex:1 1 auto;min-height:0;height:auto}.hub-cmap__main{flex:1 1 auto;min-width:0;min-height:0;height:100%;position:relative}.hub-cmap__topbar{position:absolute;top:.75rem;left:.75rem;z-index:500;max-width:min(22rem,calc(100% - 1.5rem));padding:.55rem .85rem;border-radius:.65rem;background:#fffffff0;border:1px solid rgba(0,129,116,.18);box-shadow:0 4px 18px #0f172a14;pointer-events:none}.hub-cmap__title{margin:0;font-size:1rem;font-weight:700;color:var(--hub-cmap-accent)}.hub-cmap__subtitle{margin:.15rem 0 0;font-size:.78rem;color:var(--tertiary-600)}.hub-cmap__map{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:1}.hub-cmap__loading-overlay{position:absolute;top:0;right:0;bottom:0;left:0;z-index:600;display:flex;align-items:center;justify-content:center;background:#f8fafcb8;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.hub-cmap__loading-card{display:flex;flex-direction:column;align-items:center;gap:.65rem;max-width:18rem;padding:1.25rem 1.5rem;border-radius:.75rem;background:#fff;border:1px solid rgba(0,129,116,.2);box-shadow:0 12px 32px #0f172a1a;text-align:center}.hub-cmap__loading-spinner{width:2.25rem;height:2.25rem;border:3px solid rgba(0,129,116,.15);border-top-color:var(--hub-cmap-accent, #008174);border-radius:50%;animation:hub-cmap-spin .85s linear infinite}@keyframes hub-cmap-spin{to{transform:rotate(360deg)}}.hub-cmap__loading-title{margin:0;font-size:.95rem;font-weight:700;color:var(--hub-cmap-accent, #008174)}.hub-cmap__loading-text{margin:0;font-size:.8rem;line-height:1.45;color:var(--tertiary-600)}.hub-cmap__sidebar-toggle{display:none;position:fixed;left:.65rem;bottom:1rem;z-index:600;width:2.75rem;height:2.75rem;border:none;border-radius:999px;background:var(--hub-cmap-accent);color:#fff;font-size:1.1rem;box-shadow:0 4px 14px #0000002e;cursor:pointer}.hub-cmap__backdrop{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:450;background:#0f172a59}.hub-cmap__sidebar{width:var(--hub-cmap-sidebar-w);flex-shrink:0;display:flex;flex-direction:column;gap:0;height:100%;min-height:0;max-height:100%;overflow:hidden;background:#fff;border-right:1px solid rgba(0,129,116,.15);z-index:460}.hub-cmap__sidebar-head{flex-shrink:0;display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.85rem 1rem .65rem;border-bottom:1px solid rgba(0,129,116,.12)}.hub-cmap__sidebar-title{margin:0;font-size:.95rem;font-weight:700;color:var(--hub-cmap-accent)}.hub-cmap__sidebar-sub{margin:.15rem 0 0;font-size:.75rem;color:var(--tertiary-600)}.hub-cmap__sidebar-section--flush{padding-top:.5rem}.hub-cmap__sidebar-section--grow{flex:1;min-height:0}.hub-cmap__sidebar-scroll{flex:1 1 auto;min-height:0;overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;display:flex;flex-direction:column}.hub-cmap__hint{margin:0 0 .5rem;font-size:.78rem;line-height:1.4;color:var(--tertiary-600)}.hub-cmap__tabs{position:sticky;top:0;z-index:2;flex-shrink:0;display:flex;gap:0;padding:0 1rem;border-bottom:1px solid rgba(148,163,184,.25);background:#fff}.hub-cmap__tab{flex:1;padding:.55rem .5rem;border:none;border-bottom:2px solid transparent;background:transparent;font:inherit;font-size:.82rem;font-weight:600;color:var(--tertiary-600);cursor:pointer}.hub-cmap__tab--active{color:var(--hub-cmap-accent);border-bottom-color:var(--hub-cmap-accent)}.hub-cmap__chip-grid{display:flex;flex-wrap:wrap;gap:.4rem}.hub-cmap__chip{padding:.4rem .7rem;border:1px solid rgba(148,163,184,.35);border-radius:.5rem;background:#f8fafc;font:inherit;font-size:.78rem;font-weight:600;color:var(--tertiary-700);cursor:pointer;transition:border-color .15s ease,background .15s ease,color .15s ease,box-shadow .15s ease}.hub-cmap__chip:hover{border-color:#00817459;background:#fff}.hub-cmap__chip--active{border-color:var(--hub-cmap-accent);background:#0081741a;color:var(--hub-cmap-accent);box-shadow:0 0 0 2px #0081741f}.hub-cmap__filters-stack{display:flex;flex-direction:column;gap:.65rem;padding:0 .85rem .85rem}.hub-cmap__filter-card{padding:.7rem .75rem;border-radius:.65rem;background:#f8fafc;border:1px solid rgba(148,163,184,.28)}.hub-cmap__filter-card--segment{display:flex;flex-direction:column;gap:.55rem}.hub-cmap__filter-card-head{display:flex;align-items:center;justify-content:space-between;gap:.5rem;margin-bottom:.5rem}.hub-cmap__filter-card-title{font-size:.72rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--tertiary-600)}.hub-cmap__filter-actions{display:flex;align-items:center;gap:.25rem}.hub-cmap__filter-action{border:none;background:transparent;padding:.15rem .25rem;font:inherit;font-size:.72rem;font-weight:600;color:var(--hub-cmap-accent);cursor:pointer;border-radius:.25rem}.hub-cmap__filter-action:hover{background:#00817414}.hub-cmap__filter-action-sep{color:#94a3b8cc;font-size:.72rem}.hub-cmap__filter-options{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.35rem}.hub-cmap__filter-option{display:flex;align-items:center;gap:.5rem;padding:.45rem .55rem;border-radius:.5rem;border:1px solid transparent;background:#fff;cursor:pointer;transition:border-color .15s ease,background .15s ease,box-shadow .15s ease}.hub-cmap__filter-option:hover{border-color:#00817433;background:#fff}.hub-cmap__filter-option--on{border-color:#00817459;background:#0081740f;box-shadow:0 1px 3px #00817414}.hub-cmap__filter-check{position:absolute;opacity:0;width:0;height:0;pointer-events:none}.hub-cmap__filter-option-box{flex-shrink:0;width:1.05rem;height:1.05rem;border-radius:.3rem;border:2px solid rgba(148,163,184,.55);background:#fff;transition:border-color .15s ease,background .15s ease}.hub-cmap__filter-option--on .hub-cmap__filter-option-box{border-color:var(--hub-cmap-accent);background:var(--hub-cmap-accent);box-shadow:inset 0 0 0 2px #fff}.hub-cmap__filter-dot{flex-shrink:0;width:.55rem;height:.55rem;border-radius:999px;box-shadow:0 0 0 1px #0f172a1f}.hub-cmap__filter-option-text{flex:1;min-width:0;font-size:.8rem;line-height:1.35;color:var(--tertiary-800)}.hub-cmap__filter-option--on .hub-cmap__filter-option-text{font-weight:600;color:#0f5f56}.hub-cmap__segment{display:flex;padding:.2rem;gap:.2rem;border-radius:.55rem;background:#fff;border:1px solid rgba(148,163,184,.3)}.hub-cmap__segment-btn{flex:1;padding:.45rem .35rem;border:none;border-radius:.4rem;background:transparent;font:inherit;font-size:.76rem;font-weight:600;color:var(--tertiary-600);cursor:pointer;transition:background .15s ease,color .15s ease,box-shadow .15s ease}.hub-cmap__segment-btn:hover{color:var(--tertiary-800)}.hub-cmap__segment-btn--active{background:var(--hub-cmap-accent);color:#fff;box-shadow:0 2px 6px #00817447}.hub-cmap__select{width:100%;padding:.45rem .55rem;border:1px solid rgba(148,163,184,.45);border-radius:.45rem;font:inherit;font-size:.84rem}.hub-cmap__opp-panel{display:flex;flex-direction:column;flex:1;min-height:0}.hub-cmap__region-list,.hub-cmap__rec-list{margin:0;padding:0;list-style:none}.hub-cmap__region-hit,.hub-cmap__rec-hit{display:flex;flex-direction:column;align-items:flex-start;gap:.2rem;width:100%;padding:.55rem 0;border:none;border-bottom:1px solid rgba(148,163,184,.2);background:transparent;text-align:left;font:inherit;cursor:pointer}.hub-cmap__region-hit:hover,.hub-cmap__rec-hit:hover{background:#0081740d}.hub-cmap__region-hit-top{display:flex;width:100%;justify-content:space-between;gap:.5rem}.hub-cmap__region-score{font-weight:800;color:#dc2626;font-size:.9rem}.hub-cmap__region-meta{font-size:.75rem;color:var(--tertiary-600)}.hub-cmap__rec-hit-head{display:flex;align-items:flex-start;gap:.5rem;width:100%}.hub-cmap__rec-priority{flex-shrink:0;min-width:2rem;padding:.15rem .35rem;border-radius:.35rem;font-size:.78rem;font-weight:800;text-align:center;background:#e2e8f0;color:#334155}.hub-cmap__rec-priority--alta{background:#fecaca;color:#b91c1c}.hub-cmap__rec-priority--media{background:#fed7aa;color:#c2410c}.hub-cmap__rec-names{display:flex;flex-direction:column;min-width:0}.hub-cmap__rec-names strong{font-size:.84rem;line-height:1.25}.hub-cmap__rec-names em{font-size:.72rem;color:var(--hub-cmap-accent);font-style:normal}.hub-cmap__rec-reason{font-size:.76rem;color:var(--tertiary-700)}.hub-cmap__rec-tags{display:flex;flex-wrap:wrap;gap:.25rem}.hub-cmap__rec-tag{padding:.1rem .4rem;border-radius:.25rem;background:#0081741a;font-size:.68rem;font-weight:600;color:var(--hub-cmap-accent)}.hub-cmap__rec-money{font-size:.72rem;color:var(--tertiary-600)}.hub-cmap__popup-opp{padding:.15rem .45rem;border-radius:.35rem;font-size:.72rem;font-weight:700;background:#fef3c7;color:#b45309}.hub-cmap__popup-opp--alta{background:#fecaca;color:#b91c1c}.hub-cmap__popup-opp-hint{margin:.35rem 0 0;font-size:.78rem;color:var(--tertiary-600);line-height:1.35}.hub-cmap__sidebar-close{display:none;border:none;background:transparent;font-size:1.35rem;line-height:1;color:var(--tertiary-600);cursor:pointer}.hub-cmap__sidebar-section{padding:.75rem 1rem;border-bottom:1px solid rgba(148,163,184,.2)}.hub-cmap__label{display:block;margin-bottom:.45rem;font-size:.72rem;font-weight:700;letter-spacing:.03em;text-transform:uppercase;color:var(--tertiary-600)}.hub-cmap__search{width:100%;box-sizing:border-box;padding:.55rem .7rem;border:1px solid rgba(148,163,184,.45);border-radius:.5rem;font:inherit;font-size:.86rem}.hub-cmap__search:focus{outline:2px solid rgba(0,129,116,.35);border-color:var(--hub-cmap-accent)}.hub-cmap__search-results{margin:.45rem 0 0;padding:0;list-style:none;max-height:12rem;overflow:auto;border:1px solid rgba(148,163,184,.25);border-radius:.5rem}.hub-cmap__search-hit{display:flex;flex-direction:column;align-items:flex-start;gap:.1rem;width:100%;padding:.5rem .65rem;border:none;border-bottom:1px solid rgba(148,163,184,.15);background:#fff;text-align:left;font:inherit;cursor:pointer}.hub-cmap__search-hit:hover{background:#0081740f}.hub-cmap__search-hit strong{font-size:.78rem;color:var(--hub-cmap-accent)}.hub-cmap__search-hit span{font-size:.84rem}.hub-cmap__search-hit em{font-size:.75rem;color:var(--tertiary-600);font-style:normal}.hub-cmap__search-empty{padding:.65rem;font-size:.82rem;color:var(--tertiary-600)}.hub-cmap__stats dl{margin:0;display:grid;gap:.45rem}.hub-cmap__stats dl div{display:flex;justify-content:space-between;gap:.5rem;font-size:.82rem}.hub-cmap__stats dt{color:var(--tertiary-600)}.hub-cmap__stats dd{margin:0;font-weight:700}.hub-cmap__error{margin:0;padding:.65rem 1rem;font-size:.82rem;color:#b91c1c}.hub-cmap__muted{margin:0;padding:0 1rem .5rem;font-size:.8rem;color:var(--tertiary-600)}.hub-cmap__sidebar-foot{flex-shrink:0;padding:.85rem 1rem 1rem;display:flex;flex-direction:column;gap:.45rem;border-top:1px solid rgba(148,163,184,.2);background:#fff}.hub-cmap__btn{display:inline-flex;align-items:center;justify-content:center;padding:.5rem .85rem;border-radius:.45rem;font:inherit;font-size:.84rem;font-weight:600;text-decoration:none;cursor:pointer;border:1px solid transparent}.hub-cmap__btn--primary{background:var(--hub-cmap-accent);color:#fff}.hub-cmap__btn--secondary{background:#0081741a;color:var(--hub-cmap-accent);border-color:#00817440}.hub-cmap__btn--ghost{background:#fff;color:var(--tertiary-700);border-color:#94a3b873}.hub-cmap__popup{position:absolute;top:.75rem;right:.75rem;bottom:auto;z-index:500;width:min(21.875rem,calc(100% - 1.5rem));max-width:calc(100% - 1.5rem);padding:0;border-radius:1rem;background:#fff;border:none;box-shadow:0 25px 60px #0f172a2e,0 10px 30px #0f172a1a,0 0 0 1px #0081741f;overflow:hidden;animation:hub-cmap-popup-in .35s cubic-bezier(.4,0,.2,1) forwards}@keyframes hub-cmap-popup-in{0%{opacity:0;transform:scale(.92) translateY(8px)}to{opacity:1;transform:scale(1) translateY(0)}}.hub-cmap__popup-head{display:flex;align-items:flex-start;justify-content:space-between;gap:.65rem;padding:1rem;background:linear-gradient(135deg,#0081741a,#0081742e);border-bottom:1px solid rgba(0,129,116,.15)}.hub-cmap__popup-head-text{flex:1;min-width:0}.hub-cmap__popup-title{margin:0 0 .45rem;font-size:1.05rem;font-weight:700;line-height:1.3;color:#0f5f56;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hub-cmap__popup-badges{display:flex;flex-wrap:wrap;gap:.35rem}.hub-cmap__badge{display:inline-flex;align-items:center;padding:.15rem .45rem;border-radius:.4rem;font-size:.62rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase;border:1px solid transparent}.hub-cmap__badge--ativo{background:#10b9811f;color:#065f46;border-color:#10b98147}.hub-cmap__badge--novo{background:#3b82f61f;color:#1e40af;border-color:#3b82f647}.hub-cmap__badge--inativo{background:#f59e0b1f;color:#92400e;border-color:#f59e0b47}.hub-cmap__badge--indefinido{background:#6b72801f;color:#374151;border-color:#6b728047}.hub-cmap__badge--valor-alto,.hub-cmap__badge--valor-medio,.hub-cmap__badge--valor-baixo{background:#0081741a;color:var(--hub-cmap-accent);border-color:#00817440}.hub-cmap__popup-close{flex-shrink:0;width:2rem;height:2rem;border:none;border-radius:999px;background:#ffffffeb;font-size:1.2rem;line-height:1;color:var(--hub-cmap-accent);cursor:pointer;box-shadow:0 2px 8px #0f172a14}.hub-cmap__popup-close:hover{background:#ef444414;color:#b91c1c}.hub-cmap__popup-body{padding:.85rem 1rem;display:flex;flex-direction:column;gap:.15rem}.hub-cmap__popup-row{display:flex;align-items:center;justify-content:space-between;gap:.65rem;padding:.35rem 0;font-size:.8rem;border-bottom:1px solid rgba(148,163,184,.18)}.hub-cmap__popup-row:last-child{border-bottom:none}.hub-cmap__popup-row--highlight{margin:.2rem 0;padding:.5rem;border-radius:.45rem;border:1px solid rgba(59,130,246,.2);background:linear-gradient(90deg,rgba(59,130,246,.08),transparent)}.hub-cmap__popup-row-label{display:inline-flex;align-items:center;gap:.3rem;color:var(--hub-cmap-accent);font-weight:500;flex-shrink:0}.hub-cmap__popup-row-value{margin:0;font-weight:700;color:#0f3d38;text-align:right;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hub-cmap__popup-row-value--money{padding:.2rem .45rem;border-radius:.35rem;background:#0081741a;color:var(--hub-cmap-accent)}.hub-cmap__popup-icon{width:.95rem;height:.95rem;flex-shrink:0;color:var(--hub-cmap-accent)}.hub-cmap__ultima{display:inline-flex;align-items:center;gap:.2rem;font-weight:700}.hub-cmap__ultima--recente{color:#065f46}.hub-cmap__ultima--media{color:#92400e}.hub-cmap__ultima--antiga{color:#991b1b}.hub-cmap__ultima--sem{color:#374151}.hub-cmap__popup-actions{display:flex;gap:.55rem;padding:.85rem 1rem 1rem;background:#f8fafcf2;border-top:1px solid rgba(148,163,184,.2)}.hub-cmap__popup-btn{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:.4rem;min-height:2.75rem;padding:.55rem .7rem;border-radius:.5rem;font:inherit;font-size:.8rem;font-weight:700;text-decoration:none;cursor:pointer;border:1px solid transparent}.hub-cmap__popup-btn--primary{background:var(--hub-cmap-accent);color:#fff;border-color:#006b61}.hub-cmap__popup-btn--primary:hover{background:#006b61}.hub-cmap__popup-btn--secondary{background:#fff;color:var(--hub-cmap-accent);border-color:#00817459}.hub-cmap__popup-btn--secondary:hover{background:#0081740f}.hub-cmap__popup-btn-icon{width:1rem;height:1rem;flex-shrink:0}@media (max-width: 640px){.hub-cmap__popup{top:auto;bottom:.75rem;width:calc(100% - 1.5rem)}.hub-cmap__popup-actions{flex-direction:column}}.hub-cmap-marker-icon{background:transparent!important;border:none!important}.hub-cmap-marker-icon--selected{z-index:1200!important}.hub-cmap-pin{position:relative;width:32px;height:42px;color:var(--pin-color, #008174);transition:transform .2s ease}.hub-cmap-pin--selected{transform:scale(1.12);filter:drop-shadow(0 4px 10px rgba(0,129,116,.45))}.hub-cmap-pin__halo{position:absolute;left:50%;top:11px;width:36px;height:36px;margin-left:-18px;border:3px solid var(--hub-cmap-accent, #008174);border-radius:50%;box-shadow:0 0 0 6px #00817433;animation:hub-cmap-pin-halo 1.8s ease-out infinite;pointer-events:none}.hub-cmap-pin__halo--delay{animation-delay:.9s}@keyframes hub-cmap-pin-halo{0%{transform:scale(.65);opacity:.95}70%{transform:scale(1.35);opacity:.15}to{transform:scale(1.5);opacity:0}}.hub-cmap-pin__svg{display:block;width:32px;height:42px}.hub-cmap-pin__badge{position:absolute;left:50%;top:6px;transform:translate(-50%);font-size:.5rem;font-weight:800;color:#1e293b;pointer-events:none}@media (max-width: 900px){.hub-cmap__sidebar-toggle,.hub-cmap__sidebar-close{display:block}.hub-cmap__sidebar{position:fixed;top:var(--hub-chrome-offset, 0);left:0;bottom:0;height:auto;max-height:none;width:min(var(--hub-cmap-sidebar-w),92vw);transform:translate(-105%);transition:transform .22s ease;box-shadow:4px 0 24px #0f172a1f}.hub-cmap__sidebar--open{transform:translate(0)}.hub-cmap__backdrop{display:block;opacity:0;pointer-events:none;transition:opacity .2s ease}.hub-cmap__backdrop--visible{opacity:1;pointer-events:auto}.hub-cmap-page:not(:has(.hub-cmap__sidebar--open)) .hub-cmap__main{width:100%}}@media (prefers-reduced-motion: reduce){.hub-main,.hub-app,.hub-app__icon-wrap,.hub-app__icon,.hub-card-animate,.hub-card,.hub-card:before,.hub-card__img{animation:none!important;transition:none!important}.hub-app--active:hover,.hub-psb__detail-cta:active{transform:none}.hub-psb__root,.hub-psb__inner,.hub-psb__detail,.hub-psb__detail-scrim{transition:none!important}.hub-psb__root--in .hub-psb__inner{transform:none;opacity:1}.hub-psb__detail--in{transform:none}.hub-psb__spinner{animation:none}.hub-cmap-pin__halo{animation:none;opacity:.6;transform:scale(1.1)}.hub-cmap-pin--selected{transform:none}}.leaflet-cluster-anim .leaflet-marker-icon,.leaflet-cluster-anim .leaflet-marker-shadow{-webkit-transition:-webkit-transform .3s ease-out,opacity .3s ease-in;-moz-transition:-moz-transform .3s ease-out,opacity .3s ease-in;-o-transition:-o-transform .3s ease-out,opacity .3s ease-in;transition:transform .3s ease-out,opacity .3s ease-in}.leaflet-cluster-spider-leg{-webkit-transition:-webkit-stroke-dashoffset .3s ease-out,-webkit-stroke-opacity .3s ease-in;-moz-transition:-moz-stroke-dashoffset .3s ease-out,-moz-stroke-opacity .3s ease-in;-o-transition:-o-stroke-dashoffset .3s ease-out,-o-stroke-opacity .3s ease-in;transition:stroke-dashoffset .3s ease-out,stroke-opacity .3s ease-in}.marker-cluster-small{background-color:#b5e28c99}.marker-cluster-small div{background-color:#6ecc3999}.marker-cluster-medium{background-color:#f1d35799}.marker-cluster-medium div{background-color:#f0c20c99}.marker-cluster-large{background-color:#fd9c7399}.marker-cluster-large div{background-color:#f1801799}.leaflet-oldie .marker-cluster-small{background-color:#b5e28c}.leaflet-oldie .marker-cluster-small div{background-color:#6ecc39}.leaflet-oldie .marker-cluster-medium{background-color:#f1d357}.leaflet-oldie .marker-cluster-medium div{background-color:#f0c20c}.leaflet-oldie .marker-cluster-large{background-color:#fd9c73}.leaflet-oldie .marker-cluster-large div{background-color:#f18017}.marker-cluster{background-clip:padding-box;border-radius:20px}.marker-cluster div{width:30px;height:30px;margin-left:5px;margin-top:5px;text-align:center;border-radius:15px;font:12px Helvetica Neue,Arial,Helvetica,sans-serif}.marker-cluster span{line-height:30px}.hub-main.hub-product-page{--hub-prod-accent: #008174;--hub-prod-accent-soft: rgba(0, 129, 116, .08);--hub-prod-accent-border: rgba(0, 129, 116, .22);max-width:none;width:100%;padding:.95rem .75rem 1rem;background:#fff;border-radius:0}.hub-product-page__toolbar{margin-bottom:1rem}.hub-product-page__back{display:inline-flex;align-items:center;gap:.35rem;font-size:.9rem;font-weight:600;color:var(--hub-prod-accent, #008174);text-decoration:none}.hub-product-page__back:hover{color:#006b60;text-decoration:underline}.hub-product-page__header{margin-bottom:.85rem;padding:.25rem 0;background:transparent;border:none;box-shadow:none}.hub-product-page__header-left{display:flex;align-items:flex-start;gap:.85rem;min-width:0}.hub-product-page__thumb{flex:0 0 96px;width:96px;height:96px;border-radius:10px;overflow:hidden;background:#fafafa;border:1px solid rgba(0,0,0,.08);display:flex;align-items:center;justify-content:center;padding:.35rem;box-sizing:border-box}.hub-product-page__thumb img{width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain;display:block}.hub-product-page__head-text{min-width:0;flex:1;text-align:left;padding-top:.1rem}.hub-product-page__title{margin:0;font-size:1.15rem;font-weight:700;color:#1f2937;line-height:1.35;letter-spacing:normal;overflow-wrap:anywhere}.hub-product-page__code{margin:.2rem 0 0;font-size:.8rem;font-weight:600;letter-spacing:normal;color:#0f28168c;text-transform:none}.hub-product-page__chips{display:flex;flex-wrap:wrap;gap:.3rem;margin-top:.4rem}.hub-product-page__chip{display:inline-flex;align-items:center;padding:.12rem .5rem;border-radius:999px;font-size:.68rem;font-weight:700;background:var(--hub-prod-accent-soft, rgba(0, 129, 116, .08));color:var(--hub-prod-accent, #008174);border:1px solid var(--hub-prod-accent-border, rgba(0, 129, 116, .22))}.hub-product-page__warn{margin:.5rem 0 0;font-size:.85rem;color:var(--tertiary-600)}.hub-product-page__quick{margin-top:0;width:100%;max-width:440px;display:flex;align-items:flex-start;gap:.7rem}.hub-product-page__quick-actions{display:flex;flex-direction:column;justify-content:flex-start;gap:.45rem;margin-bottom:0;flex:0 0 124px}.hub-product-page__quick-btn{height:2.2rem;width:100%;min-width:0;padding:0 1rem;border:1px solid rgba(17,149,49,.28);border-radius:10px;background:#fff;color:var(--hub-verde-forte);font-size:.84rem;font-weight:800;letter-spacing:.04em;cursor:pointer;transition:all .15s ease}.hub-product-page__quick-btn:hover{background:#11953114}.hub-product-page__quick-btn.is-active{color:#fff;background:linear-gradient(180deg,var(--hub-verde-medio) 0%,var(--hub-verde-forte) 100%);border-color:transparent}.hub-product-page__quick-panel{flex:1 1 auto;border:1px solid rgba(0,0,0,.08);border-radius:12px;background:#fff;padding:.85rem .9rem;min-height:108px}.hub-product-page__quick-panel--prices{display:grid;grid-template-columns:repeat(3,minmax(90px,1fr));gap:.6rem;text-align:center}.hub-product-page__quick-panel--prices>div{padding:.7rem .6rem;border:1px solid rgba(17,149,49,.12);border-radius:10px;background:#f2f9e859;display:flex;flex-direction:column;gap:.35rem;align-items:center;justify-content:center}.hub-product-page__quick-panel--prices span{font-size:.78rem;color:var(--tertiary-500);font-weight:700}.hub-product-page__quick-panel--prices strong{font-size:1.04rem;color:var(--hub-verde-escuro)}.hub-product-page__quick-panel--stock{max-height:220px;overflow:auto}.hub-product-page__stock-list{margin:0;padding:0;list-style:none}.hub-product-page__stock-list li{display:flex;justify-content:space-between;gap:.8rem;padding:.6rem .25rem;border-bottom:1px solid rgba(0,0,0,.06);font-size:.94rem}.hub-product-page__stock-list li:last-child{border-bottom:none}.hub-product-page__stock-list span{color:var(--tertiary-700)}.hub-product-page__stock-list strong{color:var(--hub-verde-escuro);white-space:nowrap;font-size:.96rem}.hub-product-page__quick-empty{margin:0;color:var(--tertiary-500);font-size:.82rem}.hub-product-page__workspace{display:grid;grid-template-columns:minmax(220px,260px) minmax(0,1fr);gap:1rem;align-items:start}.hub-product-page__nav-rail{min-width:0}@media (min-width: 641px){.hub-product-page__workspace{display:flex;gap:.65rem;align-items:flex-start}.hub-product-page__nav-rail{flex:0 0 15.75rem;width:15.75rem;min-width:15.75rem;max-width:16rem;display:flex;flex-direction:column;gap:.4rem;transition:flex .24s ease,width .24s ease,min-width .24s ease;z-index:6}.hub-product-page__nav-rail--collapsed{flex:0 0 3.35rem;width:3.35rem;min-width:3.35rem}.hub-product-page__nav--dock{width:100%;box-sizing:border-box;transition:box-shadow .2s ease}.hub-product-page__nav-rail:not(.hub-product-page__nav-rail--collapsed) .hub-product-page__nav--dock{box-shadow:0 4px 16px #0000000f}.hub-product-page__nav-rail--collapsed .hub-product-page__nav--dock{padding:.45rem .35rem}.hub-product-page__nav-rail--collapsed .hub-product-page__nav-heading{display:none}.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item{justify-content:center;padding:.48rem .3rem;gap:0;border-color:transparent}.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item-text{display:none}.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item:hover{border-color:transparent;background:transparent}.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item--active{box-shadow:none;border-color:transparent;background:#0000000f}.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item--active,.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item--active:hover{background:#0000000f}.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item-ico,.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item:hover .hub-product-page__nav-item-ico,.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item--active .hub-product-page__nav-item-ico,.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item--active:hover .hub-product-page__nav-item-ico{background:transparent}.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item-ico{color:var(--tertiary-600)}.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item--active .hub-product-page__nav-item-ico,.hub-product-page__nav-rail--collapsed .hub-product-page__nav-item--active:hover .hub-product-page__nav-item-ico{color:var(--hub-prod-accent, #008174)}.hub-product-page__nav-rail--collapsed .hub-product-page__nav-toggle-label{display:none}.hub-product-page__content{flex:1 1 auto;min-width:0}}.hub-product-page__nav-toggle{display:none}@media (min-width: 641px){.hub-product-page__nav-toggle{display:inline-flex;align-items:center;justify-content:center;gap:.35rem;width:100%;padding:.45rem .55rem;border:1px solid var(--hub-prod-accent-border, rgba(0, 129, 116, .22));border-radius:10px;background:#fff;color:var(--hub-prod-accent, #008174);font-size:.78rem;font-weight:700;cursor:pointer;transition:background .15s ease,border-color .15s ease}.hub-product-page__nav-toggle:hover{background:var(--hub-prod-accent-soft, rgba(0, 129, 116, .08));border-color:var(--hub-prod-accent, #008174)}.hub-product-page__nav-toggle:focus-visible{outline:2px solid var(--hub-prod-accent, #008174);outline-offset:2px}.hub-product-page__nav-toggle-ico{width:1rem;height:1rem;flex-shrink:0;display:inline-flex}.hub-product-page__nav-toggle-ico svg{width:100%;height:100%}.hub-product-page__nav-rail--collapsed .hub-product-page__nav-toggle{padding:.45rem .3rem}}.hub-product-page__nav{display:flex;flex-direction:column;gap:.35rem;padding:.85rem;border:1px solid rgba(0,0,0,.08);border-radius:14px;background:#fff;box-shadow:0 2px 10px #0000000a}.hub-product-page__nav-heading{margin:0 0 .35rem;padding:0 .15rem .45rem;font-size:.68rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--hub-prod-accent, #008174);border-bottom:1px solid var(--hub-prod-accent-border, rgba(0, 129, 116, .22))}.hub-product-page__nav-tabs{display:flex;flex-direction:column;gap:.35rem}.hub-product-page__nav-item{display:flex;align-items:flex-start;gap:.65rem;width:100%;padding:.65rem .7rem;border:1px solid transparent;border-radius:11px;background:transparent;text-align:left;cursor:pointer;transition:background .15s ease,border-color .15s ease,box-shadow .15s ease}.hub-product-page__nav-item:hover{background:var(--hub-prod-accent-soft, rgba(0, 129, 116, .08));border-color:var(--hub-prod-accent-border, rgba(0, 129, 116, .22))}.hub-product-page__nav-item--active{background:var(--hub-prod-accent-soft, rgba(0, 129, 116, .08));border-color:var(--hub-prod-accent, #008174);box-shadow:inset 3px 0 0 var(--hub-prod-accent, #008174)}.hub-product-page__nav-item--active .hub-product-page__nav-item-ico{background:var(--hub-prod-accent, #008174);color:#fff}.hub-product-page__nav-item--active .hub-product-page__nav-item-label{color:var(--hub-prod-accent, #008174)}.hub-product-page__nav-item--active .hub-product-page__nav-item-desc{color:#008174b8}.hub-product-page__nav-item:focus-visible{outline:2px solid var(--hub-prod-accent, #008174);outline-offset:2px}.hub-product-page__nav-item-ico{flex:0 0 2rem;width:2rem;height:2rem;display:inline-flex;align-items:center;justify-content:center;border-radius:9px;background:#0000000d;color:var(--tertiary-600)}.hub-product-page__nav-ico{width:1.05rem;height:1.05rem}.hub-product-page__nav-item-text{min-width:0;display:flex;flex-direction:column;gap:.15rem}.hub-product-page__nav-item-label{font-size:.84rem;font-weight:700;line-height:1.25;color:#1f2937}.hub-product-page__nav-item-desc{font-size:.72rem;line-height:1.35;color:var(--tertiary-600)}.hub-product-page__content{min-width:0;display:flex;flex-direction:column;gap:0;border:1px solid rgba(0,0,0,.08);border-radius:14px;background:#fff;box-shadow:0 4px 16px #0000000d;overflow:hidden}.hub-product-page__welcome{padding:2.5rem 1.5rem;text-align:center}.hub-product-page__welcome-title{margin:0 0 .45rem;font-size:1.05rem;font-weight:700;color:var(--hub-prod-accent, #008174)}.hub-product-page__welcome-text{margin:0 auto;max-width:28rem;font-size:.9rem;line-height:1.5;color:var(--tertiary-600)}.hub-product-page__panel-head{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:.75rem 1rem;padding:1rem 1.15rem;border-bottom:2px solid var(--hub-prod-accent, #008174);background:#fff}.hub-product-page__panel-head-main{flex:1 1 220px;min-width:0}.hub-product-page__panel-title{margin:0;font-size:1.05rem;font-weight:700;color:var(--hub-prod-accent, #008174);line-height:1.3}.hub-product-page__panel-desc{margin:.3rem 0 0;font-size:.82rem;line-height:1.45;color:var(--tertiary-600)}.hub-product-page__panel-badge{flex:0 0 auto;align-self:flex-start;padding:.28rem .65rem;border-radius:999px;font-size:.72rem;font-weight:700;color:var(--hub-prod-accent, #008174);background:var(--hub-prod-accent-soft, rgba(0, 129, 116, .08));border:1px solid var(--hub-prod-accent-border, rgba(0, 129, 116, .22))}.hub-product-page__panel-badge--inline{display:inline-block;margin:0 0 .75rem}.hub-product-page__panel-toolbar--in-panel{margin:0 0 1rem;padding:0}.hub-product-page__panel-head .hub-product-page__field{color:var(--tertiary-700)}.hub-product-page__panel-toolbar{flex:1 1 100%;display:flex;flex-wrap:wrap;gap:.55rem .85rem;align-items:flex-end;padding-top:.15rem}.hub-product-page__panel-body{padding:0;min-height:0}.hub-product-page__panel-body--active{padding:1rem 1.15rem 1.25rem;animation:hubFadeIn .22s ease}.hub-product-page__summary{margin:0 0 1rem}.hub-product-page__summary--compact{margin-bottom:.75rem}.hub-product-page__summary-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:.65rem}.hub-product-page__summary--compact .hub-product-page__summary-grid{grid-template-columns:repeat(auto-fit,minmax(118px,1fr));gap:.45rem}.hub-product-page__summary-card{padding:.65rem .85rem;border:1px solid rgba(0,0,0,.08);border-radius:10px;background:#fff;box-shadow:0 1px 4px #0000000a;display:flex;flex-direction:column;gap:.2rem}.hub-product-page__summary-label{font-size:.68rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--tertiary-600)}.hub-product-page__summary-value{font-size:.95rem;line-height:1.3;font-weight:700;color:var(--hub-prod-accent, #008174)}button.hub-product-page__summary-card--action{margin:0;width:100%;font:inherit;text-align:left;cursor:pointer;transition:border-color .15s ease,box-shadow .15s ease,background .15s ease}button.hub-product-page__summary-card--action:hover{border-color:#11953159;background:#f0fdf4;box-shadow:0 4px 12px #1195311a}button.hub-product-page__summary-card--action:focus-visible{outline:2px solid var(--hub-verde-vivo, #119531);outline-offset:2px}.hub-product-page__summary-action-hint{font-size:.68rem;font-weight:600;color:var(--hub-verde-escuro, #0d7a28)}.hub-product-page__summary--compact .hub-product-page__summary-card{padding:.5rem .6rem}.hub-product-page__summary--compact .hub-product-page__summary-label{font-size:.62rem}.hub-product-page__summary--compact .hub-product-page__summary-value{font-size:.86rem}.hub-product-page__details{margin-top:1.25rem;padding-top:0;border-top:none;transition:margin-top .28s ease}.hub-product-page--analise-focus .hub-product-page__header,.hub-product-page--tab-focus .hub-product-page__header{margin-bottom:.5rem}.hub-product-page__resumo-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.85rem;align-items:start}.hub-product-page__resumo-card{padding:.85rem 1rem;border:1px solid rgba(0,0,0,.08);border-radius:12px;background:#fff;box-shadow:0 1px 4px #0000000a}.hub-product-page__resumo-card-head{display:flex;align-items:center;justify-content:space-between;gap:.5rem;margin-bottom:.55rem;padding-bottom:.45rem;border-bottom:1px solid var(--hub-prod-accent-border, rgba(0, 129, 116, .22))}.hub-product-page__resumo-card-title{margin:0;font-size:.72rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:var(--hub-prod-accent, #008174)}.hub-product-page__resumo-card-meta{font-size:.8rem;font-weight:700;color:var(--hub-prod-accent, #008174);white-space:nowrap}.hub-product-page__resumo-empty{margin:0;font-size:.85rem;color:var(--tertiary-500)}.hub-product-page__resumo-rows{margin:0;padding:0;list-style:none}.hub-product-page__resumo-rows li{display:flex;align-items:baseline;justify-content:space-between;gap:.65rem;padding:.45rem 0;border-bottom:1px solid rgba(0,0,0,.06);font-size:.88rem}.hub-product-page__resumo-rows li:last-child{border-bottom:none}.hub-product-page__resumo-rows span{min-width:0;color:var(--tertiary-700);overflow-wrap:anywhere}.hub-product-page__resumo-rows strong{flex-shrink:0;font-weight:700;color:var(--hub-prod-accent, #008174);white-space:nowrap}.hub-product-page__ep-root{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1200;display:flex;align-items:center;justify-content:center;padding:1rem;opacity:0;transition:opacity .22s ease}.hub-product-page__ep-root--in{opacity:1}.hub-product-page__ep-backdrop{position:absolute;top:0;right:0;bottom:0;left:0;margin:0;padding:0;border:none;background:#0f172a73;cursor:pointer}.hub-product-page__ep-dialog{position:relative;z-index:1;display:flex;flex-direction:column;width:min(100%,44rem);max-height:min(88vh,720px);border-radius:14px;background:#fff;box-shadow:0 24px 48px #0f28162e;opacity:0;transform:translateY(12px) scale(.98);transition:opacity .22s ease,transform .22s ease}.hub-product-page__ep-root--in .hub-product-page__ep-dialog{opacity:1;transform:translateY(0) scale(1)}.hub-product-page__ep-head{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;flex-shrink:0;padding:1rem 1.15rem;border-bottom:1px solid #e8edf2;background:linear-gradient(180deg,#f0fdf4,#fff)}.hub-product-page__ep-title{margin:0;font-size:1.1rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28)}.hub-product-page__ep-sub{margin:.25rem 0 0;font-size:.82rem;color:#64748b;line-height:1.35}.hub-product-page__ep-code{font-weight:800;color:#0f172a}.hub-product-page__ep-meta{font-weight:600}.hub-product-page__ep-close{flex-shrink:0;width:2rem;height:2rem;margin:0;padding:0;border:none;border-radius:8px;background:transparent;font-size:1.5rem;line-height:1;color:#64748b;cursor:pointer}.hub-product-page__ep-close:hover{background:#f1f5f9;color:#0f172a}.hub-product-page__ep-body{flex:1;min-height:0;overflow:auto;padding:1rem 1.15rem 1.15rem}.hub-product-page__ep-body .hub-product-page__resumo-grid{grid-template-columns:1fr}@media (min-width: 640px){.hub-product-page__ep-body .hub-product-page__resumo-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}.hub-product-page--analise-focus .hub-product-page__thumb,.hub-product-page--tab-focus .hub-product-page__thumb{width:80px;height:80px}.hub-product-page--analise-focus .hub-product-page__title,.hub-product-page--tab-focus .hub-product-page__title{font-size:1.05rem}.hub-product-page--analise-focus .hub-product-page__details,.hub-product-page--tab-focus .hub-product-page__details{margin-top:.65rem;padding-top:.65rem}.hub-product-page__panel{padding:0}.hub-product-page__muted{color:var(--tertiary-500);font-size:.95rem}.hub-product-page__empty{margin:0;padding:1.5rem;text-align:center;color:var(--tertiary-600);font-size:.95rem;background:#fff;border:1px dashed rgba(0,0,0,.12);border-radius:12px}.hub-product-page__err{padding:.75rem 1rem;border-radius:10px;background:#b4282814;color:#8b1a1a;font-size:.9rem}.hub-product-page__sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.hub-product-page__table-wrap{overflow-x:auto;background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:12px;box-shadow:0 2px 8px #0000000a}.hub-product-page__table-wrap--mt{margin-top:2rem}.hub-product-page__pagination{margin-top:.9rem;display:flex;align-items:center;justify-content:flex-end;gap:.65rem}.hub-product-page__pagination-btn{border:1px solid var(--hub-prod-accent-border, rgba(0, 129, 116, .22));background:#fff;color:var(--hub-prod-accent, #008174);border-radius:8px;min-height:34px;padding:0 .75rem;font-size:.82rem;font-weight:700;cursor:pointer}.hub-product-page__pagination-btn:hover:not(:disabled){background:var(--hub-prod-accent, #008174);border-color:var(--hub-prod-accent, #008174);color:#fff}.hub-product-page__pagination-btn:disabled{opacity:.45;cursor:not-allowed}.hub-product-page__pagination-info{font-size:.8rem;font-weight:600;color:var(--tertiary-600)}.hub-product-page__table{width:100%;border-collapse:collapse;font-size:.875rem}.hub-product-page__table th,.hub-product-page__table td{padding:.65rem .85rem;text-align:left;border-bottom:1px solid rgba(0,0,0,.06);vertical-align:top}.hub-product-page__table th{font-weight:600;color:var(--hub-prod-accent, #008174);background:var(--hub-prod-accent-soft, rgba(0, 129, 116, .08));white-space:nowrap}.hub-product-page__analise{margin-top:.25rem}.hub-product-page__analise-controls{margin-bottom:.85rem;padding:.75rem;border:1px solid #dee2e6;border-radius:8px;background:#fff}.hub-product-page__analise-controls-top{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:.65rem 1rem;margin-bottom:.65rem}.hub-product-page__analise-title{display:flex;flex-wrap:wrap;align-items:center;gap:.4rem .55rem;margin:0;font-size:1.05rem;font-weight:600;color:var(--hub-prod-accent, #008174);line-height:1.35}.hub-product-page__analise-title-text{font-weight:inherit}.hub-product-page__analise-count-badge{display:inline-flex;align-items:baseline;gap:.15rem;padding:.14rem .5rem;border-radius:999px;font-size:.68rem;font-weight:600;line-height:1.25;letter-spacing:.01em;color:var(--hub-prod-accent, #008174);background:var(--hub-prod-accent-soft, rgba(0, 129, 116, .09));border:1px solid var(--hub-prod-accent-border, rgba(0, 129, 116, .22));white-space:nowrap}.hub-product-page__analise-count-badge strong{font-size:.72rem;font-weight:800;color:var(--hub-prod-accent, #008174)}.hub-product-page__analise-count-sep{font-weight:500;opacity:.55}.hub-product-page__analise-actions{display:flex;flex-wrap:wrap;gap:.5rem;align-items:center}.hub-product-page__analise-btn{border:none;border-radius:4px;padding:.4rem .8rem;font-size:.8rem;font-weight:600;cursor:pointer;transition:background .15s ease,opacity .15s ease}.hub-product-page__analise-btn--clear{background:#6c757d;color:#fff}.hub-product-page__analise-btn--clear:hover{background:#5a6268}.hub-product-page__analise-btn--export{background:#28a745;color:#fff}.hub-product-page__analise-btn--export:hover:not(:disabled){background:#218838}.hub-product-page__analise-btn--export:disabled{opacity:.65;cursor:not-allowed}.hub-product-page__analise-filters{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:.5rem;align-items:stretch}.hub-product-page__analise-input,.hub-product-page__analise-select,.hub-product-page__analise-region-trigger{width:100%;min-height:2.15rem;padding:.4rem .5rem;border:1px solid #ced4da;border-radius:4px;font-size:.85rem;color:#333;background:#fff;box-sizing:border-box}.hub-product-page__analise-input:focus,.hub-product-page__analise-select:focus,.hub-product-page__analise-region-trigger:focus{outline:2px solid rgba(0,129,116,.35);outline-offset:1px;border-color:var(--hub-prod-accent, #008174)}.hub-product-page__analise-region{min-width:0}.hub-product-page__analise-region-wrap{position:relative}.hub-product-page__analise-region-trigger{display:inline-flex;align-items:center;justify-content:space-between;gap:.35rem;cursor:pointer;text-align:left}.hub-product-page__analise-region-chevron{flex-shrink:0;font-size:.65rem;opacity:.7}.hub-product-page__analise-region-dropdown{display:none;position:absolute;top:calc(100% + 4px);left:0;right:0;z-index:30;max-height:280px;overflow-y:auto;background:#fff;border:1px solid #ced4da;border-radius:4px;box-shadow:0 2px 8px #0000001f}.hub-product-page__analise-region-dropdown--open{display:block}.hub-product-page__analise-region-list{padding:.35rem 0}.hub-product-page__analise-region-invert{display:block;width:calc(100% - .7rem);margin:0 .35rem .25rem;padding:.4rem .5rem;border:1px solid #ced4da;border-radius:4px;background:#fff;font-size:.85rem;color:#333;cursor:pointer}.hub-product-page__analise-region-invert:hover{background:#f8f9fa}.hub-product-page__analise-region-option{display:flex;align-items:center;gap:.5rem;padding:.4rem .55rem;font-size:.85rem;color:#333;cursor:pointer}.hub-product-page__analise-region-option:hover,.hub-product-page__analise-region-option--on{background:#f8f9fa}.hub-product-page__analise-region-option input{cursor:pointer}.hub-product-page__empty--compact{margin-top:.5rem;padding:1rem}@media (max-width: 960px){.hub-product-page__analise-filters{grid-template-columns:1fr 1fr}.hub-product-page__analise-input--search{grid-column:1 / -1}}@media (max-width: 560px){.hub-product-page__analise-filters{grid-template-columns:1fr}}.hub-product-page__analise-scroll{overflow:auto;max-height:min(70vh,560px);border:1px solid #c5d0d8;border-radius:8px;background:#fff;box-shadow:inset 0 0 0 1px #00000008}.hub-product-page__analise-table{width:100%;min-width:960px;border-collapse:collapse;font-size:.85rem;font-variant-numeric:tabular-nums}.hub-product-page__analise-table th,.hub-product-page__analise-table td{border:1px solid #d1d9e0;padding:.5rem .55rem;vertical-align:middle;background:#fff}.hub-product-page__analise-th{position:sticky;top:0;z-index:2;text-align:center;font-weight:600;color:#495057;background:#f8f9fa;border-bottom:2px solid #dee2e6;box-shadow:0 2px 4px #0000000f;white-space:nowrap}.hub-product-page__analise-th--client{left:0;z-index:4;min-width:280px;max-width:360px;text-align:left;background:#eef2f6}.hub-product-page__analise-row{font-size:.85rem}.hub-product-page__analise-row .hub-product-page__analise-td{background:var(--analise-row-bg, #fff)}.hub-product-page__analise-row .hub-product-page__analise-td--client{border-left:3px solid var(--analise-row-border, transparent)}.hub-product-page__analise-row:hover .hub-product-page__analise-td:not(.hub-product-page__analise-td--client){filter:brightness(.97)}.hub-product-page__analise-row:hover .hub-product-page__analise-td--client{background:color-mix(in srgb,var(--analise-row-bg, #fff) 88%,#000 4%)}.hub-product-page__analise-td--client{position:sticky;left:0;z-index:1;min-width:280px;max-width:360px;vertical-align:top;background:var(--analise-row-bg, #fff);box-shadow:2px 0 4px #0000000a}.hub-product-page__analise-td--metric{text-align:center;min-width:88px}.hub-product-page__analise-client{display:flex;flex-direction:column;align-items:flex-start;gap:.28rem}.hub-product-page__analise-client-main{display:flex;align-items:flex-start;gap:.5rem;width:100%;min-width:0}.hub-product-page__analise-client-code{flex:0 0 auto;min-width:4.5rem;font-weight:600;font-size:.9rem;line-height:1.3;color:var(--hub-prod-accent, #008174)}.hub-product-page__analise-client-names{flex:1;min-width:0;display:flex;flex-direction:column;gap:.1rem}.hub-product-page__analise-client-fantasia{font-weight:600;font-size:.8rem;color:#333;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hub-product-page__analise-client-razao{font-size:.75rem;color:#666;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hub-product-page__analise-details-btn{flex:0 0 auto;display:inline-flex;align-items:center;gap:.25rem;padding:.25rem .5rem;border:1px solid var(--hub-prod-accent, #008174);border-radius:4px;background:#fff;color:var(--hub-prod-accent, #008174);font-size:.75rem;font-weight:600;line-height:1.2;text-decoration:none;white-space:nowrap;transition:background .15s ease,color .15s ease,border-color .15s ease}.hub-product-page__analise-details-btn:hover{background:var(--hub-prod-accent, #008174);border-color:var(--hub-prod-accent, #008174);color:#fff}.hub-product-page__analise-details-ico{font-size:.85em;line-height:1}.hub-product-page__analise-situacao{display:inline-block;padding:.1rem .45rem;border-radius:8px;font-size:.65rem;font-weight:500;line-height:1.35;color:#fff}.hub-product-page__analise-metric{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.15rem;min-height:2.25rem}.hub-product-page__analise-metric-main{font-weight:600;color:var(--hub-prod-accent, #008174);line-height:1.25}.hub-product-page__analise-metric-sub{font-size:.75rem;font-weight:400;color:#666;line-height:1.2}.hub-product-page__table--compact th,.hub-product-page__table--compact td{padding:.45rem .65rem;font-size:.8125rem}.hub-product-page__cell-strong{display:block;font-weight:600;color:var(--tertiary-900)}.hub-product-page__cell-sub{display:block;font-size:.75rem;color:var(--tertiary-500)}.hub-product-page__field{display:flex;flex-direction:column;gap:.35rem;font-size:.875rem;font-weight:600;color:var(--tertiary-700)}.hub-product-page__sales-filters{display:flex;flex-wrap:wrap;gap:.6rem .9rem;align-items:end;margin-bottom:.65rem}.hub-product-page__panel-toolbar .hub-product-page__field--client-search{flex:1 1 280px;min-width:200px}.hub-product-page__panel-toolbar .hub-product-page__field--period{flex:0 0 150px}.hub-product-page__panel-toolbar .hub-product-page__field{font-size:.78rem;gap:.28rem}.hub-product-page__panel-toolbar .hub-product-page__select{max-width:none;width:100%}.hub-product-page__field--client-search{flex:1 1 520px;min-width:280px}.hub-product-page__field--period{flex:0 0 190px}.hub-product-page__client-search-wrap{position:relative;display:flex;align-items:center;gap:.4rem}.hub-product-page__client-input{width:100%;max-width:none!important}.hub-product-page__client-clear{border:1px solid rgba(0,0,0,.12);background:#fff;color:var(--tertiary-600);border-radius:8px;min-height:32px;padding:0 .55rem;font-size:.74rem;font-weight:600;cursor:pointer}.hub-product-page__client-suggestions{position:absolute;top:calc(100% + 4px);left:0;right:0;z-index:30;background:#fff;border:1px solid rgba(0,0,0,.12);border-radius:10px;box-shadow:0 10px 24px #00000014;max-height:220px;overflow-y:auto;padding:.25rem}.hub-product-page__client-suggestion{width:100%;border:none;background:transparent;text-align:left;border-radius:8px;padding:.42rem .5rem;font-size:.8rem;color:var(--tertiary-800);cursor:pointer}.hub-product-page__client-suggestion:hover{background:#11953114}.hub-product-page__select{max-width:200px;padding:.45rem .65rem;border-radius:10px;border:1px solid rgba(0,0,0,.12);background:#fff;font-size:.9rem}.hub-product-page__chart{margin-top:.5rem}.hub-product-page__sales-layout{display:grid;grid-template-columns:minmax(0,1fr) 0;gap:1rem;align-items:start;transition:grid-template-columns .35s ease}.hub-product-page__sales-layout--with-sidebar{grid-template-columns:minmax(0,1fr) 320px}.hub-product-page__chart-title{margin:.85rem auto .65rem;max-width:42rem;padding:0 .5rem;font-size:.95rem;font-weight:600;letter-spacing:-.015em;line-height:1.35;color:#1f2937;text-align:center}.hub-product-page__line-chart-wrap{position:relative;background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:12px;padding:.3rem .35rem .2rem}.hub-product-page__sales-chart-tooltip{position:fixed;left:0;top:0;z-index:4000;min-width:10.5rem;max-width:min(18rem,calc(100vw - 1.5rem));padding:.55rem .75rem .62rem;border-radius:10px;background:#0f172af5;color:#f8fafc;font-size:.72rem;line-height:1.45;box-shadow:0 10px 32px #0000003d;pointer-events:none;border:1px solid rgba(255,255,255,.08);will-change:transform;contain:layout paint}.hub-product-page__sales-chart-tooltip__mes{font-weight:600;font-size:.8rem;margin-bottom:.45rem;color:#fff;letter-spacing:.02em}.hub-product-page__sales-chart-tooltip__row{display:flex;justify-content:space-between;gap:1.35rem;align-items:baseline}.hub-product-page__sales-chart-tooltip__k{color:#f8fafcb8;font-weight:500}.hub-product-page__sales-chart-tooltip__v{font-variant-numeric:tabular-nums;text-align:right;font-weight:600;color:#e2e8f0}.hub-product-page__line-chart-legend{display:flex;flex-wrap:wrap;gap:.85rem;align-items:center;justify-content:center;margin-bottom:.22rem;font-size:.68rem;color:var(--tertiary-600);font-weight:600}.hub-product-page__line-chart-legend span{display:inline-flex;align-items:center;gap:.35rem}.hub-product-page__legend-dot{width:10px;height:10px;border-radius:50%;display:inline-block}.hub-product-page__legend-dot--qtd{background:#0f766e}.hub-product-page__legend-dot--fat{background:#7c3aed}.hub-product-page__line-chart{width:100%;height:auto;display:block;animation:hubSalesChartIn .35s ease}@keyframes hubSalesChartIn{0%{opacity:0;transform:translateY(6px) scale(.995)}to{opacity:1;transform:translateY(0) scale(1)}}.hub-product-page__line-grid{stroke:#00000017;stroke-width:1;stroke-dasharray:3 4}.hub-product-page__line-axis{stroke:#00000040;stroke-width:1}.hub-product-page__line-axis-label{font-size:8px;fill:#6b7280}.hub-product-page__line-axis-label--left,.hub-product-page__line-axis-label--right{fill:#6b7280}.hub-product-page__line-axis-xlabel{font-size:8px;fill:#6b7280}.hub-product-page__line-path{fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;transition:all .35s ease}.hub-product-page__line-area{transition:all .35s ease}.hub-product-page__line-area--qtd{fill:url(#gradQtdArea)}.hub-product-page__line-area--fat{fill:url(#gradFatArea)}.hub-product-page__line-path--qtd{stroke:#0f766e;filter:drop-shadow(0 1px 1px rgba(15,118,110,.18))}.hub-product-page__line-path--fat{stroke:#7c3aed;filter:drop-shadow(0 1px 1px rgba(124,58,237,.18))}.hub-product-page__line-point{stroke-width:.85;transition:all .35s ease}.hub-product-page__line-point--qtd{fill:#0f766e;stroke:#fff}.hub-product-page__line-point--fat{fill:#7c3aed;stroke:#fff}.hub-product-page__line-hit{fill:transparent;cursor:pointer}.hub-product-page__chart{transition:transform .35s ease}.hub-product-page__chart.is-zoomed{transform:translate(0)}.hub-product-page__bars{display:flex;align-items:flex-end;gap:.35rem;min-height:180px;padding:.75rem .5rem;background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:12px}.hub-product-page__bar-col{flex:1;min-width:0;display:flex;flex-direction:column;align-items:center;height:160px}.hub-product-page__bar-btn{border:none;background:transparent;padding:0;margin:0;width:100%;height:100%;cursor:pointer;display:flex;flex-direction:column;align-items:center}.hub-product-page__bar-btn:focus-visible{outline:2px solid var(--hub-verde-vivo);outline-offset:2px;border-radius:8px}.hub-product-page__bar-track{flex:1;width:100%;max-width:36px;margin:0 auto;display:flex;flex-direction:column;justify-content:flex-end;background:#0000000a;border-radius:6px 6px 0 0;overflow:hidden}.hub-product-page__bar-fill{width:100%;background:linear-gradient(180deg,var(--hub-verde-vivo),var(--hub-verde-musgo));border-radius:4px 4px 0 0;min-height:2px;transition:height .25s ease}.hub-product-page__bar-fill--valor{background:linear-gradient(180deg,#5a8f3a,var(--hub-verde-forte))}.hub-product-page__bar-label{margin-top:.35rem;font-size:.65rem;color:var(--tertiary-500);text-align:center;line-height:1.2;word-break:break-word}.hub-product-page__bar-chip{margin-top:.2rem;font-size:.62rem;font-weight:700;color:var(--hub-verde-escuro);background:#60b9372e;border-radius:999px;padding:.05rem .35rem}.hub-product-page__sales-actions{margin-top:.75rem}.hub-product-page__sales-reset{border:1px solid rgba(17,149,49,.45);background:#fff;color:var(--hub-verde-forte);border-radius:8px;min-height:34px;padding:0 .75rem;font-size:.82rem;font-weight:700;cursor:pointer}.hub-product-page__sales-sidebar{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:12px;box-shadow:0 2px 8px #0000000a;padding:.75rem;overflow:hidden;opacity:0;transform:translate(12px);pointer-events:none;transition:opacity .32s ease,transform .32s ease}.hub-product-page__sales-sidebar--visible{opacity:1;transform:translate(0);pointer-events:auto}.hub-product-page__sales-sidebar-title{margin-bottom:.45rem}.hub-product-page__sales-sidebar-period{margin:0 0 .6rem;font-size:.84rem;color:var(--tertiary-600)}.hub-product-page__sales-sidebar-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.5rem}.hub-product-page__sales-sidebar-item{border:1px solid rgba(0,0,0,.06);border-radius:10px;background:#f9fbfd;padding:.55rem .6rem}.hub-product-page__sales-sidebar-name{margin:0 0 .35rem;font-size:.85rem;font-weight:700;color:var(--tertiary-900)}.hub-product-page__sales-sidebar-metric{margin:.15rem 0 0;font-size:.8rem;color:var(--tertiary-700)}.hub-product-page__subh{margin:0 0 .75rem;font-size:1rem;font-weight:700;color:var(--hub-prod-accent, #008174)}.hub-product-page__sheet{margin-top:1.75rem}.hub-product-page__sheet-toolbar{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:.65rem 1rem;margin-bottom:.65rem}.hub-product-page__sheet-title{margin-bottom:.2rem}.hub-product-page__sheet-hint{margin:0;font-size:.78rem;color:var(--tertiary-600)}.hub-product-page__sheet-export{flex:0 0 auto;display:inline-flex;align-items:center;gap:.35rem;padding:.45rem .9rem;border:1px solid var(--hub-prod-accent, #008174);border-radius:8px;background:var(--hub-prod-accent, #008174);color:#fff;font-size:.82rem;font-weight:700;cursor:pointer;transition:background .15s ease,opacity .15s ease}.hub-product-page__sheet-export:hover:not(:disabled){background:#006b60;border-color:#006b60}.hub-product-page__sheet-export:disabled{opacity:.65;cursor:wait}.hub-product-page__sheet-scroll{overflow:auto;max-height:min(70vh,520px);border:1px solid #c5d0d8;border-radius:8px;background:#fff;box-shadow:inset 0 0 0 1px #00000008}.hub-product-page__sheet-table{width:max-content;min-width:100%;border-collapse:collapse;font-size:.8rem;font-variant-numeric:tabular-nums}.hub-product-page__sheet-table th,.hub-product-page__sheet-table td{border:1px solid #d1d9e0;padding:.45rem .55rem;vertical-align:middle;background:#fff}.hub-product-page__sheet-th{position:sticky;top:0;z-index:2;background:#f1f5f9;font-weight:600;color:#374151;text-align:center;white-space:nowrap}.hub-product-page__sheet-th--client{position:sticky;left:0;z-index:4;min-width:200px;max-width:280px;text-align:left;background:#e8eef3}.hub-product-page__sheet-totals-row .hub-product-page__sheet-th{top:var(--sheet-head-row-h, 3.25rem);z-index:2;background:#e0f2f0;color:#006b60;font-weight:700}.hub-product-page__sheet-totals-row .hub-product-page__sheet-th--client{z-index:5;background:#cce8e4;color:#005a52}.hub-product-page__sheet-totals-row .hub-product-page__sheet-th--total{background:#cce8e4}.hub-product-page__sheet-totals-row .hub-product-page__sheet-val{color:#005a52}.hub-product-page__sheet-th--month{min-width:96px}.hub-product-page__sheet-th--total{min-width:108px;background:#e8eef3;color:var(--hub-prod-accent, #008174)}.hub-product-page__sheet-th--data{font-weight:600}.hub-product-page__sheet-sort{display:inline-flex;align-items:center;justify-content:center;gap:.25rem;width:100%;padding:0;border:none;background:transparent;font:inherit;color:inherit;cursor:pointer}.hub-product-page__sheet-sort:hover{color:var(--hub-prod-accent, #008174)}.hub-product-page__sheet-sort-ico{font-size:.65rem;opacity:.75}.hub-product-page__sheet-td--client{position:sticky;left:0;z-index:1;min-width:200px;max-width:280px;background:#fafbfc;font-weight:500;text-align:left}.hub-product-page__sheet-td--data{text-align:center;min-width:96px}.hub-product-page__sheet-td--total{text-align:center;min-width:108px;background:#f0f7f6;font-weight:600}.hub-product-page__sheet-table tbody tr:nth-child(2n) .hub-product-page__sheet-td:not(.hub-product-page__sheet-td--client){background:#f8fafc}.hub-product-page__sheet-table tbody tr:hover .hub-product-page__sheet-td:not(.hub-product-page__sheet-td--total){background:#eef6f5}.hub-product-page__sheet-table tbody tr:hover .hub-product-page__sheet-td--client{background:#e8f4f2}.hub-product-page__sheet-table tbody tr:hover .hub-product-page__sheet-td--total{background:#e0f0ee}.hub-product-page__sheet-client{min-width:0}.hub-product-page__sheet-client-text{min-width:0;display:flex;flex-direction:column;gap:.1rem}.hub-product-page__sheet-col-head{display:flex;flex-direction:column;gap:.12rem;line-height:1.25}.hub-product-page__sheet-col-head-main{font-size:.8rem;font-weight:700;color:#1f2937}.hub-product-page__sheet-col-head-sub{font-size:.65rem;font-weight:600;letter-spacing:.03em;text-transform:uppercase;color:var(--tertiary-600)}.hub-product-page__sheet-client-name{display:block;font-weight:600;font-size:.8rem;color:#1f2937;line-height:1.35;word-break:break-word}.hub-product-page__sheet-client-meta{display:flex;flex-wrap:wrap;align-items:center;gap:.35rem;margin-top:.2rem}.hub-product-page__sheet-client-code{display:inline-block;padding:.1rem .4rem;border-radius:4px;background:#e8eef3;font-size:.68rem;font-weight:700;font-family:ui-monospace,monospace;color:#475569;letter-spacing:.02em}.hub-product-page__sheet-link{flex-shrink:0;font-size:.72rem;font-weight:600;color:var(--hub-prod-accent, #008174);text-decoration:underline;white-space:nowrap}.hub-product-page__sheet-link:hover{color:#006b60}.hub-product-page__sheet-qty,.hub-product-page__sheet-val{display:block;line-height:1.35}.hub-product-page__sheet-val{font-size:.74rem;color:var(--hub-prod-accent, #008174);font-weight:600}.hub-product-page__sheet-empty{color:#cbd5e1}.hub-product-page__sheet-th .hub-product-page__sheet-qty,.hub-product-page__sheet-th .hub-product-page__sheet-val{font-weight:600}.hub-product-page__info-panel{padding:0}.hub-product-page__info-layout{display:flex;flex-direction:column;gap:1rem}.hub-product-page__info-columns{display:grid;grid-template-columns:minmax(200px,300px) minmax(0,1fr);gap:.75rem;align-items:start}.hub-product-page__info-col-right{display:flex;flex-direction:column;gap:.75rem;min-width:0}.hub-product-page__info-block{background:#fff;border:none;border-radius:8px;overflow:hidden}.hub-product-page__info-block--cadastro{background:#f6f8fa;max-width:300px}.hub-product-page__info-head{display:flex;align-items:center;gap:.5rem;padding:.5rem .65rem;border-bottom:1px solid #eef2f6;background:#fff}.hub-product-page__info-block--cadastro .hub-product-page__info-head{background:#f4f7fa;padding:.45rem .6rem}.hub-product-page__info-head-icon{display:inline-flex;align-items:center;justify-content:center;width:1.65rem;height:1.65rem;flex-shrink:0;color:var(--hub-prod-accent, #008174)}.hub-product-page__info-head-svg{width:1.1rem;height:1.1rem}.hub-product-page__info-head-title{margin:0;font-size:.82rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--hub-prod-accent, #008174);line-height:1.3}.hub-product-page__info-head-title--plain{padding:.65rem .85rem .35rem;border-bottom:none}.hub-product-page__info-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:.5rem;padding:.55rem .65rem .65rem}.hub-product-page__info-card{display:flex;flex-direction:column;gap:.2rem;padding:.5rem .6rem;background:#f8fafc;border:none;border-radius:6px}.hub-product-page__info-card-label{font-size:.72rem;font-weight:700;letter-spacing:.03em;text-transform:uppercase;color:var(--hub-prod-accent, #008174);line-height:1.25}.hub-product-page__info-card-value{font-size:.88rem;font-weight:500;color:#1e293b;line-height:1.45;word-break:break-word}.hub-product-page__info-cadastro{margin:0;padding:0}.hub-product-page__info-cadastro-row{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);gap:.25rem .45rem;padding:.35rem .6rem;border-bottom:1px solid #eef2f6;font-size:.78rem;align-items:baseline}.hub-product-page__info-cadastro-row:last-child{border-bottom:none}.hub-product-page__info-cadastro-row dt{margin:0;font-weight:600;font-size:.72rem;color:#64748b;line-height:1.25}.hub-product-page__info-cadastro-row dd{margin:0;font-weight:500;font-size:.78rem;color:#0f172a;text-align:right;word-break:break-word;line-height:1.3}.hub-product-page__info-empty{margin:0;padding:1rem .85rem;font-size:.85rem;color:var(--tertiary-600)}.hub-product-page__info-block--about .hub-product-page__info-about{padding:.55rem .65rem .65rem;display:flex;flex-direction:column;gap:.5rem}.hub-product-page__info-about-item{padding:0;background:transparent;border:none;border-radius:0}.hub-product-page__info-about-title{margin:0 0 .45rem;font-size:.82rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase;color:var(--hub-prod-accent, #008174)}.hub-product-page__info-about-body{margin:0;font-size:.88rem;line-height:1.55;color:#334155;white-space:pre-wrap;word-break:break-word}.hub-product-page__info-block--related .hub-product-page__info-head{gap:.5rem}.hub-product-page__info-related-count{margin-left:auto;padding:.12rem .45rem;border-radius:999px;font-size:.68rem;font-weight:700;color:var(--hub-prod-accent, #008174);background:var(--hub-prod-accent-soft, rgba(0, 129, 116, .09))}.hub-product-page__info-related-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:.85rem;padding:.85rem 1rem 1rem}.hub-product-page__info-related-grid--scroll{display:flex;flex-wrap:nowrap;overflow-x:auto;gap:.85rem;padding:.85rem 1rem 1rem;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch}.hub-product-page__info-related-grid--scroll .hub-product-page__info-related-card{flex:0 0 200px;min-width:200px;max-width:220px;scroll-snap-align:start}.hub-product-page__info-related-card{display:flex;flex-direction:column;gap:.55rem;min-height:280px;padding:.75rem;border-radius:10px;background:#f8fafc;text-decoration:none;color:inherit;transition:background .15s ease,transform .15s ease,box-shadow .15s ease}.hub-product-page__info-related-card:hover{background:#eef6f4;transform:translateY(-2px);box-shadow:0 4px 12px #0081741f}.hub-product-page__info-related-img{display:flex;align-items:center;justify-content:center;flex:1 1 auto;min-height:150px;max-height:180px;border-radius:8px;background:#fff;overflow:hidden}.hub-product-page__info-related-img img{width:100%;height:100%;max-height:170px;object-fit:contain}.hub-product-page__info-related-body{display:flex;flex-direction:column;gap:.35rem;min-width:0;flex:0 0 auto}.hub-product-page__info-related-top{display:flex;align-items:center;justify-content:space-between;gap:.35rem;flex-wrap:wrap}.hub-product-page__info-related-code{font-size:.82rem;font-weight:700;color:var(--hub-prod-accent, #008174)}.hub-product-page__info-related-name{font-size:.88rem;font-weight:600;color:#1e293b;line-height:1.35;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;min-height:2.7em}.hub-product-page__info-related-type{align-self:flex-start;padding:.08rem .35rem;border-radius:4px;font-size:.62rem;font-weight:700;text-transform:uppercase;letter-spacing:.02em;color:#475569;background:#e2e8f0}.hub-product-page__info-related-type--combina-com,.hub-product-page__info-related-type--combina{color:#0d6e4f;background:#0081741f}.hub-product-page__info-related-type--similar{color:#1d4ed8;background:#2563eb1a}.hub-product-page__info-related-type--reposicao{color:#b45309;background:#f59e0b1f}.hub-product-page__info-related-price-wrap{display:flex;flex-direction:column;gap:.1rem;margin-top:.25rem;padding-top:.45rem;border-top:1px solid #e2e8f0}.hub-product-page__info-related-price-label{font-size:.68rem;font-weight:600;text-transform:uppercase;letter-spacing:.04em;color:#64748b}.hub-product-page__info-related-price{font-size:1.05rem;font-weight:800;color:var(--hub-prod-accent, #008174);line-height:1.2;font-variant-numeric:tabular-nums}.hub-product-page__info-block--extras{padding-bottom:.5rem}.hub-product-page__info-docs-wrap{padding:.55rem .65rem .75rem}.hub-product-page__info-docs-section-toggle{width:100%;display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.55rem 0;border:none;background:transparent;color:var(--hub-prod-accent, #006f67);font-size:.95rem;font-weight:700;text-transform:uppercase;letter-spacing:.02em;cursor:pointer}.hub-product-page__info-docs-accordions{display:flex;flex-direction:column;gap:.5rem;margin-top:.65rem}.hub-product-page__info-docs-accordion{border:1px solid #e2e8f0;border-radius:8px;overflow:hidden;background:#fff}.hub-product-page__info-docs-accordion-btn{width:100%;display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.85rem 1rem;border:none;background:linear-gradient(135deg,#f8fafc,#e9ecef);color:var(--hub-prod-accent, #006f67);font-size:.9rem;font-weight:600;text-align:left;cursor:pointer;transition:background .2s ease}.hub-product-page__info-docs-accordion-btn:hover{background:linear-gradient(135deg,#f1f5f9,#e2e8f0)}.hub-product-page__info-docs-accordion-btn-label{display:flex;align-items:center;gap:.45rem;flex:1;min-width:0}.hub-product-page__info-docs-count{font-size:.78rem;font-weight:500;color:#64748b}.hub-product-page__info-docs-chevron{width:1.1rem;height:1.1rem;flex-shrink:0;transition:transform .25s ease;color:var(--hub-prod-accent, #006f67)}.hub-product-page__info-docs-chevron--open{transform:rotate(180deg)}.hub-product-page__info-docs-accordion-panel{padding:0;background:#fff}.hub-product-page__info-docs-accordion-panel--open{padding:.5rem .75rem .75rem}.hub-product-page__info-docs-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column}.hub-product-page__info-docs-item{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.75rem .35rem;font-size:.88rem;color:#334155;border-bottom:1px solid #f0f0f0;word-break:break-word}.hub-product-page__info-docs-item:last-child{border-bottom:none}.hub-product-page__info-docs-name{flex:1;min-width:0;display:flex;align-items:flex-start;gap:.45rem;line-height:1.35}.hub-product-page__info-docs-pdf-icon{width:1.15rem;height:1.15rem;flex-shrink:0;color:#dc3545;margin-top:.1rem}.hub-product-page__info-docs-download{flex-shrink:0;display:inline-flex;align-items:center;gap:.4rem;padding:.5rem 1rem;font-size:.85rem;font-weight:600;color:#fff;text-decoration:none;background:var(--hub-prod-accent, #006f67);border-radius:6px;transition:background .2s ease}.hub-product-page__info-docs-download:hover{background:#008a7a}.hub-product-page__info-docs-dl-icon{width:1rem;height:1rem}@media (max-width: 640px){.hub-product-page__info-docs-item{flex-direction:column;align-items:flex-start}.hub-product-page__info-docs-download{width:100%;justify-content:center}}@media (max-width: 900px){.hub-product-page__info-columns{grid-template-columns:1fr}.hub-product-page__info-block--cadastro{max-width:none}}@media (max-width: 560px){.hub-product-page__info-cards,.hub-product-page__info-cadastro-row{grid-template-columns:1fr}.hub-product-page__info-cadastro-row dd{text-align:left}}.hub-product-page__doc-cat{margin-bottom:1rem}.hub-product-page__doc-cat h4{margin:0 0 .35rem;font-size:.9rem}.hub-product-page__doc-cat ul{margin:0;padding-left:1.25rem;font-size:.875rem}.hub-product-page__video-list{margin:0;padding-left:1.25rem;font-size:.9rem}.hub-product-page__video-list a{color:var(--hub-verde-forte);font-weight:600}@media (max-width: 640px){.hub-product-page__nav-rail{display:flex;flex-direction:column;gap:.5rem}.hub-product-page__nav{flex-direction:column;flex-wrap:nowrap;overflow:visible;padding:.65rem .7rem}.hub-product-page__nav-heading{display:block}.hub-product-page__resumo-grid{grid-template-columns:1fr}.hub-product-page__nav-tabs{flex-direction:row;flex-wrap:nowrap;overflow-x:auto;gap:.4rem;margin:0 -.15rem;padding:.1rem .15rem .05rem;-webkit-overflow-scrolling:touch}.hub-product-page__header-left{gap:.65rem}.hub-product-page__thumb{width:80px;height:80px;flex-basis:80px}.hub-product-page__head-text{width:100%}.hub-product-page__summary--compact .hub-product-page__summary-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.hub-product-page__workspace{display:grid;grid-template-columns:1fr}.hub-product-page__nav-rail{width:100%;min-width:0;max-width:none;flex:none}.hub-product-page__nav-item{flex:0 0 auto;min-width:11.5rem;max-width:16rem;padding:.55rem .65rem}.hub-product-page__nav-item-desc{display:none}.hub-product-page__panel-head{padding:.85rem .9rem}.hub-product-page__panel-body--active{padding:.85rem .9rem 1rem}.hub-product-page__sheet-toolbar{flex-direction:column;align-items:stretch}.hub-product-page__sheet-export{width:100%;justify-content:center}.hub-product-page__sheet-scroll{max-height:none}.hub-product-page__dl-row{grid-template-columns:1fr}.hub-product-page__bars{min-height:140px}.hub-product-page__bar-col{height:120px}.hub-product-page__sales-layout,.hub-product-page__sales-layout--with-sidebar{grid-template-columns:1fr}}@media (max-width: 980px){.hub-product-page__sales-layout,.hub-product-page__sales-layout--with-sidebar{grid-template-columns:1fr}}@keyframes hubFadeIn{0%{opacity:0}to{opacity:1}}@media (max-width: 1024px){.hub-cards{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width: 640px){.hub-cards{grid-template-columns:1fr}}.hub-psb__root{position:fixed;top:var(--hub-chrome-offset, var(--hub-nav-offset, 4.5rem));left:0;right:0;bottom:0;z-index:500;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .36s cubic-bezier(.22,1,.36,1),visibility .36s linear}.hub-psb__root--in{opacity:1;visibility:visible;pointer-events:auto}.hub-psb__backdrop{position:absolute;top:0;right:0;bottom:0;left:0;margin:0;padding:0;border:none;background:#0e302f6b;cursor:pointer;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);opacity:0;transition:opacity .34s ease}.hub-psb__root--in .hub-psb__backdrop{opacity:1}.hub-psb__inner{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;flex-direction:column;background:#fff;box-shadow:0 12px 40px #0000001f;opacity:0;transform:translateY(-28px) scale(.985);transform-origin:top center;will-change:transform,opacity;transition:transform .42s cubic-bezier(.22,1,.36,1),opacity .34s ease}.hub-psb__root--in .hub-psb__inner{opacity:1;transform:translateY(0) scale(1)}.hub-psb__toolbar{flex-shrink:0;display:flex;flex-wrap:wrap;align-items:center;gap:.5rem .75rem;padding:.65rem 1.25rem .5rem;border-bottom:1px solid rgba(17,149,49,.12);background:#ffffffe0;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.hub-psb__toolbar-left{display:flex;flex:1 1 auto;align-items:center;gap:.75rem;min-width:0}.hub-psb__title{margin:0;flex:0 0 auto;font-size:.95rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28);letter-spacing:-.02em}.hub-psb__toolbar-mid{flex:1 1 16rem;display:flex;gap:.45rem;min-width:0;max-width:36rem}.hub-psb__toolbar-right{flex:0 0 auto;display:flex;align-items:center;gap:.35rem;margin-left:auto}.hub-psb__toolbar-link{flex-shrink:0;padding:.4rem .75rem;font-size:.78rem;font-weight:700;line-height:1.2;text-decoration:none;white-space:nowrap;color:var(--secondary-700, #1c5f5e);border:1px solid rgba(35,119,118,.35);border-radius:8px;background:#2377760f}.hub-psb__toolbar-link:hover{background:#2377761f}.hub-psb--clients .hub-csb__toolbar,.hub-psb--products .hub-csb__toolbar{padding:.7rem 1.25rem .75rem}.hub-csb__toolbar-row{display:flex;align-items:center;gap:.5rem;width:100%;min-width:0}.hub-csb__search-input{flex:1 1 auto;min-width:8rem;min-height:2.7rem;padding:.6rem 1rem;font-size:.96rem;border-width:1.5px;box-shadow:0 1px 4px #0f172a0d}.hub-csb__toolbar-actions{display:flex;flex:0 0 auto;flex-wrap:nowrap;align-items:center;gap:.45rem}.hub-csb__close{flex:0 0 auto;margin-left:.15rem}.hub-csb__action{display:inline-flex;align-items:center;justify-content:center;gap:.35rem;min-height:2.45rem;padding:.55rem 1.15rem;border-radius:10px;font-family:inherit;font-size:.86rem;font-weight:700;line-height:1.2;text-decoration:none;white-space:nowrap;cursor:pointer;transition:background .15s ease,border-color .15s ease,box-shadow .15s ease,transform .12s ease}.hub-csb__action:hover{transform:translateY(-1px)}.hub-csb__action:active{transform:translateY(0)}.hub-csb__action--primary{color:#fff;border:none;background:linear-gradient(180deg,var(--hub-verde-vivo, #60b937) 0%,var(--hub-verde-forte, #119531) 55%,var(--hub-verde-escuro, #0d7a28) 100%);box-shadow:0 3px 12px #11953159}.hub-csb__action--primary:hover{box-shadow:0 5px 16px #1195316b}.hub-csb__action--filter{color:var(--hub-verde-escuro, #0d7a28);border:2px solid rgba(17,149,49,.45);background:#fff;box-shadow:0 2px 8px #0f172a0f}.hub-csb__action--filter-on,.hub-csb__action--filter-active{background:#f0fdf4;border-color:var(--hub-verde-forte, #119531);box-shadow:0 2px 10px #1195312e}.hub-csb__action--cadastro{color:#fff;border:2px solid var(--hub-verde-escuro, #0d7a28);background:linear-gradient(180deg,#0d7a28,#096622);box-shadow:0 3px 12px #09662252}.hub-csb__action--cadastro:hover{box-shadow:0 5px 16px #09662261}.hub-csb__action-badge{display:inline-flex;align-items:center;justify-content:center;min-width:1.15rem;height:1.15rem;padding:0 .32rem;font-size:.68rem;font-weight:800;line-height:1;color:#fff;background:var(--hub-verde-forte, #119531);border-radius:999px}.hub-csb__action--filter-active .hub-csb__action-badge{background:var(--hub-verde-escuro, #0d7a28)}.hub-csb-filtros-applied{display:flex;justify-content:center;padding:.5rem 1.25rem .65rem;background:linear-gradient(180deg,#f8fcf6,#fff);border-bottom:1px solid rgba(17,149,49,.12);flex-shrink:0}.hub-csb-filtros-applied__row{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:.4rem .55rem;max-width:100%}.hub-csb-filtros-applied__label{font-size:.76rem;font-weight:700;color:#0f172a94;white-space:nowrap}.hub-csb-filtros-applied__tag{font-size:.74rem;font-weight:700;line-height:1.25;padding:.22rem .58rem;border-radius:999px;background:#11953117;color:var(--hub-verde-escuro, #0d7a28);border:1px solid rgba(17,149,49,.24)}.hub-csb-filtros-applied__clear{flex:0 0 auto;align-self:center;padding:.38rem .85rem;font-size:.78rem;font-weight:800;font-family:inherit;line-height:1.2;white-space:nowrap;color:var(--hub-verde-forte, #119531);background:#fff;border:1px solid rgba(17,149,49,.38);border-radius:10px;cursor:pointer;transition:background .15s ease,border-color .15s ease}.hub-csb-filtros-applied__clear:hover{background:#f0fdf4;border-color:#1195318c}.hub-csb-filtros{flex-shrink:0;padding:1rem 1.25rem 1.15rem;background:linear-gradient(180deg,#f4faf2,#fff);border-bottom:1px solid rgba(17,149,49,.14)}.hub-csb-filtros__inner{width:100%;max-width:52rem;margin:0 auto}.hub-csb-filtros__body{display:flex;align-items:center;gap:1.25rem}.hub-csb-filtros__main{flex:1 1 auto;min-width:0}.hub-csb-filtros__aside{flex:0 0 auto;display:flex;align-items:center;justify-content:center;align-self:stretch;padding:.25rem 0 .25rem .5rem}.hub-csb-filtros__loading{display:block;margin-bottom:.55rem;font-size:.72rem;color:#0f172a80}.hub-csb-filtros__clear{min-height:3.35rem;min-width:9.5rem;padding:.85rem 1.5rem;font-size:.98rem;font-weight:800;font-family:inherit;line-height:1.2;text-align:center;color:var(--hub-verde-forte, #119531);background:#fff;border:2px solid rgba(17,149,49,.42);border-radius:12px;box-shadow:0 2px 8px #1195311f;cursor:pointer;transition:background .15s ease,border-color .15s ease,box-shadow .15s ease}.hub-csb-filtros__clear:hover:not(:disabled){background:#f0fdf4;border-color:#11953199;box-shadow:0 3px 12px #1195312e}.hub-csb-filtros__clear:disabled{opacity:.42;cursor:not-allowed;box-shadow:none}.hub-csb-filtros__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.85rem 1rem;justify-items:stretch}.hub-psb--products .hub-csb-filtros__inner{max-width:78rem}.hub-psb--products .hub-csb-filtros__grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:1rem 1.2rem}.hub-psb--products .hub-csb-filtros__input,.hub-psb--products .hub-csb-filtros__select{min-height:2.55rem;padding:.5rem .75rem;font-size:.9rem}.hub-psb--products .hub-csb-filtros__seg-btn{min-height:2.25rem;padding:.42rem .55rem;font-size:.82rem}.hub-psb--products .hub-csb-filtros__field--filial{grid-column:span 1}.hub-csb-filtros__field{display:flex;flex-direction:column;align-items:center;gap:.35rem;min-width:0;text-align:center}.hub-csb-filtros__field--seg{grid-column:span 1}.hub-csb-filtros__label{width:100%;font-size:.7rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#0f28169e}.hub-csb-filtros__input,.hub-csb-filtros__select{width:100%;min-height:2.35rem;padding:.45rem .65rem;font-family:inherit;font-size:.84rem;color:#0f172a;border:1.5px solid rgba(17,149,49,.28);border-radius:10px;background:#fff;box-shadow:0 1px 3px #0f172a0a}.hub-csb-filtros__select-wrap{position:relative;width:100%}.hub-csb-filtros__select-wrap:after{content:"";position:absolute;top:50%;right:.65rem;width:.45rem;height:.45rem;border-right:2px solid rgba(15,40,22,.45);border-bottom:2px solid rgba(15,40,22,.45);transform:translateY(-65%) rotate(45deg);pointer-events:none}.hub-csb-filtros__select{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding-right:1.75rem;cursor:pointer}.hub-csb-filtros__select:disabled{opacity:.55;cursor:not-allowed}.hub-csb-filtros__input:focus,.hub-csb-filtros__select:focus{outline:none;border-color:var(--hub-verde-forte, #119531);box-shadow:0 0 0 3px #11953124}.hub-csb-filtros__seg{display:flex;width:100%;padding:.2rem;border:1.5px solid rgba(17,149,49,.22);border-radius:10px;background:#fff;gap:.2rem}.hub-csb-filtros__seg-btn{flex:1 1 0;min-height:2rem;padding:.35rem .4rem;border:none;border-radius:7px;background:transparent;font-family:inherit;font-size:.76rem;font-weight:600;color:#0f28169e;cursor:pointer}.hub-csb-filtros__seg-btn--on{color:#fff;background:linear-gradient(180deg,var(--hub-verde-medio, #4a9f2a) 0%,var(--hub-verde-forte, #119531) 100%);box-shadow:0 1px 4px #11953140}.hub-csb-filtros__seg--2 .hub-csb-filtros__seg-btn{flex:1}.hub-csb-filtros__field--filial{grid-column:1 / -1}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__filial-dd{width:100%}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__combo-btn--filtro{display:flex;align-items:center;justify-content:space-between;width:100%;min-height:2.55rem;padding:.5rem 1.75rem .5rem .75rem;font-size:.9rem;font-family:inherit;font-weight:400;line-height:1.25;text-align:left;color:#0f172a;background:#fff;border:1.5px solid rgba(17,149,49,.28);border-radius:10px;box-shadow:0 1px 3px #0f172a0a;cursor:pointer;transition:border-color .12s ease,box-shadow .12s ease}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__combo-btn--filtro:hover{border-color:#11953159;background:#fff}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__combo-btn--filtro:focus{outline:none;border-color:var(--hub-verde-forte, #119531);box-shadow:0 0 0 3px #11953124}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__combo-chevron{display:none}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__filial-dd-panel{left:auto;right:0;width:max(100%,28rem);min-width:28rem;max-width:min(34rem,calc(100vw - 2.5rem));max-height:min(22rem,52vh);padding:.65rem .75rem}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__chk{align-items:center;min-height:2.35rem;padding:.45rem .55rem;font-size:.88rem;line-height:1.3}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__chk input{width:1rem;height:1rem;flex-shrink:0}.hub-psb--products .hub-csb-filtros__field--filial .hub-psb__chk--todas{font-weight:600;margin-bottom:.25rem}@media (max-width: 1200px){.hub-psb--products .hub-csb-filtros__grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (max-width: 900px){.hub-csb-filtros__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.hub-psb--products .hub-csb-filtros__inner{max-width:none}}@media (max-width: 900px){.hub-csb__toolbar-row{flex-wrap:wrap}.hub-csb__search-input{flex:1 1 calc(100% - 2.6rem);min-width:0}.hub-csb__close{margin-left:0}.hub-csb__toolbar-actions{flex:1 1 100%;flex-wrap:wrap;justify-content:flex-start}}@media (max-width: 560px){.hub-csb-filtros__body{flex-direction:column;align-items:stretch}.hub-csb-filtros__aside{align-self:stretch;padding:.65rem 0 0}.hub-csb-filtros__clear{width:100%;min-width:0}.hub-csb-filtros__grid{grid-template-columns:1fr}.hub-csb__action{min-height:2.35rem;padding:.45rem .8rem;font-size:.8rem}.hub-csb__action--cadastro{flex:1 1 auto}}.hub-psb__input{flex:1 1 auto;min-width:0;padding:.45rem .65rem;font-size:.88rem;border:1px solid rgba(17,149,49,.25);border-radius:10px}.hub-psb__btn{flex-shrink:0;padding:.45rem .85rem;font-size:.82rem;font-weight:700;color:#fff;border:none;border-radius:10px;cursor:pointer;background:linear-gradient(180deg,var(--hub-verde-medio, #4a9f2a) 0%,var(--hub-verde-forte, #119531) 100%)}.hub-psb__chip{padding:.35rem .6rem;font-size:.78rem;font-weight:600;border:1px solid rgba(96,185,55,.45);border-radius:8px;background:#fff;color:var(--hub-verde-forte, #119531);cursor:pointer}.hub-psb__chip--on{background:#f0fdf4;border-color:var(--hub-verde-forte, #119531);color:var(--hub-verde-escuro, #0d7a28)}.hub-psb__chip--active{border-color:var(--hub-verde-forte, #119531)}.hub-psb__chip-badge{display:inline-flex;align-items:center;justify-content:center;min-width:1.1rem;height:1.1rem;margin-left:.35rem;padding:0 .3rem;font-size:.65rem;font-weight:800;line-height:1;color:#fff;background:var(--hub-verde-forte, #119531);border-radius:999px}.hub-psb__close{width:2rem;height:2rem;border:none;border-radius:8px;background:#f8fafc;color:var(--hub-verde-forte, #119531);font-size:1.25rem;line-height:1;cursor:pointer}.hub-psb__close:hover{background:#f1f5f9}.hub-psb__filtros{flex-shrink:0;padding:.45rem 1.25rem .55rem;background:#f8faf8;border-bottom:1px solid rgba(17,149,49,.1)}.hub-psb__filtros-toolbar{display:flex;align-items:center;justify-content:flex-end;gap:.65rem;min-height:1.25rem;margin-bottom:.4rem}.hub-psb__filtros-loading{margin-right:auto;font-size:.7rem;color:#0f172a80}.hub-psb__filtros-clear{padding:0;font-size:.72rem;font-weight:600;font-family:inherit;color:var(--hub-verde-forte, #119531);background:none;border:none;cursor:pointer;text-decoration:underline;text-underline-offset:2px}.hub-psb__filtros-clear:hover{color:var(--hub-verde-escuro, #0d7a28)}.hub-psb__filtros-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(132px,1fr));gap:.4rem .55rem;align-items:end}.hub-psb__filtro{display:flex;flex-direction:column;gap:.2rem;min-width:0}.hub-psb__filtro--filial{grid-column:span 2;position:relative}.hub-psb__filtro-label{font-size:.62rem;font-weight:600;text-transform:uppercase;letter-spacing:.04em;color:#0f172a80;line-height:1.2}.hub-psb__seg{display:flex;gap:2px;padding:2px;background:#eef2f6;border-radius:7px}.hub-psb__seg--2 .hub-psb__seg-btn{flex:1}.hub-psb__seg-btn{flex:1;min-width:0;padding:.22rem .28rem;font-size:.68rem;font-weight:600;font-family:inherit;color:#64748b;background:transparent;border:none;border-radius:5px;cursor:pointer;transition:background .12s ease,color .12s ease;white-space:nowrap}.hub-psb__seg-btn:hover:not(.hub-psb__seg-btn--on){color:#334155}.hub-psb__seg-btn--on{color:var(--hub-verde-forte, #119531);background:#fff;box-shadow:0 1px 2px #0f172a14}.hub-psb__select-wrap{position:relative}.hub-psb__select-wrap:after{content:"";position:absolute;top:50%;right:.65rem;width:.4rem;height:.4rem;border-right:2px solid #64748b;border-bottom:2px solid #64748b;transform:translateY(-70%) rotate(45deg);pointer-events:none}.hub-psb__select{width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:.28rem 1.5rem .28rem .45rem;font-size:.75rem;font-family:inherit;color:#0f172a;background:#fff;border:1px solid rgba(17,149,49,.2);border-radius:7px;cursor:pointer;transition:border-color .12s ease}.hub-psb__select:hover:not(:disabled){border-color:#11953159;background:#fff}.hub-psb__select:focus{outline:none;border-color:var(--hub-verde-forte, #119531);box-shadow:0 0 0 3px #1195311f;background:#fff}.hub-psb__select:disabled{opacity:.55;cursor:not-allowed}.hub-psb__combo-btn{display:flex;align-items:center;justify-content:space-between;gap:.35rem;width:100%;padding:.28rem .45rem;font-size:.75rem;font-family:inherit;text-align:left;color:#0f172a;background:#fff;border:1px solid rgba(17,149,49,.2);border-radius:7px;cursor:pointer;transition:border-color .12s ease}.hub-psb__combo-btn:hover{border-color:#11953159;background:#fff}.hub-psb__combo-btn-text{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hub-psb__combo-chevron{flex-shrink:0;width:.45rem;height:.45rem;border-right:2px solid #64748b;border-bottom:2px solid #64748b;transform:rotate(45deg) translateY(-2px)}.hub-psb__filial-dd{position:relative}.hub-psb__filial-dd-panel{position:absolute;z-index:12;top:calc(100% + 4px);left:0;right:0;min-width:14rem;padding:.5rem;max-height:220px;overflow-y:auto;background:#fff;border:1px solid rgba(17,149,49,.18);border-radius:10px;box-shadow:0 4px 6px #0f172a0a,0 12px 28px #0f172a1f}.hub-psb__filial-list{display:flex;flex-direction:column;gap:.15rem;margin-top:.35rem;padding-top:.35rem;border-top:1px solid rgba(15,23,42,.06)}.hub-psb__filial-hint{display:block;padding:.35rem .25rem;font-size:.72rem;line-height:1.35;color:#0f172a80}.hub-psb__chk{display:flex;align-items:flex-start;gap:.45rem;padding:.32rem .35rem;font-size:.78rem;line-height:1.3;color:#334155;border-radius:7px;cursor:pointer;transition:background .12s ease}.hub-psb__chk:hover{background:#f8fafc}.hub-psb__chk input{flex-shrink:0;margin-top:.15rem;accent-color:var(--hub-verde-forte, #119531)}.hub-psb__chk--todas{font-weight:600;color:var(--hub-verde-escuro, #0d7a28)}.hub-psb__main{flex:1 1 auto;min-height:0;display:flex;flex-direction:column;padding:0 1.25rem 1rem}.hub-psb__scroll{flex:1 1 auto;min-height:0;overflow-y:auto;overflow-x:hidden;padding:.5rem 0 .75rem;scroll-behavior:smooth}.hub-psb__state{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem;padding:2rem 1rem;color:var(--tertiary-600, #6b7280);font-size:.88rem}.hub-psb__state--loading{min-height:120px}.hub-psb__err{font-size:.82rem;color:#b45309;margin:0 0 .5rem}.hub-psb__link{background:none;border:none;padding:0;color:var(--hub-verde-forte, #119531);text-decoration:underline;cursor:pointer;font:inherit}.hub-psb__empty{text-align:center;padding:2rem 1rem;color:var(--tertiary-600, #6b7280);font-size:.88rem}.hub-psb__grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1rem;align-items:start}.hub-psb__item-wrap,.hub-psb--clients .hub-psb__item-wrap{display:contents}.hub-psb--clients .hub-psb__card{display:flex;flex-direction:column}.hub-psb--clients .hub-psb__card-hit{flex:1 1 auto;height:auto}.hub-psb__card{border-radius:16px;border:1px solid rgba(15,23,42,.1);background:#fff;overflow:hidden;height:100%;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease,background .2s ease}.hub-psb__card:hover{transform:translateY(-3px);border-color:#4a9f2a73;box-shadow:0 12px 24px #1128141f}.hub-psb__card--selected{border-color:#1195318c;box-shadow:0 0 0 2px #11953133,0 14px 30px #11281429;transform:translateY(-2px)}.hub-psb__card-hit{display:flex;flex-direction:column;width:100%;height:100%;padding:0;border:none;background:transparent;cursor:pointer;text-align:left;font:inherit}.hub-psb__card-img-wrap{aspect-ratio:4 / 3;min-height:150px;background:#f8fafc;display:flex;align-items:center;justify-content:center;padding:.85rem}.hub-psb__card-img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain}.hub-psb__card-body{flex:1 1 auto;min-height:5.2rem;padding:.7rem .85rem .75rem;display:flex;flex-direction:column;gap:.25rem}.hub-psb__card-code{font-size:.78rem;font-weight:800;color:var(--hub-verde-forte, #119531);letter-spacing:.02em}.hub-psb__status-label--ativo{color:#119531}.hub-psb__status-label--inativo{color:#b91c1c}.hub-psb__card-name{margin:0;font-size:.92rem;font-weight:600;line-height:1.34;color:var(--tertiary-900, #111827);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:2.68em}.hub-psb__card-inativo{font-size:.7rem;font-weight:700;color:#9a3412}.hub-psb__card-tag{font-size:.66rem;font-weight:700;padding:.16rem .42rem;border-radius:6px;background:#dbeafe;color:#1e40af;width:fit-content}.hub-psb__card-preco{font-size:.95rem;font-weight:700;color:var(--hub-verde-escuro, #0d7a28)}.hub-psb__card-stock{font-size:.78rem;color:var(--tertiary-600, #6b7280)}.hub-psb__card-hint{margin-top:auto;padding-top:.4rem;font-size:.74rem;font-weight:700;color:var(--hub-verde-medio, #4a9f2a);text-transform:uppercase;letter-spacing:.04em}.hub-psb__detail-inline{grid-column:1 / -1;overflow:hidden;max-height:0;opacity:0;transform:translateY(-6px);transition:max-height .28s ease,opacity .22s ease,transform .22s ease}.hub-psb__detail-inline--open{max-height:12000px;opacity:1;transform:translateY(0)}.hub-psb__detail-inline-inner{margin-top:.2rem;padding:.9rem;border-radius:16px;border:none;background:#f3f4f6}@keyframes hub-psb-expand-in{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.hub-csb__card-img-wrap{background:#f8fafc;position:relative;overflow:hidden}.hub-csb__avatar{width:5rem;height:5rem;border-radius:1.25rem;display:inline-flex;align-items:center;justify-content:center;font-size:1.6rem;font-weight:800;letter-spacing:.03em;color:var(--hub-verde-escuro, #0d7a28);background:#fff;border:1px solid rgba(74,159,42,.3);box-shadow:0 8px 20px #1128141a}.hub-csb__photo{position:absolute;top:0;right:0;bottom:0;left:0;width:calc(100% - 1.7rem);height:calc(100% - 1.7rem);margin:auto;object-fit:cover;border-radius:12px;border:1px solid rgba(74,159,42,.25);box-shadow:0 8px 20px #1128141f;z-index:2}.hub-csb__photo--skeleton{background:linear-gradient(120deg,#e8eee4,#f4f8f0,#e8eee4 90%);background-size:200% 100%;animation:hub-csb-shimmer 1.1s ease-in-out infinite}@keyframes hub-csb-shimmer{0%{background-position:100% 0}to{background-position:-100% 0}}.hub-csb__photo-overlay{position:absolute;left:.85rem;right:.85rem;bottom:.65rem;z-index:4;padding:.45rem .55rem;border-radius:10px;background:linear-gradient(180deg,transparent 0%,rgba(15,40,22,.78) 100%);pointer-events:none}.hub-csb__photo-title{font-size:.78rem;font-weight:800;line-height:1.25;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.45);max-height:2.6em;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.hub-csb__photo-title--only{position:relative;z-index:2;color:var(--hub-verde-escuro, #0d7a28);text-shadow:none;max-width:100%}.hub-csb__photo-fallback{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;padding:.75rem;text-align:center;z-index:2}.hub-csb__photo-missing{font-size:.72rem;font-weight:700;color:#0f28168c}.hub-csb__avatar--fallback{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;opacity:1;z-index:1}.hub-csb__detail-header-img{position:relative;overflow:hidden;background:#f8fafc}.hub-csb__detail-header-img .hub-csb__header-photo{width:100%;height:100%;object-fit:cover;display:block;border-radius:0;border:none;margin:0;box-shadow:none;position:absolute;top:0;right:0;bottom:0;left:0}.hub-csb__detail-header-img .hub-csb__header-photo--skeleton{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;border-radius:0;border:none;margin:0}.hub-csb__avatar--detail{width:100%;height:100%;border-radius:0;font-size:2rem}.hub-csb__detail-razao{margin:.35rem 0 0;font-size:.82rem;font-weight:600;color:#0f2816a6;line-height:1.35}.hub-csb__detail-map{width:100%;height:100%;min-height:260px;border:0;border-radius:12px;display:block}.hub-csb__detail-body{gap:1rem}.hub-csb__detail-header--compact{padding:1rem 1.25rem;gap:0}.hub-csb__detail-header-info--compact{flex-direction:row;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:.85rem 1.25rem;width:100%}.hub-csb__detail-header-primary{flex:1 1 280px;min-width:0}.hub-csb__detail-header-top--compact{grid-template-columns:1fr auto;gap:1rem 1.25rem;align-items:start}.hub-csb__detail-header--compact .hub-psb__detail-title{margin-bottom:.25rem;font-size:1.35rem}.hub-csb__detail-header--compact .hub-csb__detail-razao{margin-top:.15rem}.hub-csb__detail-meta{display:flex;flex-wrap:wrap;gap:.35rem 1rem;margin-top:.5rem}.hub-csb__detail-meta-item{font-size:.82rem;font-weight:600;color:var(--tertiary-600, #475569);line-height:1.35}.hub-csb__detail-meta-link{color:var(--hub-verde-escuro, #0d7a28);text-decoration:none}.hub-csb__detail-meta-link:hover{text-decoration:underline}.hub-csb__detail-header--compact .hub-psb__detail-header-actions{flex:0 0 auto;align-self:center;margin-left:auto}.hub-csb__detail-tab-panel--overview{padding:1rem 1.15rem 1.15rem}.hub-csb__detail-overview-layout{display:grid;grid-template-columns:minmax(240px,38%) minmax(0,1fr);gap:1rem 1.25rem;align-items:stretch}.hub-csb__detail-overview-layout--no-map{grid-template-columns:1fr}.hub-csb__detail-map-col{display:flex;flex-direction:column;gap:.5rem;min-height:0}.hub-csb__detail-map-col .hub-psb__detail-section-title{margin:0}.hub-csb__detail-map-col .hub-csb__detail-map{flex:1 1 auto}.hub-csb__detail-specs-col{min-width:0}.hub-csb__detail-overview-specs{grid-template-columns:repeat(2,minmax(0,1fr));gap:.85rem}.hub-csb__detail-overview-specs .hub-psb__detail-spec-card{padding:.85rem 1rem}.hub-csb__detail-comercial-specs{grid-template-columns:repeat(2,minmax(0,1fr));gap:.85rem}.hub-csb__detail-tab-panel--comercial{padding:1rem 1.15rem 1.15rem}@media (min-width: 1100px){.hub-csb__detail-comercial-specs{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width: 900px){.hub-csb__detail-overview-layout{grid-template-columns:1fr}.hub-csb__detail-map-col .hub-csb__detail-map{min-height:220px}.hub-csb__detail-header-info--compact{flex-direction:column}.hub-csb__detail-header--compact .hub-psb__detail-header-actions{width:100%;margin-left:0;justify-content:flex-start}.hub-csb__detail-header-top--compact{grid-template-columns:1fr}}@media (max-width: 640px){.hub-csb__detail-overview-specs,.hub-csb__detail-comercial-specs{grid-template-columns:1fr}}.hub-main.hub-cp{--hub-cp-tabs-h: 3.05rem;max-width:none;width:100%;padding:.85rem .75rem .65rem;background:#fff}.hub-main.hub-cp:has(.hub-cp__tab-panel:not([hidden]) .hub-tl){display:flex;flex-direction:column;flex:1 1 auto;min-height:0;max-height:calc(100dvh - var(--hub-chrome-offset, 0px) - var(--hub-footer-h, 2.75rem));overflow:hidden;padding-bottom:.5rem}.hub-main.hub-cp:has(.hub-cp__tab-panel:not([hidden]) .hub-tl) .hub-cp__shell,.hub-main.hub-cp:has(.hub-cp__tab-panel:not([hidden]) .hub-tl) .hub-cp__main,.hub-main.hub-cp:has(.hub-cp__tab-panel:not([hidden]) .hub-tl) .hub-cp__panel-body,.hub-main.hub-cp:has(.hub-cp__tab-panel:not([hidden]) .hub-tl) .hub-cp__tab-panel:not([hidden]),.hub-main.hub-cp:has(.hub-cp__tab-panel:not([hidden]) .hub-tl) .hub-cp__panel{display:flex;flex-direction:column;flex:1 1 auto;min-height:0}.hub-main.hub-cp:has(.hub-cp__tab-panel:not([hidden]) .hub-tl) .hub-cp__panel-body{padding:.5rem .75rem 0}.hub-main.hub-cp:has(.hub-cp__tab-panel:not([hidden]) .hub-tl) .hub-tl{flex:1 1 auto;min-height:0}.hub-cp__shell{width:100%;margin:0;padding:0;box-sizing:border-box}.hub-cp__shell--narrow{padding-top:1rem}.hub-cp__tabs-rail{position:sticky;top:var(--hub-chrome-offset, 0);z-index:45;flex-shrink:0;height:var(--hub-cp-tabs-h);min-height:var(--hub-cp-tabs-h);max-height:var(--hub-cp-tabs-h);padding:0 .75rem;background:#fff;border-bottom:1px solid rgba(74,159,42,.22);box-shadow:0 4px 10px #0f28160f;box-sizing:border-box;overflow:hidden}.hub-cp__tabs{display:flex;flex-wrap:nowrap;align-items:center;justify-content:center;gap:0;width:100%;height:var(--hub-cp-tabs-h);min-height:var(--hub-cp-tabs-h);max-height:var(--hub-cp-tabs-h);flex-shrink:0;margin:0;padding:0;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none;border-bottom:none;background:transparent;box-shadow:none}.hub-cp__tabs::-webkit-scrollbar{display:none;width:0;height:0}.hub-cp__tab{display:inline-flex;align-items:center;justify-content:center;gap:.4rem;flex:0 0 auto;flex-shrink:0;height:var(--hub-cp-tabs-h);min-height:var(--hub-cp-tabs-h);max-height:var(--hub-cp-tabs-h);padding:0 .9rem;border:none;border-radius:0;background:transparent;font-family:inherit;font-size:.86rem;font-weight:600;line-height:1.2;color:#0f172a;cursor:pointer;white-space:nowrap;border-bottom:2px solid transparent;box-sizing:border-box;transition:color .12s ease,border-color .12s ease}.hub-cp__tab-ico{width:1.05rem;height:1.05rem;flex-shrink:0;opacity:.75;color:currentColor}.hub-cp__tab-label{line-height:1.2;color:currentColor}.hub-cp__tab:hover{color:var(--hub-cp-tab-active-color, var(--hub-verde-escuro, #0d7a28));background:linear-gradient(180deg,var(--hub-cp-tab-bg, transparent) 0%,rgba(255,255,255,0) 100%)}.hub-cp__tab:focus-visible{outline:2px solid var(--hub-verde-vivo, #119531);outline-offset:-2px}.hub-cp__tab--active{color:var(--hub-cp-tab-active-color, var(--hub-verde-escuro, #0d7a28));border-bottom-color:var(--hub-cp-tab-border-color, var(--hub-verde-vivo, #119531));background:linear-gradient(180deg,var(--hub-cp-tab-bg, transparent) 0%,rgba(255,255,255,0) 100%)}.hub-cp__tab--active .hub-cp__tab-ico{opacity:1;color:var(--hub-cp-tab-active-color, var(--hub-verde-vivo, #119531))}.hub-cp__tab:hover .hub-cp__tab-ico{opacity:1}.hub-cp__tab--tone-info{--hub-cp-tab-bg: #d9eaf2;--hub-cp-tab-color: #0072aa;--hub-cp-tab-active-color: #0072aa;--hub-cp-tab-border-color: #0072aa}.hub-cp__tab--tone-info:hover,.hub-cp__tab--tone-info.hub-cp__tab--active{color:#0072aa;border-bottom-color:#0072aa}.hub-cp__tab--tone-info.hub-cp__tab--active .hub-cp__tab-ico{color:#0072aa}.hub-cp__tab--tone-ops:hover,.hub-cp__tab--tone-ops.hub-cp__tab--active{color:#6d4a2a;border-bottom-color:#6d4a2a}.hub-cp__tab--tone-ops{--hub-cp-tab-bg: #e9e4df;--hub-cp-tab-color: #6d4a2a;--hub-cp-tab-active-color: #6d4a2a;--hub-cp-tab-border-color: #6d4a2a}.hub-cp__tab--tone-ops.hub-cp__tab--active .hub-cp__tab-ico{color:#6d4a2a}.hub-cp__tab--tone-quote{--hub-cp-tab-bg: #ede0e7;--hub-cp-tab-color: #7c1e57;--hub-cp-tab-active-color: #7c1e57;--hub-cp-tab-border-color: #7c1e57}.hub-cp__tab--tone-quote:hover,.hub-cp__tab--tone-quote.hub-cp__tab--active{color:#7c1e57;border-bottom-color:#7c1e57}.hub-cp__tab--tone-quote.hub-cp__tab--active .hub-cp__tab-ico{color:#7c1e57}.hub-cp__tab--tone-order{--hub-cp-tab-bg: #feefef;--hub-cp-tab-color: #a12b39;--hub-cp-tab-active-color: #a12b39;--hub-cp-tab-border-color: #a12b39}.hub-cp__tab--tone-order:hover,.hub-cp__tab--tone-order.hub-cp__tab--active{color:#a12b39;border-bottom-color:#a12b39}.hub-cp__tab--tone-order.hub-cp__tab--active .hub-cp__tab-ico{color:#a12b39}.hub-cp__tab--tone-finance{--hub-cp-tab-bg: #fef2e1;--hub-cp-tab-color: #faa933;--hub-cp-tab-active-color: #b76f00;--hub-cp-tab-border-color: #faa933}.hub-cp__tab--tone-finance:hover,.hub-cp__tab--tone-finance.hub-cp__tab--active{color:#b76f00;border-bottom-color:#faa933}.hub-cp__tab--tone-finance.hub-cp__tab--active .hub-cp__tab-ico{color:#b76f00}.hub-cp__tab--tone-catalog{--hub-cp-tab-bg: #e2f1e3;--hub-cp-tab-color: #3a9e41;--hub-cp-tab-active-color: #3a9e41;--hub-cp-tab-border-color: #3a9e41}.hub-cp__tab--tone-catalog:hover,.hub-cp__tab--tone-catalog.hub-cp__tab--active{color:#3a9e41;border-bottom-color:#3a9e41}.hub-cp__tab--tone-catalog.hub-cp__tab--active .hub-cp__tab-ico{color:#3a9e41}.hub-cp__tab--tone-asset{--hub-cp-tab-bg: #dff3f4;--hub-cp-tab-color: #25b0b3;--hub-cp-tab-active-color: #158486;--hub-cp-tab-border-color: #25b0b3}.hub-cp__tab--tone-asset:hover,.hub-cp__tab--tone-asset.hub-cp__tab--active{color:#158486;border-bottom-color:#25b0b3}.hub-cp__tab--tone-asset.hub-cp__tab--active .hub-cp__tab-ico{color:#158486}.hub-cp__tab--tone-contacts{--hub-cp-tab-bg: #e1eaeb;--hub-cp-tab-color: #487569;--hub-cp-tab-active-color: #487569;--hub-cp-tab-border-color: #487569}.hub-cp__tab--tone-contacts:hover,.hub-cp__tab--tone-contacts.hub-cp__tab--active{color:#487569;border-bottom-color:#487569}.hub-cp__tab--tone-contacts.hub-cp__tab--active .hub-cp__tab-ico{color:#487569}.hub-cp__tab--tone-sales{--hub-cp-tab-bg: #e7e7e7;--hub-cp-tab-color: #5d5d5d;--hub-cp-tab-active-color: #5d5d5d;--hub-cp-tab-border-color: #5d5d5d}.hub-cp__tab--tone-sales:hover,.hub-cp__tab--tone-sales.hub-cp__tab--active{color:#5d5d5d;border-bottom-color:#5d5d5d}.hub-cp__tab--tone-sales.hub-cp__tab--active .hub-cp__tab-ico{color:#5d5d5d}.hub-cp__tab--tone-flow{--hub-cp-tab-bg: #d9eaf2;--hub-cp-tab-color: #0072aa;--hub-cp-tab-active-color: #0072aa;--hub-cp-tab-border-color: #0072aa}.hub-cp__tab--tone-flow:hover,.hub-cp__tab--tone-flow.hub-cp__tab--active{color:#0072aa;border-bottom-color:#0072aa}.hub-cp__tab--tone-flow.hub-cp__tab--active .hub-cp__tab-ico{color:#0072aa}.hub-cp__com-header{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:1rem 1.25rem;margin:0 0 1.25rem}.hub-cp__com-header--sub{margin-bottom:1rem}.hub-cp__com-kicker{margin:0 0 .2rem;font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#0f281673}.hub-cp__com-title{margin:0;font-size:1.15rem;font-weight:700;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__com-sub{margin:.35rem 0 0;font-size:.84rem;color:#0f281694}.hub-cp__com-action{display:inline-flex;align-items:center;gap:.45rem;padding:.55rem 1rem;border:none;border-radius:999px;background:linear-gradient(135deg,#119531,#0d7a28);color:#fff;font-family:inherit;font-size:.86rem;font-weight:700;cursor:pointer;box-shadow:0 4px 14px #11953147;transition:transform .12s ease,box-shadow .12s ease}.hub-cp__com-action:hover{transform:translateY(-1px);box-shadow:0 6px 18px #11953157}.hub-cp__com-action:focus-visible{outline:2px solid var(--hub-verde-vivo, #119531);outline-offset:2px}.hub-cp__com-action-ico{width:1.05rem;height:1.05rem;flex-shrink:0}.hub-cp__com-action--inline{margin-top:.75rem}.hub-cp__main{min-width:0;width:100%}.hub-cp__panel-body{padding:1.25rem}.hub-cp__tab-panel[hidden]{display:none}.hub-cp__cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1rem}.hub-cp__toolbar{display:flex;flex-wrap:wrap;align-items:center;gap:1rem 1.5rem;margin-bottom:1rem}.hub-cp__period{display:flex;align-items:center;gap:.5rem;font-size:.88rem;font-weight:600;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__period select{padding:.35rem .6rem;border-radius:8px;border:1px solid rgba(74,159,42,.25);font:inherit;background:#fff}.hub-cp__period-summary{margin:0;font-size:.88rem;color:#0f2816a6}.hub-cp__subtabs{display:flex;gap:.35rem;margin-bottom:1rem;flex-wrap:wrap}.hub-cp__subtab{padding:.45rem .9rem;border-radius:999px;border:1px solid rgba(74,159,42,.35);background:#fff;font-size:.82rem;font-weight:700;cursor:pointer;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__subtab--active{background:var(--hub-verde-vivo, #119531);border-color:var(--hub-verde-vivo, #119531);color:#fff}.hub-cp__section-title{margin:1.25rem 0 .65rem;font-size:.85rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__section-title:first-child{margin-top:0}.hub-cp__table-wrap{overflow-x:auto;margin-bottom:1rem;border-radius:10px;border:1px solid rgba(74,159,42,.15)}.hub-cp__table{width:100%;border-collapse:collapse;font-size:.86rem}.hub-cp__table th,.hub-cp__table td{padding:.55rem .75rem;text-align:left;border-bottom:1px solid rgba(74,159,42,.1)}.hub-cp__table th{font-size:.72rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:#0f28168c;background:#f4f8f0}.hub-cp__table tbody tr:hover{background:#1195310a}.hub-cp__table--compact th,.hub-cp__table--compact td{padding:.4rem .6rem}.hub-cp__link{color:var(--hub-verde-vivo, #119531);font-weight:700;text-decoration:none}.hub-cp__link:hover{text-decoration:underline}.hub-cp__loading{display:flex;align-items:center;gap:.75rem;padding:1.5rem 0;color:#0f281699}.hub-cp__tab-skeleton{display:flex;flex-direction:column;min-height:420px}.hub-cp__tab-skeleton-label{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.hub-cp__tab-skeleton-content{display:flex;flex-direction:column;gap:.7rem}.hub-cp__tab-skeleton-line{display:block;width:6rem;height:.8rem;border-radius:10px;background:linear-gradient(90deg,#f1f5f9 25%,#e2e8f0,#f1f5f9 75%);background-size:200% 100%;animation:hub-cp-tab-skeleton-shimmer 1.2s ease-in-out infinite}.hub-cp__tab-skeleton-line--dot{width:2.15rem;height:2.15rem;flex:0 0 auto;border-radius:999px}.hub-cp__tab-skeleton-line--sm{width:4.5rem}.hub-cp__tab-skeleton-line--md{width:7rem}.hub-cp__tab-skeleton-line--lg{width:10rem}.hub-cp__tab-skeleton-line--xl{width:14rem;max-width:100%}.hub-cp__tab-skeleton-line--title{width:18rem;max-width:100%;height:1.05rem}.hub-cp__tab-skeleton-line--full{width:100%}.hub-cp__tab-skeleton-line--badge,.hub-cp__tab-skeleton-line--pill,.hub-cp__tab-skeleton-line--button{height:1.65rem;border-radius:999px}.hub-cp__tab-skeleton-line--badge{width:5.6rem}.hub-cp__tab-skeleton-line--pill{width:6.8rem}.hub-cp__tab-skeleton-line--button{width:8.4rem}.hub-cp__tab-skeleton-line--search{width:15rem;height:2rem;border-radius:999px}.hub-cp__tab-skeleton-toolbar{display:flex;flex-wrap:wrap;align-items:center;gap:.55rem .8rem;padding:.5rem .65rem;border:1px solid rgba(15,23,42,.08);border-radius:12px;background:#fff}.hub-cp__tab-skeleton-toolbar-meta,.hub-cp__tab-skeleton-item-title,.hub-cp__tab-skeleton-section,.hub-cp__tab-skeleton-detail-head>div{display:grid;gap:.38rem}.hub-cp__tab-skeleton-toolbar-meta{flex:1 1 13rem}.hub-cp__tab-skeleton-toolbar-filters,.hub-cp__tab-skeleton-toolbar-actions{display:flex;flex-wrap:wrap;align-items:center;gap:.38rem}.hub-cp__tab-skeleton-toolbar-actions{flex:1 1 20rem;justify-content:flex-end}.hub-cp__tab-skeleton-layout{display:grid;grid-template-columns:minmax(17rem,.82fr) minmax(0,1.18fr);gap:.75rem;min-height:0}.hub-cp__tab-skeleton-list,.hub-cp__tab-skeleton-detail{min-width:0;border:1px solid rgba(15,23,42,.08);border-radius:14px;background:#fff}.hub-cp__tab-skeleton-list{display:flex;flex-direction:column;gap:.55rem;padding:.65rem}.hub-cp__tab-skeleton-item{display:grid;gap:.55rem;padding:.78rem;border:1px solid rgba(15,23,42,.07);border-radius:12px;background:#fbfdfc}.hub-cp__tab-skeleton-item-head,.hub-cp__tab-skeleton-detail-head{display:flex;align-items:flex-start;justify-content:space-between;gap:.75rem}.hub-cp__tab-skeleton-fields,.hub-cp__tab-skeleton-field-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.45rem .65rem}.hub-cp__tab-skeleton-detail{display:grid;gap:.85rem;align-content:start;padding:.9rem}.hub-cp__tab-skeleton-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.55rem}.hub-cp__tab-skeleton-metrics .hub-cp__tab-skeleton-line,.hub-cp__tab-skeleton-field-grid .hub-cp__tab-skeleton-line{width:100%;height:2.6rem;border-radius:12px}@keyframes hub-cp-tab-skeleton-shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}@media (max-width: 860px){.hub-cp__tab-skeleton-layout{grid-template-columns:1fr}.hub-cp__tab-skeleton-toolbar-actions{justify-content:flex-start}.hub-cp__tab-skeleton-metrics,.hub-cp__tab-skeleton-field-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}.hub-cp__empty{margin:0;padding:1.5rem 0;color:#0f28168c;font-size:.92rem}.hub-cp__warn{margin:.5rem 0 0;font-size:.88rem;color:#b45309}.hub-cp__warn--inline{margin:-.35rem 0 .75rem}.hub-cp__stub{padding:2rem 1.25rem;text-align:center;border-radius:12px;background:#f8faf6;border:1px dashed rgba(74,159,42,.35)}.hub-cp__stub-title{margin:0 0 .5rem;font-weight:700;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__stub-hint{margin:0;font-size:.85rem;color:#0f28168c}.hub-cp__tab-view-banner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.5rem .75rem;margin:0 0 .75rem;padding:.5rem .75rem;border-radius:8px;border:1px solid #bbf7d0;background:#f0fdf4;font-size:.8125rem;color:#166534}.hub-cp__tab-view-banner strong{font-weight:700}.hub-cp__tab-view-banner-clear{margin:0;padding:.2rem .5rem;border:none;border-radius:6px;background:transparent;font:inherit;font-size:.75rem;font-weight:600;color:#0d7a28;text-decoration:underline;cursor:pointer}.hub-cp__tab-view-banner-clear:hover{color:#119531}.hub-psb__spinner{width:1.75rem;height:1.75rem;border:3px solid rgba(17,149,49,.2);border-top-color:var(--hub-verde-forte, #119531);border-radius:50%;animation:hub-psb-spin .65s linear infinite}.hub-psb__spinner--sm{width:1.1rem;height:1.1rem;border-width:2px}@keyframes hub-psb-spin{to{transform:rotate(360deg)}}@media (min-width: 769px){.hub-main.hub-cp{padding-top:0}.hub-cp__shell{padding-top:var(--hub-cp-tabs-h)}.hub-cp__tabs-rail{position:fixed;left:0;right:0;width:100%;top:var(--hub-chrome-offset, 0);z-index:40}}.hub-cp__comodatos-panel{display:flex;flex-direction:column;gap:1rem}.hub-cp__comod-aviso{margin:0}.hub-cp__comod-section{display:flex;flex-direction:column;gap:.85rem}.hub-cp__comod-head{display:flex;flex-wrap:wrap;align-items:baseline;justify-content:space-between;gap:.35rem 1rem}.hub-cp__comod-title{margin:0;font-size:1.05rem;font-weight:800;color:#0f172a}.hub-cp__comod-meta{margin:0;font-size:.88rem;color:#64748b}.hub-cp__comod-meta strong{color:#0f172a;font-weight:800}.hub-cp__comod-toolbar{display:flex;flex-wrap:wrap;align-items:center;gap:.65rem 1rem}.hub-cp__comod-search{display:flex;flex:1 1 14rem;align-items:center;gap:.45rem;min-width:0;padding:.4rem .65rem;border-radius:10px;border:1px solid #e2e8f0;background:#fff}.hub-cp__comod-search:focus-within{border-color:#0d9488;box-shadow:0 0 0 2px #0d948826}.hub-cp__comod-search-ico{width:1rem;height:1rem;flex-shrink:0;color:#94a3b8}.hub-cp__comod-search input{flex:1;min-width:0;border:none;background:transparent;font:inherit;font-size:.88rem;color:#0f172a;outline:none}.hub-cp__comod-search input::placeholder{color:#94a3b8}.hub-cp__comod-search-clear{border:none;background:none;font:inherit;font-size:.78rem;font-weight:700;color:#0d9488;cursor:pointer;white-space:nowrap}.hub-cp__comod-search-clear:hover{color:#0f766e}.hub-cp__comod-sort{display:flex;align-items:center;gap:.45rem;font-size:.82rem;color:#64748b}.hub-cp__comod-sort select{padding:.4rem .55rem;border-radius:8px;border:1px solid #e2e8f0;font:inherit;font-size:.85rem;color:#0f172a;background:#fff}.hub-cp__comod-empty{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem .75rem;padding:1rem 1.1rem;border-radius:10px;background:#f8fafc;border:1px dashed #cbd5e1;color:#64748b;font-size:.9rem}.hub-cp__comod-empty--page{flex-direction:column;align-items:center;justify-content:center;padding:2.5rem 1.5rem;text-align:center}.hub-cp__comod-empty-ico{width:2.5rem;height:2.5rem;color:#0d9488;margin-bottom:.35rem}.hub-cp__comod-empty-btn{padding:.35rem .7rem;border-radius:8px;border:1px solid #cbd5e1;background:#fff;font:inherit;font-size:.82rem;font-weight:600;cursor:pointer}.hub-cp__comod-empty-btn:hover{border-color:#0d9488;color:#0f766e}.hub-cp__comod-grid{margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1rem}.hub-cp__comod-cell{min-width:0}.hub-cp__comod-card{display:flex;flex-direction:column;height:100%;border-radius:12px;border:1px solid #e2e8f0;background:#fff;overflow:hidden;box-shadow:0 2px 8px #0f172a0f;transition:transform .18s ease,box-shadow .18s ease}.hub-cp__comod-card:hover{transform:translateY(-3px);box-shadow:0 8px 22px #0f172a1a}.hub-cp__comod-card--skeleton{pointer-events:none}.hub-cp__comod-card--skeleton:hover{transform:none;box-shadow:0 2px 8px #0f172a0f}.hub-cp__comod-card .hub-skeleton{display:block}.hub-cp__comod-card-media{position:relative;height:190px;background:linear-gradient(180deg,#f0fdfa,#f8fafc);border-bottom:1px solid #e8edf2}.hub-cp__comod-card-media-link{display:flex;align-items:center;justify-content:center;width:100%;height:100%;padding:.75rem}.hub-cp__comod-card-media img{max-width:100%;max-height:100%;object-fit:contain}.hub-cp__comod-relacionados-btn{position:absolute;right:.55rem;bottom:.55rem;padding:.3rem .55rem;border-radius:8px;border:1px solid #99f6e4;background:#fffffff2;font:inherit;font-size:.72rem;font-weight:700;color:#0f766e;cursor:pointer;box-shadow:0 2px 6px #00000014}.hub-cp__comod-relacionados-btn:hover{background:#f0fdfa;border-color:#2dd4bf}.hub-cp__comod-relacionados-btn--skeleton{cursor:default}.hub-cp__comod-card-body{display:flex;flex-direction:column;flex:1;gap:.55rem;padding:.85rem .95rem 1rem}.hub-cp__comod-card-head{display:flex;align-items:center;justify-content:space-between;gap:.5rem}.hub-cp__comod-code{font-size:.8rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__comod-qty{font-size:.78rem;color:#64748b}.hub-cp__comod-qty strong{color:#0f172a}.hub-cp__comod-name{margin:0;font-size:.92rem;font-weight:600;line-height:1.35}.hub-cp__comod-card--skeleton .hub-cp__comod-name{display:flex;flex-direction:column;gap:.3rem}.hub-cp__comod-name-link{color:#1e293b;text-decoration:none}.hub-cp__comod-name-link:hover{color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__comod-values{display:flex;flex-direction:column;gap:.35rem;padding:.55rem .65rem;border-radius:8px;background:#f8fafc;border:1px solid #e8edf2}.hub-cp__comod-value-row{display:flex;align-items:baseline;justify-content:space-between;gap:.5rem;font-size:.78rem}.hub-cp__comod-value-row--total .hub-cp__comod-value-val{font-size:.95rem;font-weight:800;color:#0f766e}.hub-cp__comod-value-lbl{color:#64748b}.hub-cp__comod-value-val{font-weight:700;font-variant-numeric:tabular-nums;color:#0f172a}.hub-cp__comod-badge{align-self:flex-start;margin-top:auto;padding:.28rem .55rem;border-radius:6px;background:#e0f2fe;color:#0c4a6e;font-size:.72rem;font-weight:800;letter-spacing:.02em;text-transform:uppercase}@media (max-width: 640px){.hub-cp__comod-grid{grid-template-columns:1fr}.hub-cp__comod-card-media{height:160px}}.hub-skeleton{display:inline-block;max-width:100%;vertical-align:middle;background:linear-gradient(90deg,#e2e8f0e6,#f8fafcf2,#e2e8f0e6 90%);background-size:220% 100%;animation:hub-skeleton-shimmer 1.2s ease-in-out infinite}@keyframes hub-skeleton-shimmer{0%{background-position:120% 0}to{background-position:-120% 0}}@keyframes hubCpModalFadeUp{0%{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}.hub-cp-modal__root{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1200;display:flex;align-items:center;justify-content:center;padding:max(1rem,env(safe-area-inset-top)) max(1rem,env(safe-area-inset-right)) max(1rem,env(safe-area-inset-bottom)) max(1rem,env(safe-area-inset-left));pointer-events:none}.hub-cp-modal__root--in{pointer-events:auto}.hub-cp-modal__backdrop{position:absolute;top:0;right:0;bottom:0;left:0;margin:0;padding:0;border:none;background:#0e302f61;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);cursor:pointer;opacity:0;transition:opacity .28s ease}.hub-cp-modal__root--in .hub-cp-modal__backdrop{opacity:1}.hub-cp-modal__dialog{position:relative;z-index:1;display:flex;flex-direction:column;width:min(100%,42rem);max-height:min(88vh,720px);border:1px solid #e2e8f0;border-radius:14px;background:#fff;box-shadow:0 16px 40px #0f28161a;opacity:0;transform:translateY(10px) scale(.98);transition:opacity .32s cubic-bezier(.22,1,.36,1),transform .32s cubic-bezier(.22,1,.36,1);will-change:transform,opacity;overflow:hidden}.hub-cp-modal__root--in .hub-cp-modal__dialog{opacity:1;transform:translateY(0) scale(1)}.hub-cp-modal__dialog--sm{width:min(100%,30rem);max-height:min(85vh,560px)}.hub-cp-modal__dialog--md{width:min(100%,42rem)}.hub-cp-modal__dialog--lg{width:min(100%,48rem);max-height:min(90vh,760px)}.hub-cp-modal__dialog--xl{width:min(100%,72rem);max-height:min(92vh,820px)}.hub-cp-modal__dialog--xl .hub-cp-modal__title{font-size:.88rem}.hub-cp-modal__dialog--xl .hub-cp-modal__body{padding:.85rem 1rem 1rem}.hub-cp-modal__head{flex-shrink:0;display:flex;align-items:flex-start;justify-content:space-between;gap:.75rem;padding:1rem 1.1rem;border-bottom:1px solid rgba(17,149,49,.12);background:var(--hub-verde-fundo, #f8fafc)}.hub-cp-modal__head-main{display:flex;align-items:center;gap:.75rem;min-width:0;flex:1}.hub-cp-modal__head-media{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:2.75rem;height:2.75rem;border-radius:8px;background:#fff;border:1px solid #e2e8f0}.hub-cp-modal__head-media img{max-width:86%;max-height:86%;object-fit:contain}.hub-cp-modal__head-text{min-width:0}.hub-cp-modal__title{display:flex;flex-wrap:wrap;align-items:baseline;justify-content:space-between;gap:.35rem 1rem;margin:0;font-size:.95rem;font-weight:800;color:#0f172a;line-height:1.3}.hub-cp-modal__title-text{flex:1 1 14rem;min-width:0;font-size:.88rem;font-weight:700;line-height:1.4;color:#0f172a}.hub-cp-modal__title-aside{flex-shrink:0;font-size:.82rem;font-weight:600;line-height:1.35;color:#64748b;text-align:right}.hub-cp-modal__sub{margin-top:.2rem;font-size:.82rem;line-height:1.4;color:#64748b}.hub-cp-modal__code{font-weight:700;color:#475569}.hub-cp-modal__close{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;margin:0;padding:0;border:none;border-radius:8px;background:transparent;color:var(--hub-verde-medio, #4a9f2a);cursor:pointer;transition:background .15s ease,color .15s ease}.hub-cp-modal__close:hover{background:#11953114;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp-modal__close:focus-visible{outline:2px solid var(--hub-verde-vivo, #119531);outline-offset:2px}.hub-cp-modal__body{flex:1;min-height:0;overflow-y:auto;padding:1rem 1.1rem 1.1rem}.hub-cp-modal__foot{flex-shrink:0;padding:.75rem 1.1rem 1rem;border-top:1px solid #e2e8f0;background:#fff;text-align:center}.hub-cp-modal__foot-link{font-size:.82rem;font-weight:700;color:var(--hub-verde-escuro, #0d7a28);text-decoration:none}.hub-cp-modal__foot-link:hover{color:var(--hub-verde-vivo, #119531);text-decoration:underline}.hub-cp-modal__status,.hub-cp-modal__empty,.hub-cp-modal__err{margin:0;padding:1rem;border-radius:10px;font-size:.88rem;text-align:center;line-height:1.45}.hub-cp-modal__status{display:flex;align-items:center;justify-content:center;gap:.6rem;color:#64748b;background:#f8fafc;border:1px solid #e2e8f0}.hub-cp-modal__empty{color:#64748b;background:#f8fafc;border:1px dashed #e2e8f0}.hub-cp-modal__lead{margin:0 0 .85rem;font-size:.86rem;line-height:1.5;color:#64748b}.hub-cp-modal__err{color:#b45309;background:#fffbeb;border:1px solid #fde68a}.hub-cp-modal__root--in .hub-cp-modal__compras-item,.hub-cp-modal__root--in .hub-cp-modal__rel-grid>li,.hub-cp-modal__root--in .hub-cp-modal__cot-grid>li{animation:hubCpModalFadeUp .32s ease both}.hub-cp-modal__root--in .hub-cp-modal__compras-item:nth-child(1),.hub-cp-modal__root--in .hub-cp-modal__rel-grid>li:nth-child(1),.hub-cp-modal__root--in .hub-cp-modal__cot-grid>li:nth-child(1){animation-delay:.03s}.hub-cp-modal__root--in .hub-cp-modal__compras-item:nth-child(2),.hub-cp-modal__root--in .hub-cp-modal__rel-grid>li:nth-child(2),.hub-cp-modal__root--in .hub-cp-modal__cot-grid>li:nth-child(2){animation-delay:.06s}.hub-cp-modal__root--in .hub-cp-modal__compras-item:nth-child(3),.hub-cp-modal__root--in .hub-cp-modal__rel-grid>li:nth-child(3),.hub-cp-modal__root--in .hub-cp-modal__cot-grid>li:nth-child(3){animation-delay:.09s}.hub-cp-modal__root--in .hub-cp-modal__compras-item:nth-child(4),.hub-cp-modal__root--in .hub-cp-modal__rel-grid>li:nth-child(4),.hub-cp-modal__root--in .hub-cp-modal__cot-grid>li:nth-child(4){animation-delay:.12s}.hub-cp-modal__root--in .hub-cp-modal__compras-item:nth-child(5),.hub-cp-modal__root--in .hub-cp-modal__rel-grid>li:nth-child(5),.hub-cp-modal__root--in .hub-cp-modal__cot-grid>li:nth-child(5){animation-delay:.15s}.hub-cp-modal__hist-stack{display:flex;flex-direction:column;gap:1rem}.hub-cp-modal__hist-section{margin:0}.hub-cp-modal__hist-title{margin:0 0 .4rem;font-size:.68rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#64748b}.hub-cp-modal__hist-empty{margin:0;padding:.45rem .55rem;border-radius:8px;background:#f8fafc;border:1px dashed #e2e8f0;font-size:.72rem;color:#94a3b8}.hub-cp-modal__hist-chip{display:inline-block;margin-left:.35rem;padding:.08rem .35rem;border-radius:4px;font-size:.58rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;vertical-align:middle}.hub-cp-modal__hist-chip--open,.hub-cp-modal__hist-chip--ok,.hub-cp-modal__hist-chip--soon{background:#ecfdf5;color:#047857}.hub-cp-modal__hist-chip--order{background:#eff6ff;color:#1d4ed8}.hub-cp-modal__hist-chip--closed,.hub-cp-modal__hist-chip--neutral,.hub-cp-modal__hist-chip--muted{background:#f1f5f9;color:#475569}.hub-cp-modal__hist-chip--canceled{background:#fef2f2;color:#b91c1c}.hub-cp-modal__hist-chip--paid{background:#ecfdf5;color:#047857}.hub-cp-modal__hist-chip--late{background:#fef2f2;color:#b91c1c}.hub-cp-modal__compras-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.35rem}.hub-cp-modal__compras-item{padding:0;border-radius:8px;background:#f8fafc;border:1px solid #e8edf2}.hub-cp-modal__compras-link{display:block;padding:.55rem .65rem;border-radius:inherit;color:inherit;text-decoration:none;transition:background .15s ease,border-color .15s ease}.hub-cp-modal__compras-link:hover{background:#f1f5f9}.hub-cp-modal__compras-link:focus-visible{outline:2px solid #008174;outline-offset:2px}.hub-cp-modal__compras-item--comodato{background:#fffbeb;border-color:#fde68a}.hub-cp-modal__compras-nf{display:block;font-size:.78rem;font-weight:800;color:#008174}.hub-cp-modal__compras-meta{display:block;margin-top:.12rem;font-size:.72rem;color:#64748b;line-height:1.35}.hub-cp-modal__compras-meta strong{font-weight:700;color:#0f172a}.hub-cp-modal__flow{display:flex;align-items:stretch;gap:.35rem;padding:.5rem .15rem .75rem;overflow-x:auto}.hub-cp-modal__flow-stage{display:flex;flex-direction:column;gap:.4rem;min-width:9.5rem;flex:1 1 0}.hub-cp-modal__flow-stage-label{font-size:.62rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#64748b;text-align:center}.hub-cp-modal__flow-cards{display:flex;flex-direction:column;gap:.4rem;height:100%}.hub-cp-modal__flow-card{display:flex;flex-direction:column;gap:.1rem;padding:.6rem .65rem;border-radius:10px;background:#f8fafc;border:1px solid #e8edf2;text-align:left}.hub-cp-modal__flow-card--link{color:inherit;text-decoration:none;transition:background .15s ease,border-color .15s ease,box-shadow .15s ease}.hub-cp-modal__flow-card--link:hover{background:#f1f5f9;border-color:#cbd5e1;box-shadow:0 2px 10px #0f172a0f}.hub-cp-modal__flow-card--link:focus-visible{outline:2px solid #008174;outline-offset:2px}.hub-cp-modal__flow-card--current{background:linear-gradient(135deg,#feefef,#fff);border-color:#a12b3947;box-shadow:0 2px 12px #a12b391a}.hub-cp-modal__flow-card-title{font-size:.85rem;font-weight:800;color:#0f172a}.hub-cp-modal__flow-card--link .hub-cp-modal__flow-card-title{color:#008174}.hub-cp-modal__flow-card .hub-cp-modal__hist-chip{margin-left:0;align-self:flex-start}.hub-cp-modal__flow-card-meta{font-size:.7rem;color:#64748b;line-height:1.35}.hub-cp-modal__flow-card-meta strong{font-weight:700;color:#0f172a}.hub-cp-modal__flow-arrow{display:flex;align-items:center;align-self:center;flex:0 0 auto;margin-top:1.1rem;color:#94a3b8}.hub-cp-modal__flow-arrow svg{width:1.35rem;height:1.35rem}.hub-cp-modal__linhagem-btn{display:inline-flex;align-items:center;gap:.35rem;margin-left:auto;padding:.32rem .62rem;border:1px solid rgba(161,43,57,.2);border-radius:999px;background:#fff;font-size:.72rem;font-weight:700;color:#a12b39;cursor:pointer;transition:background .15s ease,border-color .15s ease,box-shadow .15s ease}.hub-cp-modal__linhagem-btn:hover{background:#feefef;border-color:#a12b3959}.hub-cp-modal__linhagem-btn:focus-visible{outline:2px solid #a12b39;outline-offset:2px}.hub-cp-modal__linhagem-btn-ico{width:1rem;height:1rem;flex-shrink:0}.hub-cp-modal__linhagem-aviso{margin:.75rem 0 0;padding:.45rem .55rem;border-radius:8px;background:#fffbeb;border:1px solid #fde68a;font-size:.72rem;color:#92400e}.hub-cp-modal__compras-tag{display:inline-block;margin-left:.35rem;padding:.08rem .35rem;border-radius:4px;background:#fef3c7;font-size:.58rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;color:#92400e;vertical-align:middle}.hub-cp-modal__rel-grid{margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(11.5rem,1fr));gap:.65rem}.hub-cp-modal__rel-card{border-radius:10px;border:1px solid #e2e8f0;background:#fff;overflow:hidden;transition:border-color .15s ease,box-shadow .15s ease}.hub-cp-modal__rel-card--bought{border-color:#11953159;background:#f0fdf4}.hub-cp-modal__rel-card:hover{border-color:#11953159;box-shadow:0 6px 16px #0f28160f}.hub-cp-modal__rel-card-link{display:flex;flex-direction:column;height:100%;color:inherit;text-decoration:none}.hub-cp-modal__rel-card-img{display:flex;align-items:center;justify-content:center;height:5.5rem;padding:.5rem;background:#f8fafc}.hub-cp-modal__rel-card-img img{max-width:90%;max-height:4.75rem;object-fit:contain}.hub-cp-modal__rel-card-body{display:flex;flex-direction:column;gap:.2rem;padding:.5rem .6rem .65rem}.hub-cp-modal__rel-card-top{display:flex;flex-wrap:wrap;align-items:center;gap:.25rem}.hub-cp-modal__rel-card-code{font-size:.72rem;font-weight:800;color:#008174}.hub-cp-modal__rel-card-type{padding:.1rem .35rem;border-radius:999px;background:#f1f5f9;font-size:.58rem;font-weight:700;color:#475569}.hub-cp-modal__rel-card-name{font-size:.78rem;font-weight:600;line-height:1.3;color:#0f172a;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-cp-modal__rel-card-price{font-size:.82rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp-modal__rel-card-bought{margin-top:.15rem;font-size:.62rem;font-weight:800;text-transform:uppercase;letter-spacing:.03em;color:#166534}.hub-cp-modal__cot-grid{margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(14rem,1fr));gap:.65rem}.hub-cp-modal__cot-card{display:flex;flex-direction:column;height:100%;border-radius:10px;border:1px solid #e2e8f0;overflow:hidden;background:#fff}.hub-cp-modal__cot-card-img{display:flex;align-items:center;justify-content:center;height:5.5rem;padding:.5rem;background:#f8fafc;text-decoration:none}.hub-cp-modal__cot-card-img img{max-width:88%;max-height:4.75rem;object-fit:contain}.hub-cp-modal__cot-card-body{display:flex;flex-direction:column;gap:.35rem;padding:.55rem .6rem .65rem}.hub-cp-modal__cot-card-code{font-size:.72rem;font-weight:800;color:#008174;text-decoration:none}.hub-cp-modal__cot-card-code:hover{text-decoration:underline}.hub-cp-modal__cot-card-name{margin:0;font-size:.78rem;line-height:1.35;color:#0f172a;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-cp-modal__cot-card-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.25rem;margin:.15rem 0 0}.hub-cp-modal__cot-card-metrics dt{margin:0;font-size:.58rem;font-weight:600;text-transform:uppercase;color:#94a3b8}.hub-cp-modal__cot-card-metrics dd{margin:0;font-size:.72rem;font-weight:700;color:#334155}.hub-cp__contato-form-padrao{display:inline-flex;align-items:center;gap:.55rem;padding:.4rem .85rem;border:1px solid #cbd5e1;border-radius:10px;background:#f8fafc;font-size:.9rem;font-weight:600;color:#334155;cursor:pointer;-webkit-user-select:none;user-select:none}.hub-cp__contato-form-padrao input{width:1.05rem;height:1.05rem;accent-color:#008174;cursor:pointer}.hub-cp__contato-form{display:flex;flex-direction:column;gap:1.1rem}.hub-cp__contato-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem 1.25rem}.hub-cp__contato-field{display:flex;flex-direction:column;gap:.4rem;min-width:0}.hub-cp__contato-field--full{grid-column:1 / -1}.hub-cp__contato-label{font-size:.9rem;font-weight:600;color:#1f2937}.hub-cp__contato-req{color:#dc2626}.hub-cp__contato-field input{width:100%;padding:.7rem .85rem;border:1px solid #cbd5e1;border-radius:10px;font-size:.95rem;color:#0f172a;background:#fff;transition:border-color .15s ease,box-shadow .15s ease}.hub-cp__contato-field input::placeholder{color:#9ca3af}.hub-cp__contato-field input:focus{outline:none;border-color:#008174;box-shadow:0 0 0 3px #00817426}.hub-cp__contato-form-foot{display:flex;justify-content:flex-end;gap:.75rem;padding-top:.35rem}.hub-cp__contato-btn{display:inline-flex;align-items:center;gap:.5rem;padding:.65rem 1.15rem;border-radius:10px;font-size:.92rem;font-weight:700;cursor:pointer;border:1px solid transparent;transition:background .15s ease,color .15s ease,border-color .15s ease}.hub-cp__contato-btn:disabled{opacity:.6;cursor:not-allowed}.hub-cp__contato-btn--ghost{background:#fff;border-color:#cbd5e1;color:#475569}.hub-cp__contato-btn--ghost:not(:disabled):hover{background:#f1f5f9;color:#1f2937}.hub-cp__contato-btn--primary{background:#008174;color:#fff}.hub-cp__contato-btn--primary:not(:disabled):hover{background:#006b60}.hub-cp__grupo{display:flex;flex-direction:column;gap:.75rem;font-size:.82rem}.hub-cp__grupo-toolbar{display:flex;align-items:flex-end;justify-content:space-between;gap:.85rem;flex-wrap:wrap}.hub-cp__grupo-busca{display:flex;flex-direction:column;gap:.3rem;flex:1 1 22rem;min-width:min(100%,18rem)}.hub-cp__grupo-busca-label{font-size:.72rem;font-weight:700;color:#475569}.hub-cp__grupo-busca input{width:100%;padding:.5rem .7rem;border:1px solid #cbd5e1;border-radius:8px;font-size:.82rem;color:#0f172a;background:#fff;transition:border-color .15s ease,box-shadow .15s ease}.hub-cp__grupo-busca input:focus{outline:none;border-color:#008174;box-shadow:0 0 0 3px #00817426}.hub-cp__grupo-scroll{overflow:auto;max-height:min(56vh,520px);border:1px solid #e2e8f0;border-radius:10px}.hub-cp__grupo-table{width:100%;border-collapse:collapse;font-size:.82rem}.hub-cp__grupo-table th{position:sticky;top:0;z-index:1;padding:0;text-align:left;background:#f8fafc;border-bottom:2px solid #e2e8f0;white-space:nowrap}.hub-cp__grupo-th{display:inline-flex;align-items:center;gap:.3rem;width:100%;padding:.45rem .6rem;border:none;background:transparent;font-size:.65rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:#475569;cursor:pointer;transition:color .12s ease,background .12s ease}.hub-cp__grupo-th:hover{background:#eef4f3;color:#008174}.hub-cp__grupo-th--ativo{color:#008174}.hub-cp__grupo-th-arrow{font-size:.7em;opacity:.75}.hub-cp__grupo-th--ativo .hub-cp__grupo-th-arrow{opacity:1}.hub-cp__grupo-table td{padding:.45rem .6rem;border-bottom:1px solid #eef2f6;color:#334155;white-space:nowrap}.hub-cp__grupo-row{cursor:pointer;transition:background .12s ease}.hub-cp__grupo-row:hover,.hub-cp__grupo-row:focus-visible{background:#f2fbfa;outline:none}.hub-cp__grupo-row--atual{background:#0081740f}.hub-cp__grupo-codigo{font-variant-numeric:tabular-nums;color:#64748b}.hub-cp__grupo-razao{font-weight:600;color:#0f172a}.hub-cp__grupo-cnpj{font-variant-numeric:tabular-nums}.hub-cp__grupo-papel{display:inline-flex;align-items:center;padding:.15rem .5rem;border-radius:999px;font-size:.65rem;font-weight:800;letter-spacing:.02em;text-transform:uppercase;color:#475569;background:#eef2f6;border:1px solid #e2e8f0}.hub-cp__grupo-papel--matriz{color:#fff;background:#008174;border-color:#008174}.hub-cp__grupo-empty{padding:1.5rem .75rem;text-align:center;color:#94a3b8;font-style:italic;white-space:normal}.hub-cp__grupo-link{display:inline-flex;align-items:center;gap:.3rem;padding:0;border:none;background:transparent;color:#008174;font:inherit;font-size:.82rem;font-weight:600;cursor:pointer;text-decoration:underline;text-underline-offset:2px}.hub-cp__grupo-link:hover{color:#006b60}.hub-cp__grupo-link-ico{font-size:.8em}@media (max-width: 640px){.hub-cp-modal__dialog{border-radius:12px;max-height:min(92vh,720px)}.hub-cp-modal__rel-grid,.hub-cp-modal__cot-grid,.hub-cp__contato-form-grid{grid-template-columns:1fr}}@media (prefers-reduced-motion: reduce){.hub-cp-modal__backdrop,.hub-cp-modal__dialog,.hub-cp-modal__compras-item,.hub-cp-modal__rel-grid>li,.hub-cp-modal__cot-grid>li{transition:none;animation:none}}.hub-ctb__bar{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem .75rem;padding:.6rem .85rem;margin-bottom:1rem;border-radius:14px;background:#fff;border:1px solid rgba(15,23,42,.08)}.hub-ctb__bar--center{justify-content:center}.hub-ctb__bar--center .hub-ctb__cta{margin-left:0;flex:0 0 auto}.hub-ctb__bar--center,.hub-cp__flux-panel .hub-ctb__bar,.hub-cp__produtos-panel .hub-ctb__bar,.hub-cp__opp-panel .hub-ctb__bar,.hub-cp__comodatos-panel .hub-ctb__bar{min-height:calc(2.4rem + 1.2rem + 2px)}.hub-ctb__meta{flex:1 1 12rem;min-width:0;margin:0;font-size:.82rem;line-height:1.35;color:#64748b;white-space:normal;overflow-wrap:anywhere}.hub-ctb__meta strong{font-weight:600;color:#0f172a}.hub-ctb__meta--wrap{flex:1 1 auto;white-space:normal;overflow:visible;text-overflow:unset}.hub-ctb__sep{margin:0 .2rem;opacity:.55}.hub-ctb__filters{display:flex;flex-wrap:wrap;gap:.4rem}.hub-ctb__filter{padding:.4rem .85rem;border:1px solid rgba(15,23,42,.08);border-radius:999px;background:#f8fafc;color:#64748b;font-size:.82rem;font-weight:600;cursor:pointer;transition:background .15s,color .15s,border-color .15s}.hub-ctb__filter:hover:not(:disabled){border-color:#0d948859;color:#0f766e}.hub-ctb__filter--active{background:#0d9488;border-color:#0d9488;color:#fff}.hub-ctb__filter:disabled{opacity:.45;cursor:not-allowed}.hub-ctb__filter-count{margin-left:.35rem;opacity:.85;font-variant-numeric:tabular-nums}.hub-ctb__grow{flex:1 1 200px;display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;justify-content:flex-end;min-width:0}.hub-ctb__search{display:flex;align-items:center;gap:.45rem;flex:1 1 200px;max-width:320px;padding:.45rem .75rem;border-radius:999px;border:1px solid rgba(15,23,42,.08);background:#f8fafc;transition:border-color .15s,box-shadow .15s}.hub-ctb__search:focus-within{border-color:#0d9488;box-shadow:0 0 0 3px #0d94882e;background:#fff}.hub-ctb__search-ico{width:1rem;height:1rem;color:#64748b;flex-shrink:0}.hub-ctb__search input{flex:1;min-width:0;border:none;background:transparent;font-size:.86rem;color:#0f172a;outline:none}.hub-ctb__search input::placeholder{color:#94a3b8}.hub-ctb__search-clear{border:none;background:none;padding:0;font-size:.75rem;font-weight:600;color:#0d9488;cursor:pointer}.hub-ctb__field{display:flex;align-items:center;gap:.4rem;font-size:.8rem;color:#64748b}.hub-ctb__field select{padding:.35rem .6rem;border-radius:8px;border:1px solid rgba(15,23,42,.08);background:#fff;font-size:.82rem;color:#0f172a}.hub-ctb__cta{display:inline-flex;align-items:center;justify-content:center;gap:.45rem;flex-shrink:0;box-sizing:border-box;margin-left:auto;width:12rem;height:2.4rem;padding:0 .95rem;border:none;border-radius:10px;background:#0d9488;color:#fff;font-family:inherit;font-size:.84rem;font-weight:650;line-height:1;cursor:pointer;white-space:nowrap;text-decoration:none;box-shadow:0 2px 8px #0d948847;transition:background .15s ease,box-shadow .15s ease}.hub-ctb__cta+.hub-ctb__cta{margin-left:0}.hub-ctb__cta:hover{background:#0f766e;box-shadow:0 3px 12px #0d948859}.hub-ctb__cta:focus-visible{outline:2px solid #0d9488;outline-offset:2px}.hub-ctb__cta-ico{width:1.05rem;height:1.05rem;flex-shrink:0}@media (min-width: 900px){.hub-ctb__bar{flex-wrap:nowrap}.hub-ctb__meta{flex:0 1 auto;max-width:32%}.hub-ctb__meta--wrap{flex:1 1 auto;max-width:calc(100% - 9.5rem)}}@media (max-width: 899px){.hub-ctb__cta,.hub-ctb__bar--center .hub-ctb__cta{width:100%;margin-left:0}.hub-ctb__grow{width:100%}}.hub-cp__cot-panel{--cot-radius: 14px;--cot-radius-sm: 10px;--cot-shadow: 0 4px 24px rgba(7, 24, 24, .06);--cot-shadow-hover: 0 8px 32px rgba(7, 24, 24, .1);--cot-accent: #7c3aed;--cot-accent-deep: #6d28d9;--cot-accent-glow: rgba(124, 58, 237, .18);--cot-accent-soft: #f5f3ff;--cot-muted: #64748b;--cot-text: #0f172a;--cot-border: rgba(15, 23, 42, .08);display:flex;flex-direction:column;align-items:stretch;gap:.65rem;width:100%}.hub-cp__cot-panel>.hub-ctb__bar{gap:.35rem .5rem;padding:.42rem .6rem;margin-bottom:0;border-radius:12px}.hub-cp__cot-panel .hub-ctb__meta{font-size:.8rem;line-height:1.25}.hub-cp__cot-panel .hub-ctb__sep{margin:0 .14rem}.hub-cp__cot-panel .hub-ctb__filters{flex-wrap:nowrap;gap:.22rem}.hub-cp__cot-panel .hub-ctb__filter{padding:.28rem .58rem;font-size:.78rem}.hub-cp__cot-panel .hub-ctb__filter-count{margin-left:.22rem}.hub-cp__cot-panel .hub-ctb__filter:hover:not(:disabled){border-color:#7c3aed59;color:var(--cot-accent-deep)}.hub-cp__cot-panel .hub-ctb__filter--active{background:var(--cot-accent);border-color:var(--cot-accent);color:#fff}.hub-cp__cot-panel .hub-ctb__grow{flex:1 1 24rem;flex-wrap:nowrap;gap:.35rem;justify-content:flex-end}.hub-cp__cot-panel .hub-ctb__search{flex:1 1 13rem;min-width:10rem;max-width:16rem;padding:.32rem .55rem}.hub-cp__cot-panel .hub-ctb__search input{font-size:.8rem}.hub-cp__cot-panel .hub-ctb__search:focus-within{border-color:var(--cot-accent);box-shadow:0 0 0 3px var(--cot-accent-glow)}.hub-cp__cot-panel .hub-ctb__field{flex:0 0 auto;gap:.28rem;font-size:.78rem;white-space:nowrap}.hub-cp__cot-panel .hub-ctb__field select{max-width:9.5rem;padding:.28rem .44rem;font-size:.78rem}.hub-cp__cot-panel .hub-ctb__cta{background:var(--cot-accent);box-shadow:0 2px 8px #7c3aed3d}.hub-cp__cot-panel .hub-ctb__cta:hover{background:var(--cot-accent-deep);box-shadow:0 3px 12px #7c3aed52}.hub-cp__cot-panel .hub-ctb__cta-ico{width:.9rem;height:.9rem}@media (min-width: 1120px){.hub-cp__cot-panel>.hub-ctb__bar{flex-wrap:nowrap}}@media (max-width: 1119px){.hub-cp__cot-panel .hub-ctb__filters,.hub-cp__cot-panel .hub-ctb__grow{flex-wrap:wrap}.hub-cp__cot-panel .hub-ctb__search{max-width:none}}.hub-cp__cot-aviso{margin:0}.hub-cp__cot-head{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:.75rem}.hub-cp__cot-title{margin:0;font-size:.95rem;font-weight:800;color:#0f172a}.hub-cp__cot-meta{margin:.25rem 0 0;font-size:.82rem;color:#64748b}.hub-cp__cot-meta strong{font-weight:800;color:#0f172a}.hub-cp__cot-toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-start;gap:.75rem 1rem}.hub-cp__cot-sort{display:flex;align-items:center;gap:.5rem;font-size:.82rem;font-weight:600;color:#475569;flex-shrink:0}.hub-cp__cot-sort select{padding:.4rem .6rem;border-radius:8px;border:1px solid #e2e8f0;font:inherit;background:#fff}.hub-cp__cot-search{display:flex;flex:1 1 14rem;align-items:center;gap:.5rem;min-width:min(100%,12rem);padding:.35rem .5rem .35rem .75rem;border-radius:10px;border:1px solid #e2e8f0;background:#fff}.hub-cp__cot-search:focus-within{border-color:#7c3aed73;box-shadow:0 0 0 3px #7c3aed1f}.hub-cp__cot-search-ico{width:1rem;height:1rem;flex-shrink:0;color:#94a3b8}.hub-cp__cot-search input{flex:1;min-width:0;border:none;background:transparent;font:inherit;font-size:.88rem;color:#0f172a;outline:none}.hub-cp__cot-search-clear{flex-shrink:0;padding:.2rem .45rem;border:none;border-radius:6px;background:#f1f5f9;font:inherit;font-size:.72rem;font-weight:700;color:#475569;cursor:pointer}.hub-cp__cot-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.65rem;padding:2rem 1rem;text-align:center;color:#64748b}.hub-cp__cot-empty-ico{width:2.5rem;height:2.5rem;color:#94a3b8}.hub-cp__cot-empty-btn{padding:.4rem .75rem;border:1px solid #e2e8f0;border-radius:8px;background:#fff;font:inherit;font-size:.82rem;font-weight:600;cursor:pointer}.hub-cp__cot-layout{display:grid;grid-template-columns:1fr;gap:1rem;align-items:stretch}@media (min-width: 960px){.hub-cp__cot-layout{grid-template-columns:minmax(0,1fr) minmax(0,1fr);height:min(640px,calc(100vh - 220px));min-height:480px}}.hub-cp__cot-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.55rem}@media (min-width: 960px){.hub-cp__cot-list{height:100%;min-height:0;overflow-x:hidden;overflow-y:auto;padding:.5rem;border:1px solid var(--cot-border);border-radius:var(--cot-radius);background:#fff;box-shadow:var(--cot-shadow);scrollbar-width:thin;scrollbar-color:rgba(124,58,237,.45) transparent}.hub-cp__cot-list::-webkit-scrollbar{width:6px}.hub-cp__cot-list::-webkit-scrollbar-thumb{border-radius:999px;background:#7c3aed59}}.hub-cp__cot-hint{margin:.35rem 0 0;font-size:.78rem;color:#64748b}.hub-cp__cot-card{display:block;flex:0 0 auto;position:relative;padding:0;border-radius:var(--cot-radius-sm);border:1px solid var(--cot-border);background:#fff;overflow:hidden;transition:border-color .15s ease,box-shadow .15s ease,transform .12s ease}.hub-cp__cot-card:before{content:"";position:absolute;inset:0 auto 0 0;width:4px;background:var(--cot-accent);z-index:1}.hub-cp__cot-card:hover{border-color:#7c3aed59;box-shadow:var(--cot-shadow-hover)}.hub-cp__cot-card--open{border-color:var(--cot-accent);box-shadow:0 0 0 3px var(--cot-accent-glow)}button.hub-cp__cot-row-trigger{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:0;align-items:stretch;width:100%;min-height:4.7rem;margin:0;padding:0;border:none;background:transparent;font:inherit;text-align:left;cursor:pointer;transition:background .15s ease}button.hub-cp__cot-row-trigger:hover,button.hub-cp__cot-row-trigger--open,.hub-cp__cot-card--open button.hub-cp__cot-row-trigger{background:transparent}button.hub-cp__cot-row-trigger:focus-visible{outline:2px solid var(--cot-accent);outline-offset:-2px}.hub-cp__cot-row-trigger--skeleton{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:0;align-items:stretch;width:100%;min-height:4.7rem;pointer-events:none}.hub-cp__cot-trigger-body{padding:.75rem .85rem;min-width:0}.hub-cp__cot-card-head{display:flex;flex-wrap:wrap;align-items:center;gap:.4rem .65rem;margin-bottom:.35rem}.hub-cp__cot-card-num{font-size:.95rem;font-weight:700;color:var(--cot-text);letter-spacing:-.01em}.hub-cp__cot-status{display:inline-flex;padding:.15rem .45rem;border-radius:999px;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em}.hub-cp__cot-status--open{background:#ecfdf5;color:#166534}.hub-cp__cot-status--order{background:#dbeafe;color:#1e40af}.hub-cp__cot-status--closed{background:#f1f5f9;color:#475569}.hub-cp__cot-status--canceled{background:#fef2f2;color:#b91c1c}.hub-cp__cot-pedido-link{font-weight:800;color:#6d28d9;text-decoration:none}.hub-cp__cot-pedido-link:hover{text-decoration:underline}.hub-cp__cot-card-details-pedido dd{font-variant-numeric:tabular-nums}.hub-cp__cot-card-details{display:flex;flex-wrap:wrap;gap:.5rem 1rem;font-size:.78rem;color:var(--cot-muted)}.hub-cp__cot-card-details strong{color:var(--cot-text);font-weight:600}.hub-cp__cot-card-motivo{margin:.4rem 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.78rem;color:var(--cot-muted)}.hub-cp__cot-card-motivo span{font-weight:600;color:#475569}.hub-cp__cot-card-side{display:flex;flex-direction:column;align-items:flex-end;justify-content:center;gap:.15rem;padding:.75rem .85rem .75rem 0}.hub-cp__cot-card-valor{font-size:1rem;font-weight:700;color:var(--cot-accent-deep);font-variant-numeric:tabular-nums;white-space:nowrap}.hub-cp__cot-card-date{font-size:.72rem;color:var(--cot-muted);white-space:nowrap}.hub-cp__cot-detail{position:relative;display:flex;flex-direction:column;min-width:0;min-height:280px;border-radius:var(--cot-radius);background:#fff;border:1px solid var(--cot-border);box-shadow:var(--cot-shadow);overflow:hidden}@media (min-width: 960px){.hub-cp__cot-detail{height:100%;min-height:0}}.hub-cp__cot-detail-placeholder{display:flex;flex:1;align-items:center;justify-content:center;padding:2rem;text-align:center;color:var(--cot-muted);font-size:.9rem}.hub-cp__cot-detail-head{padding:1.1rem 1.25rem;border-bottom:1px solid var(--cot-border);background:linear-gradient(180deg,#f8fafc,#fff)}.hub-cp__cot-detail-kicker{margin:0 0 .25rem;font-size:.7rem;font-weight:600;color:var(--cot-muted);text-transform:uppercase;letter-spacing:.08em}.hub-cp__cot-detail-title-row{display:flex;flex-wrap:wrap;align-items:center;gap:.55rem}.hub-cp__cot-detail-title{margin:0;font-size:1.35rem;font-weight:700;color:var(--cot-text);letter-spacing:-.02em}.hub-cp__cot-detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem 1rem;margin:.85rem 0 0}@media (min-width: 520px){.hub-cp__cot-detail-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}.hub-cp__cot-detail-field{min-width:0}.hub-cp__cot-detail-field dt{margin:0;font-size:.68rem;font-weight:600;color:var(--cot-muted);text-transform:uppercase;letter-spacing:.05em}.hub-cp__cot-detail-field dd{margin:.1rem 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.86rem;font-weight:600;color:var(--cot-text)}.hub-cp__cot-card .hub-skeleton,.hub-cp__cot-detail .hub-skeleton{display:block}.hub-cp__cot-detail-comments{margin:.85rem 0 0;padding:.65rem .75rem;border-radius:var(--cot-radius-sm);background:#f8fafc;font-size:.82rem;line-height:1.45;color:var(--cot-text)}.hub-cp__cot-detail-comments-lbl{display:block;margin-bottom:.18rem;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em}.hub-cp__cot-detail-body{display:flex;flex:1;min-height:0;flex-direction:column;padding:.85rem 1rem 1.1rem}.hub-cp__cot-detail-itens-title{margin:0 0 .55rem;font-size:.78rem;font-weight:700;color:var(--cot-muted);text-transform:uppercase;letter-spacing:.06em}.hub-cp__cot-detail-itens-scroll{flex:1;min-height:0;height:300px;max-height:300px;overflow-x:hidden;overflow-y:auto;padding:.5rem;border:1px solid var(--cot-border);border-radius:var(--cot-radius-sm);background:#f8fafc;scrollbar-width:thin;scrollbar-color:rgba(124,58,237,.45) transparent}@media (min-width: 960px){.hub-cp__cot-detail-itens-scroll{height:auto;max-height:none}}.hub-cp__cot-detail-itens-scroll:focus-visible{outline:2px solid var(--cot-accent);outline-offset:1px}.hub-cp__cot-detail-itens-scroll::-webkit-scrollbar{width:6px}.hub-cp__cot-detail-itens-scroll::-webkit-scrollbar-thumb{border-radius:999px;background:#7c3aed59}.hub-cp__cot-detail-loading{display:flex;align-items:center;justify-content:center;min-height:100%;margin:0;padding:1.5rem;text-align:center;color:var(--cot-muted);font-size:.88rem}.hub-cp__cot-itens-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.65rem;min-height:100%;padding:1.5rem 1rem;text-align:center}.hub-cp__cot-itens-empty p{margin:0;font-size:.88rem;color:var(--cot-muted)}.hub-cp__cot-itens-retry{padding:.4rem .75rem;border:1px solid var(--cot-border);border-radius:8px;background:#fff;color:var(--cot-accent-deep);font:inherit;font-size:.78rem;font-weight:700;cursor:pointer}.hub-cp__cot-itens-retry:hover{border-color:#7c3aed4d;background:#f8fafc}.hub-cp__cot-itens{display:flex;flex-direction:column;gap:.5rem;margin:0;padding:0;list-style:none}.hub-cp__cot-itens--skeleton{pointer-events:none}.hub-cp__cot-item{border-radius:var(--cot-radius-sm);border:1px solid var(--cot-border);overflow:hidden;transition:border-color .15s}.hub-cp__cot-item:hover{border-color:#7c3aed4d}.hub-cp__cot-item-link{display:grid;grid-template-columns:84px 1fr auto;gap:1rem;align-items:center;padding:.9rem 1rem;text-decoration:none;color:inherit}.hub-cp__cot-item-img{width:84px;height:84px;border-radius:12px;overflow:hidden;background:#f1f5f9;flex-shrink:0}.hub-cp__cot-item-img img{width:100%;height:100%;object-fit:cover}.hub-cp__cot-item-body{min-width:0;display:flex;flex-direction:column;gap:.22rem}.hub-cp__cot-item-code{font-size:.86rem;font-weight:700;color:var(--cot-accent);font-variant-numeric:tabular-nums}.hub-cp__cot-item-name{font-size:1.05rem;font-weight:500;color:var(--cot-text);line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-cp__cot-item-pricing{display:flex;flex-direction:column;align-items:flex-end;gap:.24rem;text-align:right}.hub-cp__cot-item-qty{font-size:.96rem;font-weight:600;color:var(--cot-text)}.hub-cp__cot-item-total{font-size:1.15rem;font-weight:700;color:var(--cot-accent-deep)}.hub-cp__cot-item-unit{font-size:.86rem;color:var(--cot-muted)}@media (max-width: 640px){button.hub-cp__cot-row-trigger{grid-template-columns:1fr}.hub-cp__cot-card{flex-direction:column}.hub-cp__cot-card-side{align-items:flex-start;width:100%;flex-direction:row;justify-content:space-between;padding:0 .85rem .75rem}.hub-cp__cot-detail-grid{grid-template-columns:1fr}.hub-cp__cot-item-link{grid-template-columns:66px 1fr}.hub-cp__cot-item-img{width:66px;height:66px}.hub-cp__cot-item-pricing{grid-column:1 / -1;flex-direction:row;flex-wrap:wrap;justify-content:space-between;align-items:center;padding-top:.35rem;border-top:1px dashed var(--cot-border);text-align:left}.hub-cp__cot-toolbar{flex-direction:column;align-items:stretch}}.hub-cp__opp-panel{--opp-radius: 14px;--opp-radius-sm: 10px;--opp-shadow: 0 4px 24px rgba(7, 24, 24, .06);--opp-shadow-hover: 0 8px 32px rgba(7, 24, 24, .1);--opp-accent-deep: #c2410c;--opp-accent-soft-panel: #fff7ed;--opp-accent-glow: rgba(234, 88, 12, .18);--opp-muted: #64748b;--opp-text: #0f172a;--opp-border: rgba(15, 23, 42, .08);display:flex;flex-direction:column;gap:.65rem;width:100%}.hub-cp__opp-panel>.hub-ctb__bar{gap:.35rem .5rem;padding:.42rem .6rem;margin-bottom:0;border-radius:12px}.hub-cp__opp-panel .hub-ctb__meta{flex:0 1 15.5rem;font-size:.8rem;line-height:1.25}.hub-cp__opp-panel .hub-ctb__sep{margin:0 .14rem}.hub-cp__opp-panel .hub-ctb__filters{flex-wrap:nowrap;gap:.22rem}.hub-cp__opp-panel .hub-ctb__filter{padding:.28rem .58rem;font-size:.78rem}.hub-cp__opp-panel .hub-ctb__filter-count{margin-left:.22rem}.hub-cp__opp-panel .hub-ctb__filter:hover:not(:disabled){border-color:#ea580c59;color:var(--opp-accent-deep)}.hub-cp__opp-panel .hub-ctb__filter--active{background:#ea580c;border-color:#ea580c;color:#fff}.hub-cp__opp-panel .hub-ctb__grow{flex:1 1 28rem;flex-wrap:nowrap;gap:.35rem;justify-content:flex-end}.hub-cp__opp-panel .hub-ctb__search{flex:1 1 12rem;min-width:10rem;max-width:15.5rem;padding:.32rem .55rem}.hub-cp__opp-panel .hub-ctb__search input{font-size:.8rem}.hub-cp__opp-panel .hub-ctb__search:focus-within{border-color:#ea580c;box-shadow:0 0 0 3px var(--opp-accent-glow)}.hub-cp__opp-panel .hub-ctb__field{flex:0 0 auto;gap:.28rem;font-size:.78rem;white-space:nowrap}.hub-cp__opp-panel .hub-ctb__field select{max-width:8.75rem;padding:.28rem .44rem;font-size:.78rem}.hub-cp__opp-panel .hub-ctb__cta{background:#ea580c;box-shadow:0 2px 8px #ea580c3d}.hub-cp__opp-panel .hub-ctb__cta:hover{background:#c2410c;box-shadow:0 3px 12px #ea580c52}.hub-cp__opp-panel .hub-ctb__cta-ico{width:.9rem;height:.9rem}@media (min-width: 1120px){.hub-cp__opp-panel>.hub-ctb__bar{flex-wrap:nowrap}}@media (max-width: 1119px){.hub-cp__opp-panel .hub-ctb__filters,.hub-cp__opp-panel .hub-ctb__grow{flex-wrap:wrap}.hub-cp__opp-panel .hub-ctb__search{max-width:none}}.hub-cp__opp-list{display:flex;flex-direction:column;gap:.55rem;margin:0;padding:0;list-style:none}.hub-cp__opp-list-separator{display:flex;align-items:center;gap:.55rem;margin:.25rem 0 .05rem;color:var(--opp-muted)}.hub-cp__opp-list-separator:before,.hub-cp__opp-list-separator:after{content:"";flex:1;height:1px;background:var(--opp-border)}.hub-cp__opp-list-separator span{font-size:.82rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#9a3412}.hub-cp__opp-list-separator small{font-size:.82rem;color:var(--opp-muted);white-space:nowrap}@media (min-width: 960px){.hub-cp__opp-list{overflow-x:hidden;overflow-y:visible}}.hub-cp__opp-card{--opp-accent: #ea580c;--opp-accent-soft: rgba(234, 88, 12, .18);position:relative;margin:0;border:1px solid var(--opp-border);border-radius:var(--opp-radius-sm);background:#fff;overflow:hidden;transition:border-color .15s ease,box-shadow .15s ease,transform .12s ease}.hub-cp__opp-card:before{content:"";position:absolute;inset:0 auto 0 0;width:4px;height:auto;border-radius:0;background:var(--opp-accent);box-shadow:none;z-index:1}.hub-cp__opp-card:hover{border-color:#ea580c59;box-shadow:var(--opp-shadow-hover)}.hub-cp__opp-card--open{border-color:#ea580c;box-shadow:0 0 0 3px var(--opp-accent-glow)}.hub-cp__opp-card--closed{background:#fff}button.hub-cp__opp-row-trigger{display:grid;grid-template-columns:minmax(0,1fr);gap:0;align-items:center;width:100%;margin:0;padding:0;border:none;background:transparent;font:inherit;text-align:left;cursor:pointer;transition:background .15s ease}button.hub-cp__opp-row-trigger:hover,button.hub-cp__opp-row-trigger--open,.hub-cp__opp-card--open button.hub-cp__opp-row-trigger{background:transparent}button.hub-cp__opp-row-trigger:focus-visible{outline:2px solid var(--opp-accent);outline-offset:-2px}.hub-cp__opp-row-trigger--skeleton{display:grid;grid-template-columns:minmax(0,1fr);gap:0;align-items:center;width:100%;pointer-events:none}.hub-cp__opp-trigger-body{display:grid;grid-template-columns:minmax(0,1fr) minmax(8.5rem,auto);align-items:stretch;gap:0;min-width:0}.hub-cp__opp-trigger-top{display:flex;flex-wrap:wrap;align-items:center;gap:.42rem .65rem;padding:.75rem .85rem;min-width:0}.hub-cp__opp-trigger-title-wrap{display:flex;flex:1 1 100%;flex-wrap:nowrap;align-items:center;gap:.55rem;min-width:0}.hub-cp__opp-trigger-title{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:1.08rem;font-weight:700;color:var(--opp-text);letter-spacing:-.01em;line-height:1.28}.hub-cp__opp-card-id{flex:0 0 auto;padding:.16rem .48rem;border-radius:999px;background:#fff7ed;border:1px solid #fed7aa;font-size:.82rem;font-weight:800;color:#c2410c;font-variant-numeric:tabular-nums;text-decoration:none;white-space:nowrap}.hub-cp__opp-card-id:hover{color:var(--opp-accent);border-color:#ea580c6b;background:#ffedd5}.hub-cp__opp-trigger-facts{display:flex;flex:1 1 100%;flex-wrap:wrap;align-items:center;gap:.3rem .42rem;min-width:0}.hub-cp__opp-trigger-facts span{display:inline-flex;align-items:center;gap:.25rem;min-width:0;padding:.16rem .42rem;border-radius:999px;background:#f8fafc;border:1px solid #eef2f7;font-size:.72rem;font-weight:650;color:#475569;white-space:nowrap}.hub-cp__opp-trigger-facts strong{font-size:.66rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:#94a3b8}.hub-cp__opp-card-badges{display:flex;flex-wrap:wrap;align-items:center;gap:.35rem}.hub-cp__opp-trigger-meta{display:flex;flex-direction:column;align-items:flex-end;justify-content:center;gap:.15rem;margin-top:0;padding:.75rem .85rem .75rem 0;min-width:0}.hub-cp__opp-trigger-valor{font-size:1.14rem;font-weight:700;color:var(--opp-accent-deep);font-variant-numeric:tabular-nums;white-space:nowrap}.hub-cp__opp-trigger-date{padding:0;border-radius:0;background:transparent;border:none;font-size:.82rem;font-weight:500;color:var(--opp-muted);white-space:nowrap}.hub-cp__opp-card .hub-skeleton,.hub-cp__opp-mock .hub-skeleton{display:block}.hub-cp__opp-status{display:inline-flex;align-items:center;gap:.24rem;padding:.15rem .55rem;border-radius:999px;font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;white-space:nowrap}.hub-cp__opp-status--open{background:#ecfdf5;color:#166534}.hub-cp__opp-status--won{background:#dbeafe;color:#1e40af}.hub-cp__opp-status--lost{background:#fef2f2;color:#b91c1c}.hub-cp__opp-status--other{background:#f1f5f9;color:#475569}.hub-cp__opp-stage{display:inline-flex;align-items:center;gap:.24rem;padding:.15rem .55rem;border-radius:999px;border:1px solid transparent;font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;white-space:nowrap}.hub-cp__opp-stage--leads,.hub-cp__opp-stage--qualificacao,.hub-cp__opp-stage--agenda,.hub-cp__opp-stage--diag,.hub-cp__opp-stage--teste,.hub-cp__opp-stage--proposta{background:#fff7ed;border-color:#fed7aa;color:#c2410c}.hub-cp__opp-stage--default{background:#f8fafc;border-color:#e2e8f0;color:#475569}.hub-cp__opp-funil-link{display:inline-flex;align-items:center;gap:.45rem;padding:.52rem .9rem;border-radius:999px;border:1px solid rgba(234,88,12,.24);background:#fff;font-size:.82rem;font-weight:700;color:var(--opp-accent-deep);text-decoration:none;white-space:nowrap}.hub-cp__opp-funil-link:hover{border-color:#ea580c5c;background:#ea580c0f}.hub-cp__opp-funil-link--compact{padding:.42rem .72rem;font-size:.76rem}.hub-cp__opp-funil-link-ico{width:1rem;height:1rem;flex-shrink:0}.hub-cp__opp-detail-loading,.hub-cp__opp-detail-err{margin:0;padding:.85rem;border:1px solid #e2e8f0;border-radius:12px;background:#fff;font-size:.96rem;color:#64748b}.hub-cp__opp-detail-loading{display:flex;align-items:center;gap:.5rem}.hub-cp__opp-detail-empty{margin:0;padding:.7rem 0;font-size:.9rem;color:#64748b}.hub-cp__opp-detail-subtitle{margin:0 0 .35rem;font-size:.76rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#64748b}.hub-cp__opp-detail-remarks{margin:0;padding:.7rem .8rem;border-radius:10px;background:#f8fafc;border:1px solid #eef2f7;font-size:.94rem;line-height:1.55;color:#475569;white-space:pre-wrap}.hub-cp__opp-activity-notes{margin:.3rem 0 0;font-size:.88rem;line-height:1.45;color:#64748b;white-space:pre-wrap}.hub-cp__opp-card-foot-label{display:flex;flex-wrap:wrap;align-items:center;gap:.45rem .65rem;margin:0;font-size:.9rem;font-weight:600;color:#475569}.hub-cp__opp-card-foot-label span{font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.04em;color:#94a3b8}.hub-cp__opp-stage-select{flex:1 1 12rem;min-width:10rem;max-width:20rem;padding:.48rem .62rem;border-radius:10px;border:1px solid rgba(234,88,12,.22);font:inherit;font-size:.94rem;background:#fff}.hub-cp__opp-accordion{overflow:hidden;will-change:height,opacity}.hub-cp__opp-accordion-inner{min-width:0}.hub-cp__opp-dropdown{border-top:1px solid rgba(226,232,240,.9);background:#fff}.hub-cp__opp-dropdown-inner{display:flex;flex-direction:column;gap:.65rem;margin:0;padding:1rem}.hub-cp__opp-mock{display:flex;flex-direction:column;gap:.75rem;min-width:0}.hub-cp__opp-mock-hero,.hub-cp__opp-mock-card{border:1px solid rgba(15,23,42,.08);border-radius:12px;background:#fff;box-shadow:none}.hub-cp__opp-mock-hero{padding:.85rem 1rem;background:linear-gradient(180deg,#fff,#fffaf6)}.hub-cp__opp-mock-hero-top{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:.9rem}.hub-cp__opp-mock-section-title{margin:0;font-size:.84rem;font-weight:760;color:#1f2937}.hub-cp__opp-mock-pill,.hub-cp__opp-mock-chip{display:inline-flex;align-items:center;justify-content:center;gap:.25rem;padding:.16rem .5rem;border-radius:999px;font-size:.7rem;font-weight:700;line-height:1.35;white-space:nowrap}.hub-cp__opp-mock-pill--hot{background:#fee2e2;color:#b91c1c}.hub-cp__opp-mock-pill--warm{background:#fef3c7;color:#92400e}.hub-cp__opp-mock-pill--new{background:#e6f7ef;color:#008148}.hub-cp__opp-mock-pill--cold,.hub-cp__opp-mock-pill--neutral{background:#f3f4f6;color:#374151}.hub-cp__opp-mock-pill--sap{background:#e6f7ef;color:#008148}.hub-cp__opp-mock-chip{background:#f3f4f6;color:#374151;font-weight:600}.hub-cp__opp-mock-card-head button,.hub-cp__opp-mock-card-foot button,.hub-cp__opp-mock-card--quick-note button,.hub-cp__opp-mock-card--activity>button{border:1px solid #d1d5db;border-radius:9px;background:#fff;padding:.34rem .62rem;font-size:.76rem;font-weight:700;color:#374151;text-decoration:none}.hub-cp__opp-mock-card-foot button,.hub-cp__opp-mock-card--quick-note button:last-child,.hub-cp__opp-mock-card--activity>button{border-color:#ea580c;background:#ea580c;color:#fff}.hub-cp__opp-mock-pipeline{display:flex;gap:.08rem;margin:.85rem 0 0;padding:0;list-style:none}.hub-cp__opp-mock-pipeline-step{flex:1 1 0;min-width:0;text-align:center}.hub-cp__opp-mock-pipeline-step>span{display:block;height:.36rem;background:#e2e8f0}.hub-cp__opp-mock-pipeline-step--first>span{border-radius:999px 0 0 999px}.hub-cp__opp-mock-pipeline-step--last>span{border-radius:0 999px 999px 0}.hub-cp__opp-mock-pipeline-step--done>span,.hub-cp__opp-mock-pipeline-step--current>span{background:#ea580c}.hub-cp__opp-mock-pipeline-step strong{display:inline-flex;align-items:center;justify-content:center;gap:.24rem;max-width:100%;margin-top:.32rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.7rem;font-weight:700;color:#6b7280}.hub-cp__opp-mock-pipeline-step--done strong{color:#374151}.hub-cp__opp-mock-pipeline-step--current strong{color:#c2410c}.hub-cp__opp-history-toggle{width:100%;display:flex;align-items:center;justify-content:flex-start;gap:.75rem;margin-top:.65rem;border:0;background:transparent;padding:.35rem 0;font-size:.76rem;font-weight:760;color:#374151;cursor:pointer}.hub-cp__opp-history-toggle-icon{width:.92rem;height:.92rem;color:#c2410c;transition:transform .18s ease}.hub-cp__opp-history-toggle[aria-expanded=true] .hub-cp__opp-history-toggle-icon{transform:rotate(180deg)}.hub-cp__opp-history-collapse{overflow:hidden}.hub-cp__opp-mock-grid{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(17rem,.85fr);gap:.75rem;align-items:start}.hub-cp__opp-mock-main,.hub-cp__opp-mock-side{display:flex;flex-direction:column;gap:.75rem;min-width:0}.hub-cp__opp-mock-card{padding:.82rem .9rem}.hub-cp__opp-mock-card h4{margin:0 0 .55rem;font-size:.84rem;font-weight:760;color:#1f2937}.hub-cp__opp-section-title{display:inline-flex;align-items:center;gap:.45rem;min-width:0}.hub-cp__opp-section-title svg{width:.95rem;height:.95rem;flex-shrink:0;color:#ea580c;stroke-width:2.1}.hub-cp__opp-mock-card p{margin:0;font-size:.74rem;line-height:1.45;color:#6b7280}.hub-cp__opp-mock-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:.75rem;margin-bottom:.65rem}.hub-cp__opp-mock-card-head h4{margin-bottom:.2rem}.hub-cp__opp-template-grid,.hub-cp__opp-doc-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.45rem}.hub-cp__opp-template{display:flex;align-items:center;gap:.55rem;min-width:0;padding:.5rem .6rem;border:1px solid #edf2f7;border-radius:10px;background:#f8fafc;text-align:left;cursor:pointer}.hub-cp__opp-template:hover{border-color:#ea580c47;background:#fff}.hub-cp__opp-template-icon{display:inline-flex;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:9px;flex-shrink:0}.hub-cp__opp-template-icon svg{width:1rem;height:1rem;stroke-width:2.1}.hub-cp__opp-template-icon--green,.hub-cp__opp-template-icon--amber,.hub-cp__opp-template-icon--blue,.hub-cp__opp-template-icon--purple,.hub-cp__opp-template-icon--pink,.hub-cp__opp-template-icon--indigo{background:#fff7ed;color:#c2410c}.hub-cp__opp-template span:nth-child(2){min-width:0;flex:1}.hub-cp__opp-template strong,.hub-cp__opp-doc-card strong,.hub-cp__opp-open-act strong,.hub-cp__opp-hub-card strong{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.78rem;color:#1f2937}.hub-cp__opp-template small,.hub-cp__opp-doc-card small,.hub-cp__opp-open-act small,.hub-cp__opp-hub-card small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.7rem;color:#6b7280}.hub-cp__opp-template em{font-size:.72rem;font-style:normal;font-weight:800;color:#c2410c}.hub-cp__opp-basket-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.4rem}.hub-cp__opp-basket-row{display:flex;align-items:center;gap:.5rem;min-width:0;padding:.45rem .55rem;border:1px solid #edf2f7;border-radius:9px;background:#f8fafc;font-size:.76rem}.hub-cp__opp-basket-row--contracted{border-style:solid;border-color:#ea580c38;background:#fff7ed}.hub-cp__opp-basket-row strong{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#374151}.hub-cp__opp-basket-row>span:first-child{display:inline-flex;align-items:center;justify-content:center;width:1rem;height:1rem;flex-shrink:0;color:#9ca3af}.hub-cp__opp-basket-row--contracted>span:first-child{color:#c2410c}.hub-cp__opp-basket-row>span:first-child svg{width:1rem;height:1rem;stroke-width:2.3}.hub-cp__opp-basket-row small{color:#6b7280;white-space:nowrap}.hub-cp__opp-mock-card-foot{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.75rem;margin-top:.7rem;padding-top:.7rem;border-top:1px solid #f3f4f6;font-size:.78rem;color:#6b7280}.hub-cp__opp-mock-card-foot strong{color:#c2410c}.hub-cp__opp-timeline{display:flex;flex-direction:column;margin-top:.2rem}.hub-cp__opp-timeline-row{position:relative;display:grid;grid-template-columns:auto minmax(0,1fr);gap:.65rem;padding:.52rem 0;color:#6b7280}.hub-cp__opp-timeline-row:before{content:"";position:absolute;left:.775rem;top:0;bottom:0;width:1px;background:#fed7aa;transform:translate(-50%)}.hub-cp__opp-timeline-row:first-child:before{top:1.48rem}.hub-cp__opp-timeline-row:last-child:before{bottom:calc(100% - 1.48rem)}.hub-cp__opp-timeline-row--current{color:#1f2937}.hub-cp__opp-timeline-marker{position:relative;z-index:1;display:inline-flex;align-items:center;justify-content:center;width:1.55rem;height:1.55rem;border-radius:999px;background:#ffedd5;color:#ea580c}.hub-cp__opp-timeline-marker svg{width:.9rem;height:.9rem;stroke-width:2.3}.hub-cp__opp-timeline-body{min-width:0}.hub-cp__opp-timeline-body p{margin:.2rem 0 0;font-size:.74rem;font-weight:650;color:#6b7280}.hub-cp__opp-timeline-meta{display:flex;flex-wrap:wrap;align-items:center;gap:.28rem .45rem;font-size:.7rem;color:#9ca3af}.hub-cp__opp-timeline-meta strong{font-size:.78rem;color:#374151}.hub-cp__opp-stage-change{display:flex;flex-wrap:wrap;align-items:center;gap:.45rem;margin-top:.42rem;font-size:.8rem;font-weight:760}.hub-cp__opp-stage-change strong{color:#374151}.hub-cp__opp-stage-change del,.hub-cp__opp-stage-change span[aria-hidden]{color:#9ca3af}.hub-cp__opp-stage-change span{color:#c2410c}.hub-cp__opp-notes-box{overflow:hidden;border:1px solid #e5e7eb;border-radius:10px;background:#f8fafc}.hub-cp__opp-notes-box p{min-height:8rem;margin:0;padding:.75rem .85rem;white-space:pre-wrap;font-size:.88rem;line-height:1.6;color:#374151}.hub-cp__opp-doc-card{display:grid;grid-template-columns:auto minmax(0,1fr);grid-template-rows:auto auto;gap:.1rem .5rem;padding:.55rem .6rem;border:1px solid #edf2f7;border-radius:9px;background:#f8fafc;color:inherit;text-decoration:none}.hub-cp__opp-doc-card>span{display:inline-flex;align-items:center;justify-content:center;grid-row:1 / span 2;color:#c2410c}.hub-cp__opp-doc-card>span svg{width:1rem;height:1rem;stroke-width:2.1}.hub-cp__opp-mock-card textarea,.hub-cp__opp-mock-card input{width:100%;min-width:0;margin-top:.5rem;padding:.5rem .6rem;border:1px solid #e2e8f0;border-radius:9px;background:#fff;font:inherit;font-size:.82rem;color:#374151;resize:vertical}.hub-cp__opp-mock-card--quick-note>div:last-child{display:flex;justify-content:space-between;gap:.5rem;margin-top:.55rem}.hub-cp__opp-mock-card--quick-note button,.hub-cp__opp-mock-card--activity>button{display:inline-flex;align-items:center;justify-content:center;gap:.35rem}.hub-cp__opp-mock-card--quick-note button svg{width:.88rem;height:.88rem;stroke-width:2.2}.hub-cp__opp-act-types{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:.3rem;margin-top:.65rem}.hub-cp__opp-act-type{display:flex;flex-direction:column;align-items:center;gap:.1rem;min-width:0;padding:.42rem .24rem;border:1px solid #e2e8f0;border-radius:9px;background:#f8fafc;font-size:.68rem;color:#6b7280}.hub-cp__opp-act-type svg{width:1rem;height:1rem;stroke-width:2.1}.hub-cp__opp-act-type--selected{border-color:#ea580c52;background:#fff7ed;color:#c2410c;font-weight:800}.hub-cp__opp-open-activities{display:flex;flex-direction:column;gap:.5rem}.hub-cp__opp-open-act{display:flex;align-items:center;gap:.55rem;min-width:0;padding:.55rem .6rem;border:1px solid #edf2f7;border-radius:9px;background:#f8fafc}.hub-cp__opp-open-act>span{display:inline-flex;align-items:center;justify-content:center;width:1.75rem;height:1.75rem;border-radius:9px;background:#fff7ed;flex-shrink:0}.hub-cp__opp-open-act>span svg{width:1rem;height:1rem;stroke-width:2.1;color:#c2410c}.hub-cp__opp-open-act>div{min-width:0}.hub-cp__opp-hub-card{position:relative;margin-top:.75rem;padding:.8rem;border:1px solid #edf2f7;border-radius:10px;background:#f8fafc}.hub-cp__opp-hub-card>span{position:absolute;top:.45rem;right:.45rem;border-radius:.25rem;background:#f3f4f6;padding:.12rem .38rem;font-size:.62rem;font-weight:800;color:#9ca3af;display:inline-flex;align-items:center;gap:.22rem}.hub-cp__opp-hub-card>span svg{width:.72rem;height:.72rem;stroke-width:2.3}.hub-cp__opp-dropdown-section-head{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:.65rem;margin-bottom:.65rem}.hub-cp__opp-dropdown-section-head .hub-cp__opp-detail-subtitle{margin-bottom:0}.hub-cp__opp-dropdown-kicker{margin:.05rem 0 0;font-size:1.12rem;font-weight:700;line-height:1.2;color:#0f172a;letter-spacing:-.01em}.hub-cp__opp-dropdown-section{min-width:0;padding:.85rem 0;border:none;border-top:1px solid rgba(226,232,240,.9);border-radius:0;background:#fff}.hub-cp__opp-dropdown-inner>.hub-cp__opp-dropdown-section:first-of-type{padding-top:0;border-top:none;background:#fff}.hub-cp__opp-dropdown-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem 1rem;margin:0}@media (min-width: 520px){.hub-cp__opp-dropdown-facts{grid-template-columns:repeat(3,minmax(0,1fr))}}.hub-cp__opp-dropdown-facts>div{min-width:0}.hub-cp__opp-dropdown-facts dt{margin:0;font-size:.78rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--opp-muted)}.hub-cp__opp-dropdown-facts dd{margin:.1rem 0 0;font-size:1rem;font-weight:600;color:var(--opp-text);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hub-cp__opp-dropdown-facts dd small{display:block;margin-top:.1rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.72rem;font-weight:600;color:#64748b}.hub-cp__opp-dropdown-stages{display:flex;gap:.5rem;margin:0;padding:0;list-style:none;overflow-x:auto;scrollbar-width:thin}.hub-cp__opp-dropdown-stage{position:relative;display:flex;flex-direction:column;gap:.14rem;flex:1 0 8rem;min-width:8rem;padding:.65rem .7rem;border-radius:var(--opp-radius-sm);background:#f8fafc;border:1px solid #e8edf3;overflow:hidden}.hub-cp__opp-dropdown-stage:before{content:"";position:absolute;inset:0 auto 0 0;width:3px;height:auto;border-radius:999px;background:#cbd5e1}.hub-cp__opp-dropdown-stage--current{background:#fff7ed;border-color:#ea580c47;box-shadow:none}.hub-cp__opp-dropdown-stage--current:before{background:var(--opp-accent)}.hub-cp__opp-dropdown-stage span{font-size:.88rem;font-weight:800;color:#0f172a;line-height:1.25}.hub-cp__opp-dropdown-stage strong{font-size:.8rem;font-weight:700;color:#475569}.hub-cp__opp-dropdown-stage small{font-size:.76rem;color:#94a3b8}.hub-cp__opp-dropdown-stage--current span,.hub-cp__opp-dropdown-stage--current strong{color:var(--opp-accent-deep)}.hub-cp__opp-dropdown-cols{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem}.hub-cp__opp-dropdown-cols .hub-cp__opp-dropdown-section{display:flex;flex-direction:column}.hub-cp__opp-dropdown-list{display:flex;flex-direction:column;gap:.35rem;margin:0;padding:0;list-style:none}.hub-cp__opp-dropdown-list-item{display:flex;flex-direction:column;gap:.16rem;padding:.66rem .76rem;border-radius:var(--opp-radius-sm);background:#f8fafc;border:1px solid #edf2f7;color:inherit;text-decoration:none;transition:background .15s ease,border-color .15s ease,transform .15s ease}a.hub-cp__opp-dropdown-list-item:hover{background:#fff;border-color:#ea580c47;transform:translateY(-1px)}.hub-cp__opp-dropdown-list-item strong{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.94rem;font-weight:700;color:#0f172a}.hub-cp__opp-dropdown-list-item span{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.84rem;font-weight:600;color:#64748b}.hub-cp__opp-dropdown-foot{padding:.85rem 0 0;border:none;border-top:1px solid rgba(226,232,240,.9);border-radius:0;background:#fff}.hub-cp-modal__dialog:has(.hub-cp__opp-funil-form){width:min(100%,64rem);max-height:min(92vh,900px);border-radius:12px}.hub-cp-modal__dialog:has(.hub-cp__opp-funil-form) .hub-cp-modal__head{padding:1.5rem 1.5rem 1rem;border-bottom:none;background:#fff}.hub-cp-modal__dialog:has(.hub-cp__opp-funil-form) .hub-cp-modal__body{padding:0 1.5rem .85rem;overflow-y:auto}.hub-cp-modal__dialog:has(.hub-cp__opp-funil-form) .hub-cp-modal__foot{padding:.65rem 1.5rem 1.5rem;border-top:none}.hub-cp__opp-modal-title{font-size:1.25rem;font-weight:600;letter-spacing:-.01em;color:#262d2d}.hub-cp__opp-funil-form{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));column-gap:1rem;row-gap:.75rem}.hub-cp__opp-funil-field--title{grid-column:span 7}.hub-cp__opp-funil-field--client{grid-column:span 5}.hub-cp__opp-funil-field--full{grid-column:1 / -1}.hub-cp__opp-funil-label{display:block;margin-bottom:.375rem;font-size:.875rem;font-weight:500;color:#384444}.hub-cp__opp-funil-input,.hub-cp__opp-funil-textarea{width:100%;border:1px solid #dfe3e3;border-radius:8px;background:#fff;color:#262d2d;font:inherit;font-size:.875rem;outline:none;transition:border-color .15s ease,box-shadow .15s ease}.hub-cp__opp-funil-input{height:2.5rem;padding:0 .75rem}.hub-cp__opp-funil-input[readonly]{color:#384444;background:#fff}.hub-cp__opp-funil-input:focus,.hub-cp__opp-funil-textarea:focus{border-color:#4f9291;box-shadow:0 0 0 2px #4f929133}.hub-cp__opp-funil-input--err{border-color:#dc2626}.hub-cp__opp-funil-textarea{min-height:6rem;padding:.5rem .75rem;resize:none}.hub-cp__opp-funil-char-count{margin:.15rem 0 0;text-align:right;font-size:.75rem;color:#7e8d8d}.hub-cp__opp-funil-char-count--warn{font-weight:500;color:#384444}.hub-cp__opp-funil-char-count--max{color:#dc2626}.hub-cp__opp-funil-field-err,.hub-cp__opp-funil-form-err{margin:.25rem 0 0;font-size:.75rem;color:#dc2626}.hub-cp__opp-funil-form-err--block{grid-column:1 / -1}.hub-cp__opp-funil-stage-skeleton{height:7.5rem;border-radius:12px;background:linear-gradient(90deg,#f4f8f8 25%,#dfe3e3,#f4f8f8 75%);background-size:200% 100%;animation:hub-cp-opp-skeleton 1.2s ease-in-out infinite}@keyframes hub-cp-opp-skeleton{0%{background-position:200% 0}to{background-position:-200% 0}}.hub-cp__opp-funil-stage{display:flex;flex-direction:column;gap:.5rem}.hub-cp__opp-funil-stage-head{display:flex;align-items:center;justify-content:space-between;gap:.75rem}.hub-cp__opp-funil-stage-badge{padding:.25rem .625rem;border-radius:999px;background:#f4f8f8;font-size:.75rem;font-weight:500;color:#1c5f5e}.hub-cp__opp-funil-stage-panel{padding:.75rem;border:1px solid #dfe3e3;border-radius:12px;background:#f7f8f899}.hub-cp__opp-funil-stage-track-wrap{position:relative;padding:0 1rem .25rem}.hub-cp__opp-funil-stage-track{position:absolute;left:1rem;right:1rem;top:1rem;height:.25rem;border-radius:999px;background:#dfe3e3}.hub-cp__opp-funil-stage-track--fill{right:auto;background:#4f9291;transition:width .5s ease-out}.hub-cp__opp-funil-stage-steps{position:relative;display:flex;justify-content:space-between;gap:.25rem}.hub-cp__opp-funil-stage-step{display:inline-flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;border:2px solid #dfe3e3;border-radius:999px;background:#fff;box-shadow:0 1px 2px #0000000f;color:#7e8d8d;font-size:.875rem;font-weight:600;cursor:pointer;transition:transform .3s ease,border-color .3s ease,background-color .3s ease,color .3s ease,box-shadow .3s ease}.hub-cp__opp-funil-stage-step:hover{transform:translateY(-2px);box-shadow:0 4px 8px #00000014}.hub-cp__opp-funil-stage-step--active{transform:scale(1.1);border-color:#4f9291;background:#4f9291;color:#fff;box-shadow:0 4px 10px #0000001a}.hub-cp__opp-funil-stage-step--past:not(.hub-cp__opp-funil-stage-step--selected){border-color:#4f9291;background:#4f9291;color:#fff}.hub-cp__opp-funil-stage-selected{display:flex;align-items:center;gap:.5rem;margin-top:.75rem;padding:.5rem .75rem;border-radius:8px;background:#fff;box-shadow:0 1px 2px #0000000f;font-size:.875rem}.hub-cp__opp-funil-stage-dot{width:.625rem;height:.625rem;border-radius:999px;background:#4f9291;flex-shrink:0}.hub-cp__opp-funil-stage-selected-label{color:#7e8d8d}.hub-cp__opp-funil-stage-selected strong{font-weight:600;color:#262d2d}.hub-cp__opp-funil-segments-head{grid-column:1 / -1;display:flex;align-items:center;justify-content:space-between}.hub-cp__opp-funil-segments-title{margin:0;font-size:.875rem;font-weight:600;color:#262d2d}.hub-cp__opp-funil-segments-grid{grid-column:1 / -1;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.375rem}.hub-cp__opp-funil-segment-skeleton{height:2.75rem;border-radius:12px;border:1px solid #f4f8f8;background:#dfe3e3b3;animation:hub-cp-opp-skeleton 1.2s ease-in-out infinite}.hub-cp__opp-funil-segments-error{grid-column:1 / -1;padding:.5rem .75rem;border:1px solid #fee2e2;border-radius:12px;background:#fef2f2;color:#b91c1c;font-size:.875rem}.hub-cp__opp-funil-segment{display:flex;align-items:center;gap:.5rem;height:2.75rem;padding:0 .5rem;border-radius:12px;background:#f7f8f899;color:#4b5a5a;transition:background-color .2s ease,box-shadow .2s ease,color .2s ease}.hub-cp__opp-funil-segment--selected{background:#f4f8f8;color:#0e302f;box-shadow:0 1px 2px #0000000f}.hub-cp__opp-funil-segment-check{display:inline-flex;align-items:center;justify-content:center;width:1.375rem;height:1.375rem;border:1px solid #bfc6c6;border-radius:6px;background:#fff;color:transparent;cursor:pointer;flex-shrink:0;transition:border-color .2s ease,background-color .2s ease,color .2s ease}.hub-cp__opp-funil-segment:hover .hub-cp__opp-funil-segment-check:not(.hub-cp__opp-funil-segment-check--on){border-color:#a7c9c8;background:#f4f8f8}.hub-cp__opp-funil-segment-check--on{border-color:#237776;background:#237776;color:#fff}.hub-cp__opp-funil-segment-check-ico{width:1rem;height:1rem;flex-shrink:0}.hub-cp__opp-funil-segment-name{min-width:0;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.75rem;font-weight:600}.hub-cp__opp-funil-segment-value{display:flex;align-items:center;width:7rem;height:1.75rem;flex-shrink:0;border-bottom:1px solid #bfc6c6;transition:border-color .15s ease}.hub-cp__opp-funil-segment-value:focus-within{border-bottom-color:#237776}.hub-cp__opp-funil-segment-value--err{border-bottom-color:#dc2626}.hub-cp__opp-funil-segment-value--disabled{opacity:.6}.hub-cp__opp-funil-segment-currency{font-size:.625rem;font-weight:600;color:#7e8d8d}.hub-cp__opp-funil-segment-input{min-width:0;flex:1;border:none;background:transparent;padding-left:.25rem;font-size:.75rem;font-weight:600;color:#262d2d;outline:none}.hub-cp__opp-funil-segment-input::placeholder{color:#7e8d8d}.hub-cp__opp-funil-segment-input:disabled{cursor:not-allowed;color:#7e8d8d}.hub-cp__opp-funil-segments-empty{grid-column:1 / -1;margin:0;padding:1rem;border:1px dashed #dfe3e3;border-radius:16px;background:#ffffffb3;text-align:center;font-size:.875rem;color:#7e8d8d}.hub-cp__opp-funil-segments-total{grid-column:1 / -1;justify-self:end;margin:0;padding:.25rem .625rem;border:1px solid #d3e4e4;border-radius:999px;background:#f4f8f8;font-size:.75rem;font-weight:700;color:#1c5f5e}.hub-cp__opp-funil-modal-foot{justify-content:flex-end}.hub-cp__opp-funil-btn{display:inline-flex;align-items:center;justify-content:center;min-height:2.5rem;padding:0 1rem;border:none;border-radius:8px;font:inherit;font-size:.875rem;font-weight:500;cursor:pointer;transition:background-color .15s ease,color .15s ease}.hub-cp__opp-funil-btn--ghost{background:transparent;color:#4b5a5a}.hub-cp__opp-funil-btn--ghost:hover:not(:disabled){background:#f7f8f8}.hub-cp__opp-funil-btn--primary{background:#119531;color:#fff;box-shadow:0 1px 2px #0000000f}.hub-cp__opp-funil-btn--primary:hover:not(:disabled){background:#0d7a28}.hub-cp__opp-funil-btn:disabled{opacity:.5;cursor:not-allowed}.hub-cp__opp-modal-form{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:1rem}.hub-cp__opp-modal-col{display:flex;min-width:0;flex-direction:column;gap:1rem}.hub-cp__opp-modal-foot{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:.5rem}.hub-cp__opp-modal-err{margin-top:.85rem;text-align:left}.hub-cp__opp-field{display:flex;flex-direction:column;gap:.45rem;font-size:.9rem;font-weight:600;color:#4f5a5f}.hub-cp__opp-field--wide{grid-column:1 / -1}.hub-cp__opp-field input,.hub-cp__opp-field select,.hub-cp__opp-field textarea{width:100%;padding:.62rem .75rem;border-radius:8px;border:1px solid #d7dde1;font:inherit;font-size:.92rem;color:#0f172a;background:#fff;transition:border-color .15s ease,box-shadow .15s ease}.hub-cp__opp-field input{height:2.55rem}.hub-cp__opp-field input[readonly]{color:#475569;background:#f8fafc}.hub-cp__opp-field textarea{min-height:8.75rem;resize:vertical}.hub-cp__opp-field-count{align-self:flex-end;margin-top:-.25rem;font-size:.78rem;font-weight:600;color:#8a969c}.hub-cp__opp-field--notes,.hub-cp__opp-field--notes textarea{flex:1}.hub-cp__opp-field input:focus,.hub-cp__opp-field select:focus,.hub-cp__opp-field textarea:focus{outline:none;border-color:#ea580c73;box-shadow:0 0 0 3px #ea580c1a}.hub-cp__opp-stage-picker{padding:.85rem .75rem .65rem;border:1px solid #d7dde1;border-radius:10px;background:#fff}.hub-cp__opp-stage-picker-head{display:flex;align-items:center;justify-content:space-between;gap:.75rem;margin-bottom:1rem;font-size:.9rem;font-weight:700;color:#4f5a5f}.hub-cp__opp-stage-picker-head strong{padding:.34rem .7rem;border-radius:999px;background:#f2f7f7;font-size:.78rem;font-weight:700;color:#0f5960}.hub-cp__opp-stage-steps{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));align-items:center;gap:.35rem;margin:0 .45rem}.hub-cp__opp-stage-step{position:relative;display:inline-flex;align-items:center;justify-content:center;justify-self:center;width:2.15rem;height:2.15rem;border:2px solid #d7dde1;border-radius:999px;background:#fff;color:#8a969c;font:inherit;font-size:.92rem;font-weight:800;cursor:pointer;transition:border-color .15s ease,background .15s ease,color .15s ease,transform .15s ease}.hub-cp__opp-stage-step:not(:first-child):before{content:"";position:absolute;right:calc(100% + 2px);width:calc(100% - .25rem);height:3px;background:#d7dde1;pointer-events:none}.hub-cp__opp-stage-step:hover{border-color:#ea580c73;color:var(--opp-accent-deep)}.hub-cp__opp-stage-step--active{border-color:#a5c94f;background:#a5c94f;color:#fff;transform:scale(1.08)}.hub-cp__opp-stage-selected{display:flex;align-items:center;gap:.55rem;margin:.85rem 0 0;padding:.7rem .75rem;border-radius:8px;background:#fff;box-shadow:0 8px 18px #0f172a0a;font-size:.9rem;color:#7b858a}.hub-cp__opp-stage-selected span{width:.65rem;height:.65rem;border-radius:999px;background:#a5c94f}.hub-cp__opp-stage-selected strong{color:#4b5357}.hub-cp__opp-form-btn{padding:.7rem 1rem;border-radius:8px;border:1px solid transparent;font:inherit;font-size:.9rem;font-weight:700;cursor:pointer}.hub-cp__opp-form-btn--ghost{border-color:transparent;background:#fff;color:#5a6469}.hub-cp__opp-form-btn--primary{min-width:4rem;background:#93b72f;color:#fff}.hub-cp__opp-form-btn--primary:hover:not(:disabled){background:#7fa123}.hub-cp__opp-form-btn:disabled{opacity:.65;cursor:not-allowed}@media (min-width: 1280px){.hub-cp__opp-funil-segments-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (max-width: 900px){.hub-cp__opp-funil-field--title,.hub-cp__opp-funil-field--client{grid-column:1 / -1}.hub-cp__opp-funil-segments-grid{grid-template-columns:1fr}}@media (max-width: 640px){.hub-cp-modal__dialog:has(.hub-cp__opp-funil-form) .hub-cp-modal__head{padding:1rem 1rem .65rem}.hub-cp-modal__dialog:has(.hub-cp__opp-funil-form) .hub-cp-modal__body{padding:0 1rem .8rem}.hub-cp-modal__dialog:has(.hub-cp__opp-funil-form) .hub-cp-modal__foot{padding:.6rem 1rem 1rem}.hub-cp__opp-funil-stage-step{width:2rem;height:2rem;font-size:.8rem}.hub-cp-modal__dialog:has(.hub-cp__opp-modal-form) .hub-cp-modal__head{padding:1rem 1rem .65rem}.hub-cp-modal__dialog:has(.hub-cp__opp-modal-form) .hub-cp-modal__body{padding:.65rem 1rem .8rem}.hub-cp-modal__dialog:has(.hub-cp__opp-modal-form) .hub-cp-modal__foot{padding:.6rem 1rem 1rem}.hub-cp__opp-modal-form{grid-template-columns:1fr}.hub-cp__opp-stage-steps{margin:0}.hub-cp__opp-stage-step{width:1.95rem;height:1.95rem}button.hub-cp__opp-row-trigger{grid-template-columns:1fr;padding:0}.hub-cp__opp-trigger-body{grid-template-columns:1fr;gap:0}.hub-cp__opp-trigger-title-wrap{flex-wrap:wrap}.hub-cp__opp-trigger-title{white-space:normal}.hub-cp__opp-trigger-meta{align-items:flex-start;padding:0 .85rem .75rem}.hub-cp__opp-dropdown-inner{padding:.75rem .8rem .9rem}.hub-cp__opp-dropdown-cols,.hub-cp__opp-dropdown-facts{grid-template-columns:1fr}.hub-cp__opp-dropdown-section-head{align-items:stretch;flex-direction:column}.hub-cp__opp-dropdown-section-head .hub-cp__opp-funil-link{justify-content:center;width:100%}}@media (prefers-reduced-motion: reduce){.hub-cp__opp-card,.hub-cp__opp-row-trigger{transition:none}}.hub-pv{--pv-radius: 14px;--pv-radius-sm: 10px;--pv-itens-height: 300px;--pv-shadow: 0 4px 24px rgba(161, 43, 57, .06);--pv-shadow-hover: 0 8px 32px rgba(161, 43, 57, .1);--pv-accent: #a12b39;--pv-accent-deep: #7f1d2a;--pv-accent-soft: #feefef;--pv-accent-glow: rgba(161, 43, 57, .16);--pv-surface: #ffffff;--pv-muted: #64748b;--pv-text: #0f172a;--pv-border: rgba(15, 23, 42, .08);--pv-open: #a12b39;--pv-open-bg: #feefef;--pv-closed: #475569;--pv-closed-bg: #f1f5f9;display:flex;flex-direction:column;gap:.65rem;min-height:420px}.hub-pv>.hub-ctb__bar{gap:.35rem .5rem;padding:.42rem .6rem;margin-bottom:0;border-radius:12px}.hub-pv .hub-ctb__meta{font-size:.8rem;line-height:1.25}.hub-pv .hub-ctb__sep{margin:0 .14rem}.hub-pv .hub-ctb__filters{flex-wrap:nowrap;gap:.22rem}.hub-pv .hub-ctb__filter{padding:.28rem .58rem;font-size:.78rem}.hub-pv .hub-ctb__filter:hover:not(:disabled){border-color:#a12b394d;background:var(--pv-accent-soft);color:var(--pv-accent-deep)}.hub-pv .hub-ctb__filter--active{border-color:var(--pv-accent);background:var(--pv-accent);color:#fff}.hub-pv .hub-ctb__filter-count{margin-left:.22rem}.hub-pv .hub-ctb__grow{flex:1 1 24rem;flex-wrap:nowrap;gap:.35rem;justify-content:flex-end}.hub-pv .hub-ctb__search{flex:1 1 13rem;min-width:10rem;max-width:16rem;padding:.32rem .55rem}.hub-pv .hub-ctb__search:focus-within{border-color:var(--pv-accent);box-shadow:0 0 0 3px var(--pv-accent-glow)}.hub-pv .hub-ctb__search input{font-size:.8rem}.hub-pv .hub-ctb__field{flex:0 0 auto;gap:.28rem;font-size:.78rem;white-space:nowrap}.hub-pv .hub-ctb__field select{max-width:9.5rem;padding:.28rem .44rem;font-size:.78rem}.hub-pv .hub-ctb__cta{background:var(--pv-accent);border-color:var(--pv-accent);color:#fff}.hub-pv .hub-ctb__cta:hover{background:var(--pv-accent-deep);border-color:var(--pv-accent-deep)}.hub-pv .hub-ctb__cta-ico{width:.9rem;height:.9rem}@media (min-width: 1120px){.hub-pv>.hub-ctb__bar{flex-wrap:nowrap}}@media (max-width: 1119px){.hub-pv .hub-ctb__filters,.hub-pv .hub-ctb__grow{flex-wrap:wrap}.hub-pv .hub-ctb__search{max-width:none}}.hub-pv__cta{display:inline-flex;align-items:center;justify-content:center;gap:.45rem;padding:.6rem 1.15rem;border:none;border-radius:var(--pv-radius-sm);background:var(--pv-accent);color:#fff;font-size:.9rem;font-weight:650;cursor:pointer;white-space:nowrap;box-shadow:0 2px 8px #a12b393d;transition:background .15s ease,box-shadow .15s ease}.hub-pv__cta:hover{background:var(--pv-accent-deep);box-shadow:0 3px 12px #a12b3947}.hub-pv__cta:focus-visible{outline:2px solid var(--pv-accent);outline-offset:2px}.hub-pv__cta-ico{width:1.05rem;height:1.05rem;flex-shrink:0}.hub-pv__toolbar{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem .75rem;padding:.6rem .85rem;border-radius:var(--pv-radius);background:var(--pv-surface);border:1px solid var(--pv-border)}.hub-pv__toolbar-meta{flex:1 1 12rem;min-width:0;margin:0;font-size:.82rem;line-height:1.35;color:var(--pv-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hub-pv__toolbar-meta strong{font-weight:600;color:var(--pv-text)}.hub-pv__toolbar-sep{margin:0 .2rem;opacity:.55}.hub-pv__toolbar .hub-pv__cta{flex-shrink:0;margin-left:auto;padding:.45rem .95rem;font-size:.84rem}@media (min-width: 900px){.hub-pv__toolbar{flex-wrap:nowrap}.hub-pv__toolbar-meta{flex:0 1 auto;max-width:32%}}@media (max-width: 899px){.hub-pv__toolbar .hub-pv__cta{width:100%;margin-left:0}.hub-pv__toolbar-grow{width:100%}}.hub-pv__filters{display:flex;flex-wrap:wrap;gap:.4rem}.hub-pv__filter{padding:.4rem .85rem;border:1px solid var(--pv-border);border-radius:999px;background:#f8fafc;color:var(--pv-muted);font-size:.82rem;font-weight:600;cursor:pointer;transition:background .15s,color .15s,border-color .15s}.hub-pv__filter:hover:not(:disabled){border-color:#a12b3959;color:var(--pv-accent-deep)}.hub-pv__filter--active{background:var(--pv-accent);border-color:var(--pv-accent);color:#fff}.hub-pv__filter:disabled{opacity:.45;cursor:not-allowed}.hub-pv__filter-count{margin-left:.35rem;opacity:.85;font-variant-numeric:tabular-nums}.hub-pv__toolbar-grow{flex:1 1 200px;display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;justify-content:flex-end;min-width:0}.hub-pv__search{display:flex;align-items:center;gap:.45rem;flex:1 1 200px;max-width:320px;padding:.45rem .75rem;border-radius:999px;border:1px solid var(--pv-border);background:#f8fafc;transition:border-color .15s,box-shadow .15s}.hub-pv__search:focus-within{border-color:var(--pv-accent);box-shadow:0 0 0 3px var(--pv-accent-glow);background:#fff}.hub-pv__search-ico{width:1rem;height:1rem;color:var(--pv-muted);flex-shrink:0}.hub-pv__search input{flex:1;min-width:0;border:none;background:transparent;font-size:.86rem;color:var(--pv-text);outline:none}.hub-pv__search input::placeholder{color:#94a3b8}.hub-pv__search-clear{border:none;background:none;padding:0;font-size:.75rem;font-weight:600;color:var(--pv-accent);cursor:pointer}.hub-pv__sort{display:flex;align-items:center;gap:.4rem;font-size:.8rem;color:var(--pv-muted)}.hub-pv__sort select{padding:.35rem .6rem;border-radius:8px;border:1px solid var(--pv-border);background:#fff;font-size:.82rem;color:var(--pv-text)}.hub-pv__layout{display:grid;grid-template-columns:1fr;gap:1rem;align-items:stretch}@media (min-width: 960px){.hub-pv__layout{grid-template-columns:minmax(0,1fr) minmax(0,1fr);height:min(640px,calc(100vh - 220px));min-height:480px}}.hub-pv__feed{display:flex;flex-direction:column;gap:.55rem;margin:0;padding:0;list-style:none;max-height:none}@media (min-width: 960px){.hub-pv__feed{height:100%;min-height:0;overflow-x:hidden;overflow-y:auto;padding:.5rem;border:1px solid var(--pv-border);border-radius:var(--pv-radius);background:var(--pv-surface);box-shadow:var(--pv-shadow);scrollbar-width:thin;scrollbar-color:rgba(161,43,57,.45) transparent}.hub-pv__feed::-webkit-scrollbar{width:6px}.hub-pv__feed::-webkit-scrollbar-thumb{border-radius:999px;background:#a12b3959}}.hub-pv__feed-empty{padding:2rem 1rem;text-align:center;color:var(--pv-muted);font-size:.9rem}.hub-pv__order{display:block;width:100%;text-align:left;padding:0;border:1px solid var(--pv-border);border-radius:var(--pv-radius-sm);background:var(--pv-surface);cursor:pointer;overflow:hidden;transition:border-color .15s,box-shadow .15s,transform .12s}.hub-pv__order:hover{border-color:#a12b3959;box-shadow:var(--pv-shadow-hover)}.hub-pv__order--selected{border-color:var(--pv-accent);box-shadow:0 0 0 3px var(--pv-accent-glow)}.hub-pv__order-inner{display:grid;grid-template-columns:4px 1fr auto;align-items:stretch;gap:0}.hub-pv__order-stripe{background:var(--pv-open)}.hub-pv__order-stripe--closed{background:var(--pv-closed)}.hub-pv__order-body{padding:.75rem .85rem;min-width:0}.hub-pv__order-top{display:flex;flex-wrap:wrap;align-items:center;gap:.4rem .65rem;margin-bottom:.35rem}.hub-pv__order-num{font-size:.95rem;font-weight:700;color:var(--pv-text);letter-spacing:-.01em}.hub-pv__order-badge{display:inline-flex;padding:.15rem .55rem;border-radius:999px;font-size:.68rem;font-weight:700;letter-spacing:.03em;text-transform:uppercase}.hub-pv__order-badge--open{background:var(--pv-open-bg);color:var(--pv-open)}.hub-pv__order-badge--closed{background:var(--pv-closed-bg);color:var(--pv-closed)}.hub-pv__order-meta{display:flex;flex-wrap:wrap;gap:.5rem 1rem;font-size:.78rem;color:var(--pv-muted)}.hub-pv__order-meta strong{color:var(--pv-text);font-weight:600}.hub-pv__order-note{margin:.4rem 0 0;font-size:.78rem;color:var(--pv-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hub-pv__order-aside{display:flex;flex-direction:column;align-items:flex-end;justify-content:center;padding:.75rem .85rem .75rem 0;gap:.15rem}.hub-pv__order-val{font-size:1rem;font-weight:700;color:var(--pv-accent-deep);font-variant-numeric:tabular-nums;white-space:nowrap}.hub-pv__order-date{font-size:.72rem;color:var(--pv-muted)}.hub-pv__detail{position:relative;display:flex;flex-direction:column;border-radius:var(--pv-radius);background:var(--pv-surface);border:1px solid var(--pv-border);box-shadow:var(--pv-shadow);overflow:hidden;min-height:280px}@media (min-width: 960px){.hub-pv__detail{height:100%;min-height:0}}.hub-pv__detail-placeholder{display:flex;flex:1;flex-direction:column;align-items:center;justify-content:center;gap:.75rem;padding:3rem 1.5rem;text-align:center;color:var(--pv-muted);min-height:280px}.hub-pv__detail-placeholder-ico{width:3rem;height:3rem;opacity:.35}.hub-pv__detail-head{flex-shrink:0;padding:1.1rem 1.25rem;background:linear-gradient(180deg,#f8fafc,#fff);border-bottom:1px solid var(--pv-border)}.hub-pv__detail-kicker{margin:0 0 .25rem;font-size:.7rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--pv-muted)}.hub-pv__detail-title-row{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem .75rem}.hub-pv__detail-title{margin:0;font-size:1.35rem;font-weight:700;color:var(--pv-text);letter-spacing:-.02em}.hub-pv__detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem 1rem;margin-top:.85rem}@media (min-width: 520px){.hub-pv__detail-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}.hub-pv__detail-field dt{margin:0;font-size:.68rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pv-muted)}.hub-pv__detail-field dd{margin:.1rem 0 0;font-size:.88rem;font-weight:600;color:var(--pv-text)}.hub-pv__detail-comments{margin:.85rem 0 0;padding:.65rem .75rem;border-radius:var(--pv-radius-sm);background:#f8fafc;font-size:.84rem;line-height:1.45;color:var(--pv-text)}.hub-pv__detail-comments-lbl{display:block;margin-bottom:.2rem;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--pv-muted)}.hub-pv__detail-body{flex:1;min-height:0;display:flex;flex-direction:column;padding:.85rem 1rem 1.1rem}.hub-pv__detail-itens-title{flex-shrink:0;margin:0 0 .55rem;font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--pv-muted)}.hub-pv__detail-itens-scroll{flex:1;min-height:0;height:var(--pv-itens-height);max-height:var(--pv-itens-height);overflow-x:hidden;overflow-y:auto;padding:.5rem;border:1px solid var(--pv-border);border-radius:var(--pv-radius-sm);background:#f8fafc;scrollbar-width:thin;scrollbar-color:rgba(161,43,57,.45) transparent}@media (min-width: 960px){.hub-pv__detail-itens-scroll{height:auto;max-height:none}}.hub-pv__detail-itens-scroll:focus-visible{outline:2px solid var(--pv-accent);outline-offset:1px}.hub-pv__detail-itens-scroll::-webkit-scrollbar{width:6px}.hub-pv__detail-itens-scroll::-webkit-scrollbar-thumb{border-radius:999px;background:#a12b3959}.hub-pv__detail-loading{display:flex;align-items:center;justify-content:center;min-height:100%;margin:0;padding:1.5rem;text-align:center;font-size:.88rem;color:var(--pv-muted)}.hub-pv__itens-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.65rem;min-height:100%;padding:1.5rem 1rem;text-align:center}.hub-pv__itens-empty p{margin:0;font-size:.88rem;color:var(--pv-muted)}.hub-pv__itens{display:flex;flex-direction:column;gap:.5rem;margin:0;padding:0;list-style:none}.hub-pv__item{border-radius:var(--pv-radius-sm);border:1px solid var(--pv-border);overflow:hidden;transition:border-color .15s}.hub-pv__item:hover{border-color:#a12b394d}.hub-pv__item-link{display:grid;grid-template-columns:84px 1fr auto;gap:1rem;align-items:center;padding:.9rem 1rem;text-decoration:none;color:inherit}@media (max-width: 480px){.hub-pv__item-link{grid-template-columns:66px 1fr}.hub-pv__item-img{width:66px;height:66px}.hub-pv__item-pricing{grid-column:1 / -1;flex-direction:row!important;flex-wrap:wrap;padding-top:.35rem;border-top:1px dashed var(--pv-border)}}.hub-pv__item-img{width:84px;height:84px;border-radius:12px;overflow:hidden;background:#f1f5f9;flex-shrink:0}.hub-pv__item-img img{width:100%;height:100%;object-fit:cover}.hub-pv__item-body{min-width:0;display:flex;flex-direction:column;gap:.22rem}.hub-pv__item-code{font-size:.86rem;font-weight:700;color:var(--pv-accent);font-variant-numeric:tabular-nums}.hub-pv__item-name{font-size:1.05rem;font-weight:500;color:var(--pv-text);line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-pv__item-meta{font-size:.72rem;color:var(--pv-muted)}.hub-pv__item-pricing{display:flex;flex-direction:column;align-items:flex-end;gap:.24rem;text-align:right}.hub-pv__item-qty{font-size:.96rem;font-weight:600;color:var(--pv-text)}.hub-pv__item-total{font-size:1.15rem;font-weight:700;color:var(--pv-accent-deep)}.hub-pv__item-unit{font-size:.86rem;color:var(--pv-muted)}.hub-pv__empty{display:flex;flex-direction:column;align-items:center;gap:.75rem;padding:2.5rem 1.5rem;text-align:center;border-radius:var(--pv-radius);background:var(--pv-surface);border:1px dashed var(--pv-border)}.hub-pv__empty-ico{width:2.75rem;height:2.75rem;color:var(--pv-muted);opacity:.5}.hub-pv__empty p{margin:0;color:var(--pv-muted);font-size:.92rem;max-width:28ch}.hub-pv__warn{margin:0;padding:.75rem 1rem;border-radius:var(--pv-radius-sm);background:#fef2f2;border:1px solid #fecaca;color:#b91c1c;font-size:.88rem}.hub-pv__retry{margin-top:.5rem;padding:.4rem .85rem;border:1px solid var(--pv-border);border-radius:8px;background:#fff;font-size:.82rem;font-weight:600;color:var(--pv-accent-deep);cursor:pointer}.hub-cp__boletos-panel{--bol-accent: #faa933;--bol-accent-deep: #b76f00;--bol-accent-soft: #fef2e1;--bol-accent-border: rgba(250, 169, 51, .38);--bol-accent-glow: rgba(250, 169, 51, .16);display:flex;flex-direction:column;align-items:stretch;gap:1rem;width:100%}.hub-cp__bol-aviso{margin:0;padding:.55rem .75rem;border-radius:6px;border:1px solid #fde68a;background:#fffbeb;font-size:.9rem;color:#92400e}.hub-cp__boletos-panel .hub-ctb__filter:hover:not(:disabled){border-color:var(--bol-accent-border);background:var(--bol-accent-soft);color:var(--bol-accent-deep)}.hub-cp__boletos-panel .hub-ctb__filter--active{border-color:var(--bol-accent);background:var(--bol-accent);color:#fff}.hub-cp__boletos-panel .hub-ctb__cta{background:var(--bol-accent);border-color:var(--bol-accent);color:#fff}.hub-cp__boletos-panel .hub-ctb__cta:hover{background:var(--bol-accent-deep);border-color:var(--bol-accent-deep)}.hub-cp__bol-summary{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem 1.25rem;box-sizing:border-box;width:100%;padding:1rem 1.15rem;border-radius:10px;border:1px solid #e5e7eb;background:#f9fafb}.hub-cp__bol-summary-main{display:flex;flex:1 1 auto;flex-wrap:wrap;align-items:baseline;gap:.5rem 1rem;min-width:0}.hub-cp__bol-summary-total{font-size:1.08rem;color:#4b5563;line-height:1.3}.hub-cp__bol-summary-total strong{font-size:1.6rem;font-weight:800;color:#111827}.hub-cp__bol-summary-open{font-size:1.16rem;font-weight:700;font-variant-numeric:tabular-nums;color:#111827;line-height:1.3}.hub-cp__bol-summary-clear{margin:0;padding:.2rem 0;border:none;background:none;font:inherit;font-size:.92rem;font-weight:600;color:var(--bol-accent-deep);text-decoration:underline;text-underline-offset:2px;cursor:pointer}.hub-cp__bol-summary-clear:hover{color:var(--bol-accent)}.hub-cp__bol-summary-extra{font-size:1rem;font-weight:600;font-variant-numeric:tabular-nums;color:#6b7280;line-height:1.3}.hub-cp__bol-summary-aside{flex-shrink:0}.hub-cp__bol-pills{display:flex;flex-wrap:wrap;align-items:center;gap:.55rem}button.hub-cp__bol-pill{display:inline-flex;align-items:center;justify-content:center;gap:.4rem;min-width:3.75rem;min-height:2.85rem;padding:.5rem .85rem;margin:0;border:2px solid transparent;border-radius:12px;font:inherit;font-size:1.14rem;font-weight:800;font-variant-numeric:tabular-nums;line-height:1;cursor:pointer;transition:transform .15s ease,box-shadow .2s ease,border-color .2s ease,background .2s ease}button.hub-cp__bol-pill:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 4px 12px #00000014}button.hub-cp__bol-pill:active:not(:disabled){transform:translateY(0)}button.hub-cp__bol-pill:focus-visible{outline:2px solid var(--bol-accent);outline-offset:2px}button.hub-cp__bol-pill:disabled{opacity:.38;cursor:not-allowed}button.hub-cp__bol-pill--active{border-color:currentColor;box-shadow:0 4px 14px #0000001a}.hub-cp__bol-pill-ico{width:1.45rem;height:1.45rem;flex-shrink:0}.hub-cp__bol-pill-count{min-width:1.1rem;text-align:center}.hub-cp__bol-filter-empty{margin:.35rem 0 0;padding:.85rem 1rem;border-radius:8px;background:#f3f4f6;font-size:.98rem;color:#4b5563;display:flex;flex-wrap:wrap;align-items:center;gap:.5rem .75rem}.hub-cp__bol-filter-empty-btn{margin:0;padding:.35rem .65rem;border:1px solid #d1d5db;border-radius:6px;background:#fff;font:inherit;font-size:.92rem;font-weight:600;color:#374151;cursor:pointer}.hub-cp__bol-filter-empty-btn:hover{border-color:var(--bol-accent);color:var(--bol-accent-deep)}.hub-cp__bol-pill--paid,.hub-cp__bol-pill--ok{background:var(--bol-accent-soft);color:var(--bol-accent-deep)}.hub-cp__bol-pill--soon{background:#fef3c7;color:#b45309}.hub-cp__bol-pill--late{background:#fee2e2;color:#b91c1c}.hub-cp__bol-pill--open{background:var(--bol-accent-soft);color:var(--bol-accent-deep)}.hub-cp__bol-pill--order{background:#dbeafe;color:#1e40af}.hub-cp__bol-pill--closed{background:#f1f5f9;color:#475569}.hub-cp__bol-pill--canceled{background:#fef2f2;color:#b91c1c}.hub-cp__bol-pill-short{display:none;font-size:.8rem;font-weight:800;letter-spacing:.02em;text-transform:uppercase;opacity:.85}@media (max-width: 520px){.hub-cp__bol-pill-count{display:none}.hub-cp__bol-pill-short{display:inline}}.hub-cp__bol-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.55rem}.hub-cp__bol-card{border-radius:6px;border:1px solid #e5e7eb;background:#fff;overflow:hidden;transition:border-color .35s cubic-bezier(.4,0,.2,1),box-shadow .35s cubic-bezier(.4,0,.2,1)}.hub-cp__bol-card--open{border-color:var(--bol-accent-border);box-shadow:0 6px 20px var(--bol-accent-glow)}.hub-cp__bol-card--paid{border-left:3px solid var(--bol-accent)}.hub-cp__bol-card--late{border-left:3px solid #ef4444}.hub-cp__bol-card--ok{border-left:3px solid var(--bol-accent)}.hub-cp__bol-card--soon{border-left:3px solid #f59e0b}.hub-cp__bol-card--neutral{border-left:3px solid #94a3b8}.hub-cp__bol-card-main,button.hub-cp__bol-row-trigger{display:grid;grid-template-columns:1fr auto;gap:.65rem .85rem;align-items:center;padding:.85rem .95rem;width:100%;box-sizing:border-box}.hub-cp__bol-card-main--skeleton{pointer-events:none}.hub-cp__bol-card .hub-skeleton,.hub-cp__vg-nf-itens--skeleton .hub-skeleton{display:block}button.hub-cp__bol-row-trigger{grid-template-columns:1fr auto auto}button.hub-cp__bol-row-trigger{margin:0;border:none;background:transparent;font:inherit;text-align:left;cursor:pointer;transition:background .15s ease}button.hub-cp__bol-row-trigger:hover{background:#f9fafb}button.hub-cp__bol-row-trigger--open,.hub-cp__bol-card--open button.hub-cp__bol-row-trigger{background:var(--bol-accent-soft)}button.hub-cp__bol-row-trigger:focus-visible{outline:2px solid var(--bol-accent);outline-offset:-2px}.hub-cp__bol-chevron{width:1.15rem;height:1.15rem;flex-shrink:0;align-self:center;color:#9ca3af;transition:transform .38s cubic-bezier(.34,1.2,.64,1),color .25s ease}.hub-cp__bol-chevron--open{transform:rotate(180deg);color:var(--bol-accent-deep)}button.hub-cp__bol-row-trigger--open .hub-cp__bol-chevron{color:var(--bol-accent)}.hub-cp__bol-nf-collapse{display:grid;grid-template-rows:0fr;transition:grid-template-rows .42s cubic-bezier(.4,0,.2,1)}.hub-cp__bol-nf-collapse--open{grid-template-rows:1fr}.hub-cp__bol-nf-collapse-inner{overflow:hidden;min-height:0}.hub-cp__bol-nf-collapse:not(.hub-cp__bol-nf-collapse--open) .hub-cp__bol-nf-panel{pointer-events:none}.hub-cp__bol-fields{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.5rem .75rem;min-width:0}.hub-cp__bol-field{display:flex;align-items:flex-start;gap:.4rem;min-width:0}.hub-cp__bol-field-ico{width:1rem;height:1rem;margin-top:.1rem;flex-shrink:0;color:#9ca3af}.hub-cp__bol-field-lbl{display:block;font-size:.72rem;font-weight:500;letter-spacing:.03em;text-transform:uppercase;color:#9ca3af}.hub-cp__bol-field-val{display:block;font-size:.96rem;font-weight:600;color:#111827;line-height:1.25}.hub-cp__bol-field-val--money{font-size:1.1rem;font-weight:700;font-variant-numeric:tabular-nums}.hub-cp__bol-due-row{display:inline-flex;align-items:center;gap:.35rem;flex-shrink:0}.hub-cp__bol-chip{display:inline-flex;align-items:center;justify-content:center;gap:.06rem;box-sizing:border-box;width:3.1rem;min-width:3.1rem;height:3.1rem;padding:.35rem .4rem;border-radius:8px;font-variant-numeric:tabular-nums;line-height:1;cursor:default}.hub-cp__bol-chip-num{font-size:1.34rem;font-weight:800;letter-spacing:-.02em}.hub-cp__bol-chip-unit{font-size:.76rem;font-weight:700;opacity:.75}.hub-cp__bol-chip--paid{border-radius:8px;background:var(--bol-accent-soft);color:var(--bol-accent-deep);border:1px solid var(--bol-accent-border)}.hub-cp__bol-chip-ico{width:1.22rem;height:1.22rem}.hub-cp__bol-chip--ok{background:var(--bol-accent-soft);color:var(--bol-accent-deep);border:1px solid var(--bol-accent-border)}.hub-cp__bol-chip--soon{background:#fffbeb;color:#b45309;border:1px solid #fde68a}.hub-cp__bol-chip--soon .hub-cp__bol-chip-num{font-size:.92rem;font-weight:700;letter-spacing:0}.hub-cp__bol-chip--late{background:#fef2f2;color:#b91c1c;border:1px solid #fecaca}.hub-cp__bol-chip--neutral{background:#f3f4f6;color:#4b5563;border:1px solid #e5e7eb}.hub-cp__bol-chip--neutral .hub-cp__bol-chip-num{font-size:.86rem;font-weight:700}.hub-cp__bol-chip-btn{display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;width:3.1rem;min-width:3.1rem;height:3.1rem;padding:0;border-radius:8px;border:1px solid #e5e7eb;background:#fff;color:#4b5563;text-decoration:none;cursor:pointer;transition:background .15s ease,border-color .15s ease,color .15s ease}.hub-cp__bol-chip-btn-ico{width:1.22rem;height:1.22rem;flex-shrink:0}.hub-cp__bol-chip-btn:hover{background:#f9fafb;border-color:#d1d5db;color:#111827}.hub-cp__bol-chip-btn--nf{color:var(--bol-accent-deep)}.hub-cp__bol-chip-btn--active{background:var(--bol-accent-soft);border-color:var(--bol-accent);color:var(--bol-accent-deep)}.hub-cp__bol-chip-btn--link{color:#4b5563}.hub-cp__bol-nf-panel{padding:.65rem .85rem .85rem;border-top:1px solid #e5e7eb;background:linear-gradient(180deg,var(--bol-accent-soft) 0%,#f9fafb 2.5rem);opacity:0;transform:translateY(-8px);transition:opacity .32s cubic-bezier(.4,0,.2,1),transform .42s cubic-bezier(.34,1.1,.64,1)}.hub-cp__bol-nf-collapse--open .hub-cp__bol-nf-panel{opacity:1;transform:translateY(0)}.hub-cp__bol-nf-collapse--open .hub-cp__vg-nf-item{animation:hub-cp-bol-nf-item-in .45s cubic-bezier(.34,1.15,.64,1) backwards}.hub-cp__bol-nf-collapse--open .hub-cp__vg-nf-item:nth-child(1){animation-delay:.06s}.hub-cp__bol-nf-collapse--open .hub-cp__vg-nf-item:nth-child(2){animation-delay:.1s}.hub-cp__bol-nf-collapse--open .hub-cp__vg-nf-item:nth-child(3){animation-delay:.14s}.hub-cp__bol-nf-collapse--open .hub-cp__vg-nf-item:nth-child(4){animation-delay:.18s}.hub-cp__bol-nf-collapse--open .hub-cp__vg-nf-item:nth-child(n+5){animation-delay:.22s}@keyframes hub-cp-bol-nf-item-in{0%{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}@media (prefers-reduced-motion: reduce){.hub-cp__bol-card,.hub-cp__bol-chevron,.hub-cp__bol-nf-collapse,.hub-cp__bol-nf-panel,.hub-cp__bol-nf-collapse--open .hub-cp__vg-nf-item{transition:none;animation:none}.hub-cp__bol-nf-collapse--open .hub-cp__bol-nf-panel{opacity:1;transform:none}}.hub-cp__bol-nf-head{display:flex;flex-wrap:wrap;align-items:baseline;justify-content:space-between;gap:.25rem .75rem;margin-bottom:.55rem}.hub-cp__bol-nf-title{margin:0;font-size:.84rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#4b5563}.hub-cp__bol-nf-meta{font-size:.84rem;color:#6b7280}.hub-cp__bol-nf-loading{display:flex;align-items:center;gap:.45rem;margin:0;font-size:.9rem;color:#6b7280}.hub-cp__vg-nf-itens--skeleton{pointer-events:none}@media (max-width: 900px){.hub-cp__bol-summary{flex-direction:column;align-items:stretch}.hub-cp__bol-pills{justify-content:flex-start;width:100%}button.hub-cp__bol-pill{flex:1 1 auto;min-width:3.25rem}.hub-cp__cot-toolbar{flex-direction:column;align-items:stretch}.hub-cp__cot-search{flex:1 1 auto;width:100%}.hub-cp__prod-toolbar{flex-direction:column;align-items:stretch}.hub-cp__prod-search{flex:1 1 auto;width:100%}.hub-cp__bol-summary-aside.hub-cp__prod-period{width:100%;justify-content:flex-end}.hub-cp__bol-card-main{grid-template-columns:1fr}button.hub-cp__bol-row-trigger{grid-template-columns:1fr auto;align-items:start}button.hub-cp__bol-row-trigger .hub-cp__bol-fields,button.hub-cp__bol-row-trigger .hub-cp__bol-due-row{grid-column:1}button.hub-cp__bol-row-trigger .hub-cp__bol-chevron{grid-column:2;grid-row:1 / -1;align-self:center;margin-top:.15rem}.hub-cp__bol-due-row{justify-content:flex-start;width:100%}.hub-cp__bol-fields{grid-template-columns:repeat(2,minmax(0,1fr))}}.hub-cp__flux-panel{--flux-accent: #0072aa;--flux-accent-deep: #005b88;--flux-accent-soft: #d9eaf2;--flux-accent-bright: #0088cc;--flux-accent-glow: rgba(0, 114, 170, .18);--flux-border: rgba(0, 114, 170, .18);width:100%}.hub-cp__flux-panel .hub-ctb__filter:hover:not(:disabled){border-color:#0072aa61;background:var(--flux-accent-soft);color:var(--flux-accent-deep)}.hub-cp__flux-panel .hub-ctb__filter--active,.hub-cp__flux-panel .hub-ctb__cta{background:var(--flux-accent);border-color:var(--flux-accent);color:#fff}.hub-cp__flux-panel .hub-ctb__cta{box-shadow:0 2px 8px #0072aa3d}.hub-cp__flux-panel .hub-ctb__cta:hover{background:var(--flux-accent-deep);border-color:var(--flux-accent-deep);box-shadow:0 3px 12px #005b8852}.hub-cp__flux-panel .hub-ctb__search:focus-within{border-color:var(--flux-accent);box-shadow:0 0 0 3px var(--flux-accent-glow)}.hub-cp__flux-card{margin:0}.hub-cp__flux-card-link{display:block;padding:.82rem .95rem;border:1px solid rgba(15,23,42,.08);border-left:3px solid var(--flux-accent);border-radius:12px;background:#fff;color:inherit;text-decoration:none;box-shadow:0 1px 4px #0f172a0a;transition:border-color .15s ease,box-shadow .15s ease,background .15s ease}a.hub-cp__flux-card-link:hover{border-color:#0072aa47;background:var(--flux-accent-soft);box-shadow:0 4px 14px #0072aa14}.hub-cp__flux-card-head{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.55rem .8rem;margin-bottom:.45rem}.hub-cp__flux-card-title-wrap{display:flex;flex-wrap:wrap;align-items:center;gap:.45rem .65rem;min-width:0}.hub-cp__flux-card-wf{font-size:.98rem;font-weight:750;color:var(--flux-accent-deep);font-variant-numeric:tabular-nums}.hub-cp__flux-card-type{display:inline-flex;align-items:center;gap:.35rem;padding:0;border-radius:0;background:transparent;border:0;font-size:.72rem;font-weight:700;color:#64748b;white-space:nowrap}.hub-cp__flux-tipo-dot{width:.5rem;height:.5rem;border-radius:999px;flex-shrink:0}.hub-cp__flux-card-head-actions{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:.45rem;margin-left:auto}.hub-cp__flux-card-description{margin:.35rem 0 .65rem;overflow:hidden;color:#334155;font-size:.86rem;font-weight:600;line-height:1.38;text-overflow:ellipsis;white-space:nowrap}.hub-cp__flux-card-details{display:flex;flex-wrap:wrap;gap:.35rem 1rem;margin:0}.hub-cp__flux-card-field{min-width:0;padding:0;border-radius:0;background:transparent;border:0}.hub-cp__flux-card-field dt{display:inline;margin:0 .22rem 0 0;font-size:.74rem;font-weight:700;text-transform:none;letter-spacing:0;color:#64748b}.hub-cp__flux-card-field dt:after{content:":"}.hub-cp__flux-card-field dd{display:inline;margin:0;color:#0f172a;font-size:.78rem;font-weight:600}.hub-cp__flux-sesuite-link{display:inline-flex;align-items:center;justify-content:center;gap:.28rem;padding:0;border:0;background:transparent;font-size:.76rem;font-weight:700;color:var(--flux-accent-deep);text-decoration:none;white-space:nowrap}a.hub-cp__flux-card-link:hover .hub-cp__flux-sesuite-link{color:var(--flux-accent-bright);text-decoration:underline}.hub-cp__flux-sesuite-link-ico{width:.86rem;height:.86rem}.hub-cp__flux-panel .hub-cp__hist-vendas-err{display:flex;flex-wrap:wrap;align-items:center;gap:.75rem}.hub-cp__flux-panel .hub-cp__hist-vendas-retry-btn{padding:.4rem .75rem;border-radius:8px;border:1px solid #e2e8f0;background:#fff;font:inherit;font-size:.82rem;font-weight:600;color:#334155;cursor:pointer}.hub-cp__flux-panel .hub-cp__hist-vendas-retry-btn:hover{border-color:var(--flux-accent-bright);color:var(--flux-accent-deep)}.hub-cp__flux-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.65rem;padding:2.5rem 1rem;border-radius:12px;border:1px dashed #cbd5e1;background:#f8fafc;text-align:center}.hub-cp__flux-empty-ico{width:2.5rem;height:2.5rem;color:#94a3b8}.hub-cp__flux-empty p{margin:0;font-size:.9rem;color:#64748b}.hub-cp__produtos-panel{display:flex;flex-direction:column;align-items:stretch;gap:1rem;width:100%}.hub-cp__prod-period{display:flex;align-items:center;gap:.5rem;margin:0;font-size:.85rem;font-weight:600;color:#4b5563}.hub-cp__prod-period select{padding:.4rem .65rem;border-radius:8px;border:1px solid #d1d5db;font:inherit;font-weight:600;color:#111827;background:#fff;cursor:pointer}.hub-cp__prod-period select:hover{border-color:#9ca3af}.hub-cp__prod-aviso{margin:0}.hub-cp__prod-skeleton-meta{flex:1 1 18rem}.hub-cp__prod-comprados{display:flex;flex-direction:column;align-items:stretch;gap:.75rem;width:100%}.hub-cp__prod-comprados .hub-cp__prod-grid{width:100%}.hub-cp__prod-toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-start;gap:.75rem 1rem;width:100%}.hub-cp__prod-search{display:flex;flex:1 1 14rem;align-items:center;gap:.5rem;min-width:min(100%,12rem);padding:.35rem .5rem .35rem .75rem;border-radius:10px;border:1px solid #e2e8f0;background:#fff}.hub-cp__prod-search:focus-within{border-color:#11953173;box-shadow:0 0 0 3px #1195311f}.hub-cp__prod-search-ico{width:1rem;height:1rem;flex-shrink:0;color:#94a3b8}.hub-cp__prod-search input{flex:1;min-width:0;border:none;background:transparent;font:inherit;font-size:.88rem;color:#0f172a;outline:none}.hub-cp__prod-search input::placeholder{color:#94a3b8}.hub-cp__prod-search-clear{flex-shrink:0;padding:.2rem .45rem;border:none;border-radius:6px;background:#f1f5f9;font:inherit;font-size:.72rem;font-weight:700;color:#475569;cursor:pointer}.hub-cp__prod-search-clear:hover{background:#e2e8f0}.hub-cp__prod-sort{display:flex;align-items:center;gap:.5rem;font-size:.82rem;font-weight:600;color:#475569;flex-shrink:0}.hub-cp__prod-sort select{padding:.4rem .6rem;border-radius:8px;border:1px solid #e2e8f0;font:inherit;background:#fff}.hub-cp__prod-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.65rem;padding:2.5rem 1rem;border-radius:12px;border:1px dashed #cbd5e1;background:#f8fafc;text-align:center}.hub-cp__prod-empty-ico{width:2.5rem;height:2.5rem;color:#94a3b8}.hub-cp__prod-empty p{margin:0;font-size:.9rem;color:#64748b}.hub-cp__prod-empty-btn{padding:.4rem .85rem;border:none;border-radius:8px;background:var(--hub-verde-vivo, #119531);font:inherit;font-size:.82rem;font-weight:700;color:#fff;cursor:pointer}.hub-cp__prod-empty-btn:hover{filter:brightness(1.05)}.hub-cp__prod-grid{margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(21rem,1fr));gap:1rem;align-items:stretch}.hub-cp__prod-cell{min-width:0;animation:hubVgFadeUp .4s ease both}.hub-cp__prod-card{display:flex;flex-direction:column;height:100%;border-radius:14px;border:1px solid #e2e8f0;background:#fff;overflow:hidden;transition:border-color .15s ease,box-shadow .15s ease,transform .15s ease}.hub-cp__prod-card-link{display:flex;flex-direction:column;flex:1;min-height:0;margin:0;padding:0;border:none;background:none;font:inherit;color:inherit;text-align:inherit;text-decoration:none;cursor:pointer}.hub-cp__prod-card-link:hover{text-decoration:none}.hub-cp__prod-card:has(.hub-cp__prod-card-link:hover){border-color:#11953159;box-shadow:0 10px 28px #0f28161a;transform:translateY(-2px)}.hub-cp__prod-card-link:focus-visible{outline:2px solid var(--hub-verde-vivo, #119531);outline-offset:2px;border-radius:14px}.hub-cp__prod-card-media-link{display:flex;align-items:center;justify-content:center;width:100%;height:100%;margin:0;padding:0;border:none;background:none;text-decoration:none;cursor:pointer}.hub-cp__prod-card-media-link:hover img{transform:scale(1.03)}.hub-cp__prod-card-media{position:relative;flex-shrink:0;display:flex;align-items:center;justify-content:center;height:11.5rem;padding:.75rem;background:linear-gradient(165deg,#f8fafc,#eef2f7);border-bottom:1px solid #e8edf2}.hub-cp__prod-card-media img{width:auto;max-width:92%;max-height:10rem;object-fit:contain;transition:transform .2s ease}.hub-cp__prod-relacionados-btn{position:absolute;top:.55rem;left:.55rem;z-index:2;margin:0;padding:.3rem .55rem;border:none;border-radius:8px;background:#fffffff2;box-shadow:0 2px 8px #0f28161f;font:inherit;font-size:.68rem;font-weight:800;letter-spacing:.02em;text-transform:uppercase;color:var(--hub-verde-escuro, #0d7a28);cursor:pointer;transition:background .15s ease,color .15s ease,box-shadow .15s ease}.hub-cp__prod-relacionados-btn:hover{background:var(--hub-verde-vivo, #119531);color:#fff;box-shadow:0 4px 12px #11953159}.hub-cp__prod-relacionados-btn:focus-visible{outline:2px solid var(--hub-verde-vivo, #119531);outline-offset:2px}.hub-cp__prod-relacionados-btn--skeleton{pointer-events:none;cursor:default}.hub-cp__prod-share{position:absolute;top:.55rem;right:.55rem;padding:.2rem .5rem;border-radius:999px;background:#119531eb;font-size:.72rem;font-weight:800;color:#fff;box-shadow:0 2px 8px #0f28161f}.hub-cp__prod-share--skeleton{background:#fffffff2}.hub-cp__prod-card-body{display:flex;flex-direction:column;gap:.45rem;padding:.85rem 1rem 1rem;flex:1}.hub-cp__prod-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:.35rem}.hub-cp__prod-code{font-size:.72rem;font-weight:800;letter-spacing:.02em;color:#008174}.hub-cp__prod-badges{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:.25rem}.hub-cp__prod-badge{padding:.12rem .4rem;border-radius:999px;font-size:.62rem;font-weight:800;text-transform:uppercase;letter-spacing:.03em;line-height:1.2}.hub-cp__prod-badge--high{background:#dcfce7;color:#166534}.hub-cp__prod-badge--mid{background:#dbeafe;color:#1e40af}.hub-cp__prod-badge--low{background:#f1f5f9;color:#475569}.hub-cp__prod-badge--fresh{background:#ecfdf5;color:#047857}.hub-cp__prod-badge--warm{background:#fff7ed;color:#c2410c}.hub-cp__prod-badge--muted{background:#f8fafc;color:#64748b}.hub-cp__prod-name{margin:0;font-size:.9rem;font-weight:600;line-height:1.35;color:#0f172a;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.hub-cp__prod-name--skeleton{display:flex;flex-direction:column;gap:.3rem}.hub-cp__prod-valor-hero{margin:0;font-size:1.35rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28);font-variant-numeric:tabular-nums;line-height:1.15}.hub-cp__prod-bar{height:4px;border-radius:999px;background:#f1f5f9;overflow:hidden}.hub-cp__prod-bar-fill{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#34d399,#119531)}.hub-cp__prod-bar>.hub-skeleton{display:block}.hub-cp__prod-metrics{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.4rem}.hub-cp__prod-metric{padding:.4rem .5rem;border-radius:8px;background:#f8fafc;border:1px solid #eef2f6}.hub-cp__prod-metric-val{display:block;font-size:.82rem;font-weight:800;color:#0f172a;font-variant-numeric:tabular-nums;line-height:1.2}.hub-cp__prod-metric-lbl{display:block;margin-top:.08rem;font-size:.58rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;color:#94a3b8}.hub-cp__prod-metric .hub-skeleton,.hub-cp__prod-card-nf .hub-skeleton,.hub-cp__prod-card-extra-title .hub-skeleton,.hub-cp__prod-card-cta .hub-skeleton{display:block}.hub-cp__prod-card-extra{margin-top:.25rem;padding-top:.5rem;border-top:1px solid #eef2f6}.hub-cp__prod-card-extra--skeleton{pointer-events:none}.hub-cp__prod-card-extra-title{margin:0 0 .35rem;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;color:#64748b;line-height:1.35}.hub-cp__prod-card-period{font-weight:600;text-transform:none;letter-spacing:0;color:#94a3b8}.hub-cp__prod-card-chart{display:flex;align-items:flex-end;gap:.3rem;height:3.5rem;padding:.25rem 0}.hub-cp__prod-card-bar{flex:1 1 0;display:flex;flex-direction:column;align-items:center;justify-content:flex-end;height:100%;min-width:0;gap:.2rem}.hub-cp__prod-card-bar-fill{width:100%;max-width:1.25rem;border-radius:4px 4px 2px 2px;background:linear-gradient(180deg,#4ade80,#119531);min-height:4px}.hub-cp__prod-card-bar-lbl{font-size:.55rem;font-weight:700;color:#94a3b8}.hub-cp__prod-card-nfs{margin:.35rem 0 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.3rem}.hub-cp__prod-card-nf{padding:.35rem .5rem;border-radius:8px;background:#f8fafc;border:1px solid #e8edf2;font-size:.72rem}.hub-cp__prod-card-nf--comodato{background:#fffbeb;border-color:#fde68a}.hub-cp__prod-card-nf-num{display:block;font-weight:800;color:#008174}.hub-cp__prod-card-nf-meta{display:block;margin-top:.1rem;font-size:.65rem;color:#64748b}.hub-cp__prod-card-nf-more{padding:.25rem .5rem;font-size:.68rem;font-weight:700;color:var(--hub-verde-escuro, #0d7a28);text-align:center}.hub-cp__prod-card-loading{display:flex;align-items:center;gap:.4rem;margin:.25rem 0 0;font-size:.72rem;color:#94a3b8}.hub-cp__prod-card-cta{display:block;margin-top:auto;padding-top:.55rem;font-size:.78rem;font-weight:700;color:var(--hub-verde-escuro, #0d7a28);text-align:center}.hub-cp__prod-card-link:hover .hub-cp__prod-card-cta{color:var(--hub-verde-vivo, #119531)}.hub-cp__prod-toolbar .hub-cp__prod-search,.hub-cp__cot-toolbar .hub-cp__cot-search,.hub-cp__comod-toolbar .hub-cp__comod-search{order:-1}.hub-cp__prod-rec{margin-bottom:.25rem;padding-bottom:1rem;border-bottom:1px solid #e2e8f0}.hub-cp__prod-rec-head{display:flex;flex-wrap:wrap;align-items:baseline;justify-content:space-between;gap:.35rem 1rem;margin-bottom:.85rem}.hub-cp__prod-rec-title{display:flex;flex-wrap:wrap;align-items:baseline;gap:.35rem .65rem;flex:1 1 20rem;min-width:0;margin:0;font-size:.95rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28);letter-spacing:-.01em;line-height:1.4}.hub-cp__prod-rec-title-label{flex-shrink:0;white-space:nowrap}.hub-cp__prod-rec-title-desc{font-size:.84rem;font-weight:600;color:#64748b}.hub-cp__prod-rec-hint{flex-shrink:0;margin:0;font-size:.78rem;font-weight:600;color:#94a3b8;white-space:nowrap}.hub-cp__prod-rec-sub{margin:.35rem 0 0;max-width:52rem;font-size:.82rem;line-height:1.5;color:#64748b}.hub-cp__prod-rec-status,.hub-cp__prod-rec-empty{display:flex;align-items:center;gap:.5rem;margin:0;padding:.85rem 1rem;border-radius:10px;background:#f8fafc;border:1px dashed #e2e8f0;font-size:.84rem;color:#64748b}.hub-cp__prod-rec-err{margin:0;padding:.75rem .9rem;border-radius:10px;background:#fef2f2;border:1px solid #fecaca;font-size:.84rem;color:#b91c1c}.hub-cp__prod-rec-track{display:flex;flex-wrap:nowrap;gap:.75rem;margin:0;padding:.15rem .15rem .45rem;list-style:none;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;scrollbar-width:thin;scrollbar-color:rgba(74,159,42,.45) transparent}.hub-cp__prod-rec-track::-webkit-scrollbar{height:6px}.hub-cp__prod-rec-track::-webkit-scrollbar-thumb{border-radius:999px;background:#4a9f2a66}.hub-cp__prod-rec-track--skeleton{pointer-events:none}.hub-cp__prod-rec-item{flex:0 0 min(18.5rem,78vw);min-width:0;scroll-snap-align:start}.hub-cp__prod-rec-card{display:grid;grid-template-columns:5.25rem minmax(0,1fr);align-items:stretch;gap:0;width:100%;height:100%;min-height:6.75rem;margin:0;padding:0;border-radius:12px;border:1px solid #e2e8f0;background:#fff;overflow:hidden;font:inherit;color:inherit;text-align:left;text-decoration:none;cursor:pointer;transition:border-color .15s ease,box-shadow .15s ease,transform .15s ease}.hub-cp__prod-rec-card:hover{border-color:#11953159;box-shadow:0 8px 22px #0f281614;transform:translateY(-1px);text-decoration:none}.hub-cp__prod-rec-card:focus-visible{outline:2px solid var(--hub-verde-vivo, #119531);outline-offset:2px}.hub-cp__prod-rec-card-img{display:flex;align-items:center;justify-content:center;padding:.55rem;background:linear-gradient(165deg,#f8fafc,#eef2f7);border-right:1px solid #e8edf2}.hub-cp__prod-rec-card-img img{width:auto;max-width:100%;max-height:4.5rem;object-fit:contain}.hub-cp__prod-rec-card-img .hub-skeleton{display:block}.hub-cp__prod-rec-card-body{display:flex;flex-direction:column;gap:.2rem;min-width:0;padding:.65rem .75rem .7rem}.hub-cp__prod-rec-card-top{display:flex;flex-wrap:wrap;align-items:center;gap:.3rem .4rem}.hub-cp__prod-rec-card-code{font-size:.68rem;font-weight:800;letter-spacing:.03em;text-transform:uppercase;color:#008174}.hub-cp__prod-rec-card-type{padding:.1rem .4rem;border-radius:999px;background:#1195311a;font-size:.62rem;font-weight:800;letter-spacing:.03em;text-transform:uppercase;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__prod-rec-card-score{margin-left:auto;padding:.1rem .38rem;border-radius:999px;background:#eff6ff;border:1px solid #bfdbfe;font-size:.62rem;font-weight:800;color:#1d4ed8}.hub-cp__prod-rec-card-name{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;font-size:.84rem;font-weight:700;line-height:1.35;color:#0f172a}.hub-cp__prod-rec-card-origem{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin-top:auto;font-size:.72rem;line-height:1.4;color:#94a3b8}@media (max-width: 640px){.hub-cp__prod-comprados-head{flex-direction:column;align-items:flex-start}.hub-cp__prod-grid{grid-template-columns:1fr}.hub-cp__prod-toolbar{flex-direction:column;align-items:stretch}.hub-cp__prod-search{flex:1 1 auto;width:100%}.hub-cp__prod-rec-item{flex-basis:min(16.5rem,86vw)}.hub-cp__prod-rec-hint{white-space:normal;width:100%}}@media (max-width: 1000px){.hub-cp__vg-detail-grid{grid-template-columns:1fr}.hub-cp__vg-kpis{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width: 640px){.hub-cp__vg-kpis{grid-template-columns:1fr}.hub-cp__vg-chart{height:6.5rem}.hub-cp__vg-chart-bars{height:4.5rem}}.hub-tl{--tl-green: var(--hub-verde-vivo, #119531);--tl-green-dark: var(--hub-verde-escuro, #0d7a28);--tl-green-soft: rgba(17, 149, 49, .08);--tl-green-border: rgba(74, 159, 42, .22);--tl-surface: #ffffff;--tl-surface-2: #f6f8f5;--tl-text: #0f2816;--tl-muted: #5c6b62;--tl-chrome-extra: 8.25rem;display:flex;flex-direction:column;gap:.65rem}.hub-tl__toolbar{display:flex;flex-wrap:wrap;align-items:center;gap:.45rem;padding:.55rem .7rem;border-radius:10px;border:1px solid var(--tl-green-border);background:var(--tl-surface-2)}.hub-tl__search-wrap{display:flex;align-items:center;gap:.4rem;flex:1 1 10rem;min-width:8rem;padding:.35rem .65rem;border-radius:8px;border:1px solid #dde5d8;background:var(--tl-surface)}.hub-tl__search-wrap svg{color:#94a3a0;flex-shrink:0}.hub-tl__search-input{flex:1;min-width:0;border:none;background:transparent;font-size:.84rem;outline:none}.hub-tl__search-clear{border:none;background:none;font-size:1rem;color:#94a3a0;cursor:pointer}.hub-tl__select{padding:.38rem .65rem;border:1px solid #dde5d8;border-radius:8px;background:var(--tl-surface);font-size:.84rem;cursor:pointer}.hub-tl__meses-group{display:flex;border:1px solid #dde5d8;border-radius:8px;overflow:hidden;background:var(--tl-surface)}.hub-tl__meses-btn{padding:.35rem .65rem;border:none;border-right:1px solid #dde5d8;background:transparent;font-size:.8rem;font-weight:600;color:var(--tl-muted);cursor:pointer}.hub-tl__meses-btn:last-child{border-right:none}.hub-tl__meses-btn--active{background:var(--tl-green);color:#fff}.hub-tl__filters-btn{display:inline-flex;align-items:center;gap:.3rem;padding:.38rem .75rem;border:1px solid #dde5d8;border-radius:8px;background:var(--tl-surface);font-size:.84rem;font-weight:600;color:var(--tl-muted);cursor:pointer}.hub-tl__filters-btn--active{border-color:var(--tl-green);color:var(--tl-green-dark);background:var(--tl-green-soft)}.hub-tl__clear-btn{padding:.35rem .65rem;border:none;background:none;font-size:.8rem;font-weight:600;color:#dc2626;cursor:pointer}.hub-tl__advanced-filters{display:flex;flex-wrap:wrap;gap:.5rem 1rem;padding:.65rem .9rem;background:var(--tl-surface);border:1px solid var(--tl-green-border);border-radius:10px}.hub-tl__adv-filter{display:flex;flex-direction:column;gap:.2rem;min-width:9rem}.hub-tl__adv-filter span{font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--tl-muted)}.hub-tl__adv-filter select,.hub-tl__adv-filter input{padding:.32rem .55rem;border:1px solid #dde5d8;border-radius:6px;font-size:.84rem}.hub-tl__quick-views{display:flex;flex-wrap:wrap;align-items:center;gap:.3rem;flex-shrink:0}.hub-tl__quick-btn{padding:.32rem .7rem;border:1px solid #dde5d8;border-radius:999px;background:var(--tl-surface);font-size:.76rem;font-weight:700;color:var(--tl-muted);cursor:pointer;white-space:nowrap;transition:background .12s,border-color .12s,color .12s}.hub-tl__quick-btn:hover{border-color:var(--tl-green-border);color:var(--tl-green-dark)}.hub-tl__quick-btn--active{background:var(--tl-green);border-color:var(--tl-green);color:#fff}.hub-tl__empty{margin:0;padding:2.5rem 1.5rem;text-align:center;color:var(--tl-muted);font-size:.9rem}.hub-tl__workspace{display:grid;grid-template-columns:minmax(0,1fr);align-items:stretch;flex:1 1 auto;min-height:0;border:1px solid var(--tl-green-border);border-radius:12px;background:var(--tl-surface);box-shadow:0 4px 24px #0f28160f;overflow:hidden;position:relative}.hub-tl--detail-open .hub-tl__workspace{grid-template-columns:minmax(0,1fr) minmax(300px,36%)}.hub-tl__feed-col{min-width:0;min-height:0;max-height:calc(100dvh - var(--hub-chrome-offset, 0px) - var(--hub-cp-tabs-h, 3.05rem) - var(--hub-footer-h, 2.75rem) - var(--tl-chrome-extra, 8.25rem));overflow-y:auto;overscroll-behavior:contain}.hub-tl--detail-open .hub-tl__feed-col{border-right:1px solid #e8ede5}.hub-tl-journal__period+.hub-tl-journal__period{border-top:1px solid #e4ebe0}.hub-tl-journal__period-head{display:flex;align-items:center;flex-wrap:wrap;gap:.4rem .75rem;padding:.7rem 1rem;background:#f3f7f1;border-bottom:2px solid #d8e5d4;position:sticky;top:0;z-index:2}.hub-tl-journal__period--future .hub-tl-journal__period-head{background:linear-gradient(90deg,#eff6ff,#f8fafc);border-bottom-color:#bfdbfe}.hub-tl-journal__period--today .hub-tl-journal__period-head{background:linear-gradient(90deg,#ecfdf3,#f6fbf7);border-bottom-color:#86efac}.hub-tl-journal__period--week .hub-tl-journal__period-head,.hub-tl-journal__period--month .hub-tl-journal__period-head{background:linear-gradient(90deg,#f4f8f2,#fafbf9);border-bottom-color:#c5d4c8}.hub-tl-journal__period-title{margin:0;padding:.2rem .65rem;border-radius:6px;font-size:.78rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase;color:#fff;background:var(--tl-green-dark);box-shadow:0 1px 3px #0f28161f}.hub-tl-journal__period--future .hub-tl-journal__period-title{background:#2563eb}.hub-tl-journal__period--today .hub-tl-journal__period-title{background:var(--tl-green)}.hub-tl-journal__period--week .hub-tl-journal__period-title{background:#3d6b47}.hub-tl-journal__period--month .hub-tl-journal__period-title,.hub-tl-journal__period--last-month .hub-tl-journal__period-title{background:#5c6b62}.hub-tl-journal__period--older .hub-tl-journal__period-title{background:#94a39a}.hub-tl-journal__period-desc{font-size:.8rem;font-weight:600;color:var(--tl-muted)}.hub-tl-journal__period-count{margin-left:auto;padding:.15rem .55rem;border-radius:999px;background:#ffffffd9;border:1px solid #dde5d8;font-size:.72rem;font-weight:700;color:var(--tl-muted)}.hub-tl-journal__list{--tl-icon-size: 2.35rem;--tl-entry-pad-x: .65rem;--tl-entry-pad-y: .55rem;--tl-marker-pad-top: .1rem;--tl-rail-x: calc(var(--tl-entry-pad-x) + var(--tl-icon-size) / 2);position:relative;padding:.5rem 0 .65rem}.hub-tl-journal__entry{display:grid;grid-template-columns:calc(var(--tl-icon-size) + 2.75rem) minmax(0,1fr);align-items:start;gap:.65rem;width:100%;padding:var(--tl-entry-pad-y) .85rem var(--tl-entry-pad-y) var(--tl-entry-pad-x);border:none;border-left:3px solid transparent;background:transparent;text-align:left;font:inherit;color:inherit;cursor:pointer;transition:background .14s ease,border-color .14s ease;position:relative;z-index:1}.hub-tl-journal__entry:not(:last-child):before{content:"";position:absolute;left:var(--tl-rail-x);top:calc(var(--tl-entry-pad-y) + var(--tl-marker-pad-top) + var(--tl-icon-size));bottom:calc(-1 * var(--tl-entry-pad-y));width:2px;transform:translate(-50%);background:linear-gradient(180deg,#b8ccb8,#dce5dc);border-radius:999px;z-index:0;pointer-events:none}.hub-tl-journal__entry:hover{background:#1195310a}.hub-tl-journal__entry:focus-visible{outline:2px solid var(--tl-green);outline-offset:-2px}.hub-tl-journal__entry--selected{background:var(--tl-green-soft);border-left-color:var(--tl-cat-color, var(--tl-green))}.hub-tl-journal__entry--relacionamento{--tl-cat-color: var(--tl-green)}.hub-tl-journal__entry--comercial{--tl-cat-color: #2563eb}.hub-tl-journal__entry--pendente{--tl-cat-color: #d97706}.hub-tl-journal__entry--nf{--tl-cat-color: #64748b}.hub-tl-journal__entry--pedido{--tl-cat-color: #2563eb}.hub-tl-journal__entry--venda{--tl-cat-color: #1d4ed8}.hub-tl-journal__entry--cotacao{--tl-cat-color: #0d9488}.hub-tl-journal__entry--comodato{--tl-cat-color: #7c3aed}.hub-tl-journal__entry--devolucao{--tl-cat-color: #dc2626}.hub-tl-journal__entry--future{--tl-cat-color: #2563eb}.hub-tl-journal__marker{display:grid;grid-template-columns:var(--tl-icon-size) minmax(0,1fr);gap:0 .45rem;align-items:center;padding-top:var(--tl-marker-pad-top);position:relative;z-index:1}.hub-tl-journal__rail{display:flex;justify-content:center;position:relative;z-index:2}.hub-tl-journal__icon{display:flex;align-items:center;justify-content:center;width:var(--tl-icon-size);height:var(--tl-icon-size);border-radius:10px;background:color-mix(in srgb,var(--tl-cat-color, var(--tl-green)) 12%,white);border:1.5px solid color-mix(in srgb,var(--tl-cat-color, var(--tl-green)) 35%,white);color:var(--tl-cat-color, var(--tl-green));box-shadow:0 0 0 3px var(--tl-surface),0 1px 4px #0f281614}.hub-tl-journal__icon svg{width:1.15rem;height:1.15rem}.hub-tl-journal__icon--nf svg,.hub-tl-journal__icon--comodato svg{width:1.05rem;height:1.05rem}.hub-tl-journal__date{display:flex;flex-direction:column;align-items:flex-start;gap:0;min-width:0;padding:.15rem .4rem;border-radius:6px;background:#f6f8f5;border:1px solid #e2ebe4;position:relative;z-index:1}.hub-tl-journal__entry--future .hub-tl-journal__date{background:#eff6ff;border-color:#bfdbfe}.hub-tl-journal__day{font-size:.95rem;font-weight:800;color:var(--tl-text);font-variant-numeric:tabular-nums;line-height:1.1}.hub-tl-journal__mon{font-size:.58rem;font-weight:800;letter-spacing:.08em;color:#7a8a80}.hub-tl-journal__card{display:flex;flex-direction:column;gap:.2rem;min-width:0;padding:.15rem 0}.hub-tl-journal__card-top{display:flex;align-items:center;flex-wrap:wrap;gap:.35rem .5rem}.hub-tl-journal__category{font-size:.62rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--tl-cat-color, var(--tl-green))}.hub-tl-journal__badge{padding:.1rem .45rem;border-radius:999px;background:#dbeafe;color:#1d4ed8;font-size:.62rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase}.hub-tl-journal__headline-row{display:flex;align-items:baseline;justify-content:space-between;gap:.65rem;flex-wrap:wrap}.hub-tl-journal__headline{flex:1 1 12rem;min-width:0;font-size:.9rem;font-weight:700;color:var(--tl-text);line-height:1.35}.hub-tl-journal__subject{font-size:.8rem;color:var(--tl-muted);line-height:1.35}.hub-tl-journal__meta{display:flex;flex-wrap:wrap;gap:.35rem .65rem;font-size:.74rem;color:#94a39a}.hub-tl-journal__status{margin-left:auto;font-size:.68rem;font-weight:700;letter-spacing:.03em;text-transform:uppercase;color:var(--tl-cat-color, var(--tl-muted))}.hub-tl-journal__valor{flex-shrink:0;padding:.2rem .55rem;border-radius:6px;background:color-mix(in srgb,var(--tl-cat-color, var(--tl-green)) 10%,white);border:1px solid color-mix(in srgb,var(--tl-cat-color, var(--tl-green)) 25%,white);font-size:.92rem;font-weight:800;color:var(--tl-cat-color, var(--tl-green-dark));font-variant-numeric:tabular-nums;white-space:nowrap}.hub-tl-journal__entry--comercial.hub-tl-journal__entry--nf .hub-tl-journal__valor,.hub-tl-journal__entry--nf .hub-tl-journal__valor{font-size:1rem;color:#334155;background:#f1f5f9;border-color:#cbd5e1}.hub-tl-journal__entry--comodato .hub-tl-journal__valor{color:#6d28d9;background:#f5f3ff;border-color:#ddd6fe}.hub-tl-journal__entry--cotacao .hub-tl-journal__valor{color:#0f766e;background:#f0fdfa;border-color:#99f6e4}.hub-tl-detail{display:flex;flex-direction:column;min-width:0;min-height:0;height:100%;max-height:calc(100dvh - var(--hub-chrome-offset, 0px) - var(--hub-cp-tabs-h, 3.05rem) - var(--hub-footer-h, 2.75rem) - var(--tl-chrome-extra, 8.25rem));overflow:hidden;opacity:0;transform:translate(8px);transition:opacity .22s ease,transform .22s ease;pointer-events:none;visibility:hidden}.hub-tl-detail--open{opacity:1;transform:translate(0);pointer-events:auto;visibility:visible}.hub-tl-detail__hero{flex-shrink:0;padding:1rem 1.1rem 1.1rem;color:#fff;background:linear-gradient(145deg,#0a3d18 0%,var(--tl-green) 55%,#3cb85e 100%)}.hub-tl-detail__hero--venda,.hub-tl-detail__hero--pedido{background:linear-gradient(145deg,#1e3a8a,#2563eb 55%,#60a5fa)}.hub-tl-detail__hero--nf{background:linear-gradient(145deg,#334155,#64748b 55%,#94a3b8)}.hub-tl-detail__hero--comodato{background:linear-gradient(145deg,#4c1d95,#7c3aed 55%,#a78bfa)}.hub-tl-detail__hero--cotacao{background:linear-gradient(145deg,#115e59,#0d9488 55%,#2dd4bf)}.hub-tl-detail__hero--devolucao{background:linear-gradient(145deg,#7f1d1d,#dc2626 55%,#f87171)}.hub-tl-detail__hero--pendente{background:linear-gradient(145deg,#92400e,#d97706 55%,#fbbf24)}.hub-tl-detail__hero-top{display:flex;align-items:center;justify-content:space-between;gap:.5rem;margin-bottom:.55rem}.hub-tl-detail__kind{font-size:.68rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;opacity:.9}.hub-tl-detail__close{display:flex;align-items:center;justify-content:center;width:1.85rem;height:1.85rem;border:1px solid rgba(255,255,255,.35);border-radius:8px;background:#ffffff1f;color:#fff;font-size:1.25rem;line-height:1;cursor:pointer}.hub-tl-detail__close:hover{background:#ffffff38}.hub-tl-detail__title{margin:0;font-size:1.1rem;font-weight:800;line-height:1.3;letter-spacing:-.01em}.hub-tl-detail__hero-meta{display:flex;flex-wrap:wrap;align-items:center;gap:.45rem .65rem;margin-top:.45rem;font-size:.8rem;opacity:.92}.hub-tl-detail__status-pill{padding:.12rem .5rem;border-radius:999px;background:#fff3;font-size:.72rem;font-weight:700}.hub-tl-detail__valor{margin:.65rem 0 0;font-size:1.45rem;font-weight:800;font-variant-numeric:tabular-nums;letter-spacing:-.02em}.hub-tl-detail__body{flex:1;overflow-y:auto;padding:.85rem 1rem 1.25rem;overscroll-behavior:contain}.hub-tl-detail__section+.hub-tl-detail__section{margin-top:1.1rem;padding-top:1.1rem;border-top:1px solid #eef2eb}.hub-tl-detail__section-title{display:flex;align-items:center;gap:.4rem;margin:0 0 .6rem;font-size:.7rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase;color:#94a39a}.hub-tl-detail__count{display:inline-flex;align-items:center;justify-content:center;min-width:1.2rem;height:1.2rem;padding:0 .3rem;border-radius:999px;background:var(--tl-green-soft);color:var(--tl-green-dark);font-size:.65rem}.hub-tl-detail__dl{margin:0;display:flex;flex-direction:column;gap:.45rem}.hub-tl-detail__dl-row{display:grid;grid-template-columns:6.5rem 1fr;gap:.5rem;padding:.45rem .55rem;border-radius:8px;background:#f9fbf8}.hub-tl-detail__dl-row dt{margin:0;font-size:.74rem;font-weight:700;color:var(--tl-muted)}.hub-tl-detail__dl-row dd{margin:0;font-size:.84rem;color:var(--tl-text);line-height:1.4;word-break:break-word}.hub-tl-detail__note{margin:0;padding:.7rem .85rem;border-radius:8px;background:#f9fbf8;border-left:3px solid var(--tl-green);font-size:.86rem;color:#3d4f42;line-height:1.5;white-space:pre-wrap}.hub-tl-detail__muted{margin:0;font-size:.84rem;color:#94a39a}.hub-tl-detail__error{margin:0;font-size:.84rem;color:#dc2626}.hub-tl-detail__items{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.45rem}.hub-tl-detail__item{padding:.6rem .7rem;border-radius:8px;border:1px solid #e8ede5;background:#fff}.hub-tl-detail__item-main{display:flex;flex-direction:column;gap:.15rem}.hub-tl-detail__item-name{font-size:.86rem;font-weight:700;color:var(--tl-text);line-height:1.35}.hub-tl-detail__item-code{font-size:.74rem;font-weight:600;color:var(--tl-green-dark)}.hub-tl-detail__item-foot{display:flex;flex-wrap:wrap;gap:.35rem .65rem;margin-top:.35rem;font-size:.76rem;color:var(--tl-muted)}.hub-tl-detail__tag{padding:.08rem .4rem;border-radius:4px;background:#ede9fe;color:#6d28d9;font-weight:700}.hub-cp__sobre{display:flex;flex-direction:column;gap:.75rem}.hub-cp__sobre>.hub-ctb__bar{margin-bottom:.25rem;padding:.7rem 1rem;border:1px solid rgba(17,149,49,.16);box-shadow:0 2px 10px #0f28160f}.hub-cp__sobre .hub-ctb__meta{font-size:.9rem;line-height:1.45;color:#475569}.hub-cp__sobre .hub-ctb__meta strong{font-size:.96rem;font-weight:700}.hub-cp__sobre .hub-ctb__cta{padding:.45rem .95rem;font-size:.86rem}@keyframes hubVgFadeUp{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}@keyframes hubVgExpand{0%{opacity:0;max-height:0}to{opacity:1;max-height:1200px}}.hub-cp__vg{padding:1rem 1.1rem;border-radius:14px;background:#fff;border:1px solid #e2e8f0}.hub-cp__vg-head{margin-bottom:1rem}.hub-cp__vg-title{margin:0;font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#008174}.hub-cp__vg-sub{margin:.3rem 0 0;font-size:.82rem;color:var(--tertiary-600);line-height:1.45}.hub-cp__vg-nav{display:flex;flex-wrap:wrap;gap:.5rem .75rem;margin-top:.55rem}.hub-cp__vg-nav-link{font-size:.78rem;font-weight:700;color:var(--secondary-600);text-decoration:none}.hub-cp__vg-nav-link:hover{color:#008174}.hub-cp__vg-nav--foot{margin-top:.85rem;padding-top:.75rem;border-top:1px solid var(--secondary-200)}.hub-cp__vg-err{margin:.5rem 0 0;padding:.65rem .75rem;border-radius:8px;background:#fef2f2;border:1px solid #fecaca;font-size:.85rem;color:#b91c1c;line-height:1.45}.hub-cp__vg-avisos{margin:0 0 .75rem;padding:.55rem .75rem;border-radius:8px;background:var(--primary-100);border:1px solid var(--primary-300);font-size:.78rem;color:var(--primary-800);list-style:none}.hub-cp__vg-avisos li+li{margin-top:.25rem}.hub-cp__vg-lines{display:grid;gap:.65rem;margin-bottom:1rem}.hub-cp__vg-lines-head{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:.35rem .8rem}.hub-cp__vg-lines-head h4{margin:0;font-size:.76rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase;color:#0f172a}.hub-cp__vg-lines-head p{margin:0;font-size:.72rem;font-weight:600;color:#64748b}.hub-cp__vg-lines-info{position:relative;display:inline-flex;align-items:center}.hub-cp__vg-lines-info-btn{display:inline-flex;align-items:center;justify-content:center;width:1.55rem;height:1.55rem;border:1px solid rgba(8,129,116,.22);border-radius:999px;background:#f0fdfa;color:#0f766e;cursor:help;font-size:.82rem;font-weight:900;line-height:1}.hub-cp__vg-lines-info-btn:hover,.hub-cp__vg-lines-info-btn:focus-visible{border-color:#0f766e;background:#ccfbf1;outline:none}.hub-cp__vg-lines-tooltip{position:absolute;right:0;top:calc(100% + .5rem);z-index:10;display:grid;gap:.35rem;width:min(22rem,calc(100vw - 2rem));padding:.75rem .85rem;border:1px solid rgba(15,23,42,.12);border-radius:12px;background:#fff;box-shadow:0 14px 34px #0f172a24;color:#475569;font-size:.78rem;line-height:1.4;opacity:0;pointer-events:none;transform:translateY(-.25rem);transition:opacity .16s ease,transform .16s ease}.hub-cp__vg-lines-tooltip strong{color:#0f172a;font-size:.82rem}.hub-cp__vg-lines-info:hover .hub-cp__vg-lines-tooltip,.hub-cp__vg-lines-info:focus-within .hub-cp__vg-lines-tooltip{opacity:1;transform:translateY(0)}.hub-cp__vg-lines-track{display:grid;grid-template-columns:repeat(auto-fit,minmax(7rem,1fr));gap:.55rem}.hub-cp__vg-lines-track--skeleton{margin-bottom:.35rem}.hub-cp__vg-line-card{--vg-line-bg: #f0fdf4;--vg-line-border: rgba(17, 149, 49, .2);--vg-line-strong: #0d7a28;--vg-line-muted: #64748b;min-height:7.8rem;padding:.65rem .7rem;border-radius:11px;border:1px solid var(--vg-line-border);background:linear-gradient(180deg,var(--vg-line-bg) 0%,#fff 100%);box-shadow:0 1px 4px #0f172a0d;animation:hubVgFadeUp .35s ease both;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}.hub-cp__vg-line-card--skeleton{display:grid;align-content:center;gap:.45rem;pointer-events:none}.hub-cp__vg-line-card:hover{transform:translateY(-2px);border-color:var(--vg-line-strong);box-shadow:0 8px 18px #1195311f}.hub-cp__vg-line-card--empty{--vg-line-bg: #f8fafc;--vg-line-border: #e5e7eb;--vg-line-strong: #94a3b8;--vg-line-muted: #94a3b8;background:repeating-linear-gradient(-45deg,rgba(148,163,184,.06) 0,rgba(148,163,184,.06) 6px,transparent 6px,transparent 12px),linear-gradient(180deg,#f8fafc,#fff);color:#94a3b8}.hub-cp__vg-line-card--empty:hover{border-color:#cbd5e1;box-shadow:0 5px 14px #64748b14}.hub-cp__vg-line-card-top{display:flex;justify-content:space-between;margin-bottom:.45rem}.hub-cp__vg-line-card-ico{display:inline-flex;align-items:center;justify-content:center;width:1.75rem;height:1.75rem;border-radius:8px;background:var(--vg-line-strong);color:#fff;font-size:.78rem;font-weight:900;box-shadow:0 1px 4px #0f172a14}.hub-cp__vg-line-card-ico img{display:block;width:1.02rem;height:1.02rem;object-fit:contain}.hub-cp__vg-line-card--empty .hub-cp__vg-line-card-ico{background:#cbd5e1;filter:grayscale(1);opacity:.86}.hub-cp__vg-line-card-name{display:-webkit-box;min-height:2rem;overflow:hidden;color:var(--vg-line-strong);font-size:.7rem;font-weight:850;line-height:1.18;letter-spacing:.04em;text-transform:uppercase;-webkit-box-orient:vertical;-webkit-line-clamp:2}.hub-cp__vg-line-card-value{display:block;margin-top:.45rem;color:var(--vg-line-strong);font-size:1.08rem;font-weight:900;line-height:1.12;letter-spacing:-.02em}.hub-cp__vg-line-card-foot{display:flex;align-items:end;justify-content:space-between;gap:.45rem;margin-top:.5rem;color:var(--vg-line-muted);font-size:.62rem;font-weight:700;line-height:1.12}.hub-cp__vg-line-card-trend{display:inline-flex;align-items:center;gap:.14rem;color:#64748b;font-size:.68rem;font-weight:900;white-space:nowrap}.hub-cp__vg-line-card-trend--up{color:#16a34a}.hub-cp__vg-line-card-trend--down{color:#dc2626}.hub-cp__vg-line-card-trend--new{color:var(--vg-line-strong)}.hub-cp__vg-err,.hub-cp__vg-empty,.hub-cp__vg-empty-month{margin:0;font-size:.85rem;color:#64748b}.hub-cp__loading--compact{padding:1.5rem 0}.hub-cp__skeleton-line{display:block;width:6rem;height:.78rem;border-radius:999px;background:linear-gradient(90deg,#f1f5f9 25%,#e2e8f0,#f1f5f9 75%);background-size:200% 100%;animation:hub-cp-tab-skeleton-shimmer 1.2s ease-in-out infinite}.hub-cp__skeleton-line--md{width:7rem}.hub-cp__skeleton-line--lg{width:10rem;max-width:100%}.hub-cp__skeleton-line--xl{width:14rem;max-width:100%}.hub-cp__skeleton-line--full{width:100%}.hub-cp__skeleton-line--count,.hub-cp__skeleton-line--pill{height:1.35rem}.hub-cp__skeleton-line--count{width:2.1rem}.hub-cp__skeleton-line--pill{width:5.5rem}.hub-cp__vg-kpis{display:grid;grid-template-columns:repeat(auto-fit,minmax(9.5rem,1fr));gap:.6rem;margin-bottom:1rem}.hub-cp__vg-kpi{padding:.75rem .85rem;border-radius:10px;background:#f8fafc;border:1px solid #e2e8f0;animation:hubVgFadeUp .35s ease both;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}.hub-cp__vg-kpi--skeleton{display:grid;gap:.45rem;min-height:4.45rem}.hub-cp__vg-skeleton{display:grid;gap:1rem}.hub-cp__vg-chart-skeleton{display:grid;gap:.85rem;min-height:15rem;padding:1rem;border:1px solid #e2e8f0;border-radius:14px;background:#fff}.hub-cp__vg-chart-skeleton-head{display:flex;align-items:center;justify-content:space-between;gap:1rem}.hub-cp__vg-chart-skeleton-bars{display:flex;align-items:end;gap:.65rem;min-height:11rem;padding-top:.75rem}.hub-cp__vg-chart-skeleton-bar{flex:1;min-width:1.8rem;border-radius:10px 10px 4px 4px;background:linear-gradient(180deg,#e2e8f0,#f1f5f9);background-size:200% 100%;animation:hub-cp-tab-skeleton-shimmer 1.2s ease-in-out infinite}.hub-cp__vg-kpi:hover{transform:translateY(-2px);box-shadow:0 6px 16px #0f172a0f;border-color:#cbd5e1}.hub-cp__vg-kpi-val{display:block;font-size:.95rem;font-weight:800;color:#0f172a;line-height:1.25}.hub-cp__vg-kpi-lbl{display:block;margin-top:.2rem;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--tertiary-600)}.hub-cp__vg-chart-wrap{margin-bottom:1rem;padding:1rem 1rem .85rem;border-radius:14px;background:linear-gradient(180deg,#f8fafc,#fff);border:1px solid #e2e8f0}.hub-cp__vg-chart-wrap--line{padding-bottom:1rem}.hub-cp__vg-chart-wrap--line .hub-product-page__line-chart-wrap{margin-top:.15rem;border-color:#4a9f2a2e;background:#fff}.hub-cp__vg-chart-wrap--line .hub-product-page__legend-dot--qtd{background:#119531}.hub-cp__vg-chart-wrap--line .hub-product-page__legend-dot--fat{background:#0d7a28}.hub-cp__vg-line-area--qtd{fill:url(#cpGradQtdArea)}.hub-cp__vg-line-area--fat{fill:url(#cpGradFatArea)}.hub-cp__vg-line-path{fill:none;stroke-width:1.35;stroke-linecap:round;stroke-linejoin:round;transition:all .35s ease}.hub-cp__vg-line-path--qtd{stroke:#119531;filter:drop-shadow(0 1px 1px rgba(17,149,49,.2))}.hub-cp__vg-line-path--fat{stroke:#0d7a28;filter:drop-shadow(0 1px 1px rgba(13,122,40,.18))}.hub-cp__vg-line-point{stroke-width:.85;transition:all .35s ease}.hub-cp__vg-line-point--qtd{fill:#119531;stroke:#fff}.hub-cp__vg-line-point--fat{fill:#0d7a28;stroke:#fff}.hub-cp__vg-chart-top{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.5rem 1rem;margin-bottom:.75rem}.hub-cp__vg-chart-hint{margin:0;font-size:.78rem;color:#64748b}.hub-cp__vg-chart-legend{display:flex;flex-wrap:wrap;gap:.65rem 1rem;font-size:.72rem;font-weight:600;color:#64748b}.hub-cp__vg-legend-item:before{content:"";display:inline-block;width:.5rem;height:.5rem;border-radius:2px;margin-right:.35rem;vertical-align:middle}.hub-cp__vg-legend-item--valor:before{background:var(--hub-verde-forte, #119531)}.hub-cp__vg-legend-item--boleto:before{background:#d97706}.hub-cp__vg-chart-stage{position:relative;padding:.5rem .25rem 0}.hub-cp__vg-chart-grid{position:absolute;top:0;right:0;bottom:1.6rem;left:0;background-image:linear-gradient(to top,#e2e8f0 1px,transparent 1px);background-size:100% 25%;opacity:.45;pointer-events:none;border-radius:8px}.hub-cp__vg-chart{position:relative;display:flex;align-items:flex-end;gap:.35rem;height:10.5rem;z-index:1}.hub-cp__vg-chart-col{flex:1;min-width:0;display:flex;flex-direction:column;align-items:center;gap:.3rem;padding:.35rem .2rem .15rem;border:none;background:transparent;font:inherit;cursor:pointer;border-radius:10px;transition:background .2s ease}.hub-cp__vg-chart-col:hover{background:#1195310f}.hub-cp__vg-chart-col--active{background:#1195311a}.hub-cp__vg-chart-tip{display:flex;flex-direction:column;align-items:center;gap:.05rem;margin-bottom:.15rem;padding:.2rem .4rem;border-radius:6px;background:#0f172a;color:#fff;font-size:.62rem;line-height:1.2;white-space:nowrap;animation:hubVgFadeUp .2s ease both}.hub-cp__vg-chart-tip em{font-style:normal;font-weight:700}.hub-cp__vg-chart-tip small{opacity:.85;font-size:.58rem}.hub-cp__vg-chart-bars{display:flex;align-items:flex-end;justify-content:center;gap:4px;width:100%;max-width:3.25rem;height:7rem}.hub-cp__vg-chart-bar{flex:1;max-width:1.25rem;border-radius:6px 6px 2px 2px;min-height:3px;opacity:.75;transition:height .4s cubic-bezier(.34,1.15,.64,1),opacity .2s ease}.hub-cp__vg-chart-col--active .hub-cp__vg-chart-bar{opacity:1}.hub-cp__vg-chart-bar--valor{background:linear-gradient(180deg,var(--hub-verde-vivo, #60b937) 0%,var(--hub-verde-escuro, #0d7a28) 100%);box-shadow:0 2px 8px #11953138}.hub-cp__vg-chart-bar--boleto{background:linear-gradient(180deg,#fbbf24,#d97706);box-shadow:0 2px 6px #d9770633}.hub-cp__vg-chart-lbl{font-size:.7rem;font-weight:600;color:#64748b}.hub-cp__vg-chart-col--active .hub-cp__vg-chart-lbl{color:var(--hub-verde-escuro, #0d7a28);font-weight:800}.hub-cp__vg-chart-summary{display:flex;flex-wrap:wrap;gap:.35rem 1.25rem;margin-top:.75rem;padding-top:.65rem;border-top:1px solid #e2e8f0;font-size:.8rem;color:#475569}.hub-cp__vg-chart-summary strong{color:#0f172a}.hub-cp__vg-chart-wrap--mgmt{padding:.85rem 1rem .75rem;border-radius:6px;background:#fff;border:none;box-shadow:none}.hub-cp__vg-chart-head{display:flex;flex-wrap:wrap;align-items:baseline;justify-content:space-between;gap:.35rem 1rem;margin-bottom:.65rem}.hub-cp__vg-chart-head-title{margin:0;font-size:.7rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:#6b7280}.hub-cp__vg-chart-wrap--mgmt .hub-cp__vg-chart-legend{gap:.75rem 1.1rem;font-size:.68rem;font-weight:500;color:#6b7280}.hub-cp__vg-chart-wrap--mgmt .hub-cp__vg-legend-item:before{width:.45rem;height:.45rem;border-radius:1px;margin-right:.3rem}.hub-cp__vg-chart-wrap--mgmt .hub-cp__vg-legend-item--valor:before{background:#1e4d3a}.hub-cp__vg-chart-wrap--mgmt .hub-cp__vg-legend-item--boleto:before{background:#78716c}.hub-cp__vg-chart-stage--mgmt{display:grid;grid-template-columns:3.25rem minmax(0,1fr);gap:.35rem .5rem;padding:0;align-items:stretch}.hub-cp__vg-chart-axis{display:flex;flex-direction:column;justify-content:space-between;padding:0 0 1.45rem;font-size:.62rem;font-variant-numeric:tabular-nums;font-weight:500;color:#9ca3af;text-align:right;line-height:1}.hub-cp__vg-chart-main{position:relative;min-width:0}.hub-cp__vg-chart-grid--mgmt{top:0;right:0;bottom:1.35rem;left:0;background-image:linear-gradient(to top,#e5e7eb 1px,transparent 1px);background-size:100% 33.333%;opacity:.55;border-radius:0}.hub-cp__vg-chart--mgmt{height:8.75rem;gap:0;border-bottom:1px solid #d1d5db}.hub-cp__vg-chart-col--mgmt{flex:1;gap:.25rem;padding:0 .1rem;border-radius:0;border-bottom:2px solid transparent;margin-bottom:-1px;transition:border-color .15s ease,background .15s ease}.hub-cp__vg-chart-col--mgmt:hover{background:#f9fafb}.hub-cp__vg-chart-col--mgmt.hub-cp__vg-chart-col--active{background:transparent;border-bottom-color:#1e4d3a}.hub-cp__vg-chart-bars--mgmt{gap:3px;max-width:2.5rem;height:6.75rem}.hub-cp__vg-chart-wrap--mgmt .hub-cp__vg-chart-bar{max-width:.72rem;border-radius:1px 1px 0 0;opacity:1;transition:height .22s ease;box-shadow:none}.hub-cp__vg-chart-col--mgmt:not(.hub-cp__vg-chart-col--active) .hub-cp__vg-chart-bar{opacity:.72}.hub-cp__vg-chart-col--mgmt.hub-cp__vg-chart-col--active .hub-cp__vg-chart-bar{opacity:1}.hub-cp__vg-chart-wrap--mgmt .hub-cp__vg-chart-bar--valor{background:#1e4d3a}.hub-cp__vg-chart-wrap--mgmt .hub-cp__vg-chart-bar--boleto{background:#a8a29e}.hub-cp__vg-chart-col--mgmt.hub-cp__vg-chart-col--active .hub-cp__vg-chart-bar--boleto{background:#78716c}.hub-cp__vg-chart-wrap--mgmt .hub-cp__vg-chart-lbl{font-size:.65rem;font-weight:500;font-variant-numeric:tabular-nums;color:#9ca3af}.hub-cp__vg-chart-col--mgmt.hub-cp__vg-chart-col--active .hub-cp__vg-chart-lbl{color:#374151;font-weight:600}.hub-cp__vg-chart-kpis{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.5rem .75rem;margin-top:.75rem;padding-top:.7rem;border-top:1px solid #e5e7eb}.hub-cp__vg-chart-kpi{display:flex;flex-direction:column;gap:.15rem;min-width:0}.hub-cp__vg-chart-kpi-lbl{font-size:.62rem;font-weight:500;letter-spacing:.04em;text-transform:uppercase;color:#9ca3af}.hub-cp__vg-chart-kpi-val{font-size:.8rem;font-weight:600;font-variant-numeric:tabular-nums;color:#111827;line-height:1.25}@media (max-width: 640px){.hub-cp__vg-chart-kpis{grid-template-columns:repeat(2,minmax(0,1fr))}.hub-cp__vg-chart-stage--mgmt{grid-template-columns:2.5rem minmax(0,1fr)}}.hub-cp__vg-month-panel{margin-bottom:.85rem;padding:1rem;border-radius:14px;border:none;background:#fff;box-shadow:none}.hub-cp__vg-month-panel--enter{animation:hubVgFadeUp .4s ease both}.hub-cp__vg-month-panel-head{margin-bottom:.75rem;padding-bottom:.65rem;border-bottom:1px solid var(--secondary-200)}.hub-cp__vg-month-panel-head h4{margin:0;font-size:.95rem;font-weight:800;color:#008174}.hub-cp__vg-month-panel-head p{margin:.25rem 0 0;font-size:.8rem;color:var(--tertiary-600)}.hub-cp__vg-month-body{display:flex;flex-direction:column;gap:1rem}.hub-cp__vg-block-title{display:flex;align-items:center;gap:.5rem;margin:0 0 .6rem;font-size:.78rem;font-weight:700;letter-spacing:.03em;text-transform:uppercase;color:#334155}.hub-cp__vg-block-count{display:inline-flex;min-width:1.35rem;justify-content:center;padding:.1rem .4rem;border-radius:999px;font-size:.68rem;font-weight:700;background:#e2e8f0;color:#475569}.hub-cp__vg-block--secondary{padding-top:.85rem;border-top:none}.hub-cp__vg-prod-grid{margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(11rem,1fr));gap:.5rem}.hub-cp__vg-prod-card{display:flex;flex-direction:column;gap:.2rem;padding:.55rem .65rem;border-radius:10px;background:#fff;border:1px solid #e2e8f0;text-decoration:none;transition:border-color .15s ease,box-shadow .15s ease}.hub-cp__vg-prod-card:hover{border-color:#99f6e4;box-shadow:0 2px 10px #00817414}.hub-cp__vg-prod-card-code{font-size:.72rem;font-weight:800;color:#008174}.hub-cp__vg-prod-card-name{font-size:.75rem;line-height:1.35;color:#334155;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-cp__vg-prod-card-foot{display:flex;justify-content:space-between;align-items:baseline;margin-top:.15rem;font-size:.7rem;color:#64748b}.hub-cp__vg-prod-card-foot strong{color:#0f172a;font-weight:700}.hub-cp__vg-panel-empty{margin:0;font-size:.8rem;color:var(--tertiary-600);line-height:1.45}.hub-cp__vg-prod-bars{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.55rem}.hub-cp__vg-prod-bar-row{animation:hubVgFadeUp .35s ease both}.hub-cp__vg-prod-bar-head{display:flex;justify-content:space-between;gap:.5rem;font-size:.78rem}.hub-cp__vg-prod-bar-code{font-weight:800;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__vg-prod-bar-val{font-weight:700;color:#0f172a}.hub-cp__vg-prod-bar-track{height:.4rem;border-radius:999px;background:var(--secondary-200);overflow:hidden}.hub-cp__vg-prod-bar-fill{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--hub-verde-medio, #4a9f2a),var(--hub-verde-forte, #119531))}.hub-cp__vg-prod-bar-name{margin:.2rem 0 0;font-size:.72rem;line-height:1.35;color:#475569}.hub-cp__vg-prod-bar-qty{font-size:.68rem;font-weight:600;color:#94a3b8}.hub-cp__vg-prod-month-row{display:grid;grid-template-columns:minmax(0,1fr);gap:1rem;align-items:start}.hub-cp__vg-prod-month-row--with-sidebar{grid-template-columns:minmax(0,1fr) minmax(260px,22rem)}.hub-cp__vg-prod-month-row--with-sidebar .hub-cp__vg-prod-sidebar{position:sticky;top:calc(var(--hub-chrome-offset, 0px) + .5rem)}.hub-cp__vg-prod-month-main{min-width:0}.hub-cp__vg-prod-bars-wrap{display:flex;flex-direction:column;gap:.65rem}.hub-cp__vg-prod-bars-hint{margin:0;font-size:.72rem;color:#64748b}.hub-cp__vg-prod-bar-row{position:relative;border-radius:10px;border:1px solid transparent;transition:border-color .15s ease,background .15s ease,box-shadow .15s ease}.hub-cp__vg-prod-bar-row--active{border:none;background:#1195310f;box-shadow:none}.hub-cp__vg-prod-bar-trigger{display:block;width:100%;padding:.5rem .55rem .45rem;border:none;border-radius:10px;background:transparent;text-align:left;cursor:pointer;font:inherit;color:inherit}.hub-cp__vg-prod-bar-trigger:focus-visible{outline:2px solid var(--hub-verde-vivo, #119531);outline-offset:2px}.hub-cp__vg-prod-bar-code-wrap{display:inline-flex;align-items:center;gap:.35rem;min-width:0}.hub-cp__vg-prod-bar-badge{display:inline-flex;align-items:center;justify-content:center;min-width:1.15rem;height:1.15rem;padding:0 .25rem;border-radius:999px;font-size:.62rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28);background:#1195311f}.hub-cp__vg-prod-sidebar{display:flex;flex-direction:column;max-height:min(32rem,72vh);border-radius:14px;border:1px solid rgba(74,159,42,.2);background:#fff;box-shadow:0 8px 28px #0f281614;overflow:hidden}.hub-cp__vg-prod-sidebar--enter{animation:hubVgFadeUp .28s ease both}.hub-cp__vg-prod-sidebar-head{display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.55rem .7rem;background:linear-gradient(180deg,#f8fcf5,#fff);border-bottom:1px solid rgba(74,159,42,.14)}.hub-cp__vg-prod-sidebar-kicker{font-size:.68rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__vg-prod-sidebar-close{flex-shrink:0;width:1.75rem;height:1.75rem;border:none;border-radius:8px;background:#0f28160f;font-size:1.1rem;line-height:1;color:#0f28168c;cursor:pointer}.hub-cp__vg-prod-sidebar-close:hover{background:#0f28161a;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__vg-prod-sidebar-scroll{flex:1 1 auto;min-height:0;overflow-y:auto;padding:.75rem .7rem .85rem;-webkit-overflow-scrolling:touch}.hub-cp__vg-prod-sidebar-hero{display:flex;flex-direction:column;align-items:stretch;gap:.55rem;margin-bottom:.65rem}.hub-cp__vg-prod-sidebar-img-wrap{width:100%;aspect-ratio:1;max-height:11rem;border-radius:12px;border:1px solid rgba(74,159,42,.18);background:#f8fafc;display:flex;align-items:center;justify-content:center;overflow:hidden;padding:.5rem;box-sizing:border-box}.hub-cp__vg-prod-sidebar-img-wrap img{width:100%;height:100%;max-height:10rem;object-fit:contain}.hub-cp__vg-prod-sidebar-titles{min-width:0;text-align:center}.hub-cp__vg-prod-sidebar-code{margin:0;font-size:.78rem;font-weight:800;letter-spacing:.02em;color:var(--hub-verde-forte, #119531)}.hub-cp__vg-prod-sidebar-name{margin:.25rem 0 0;font-size:.86rem;font-weight:700;line-height:1.4;color:#0f2816e6}.hub-cp__vg-prod-sidebar-prices{display:grid;grid-template-columns:1fr 1fr;gap:.45rem;margin-bottom:.65rem}.hub-cp__vg-prod-sidebar-price{display:flex;flex-direction:column;align-items:center;gap:.15rem;padding:.45rem .35rem;border-radius:10px;background:#fff;border:1px solid rgba(74,159,42,.2)}.hub-cp__vg-prod-sidebar-price-lbl{font-size:.62rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:#0f281680}.hub-cp__vg-prod-sidebar-price-val{font-size:.82rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28);font-variant-numeric:tabular-nums}.hub-cp__vg-prod-sidebar-month{margin-bottom:.75rem;padding:.5rem .55rem;border-radius:10px;background:#1195310f;border:1px solid rgba(74,159,42,.16)}.hub-cp__vg-prod-sidebar-month-lbl{display:block;font-size:.62rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#0f281680}.hub-cp__vg-prod-sidebar-month-val{margin:.2rem 0 0;font-size:.78rem;color:#0f2816bf}.hub-cp__vg-prod-sidebar-status,.hub-cp__vg-prod-sidebar-err,.hub-cp__vg-prod-sidebar-empty{margin:0 0 .65rem;font-size:.76rem;line-height:1.45;color:#0f281694}.hub-cp__vg-prod-sidebar-err{color:#b45309}.hub-cp__vg-prod-sidebar-section-title{display:flex;align-items:center;gap:.4rem;margin:0 0 .5rem;font-size:.68rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__vg-prod-sidebar-count{padding:.1rem .4rem;border-radius:999px;font-size:.62rem;font-weight:800;background:#1195311f;color:var(--hub-verde-forte, #119531)}.hub-cp__vg-prod-sidebar-dl{margin:0 0 .75rem;padding:0}.hub-cp__vg-prod-sidebar-dl-row{display:grid;grid-template-columns:5.5rem minmax(0,1fr);gap:.35rem .5rem;padding:.28rem 0;border-bottom:1px solid rgba(74,159,42,.08)}.hub-cp__vg-prod-sidebar-dl-row:last-child{border-bottom:none}.hub-cp__vg-prod-sidebar-dl-row dt{margin:0;font-size:.68rem;font-weight:600;color:#0f281680}.hub-cp__vg-prod-sidebar-dl-row dd{margin:0;font-size:.72rem;font-weight:600;color:#0f2816d1;word-break:break-word}.hub-cp__vg-prod-sidebar-actions{margin-bottom:.85rem}.hub-cp__vg-prod-sidebar-cta{display:flex;align-items:center;justify-content:center;width:100%;padding:.5rem .75rem;border-radius:10px;font-size:.78rem;font-weight:700;text-decoration:none;color:#fff;background:linear-gradient(180deg,var(--hub-verde-forte, #119531),var(--hub-verde-escuro, #0d7a28));box-shadow:0 2px 8px #11953138}.hub-cp__vg-prod-sidebar-cta:hover{filter:brightness(1.05);color:#fff}.hub-cp__vg-prod-sidebar-related-hint{margin:0 0 .5rem;font-size:.68rem;line-height:1.4;color:#0f281685}.hub-cp__vg-prod-sidebar-related-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.45rem}.hub-cp__vg-prod-sidebar-rel-card{display:flex;flex-direction:column;gap:.3rem;padding:.45rem;border-radius:10px;border:1px solid rgba(74,159,42,.16);background:#fafcf8}.hub-cp__vg-prod-sidebar-rel-card--bought{border-color:#11953159;background:linear-gradient(180deg,#f6fcf3,#fafcf8)}.hub-cp__vg-prod-sidebar-rel-main{display:flex;gap:.5rem;align-items:flex-start;width:100%;padding:0;border:none;background:transparent;text-align:left;cursor:pointer;font:inherit;color:inherit}.hub-cp__vg-prod-sidebar-rel-main:hover{opacity:.92}.hub-cp__vg-prod-sidebar-rel-main:focus-visible{outline:2px solid var(--hub-verde-vivo, #119531);outline-offset:2px;border-radius:6px}.hub-cp__vg-prod-sidebar-rel-img{flex:0 0 2.75rem;width:2.75rem;height:2.75rem;border-radius:8px;border:1px solid rgba(74,159,42,.14);background:#fff;overflow:hidden;display:block}.hub-cp__vg-prod-sidebar-rel-img img{width:100%;height:100%;object-fit:contain}.hub-cp__vg-prod-sidebar-rel-body{min-width:0;flex:1;display:flex;flex-direction:column;gap:.12rem}.hub-cp__vg-prod-sidebar-rel-top{display:flex;align-items:center;justify-content:space-between;gap:.25rem}.hub-cp__vg-prod-sidebar-rel-code{font-size:.68rem;font-weight:800;color:var(--hub-verde-forte, #119531)}.hub-cp__vg-prod-sidebar-rel-type{font-size:.58rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;color:#0f281673;white-space:nowrap}.hub-cp__vg-prod-sidebar-rel-name{font-size:.7rem;line-height:1.3;color:#0f2816b8;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-cp__vg-prod-sidebar-rel-price{font-size:.68rem;font-weight:700;color:#0f2816a6}.hub-cp__vg-prod-sidebar-rel-bought{display:flex;flex-direction:column;align-items:flex-start;gap:.2rem;margin-top:.2rem;padding-top:.25rem;border-top:1px dashed rgba(74,159,42,.22)}.hub-cp__vg-prod-sidebar-rel-bought-badge{display:inline-block;padding:.12rem .4rem;border-radius:999px;font-size:.58rem;font-weight:800;letter-spacing:.03em;text-transform:uppercase;color:var(--hub-verde-escuro, #0d7a28);background:#11953124}.hub-cp__vg-prod-sidebar-rel-bought-txt{font-size:.65rem;line-height:1.35;font-weight:600;color:#0f2816ad}.hub-cp__vg-prod-sidebar-rel-link{align-self:flex-end;font-size:.66rem;font-weight:700;color:var(--hub-verde-escuro, #0d7a28);text-decoration:none}.hub-cp__vg-prod-sidebar-rel-link:hover{text-decoration:underline}@media (max-width: 1100px){.hub-cp__vg-prod-month-row--with-sidebar{grid-template-columns:1fr}.hub-cp__vg-prod-sidebar{max-height:none}}.hub-cp__vg-prod-detail{margin-top:.35rem;padding:.85rem .9rem;border-radius:12px;border:1px solid rgba(0,129,116,.22);background:linear-gradient(180deg,#f8fffe,#fff);box-shadow:0 4px 14px #0f28160f}.hub-cp__vg-prod-detail--enter{animation:hubVgFadeUp .3s ease both}.hub-cp__vg-prod-detail-head{display:flex;align-items:flex-start;justify-content:space-between;gap:.65rem;margin-bottom:.75rem}.hub-cp__vg-prod-detail-code{margin:0;font-size:.82rem;font-weight:800;color:#008174}.hub-cp__vg-prod-detail-name{margin:.15rem 0 0;font-size:.88rem;font-weight:700;color:#0f172a;line-height:1.35}.hub-cp__vg-prod-detail-meta{margin:.25rem 0 0;font-size:.75rem;color:#64748b}.hub-cp__vg-prod-detail-close{flex-shrink:0;width:1.75rem;height:1.75rem;border:none;border-radius:8px;background:#0f172a0f;font-size:1.1rem;line-height:1;color:#475569;cursor:pointer}.hub-cp__vg-prod-detail-close:hover{background:#0f172a1a;color:#0f172a}.hub-cp__vg-prod-detail-empty{margin:0 0 .65rem;font-size:.78rem;line-height:1.45;color:#64748b}.hub-cp__vg-prod-detail-foot{margin-top:.75rem;padding-top:.65rem;border-top:1px solid rgba(0,129,116,.12)}.hub-cp__vg-prod-detail-link{font-size:.78rem;font-weight:700;color:#008174;text-decoration:none}.hub-cp__vg-prod-detail-link:hover{text-decoration:underline}.hub-cp__vg-prod-suggest-title{margin:0 0 .5rem;font-size:.68rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:#0d9488}.hub-cp__vg-prod-suggest-grid{margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(9.5rem,1fr));gap:.45rem}.hub-cp__vg-prod-suggest-card{display:flex;flex-direction:column;gap:.25rem;min-height:4.5rem;padding:.5rem .55rem;border-radius:10px;background:#fff;border:1px solid #99f6e4;text-decoration:none;transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease}.hub-cp__vg-prod-suggest-card:hover{transform:translateY(-1px);border-color:#5eead4;box-shadow:0 4px 12px #0d948824}.hub-cp__vg-prod-suggest-card-top{display:flex;align-items:center;justify-content:space-between;gap:.25rem}.hub-cp__vg-prod-suggest-code{font-size:.68rem;font-weight:800;color:#008174}.hub-cp__vg-prod-suggest-type{font-size:.58rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;color:#0f766e;white-space:nowrap}.hub-cp__vg-prod-suggest-name{font-size:.68rem;line-height:1.3;color:#475569;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.hub-cp__vg-cobranca-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.55rem;max-height:14rem;overflow-y:auto}.hub-cp__vg-cobranca-item{padding:.55rem .6rem;border-radius:8px;background:#fff;border:1px solid var(--secondary-200);border-left:3px solid #008174}.hub-cp__vg-cobranca-head{display:flex;justify-content:space-between;align-items:baseline;gap:.5rem}.hub-cp__vg-cobranca-nf{font-size:.8rem;font-weight:800;color:#0f172a}.hub-cp__vg-cobranca-total{font-size:.82rem;font-weight:800;color:#008174}.hub-cp__vg-cobranca-meta{display:block;margin-top:.15rem;font-size:.72rem;color:var(--tertiary-600)}.hub-cp__vg-cobranca-parcs{margin:.4rem 0 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.3rem}.hub-cp__vg-cobranca-parc{display:flex;flex-wrap:wrap;align-items:center;gap:.25rem .5rem;padding:.35rem .45rem;border-radius:6px;background:var(--secondary-100);font-size:.72rem}.hub-cp__vg-cobranca-parc-n{font-weight:700;color:var(--tertiary-900)}.hub-cp__vg-cobranca-parc-v{font-weight:800;color:#0f172a}.hub-cp__vg-cobranca-parc-d{color:var(--tertiary-600)}.hub-cp__vg-cobranca-parc-s{font-weight:600;margin-left:auto}.hub-cp__vg-cobranca-pdf{font-size:.68rem;font-weight:700;color:#008174;text-decoration:none}.hub-cp__vg-cobranca-pdf:hover{text-decoration:underline}.hub-cp__vg-cobranca-parc.hub-cp__vg-boleto--paid .hub-cp__vg-cobranca-parc-s{color:var(--primary-700)}.hub-cp__vg-cobranca-parc.hub-cp__vg-boleto--late .hub-cp__vg-cobranca-parc-s{color:#b91c1c}.hub-cp__vg-cobranca-parc.hub-cp__vg-boleto--open .hub-cp__vg-cobranca-parc-s{color:var(--secondary-600)}.hub-cp__vg-combina-grid{display:flex;flex-direction:column;gap:.55rem;max-height:14rem;overflow-y:auto}.hub-cp__vg-combina-group{padding:.45rem .5rem;border-radius:8px;background:#fff;border:1px solid var(--secondary-200)}.hub-cp__vg-combina-origin{margin:0 0 .35rem;font-size:.72rem}.hub-cp__vg-combina-origin-code{font-weight:800;color:#0f172a;margin-right:.35rem}.hub-cp__vg-combina-origin-name{color:#64748b}.hub-cp__vg-combina-links{margin:0;padding:0;list-style:none}.hub-cp__vg-combina-links li+li{margin-top:.25rem}.hub-cp__vg-combina-target{display:block;padding:.3rem .35rem;border-radius:6px;text-decoration:none;font-size:.75rem}.hub-cp__vg-combina-target:hover{background:var(--primary-100)}.hub-cp__vg-combina-target-code{font-weight:800;color:#008174;margin-right:.35rem}.hub-cp__vg-combina-target-name{color:#334155}.hub-cp__vg-combina-remarks{display:block;margin-top:.1rem;font-size:.68rem;color:#94a3b8;font-style:italic}.hub-cp__vg-nf-compact-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.45rem}.hub-cp__vg-nf-compact{display:flex;align-items:center;justify-content:space-between;gap:.65rem 1rem;padding:.55rem .65rem;border-radius:6px;border:none;background:#fff}.hub-cp__vg-nf-compact-body{min-width:0;flex:1}.hub-cp__vg-nf-compact-head{display:flex;align-items:baseline;justify-content:space-between;gap:.5rem .75rem}.hub-cp__vg-nf-compact-nf{font-size:.82rem;font-weight:700;color:#111827}.hub-cp__vg-nf-compact-val{font-size:.82rem;font-weight:700;font-variant-numeric:tabular-nums;color:#111827;white-space:nowrap}.hub-cp__vg-nf-compact-meta{margin:.2rem 0 0;font-size:.72rem;color:#6b7280;line-height:1.35}.hub-cp__vg-nf-compact-itens{font-weight:600;color:#4b5563}.hub-cp__vg-nf-compact-cta{flex-shrink:0;padding:.35rem .65rem;border-radius:6px;border:1px solid #d1d5db;background:#f9fafb;font-size:.72rem;font-weight:600;color:#1e4d3a;text-decoration:none;white-space:nowrap;transition:background .15s ease,border-color .15s ease}.hub-cp__vg-nf-compact-cta:hover{background:#f0fdf4;border-color:#86efac}.hub-cp__vg-nf-compact-cta--disabled{opacity:.45;cursor:default;pointer-events:none}.hub-cp__vg-nf-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.5rem}.hub-cp__vg-nf-card{border-radius:10px;border:1px solid #e2e8f0;background:#f8fafc;overflow:hidden;transition:border-color .2s ease,box-shadow .2s ease}.hub-cp__vg-nf-card--open{border-color:#99f6e4;box-shadow:0 4px 14px #0081741a}.hub-cp__vg-nf-card-trigger{display:flex;align-items:center;gap:.65rem;width:100%;padding:.65rem .75rem;border:none;background:transparent;font:inherit;text-align:left;cursor:pointer;transition:background .2s ease}.hub-cp__vg-nf-card-trigger:hover{background:#f0fdf9}.hub-cp__vg-nf-card-chevron{flex-shrink:0;width:.5rem;height:.5rem;border-right:2px solid #64748b;border-bottom:2px solid #64748b;transform:rotate(-45deg);transition:transform .25s ease}.hub-cp__vg-nf-card--open .hub-cp__vg-nf-card-chevron{transform:rotate(45deg)}.hub-cp__vg-nf-card-main{flex:1;min-width:0;display:flex;flex-direction:column;gap:.1rem}.hub-cp__vg-nf-card-title{font-size:.88rem;font-weight:700;color:#0f172a}.hub-cp__vg-nf-card-meta{font-size:.72rem;color:#64748b}.hub-cp__vg-nf-card-total{font-size:.9rem;font-weight:800;color:#008174}.hub-cp__vg-nf-card-body{padding:0 .75rem .75rem;animation:hubVgExpand .35s ease both}.hub-cp__vg-nf-section+.hub-cp__vg-nf-section{margin-top:.65rem;padding-top:.65rem;border-top:1px dashed #e2e8f0}.hub-cp__vg-nf-section-title{margin:0 0 .45rem;font-size:.7rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#64748b}.hub-cp__vg-nf-loading{display:flex;align-items:center;gap:.5rem;margin:0;font-size:.8rem;color:#64748b}.hub-cp__vg-nf-empty-wrap{display:flex;flex-direction:column;align-items:flex-start;gap:.5rem}.hub-cp__vg-nf-empty{margin:0;font-size:.8rem;color:#64748b;line-height:1.45}.hub-cp__vg-nf-retry{padding:.35rem .65rem;border-radius:8px;border:1px solid #e2e8f0;background:#fff;font-size:.75rem;font-weight:600;color:#008174;cursor:pointer;transition:background .15s ease,border-color .15s ease}.hub-cp__vg-nf-retry:hover{background:#f0fdf9;border-color:#99f6e4}.hub-cp__vg-nf-itens{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.65rem}.hub-cp__vg-nf-item{border-radius:10px;background:#fff;border:1px solid #e5e7eb;overflow:hidden}.hub-cp__vg-nf-item-link{display:grid;grid-template-columns:auto 1fr auto;align-items:stretch;gap:.85rem 1rem;min-height:5.25rem;padding:.75rem .85rem;color:inherit;text-decoration:none;transition:background .15s ease}.hub-cp__vg-nf-item-link:hover{background:#f9fafb}.hub-cp__vg-nf-item-link:focus-visible{outline:2px solid var(--hub-verde-vivo, #119531);outline-offset:-2px}.hub-cp__vg-nf-item-img{flex:0 0 4.5rem;width:4.5rem;height:4.5rem;align-self:center;border-radius:10px;border:1px solid #e5e7eb;background:#fff;overflow:hidden}.hub-cp__vg-nf-item-img img{width:100%;height:100%;object-fit:contain}.hub-cp__vg-nf-item-body{min-width:0;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;gap:.25rem;padding:.15rem 0}.hub-cp__vg-nf-item-code{font-size:.8rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28);line-height:1.2}.hub-cp__vg-nf-item-name{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden;font-size:.88rem;font-weight:500;color:#1f2937;line-height:1.4}.hub-cp__vg-nf-item-pricing{display:grid;grid-template-columns:repeat(3,minmax(5.5rem,1fr));align-self:center;gap:0;min-width:16.5rem;border-radius:8px;border:1px solid #e5e7eb;background:#f9fafb;overflow:hidden}.hub-cp__vg-nf-item-metric{display:flex;flex-direction:column;justify-content:center;gap:.35rem;padding:.65rem .75rem;border-right:1px solid #e5e7eb}.hub-cp__vg-nf-item-metric:last-child{border-right:none}.hub-cp__vg-nf-item-metric-lbl{font-size:.65rem;font-weight:600;letter-spacing:.03em;text-transform:uppercase;color:#6b7280;line-height:1.2}.hub-cp__vg-nf-item-metric-val{font-size:.95rem;font-weight:700;font-variant-numeric:tabular-nums;color:#111827;line-height:1.2;white-space:nowrap}.hub-cp__vg-nf-item-metric-val small{font-size:.72rem;font-weight:600;color:#6b7280}.hub-cp__vg-nf-item-metric--total{background:#f0fdf4}.hub-cp__vg-nf-item-metric--total .hub-cp__vg-nf-item-metric-lbl{color:#166534}.hub-cp__vg-nf-item-metric--total .hub-cp__vg-nf-item-metric-val{font-size:1.05rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28)}@media (max-width: 900px){.hub-cp__vg-nf-item-link{grid-template-columns:auto 1fr;grid-template-rows:auto auto;min-height:0}.hub-cp__vg-nf-item-pricing{grid-column:1 / -1;grid-template-columns:repeat(3,1fr);min-width:0;width:100%}}@media (max-width: 520px){.hub-cp__vg-nf-item-pricing{grid-template-columns:1fr}.hub-cp__vg-nf-item-metric{flex-direction:row;align-items:center;justify-content:space-between;border-right:none;border-bottom:1px solid #e5e7eb}.hub-cp__vg-nf-item-metric:last-child{border-bottom:none}}.hub-cp__vg-nf-cross{padding:.45rem .65rem .55rem;background:linear-gradient(180deg,#f8fcf5,#f4faf2);border-top:1px dashed rgba(74,159,42,.28)}.hub-cp__vg-nf-cross-label{display:block;margin-bottom:.35rem;font-size:.65rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--hub-verde-escuro, #0d7a28)}.hub-cp__vg-nf-cross-list{margin:0;padding:0;list-style:none;display:flex;flex-wrap:wrap;gap:.35rem}.hub-cp__vg-nf-cross-chip{display:inline-flex;flex-direction:column;gap:.05rem;max-width:10rem;padding:.35rem .5rem;border-radius:8px;background:#fff;border:1px solid rgba(74,159,42,.25);text-decoration:none;transition:transform .15s ease,box-shadow .15s ease}.hub-cp__vg-nf-cross-chip:hover{transform:translateY(-1px);box-shadow:0 3px 8px #1195311f}.hub-cp__vg-nf-cross-chip-code{font-size:.68rem;font-weight:800;color:var(--hub-verde-forte, #119531)}.hub-cp__vg-nf-cross-chip-name{font-size:.65rem;line-height:1.25;color:#475569;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-cp__vg-nf-cross-foot{padding:.4rem .65rem;font-size:.68rem;color:#64748b;font-style:italic;list-style:none}.hub-cp__vg-nf-card-badge{display:inline-block;margin-left:.35rem;padding:.1rem .4rem;border-radius:999px;font-size:.62rem;font-weight:700;background:#ccfbf1;color:#0f766e}.hub-cp__vg-nf-section--boletos{margin-top:.5rem}.hub-cp__vg-nf-tag{display:inline-block;margin-top:.15rem;padding:.1rem .35rem;border-radius:4px;font-size:.62rem;font-weight:700;text-transform:uppercase;background:#fef3c7;color:#b45309}.hub-cp__vg-sugestoes-hint{margin:0 0 .65rem;font-size:.78rem;line-height:1.45;color:#64748b}.hub-cp__vg-sugestoes-grid{display:flex;flex-direction:column;gap:.55rem;max-height:16rem;overflow-y:auto}.hub-cp__vg-sugestao-group{padding:.55rem .6rem;border-radius:8px;background:#f8fafc;border:1px solid #e2e8f0;transition:border-color .2s ease}.hub-cp__vg-sugestao-group:hover{border-color:#cbd5e1}.hub-cp__vg-sugestao-origin{margin:0 0 .4rem;font-size:.72rem}.hub-cp__vg-sugestao-origin-code{font-weight:800;color:#0f172a;margin-right:.35rem}.hub-cp__vg-sugestao-origin-name{color:#64748b}.hub-cp__vg-sugestao-links{margin:0;padding:0;list-style:none;display:grid;gap:.35rem}.hub-cp__vg-sugestao-card{display:block;padding:.45rem .5rem;border-radius:8px;background:#fff;border:1px solid #e2e8f0;text-decoration:none;transition:transform .15s ease,border-color .15s ease,box-shadow .15s ease}.hub-cp__vg-sugestao-card:hover{transform:translate(4px);border-color:#99f6e4;box-shadow:0 2px 8px #00817414}.hub-cp__vg-sugestao-card-code{font-weight:800;color:#008174;margin-right:.35rem;font-size:.75rem}.hub-cp__vg-sugestao-card-name{font-size:.75rem;color:#334155}.hub-cp__vg-sugestao-card-note{display:block;margin-top:.15rem;font-size:.68rem;color:#94a3b8}@media (prefers-reduced-motion: reduce){.hub-cp__vg-kpi,.hub-cp__vg-month-panel--enter,.hub-cp__vg-prod-bar-row,.hub-cp__vg-nf-card-body,.hub-cp__vg-chart-tip,.hub-cp__vg-chart-bar{animation:none;transition:none}.hub-cp__vg-kpi:hover,.hub-cp__vg-nf-cross-chip:hover,.hub-cp__vg-sugestao-card:hover{transform:none}}.hub-cp__vg-boletos-block{padding-top:.25rem}.hub-cp__vg-section-title{margin:0 0 .65rem;font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:#64748b}.hub-cp__vg-boletos-grid{margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(10.5rem,1fr));gap:.55rem}.hub-cp__vg-boleto{padding:.65rem .7rem;border-radius:10px;border:1px solid #e2e8f0;background:#fff}.hub-cp__vg-boleto--paid{border-color:#86efac;background:#f0fdf4}.hub-cp__vg-boleto--late{border-color:#fca5a5;background:#fef2f2}.hub-cp__vg-boleto--open{border-color:#fcd34d;background:#fffbeb}.hub-cp__vg-boleto-head{display:flex;justify-content:space-between;gap:.35rem;font-size:.72rem;font-weight:700;color:#64748b}.hub-cp__vg-boleto-valor{margin:.35rem 0 0;font-size:1rem;font-weight:800;color:#0f172a}.hub-cp__vg-boleto-venc{margin:.15rem 0 0;font-size:.72rem;color:#64748b}.hub-cp__vg-boleto-status{display:inline-block;margin-top:.35rem;padding:.15rem .45rem;border-radius:999px;font-size:.65rem;font-weight:800;text-transform:uppercase;background:#f1f5f9;color:#475569}.hub-cp__vg-boleto--paid .hub-cp__vg-boleto-status{background:#dcfce7;color:#166534}.hub-cp__vg-boleto--late .hub-cp__vg-boleto-status{background:#fee2e2;color:#b91c1c}.hub-cp__vg-boleto--open .hub-cp__vg-boleto-status{background:#fef3c7;color:#b45309}.hub-cp__sobre-act{margin:0}.hub-cp__sobre-act-head{display:flex;align-items:flex-end;justify-content:center;gap:1rem;margin-bottom:.55rem}.hub-cp__sobre-act-title{margin:0;font-size:.95rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#0d7a28}.hub-cp__sobre-act-sub{margin:.2rem 0 0;font-size:.8rem;color:#64748b}.hub-cp__sobre-act-loading{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:1rem;border:1px dashed #e2e8f0;border-radius:10px;font-size:.85rem;color:#64748b}.hub-cp__sobre-act-error{margin:0;padding:.75rem 1rem;border-radius:8px;background:#fef2f2;font-size:.85rem;color:#b91c1c}.hub-cp__sobre-act-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:.55rem}a.hub-cp__sobre-act-card{--act-accent: #119531;--act-accent-soft: rgba(17, 149, 49, .08);--act-accent-border: rgba(17, 149, 49, .18);position:relative;display:flex;flex-direction:column;gap:.28rem;min-height:0;padding:.62rem .68rem .58rem;overflow:hidden;border:1px solid var(--act-accent-border);border-radius:14px;background:linear-gradient(180deg,var(--act-accent-soft),rgba(255,255,255,0) 62%),#fff;text-decoration:none;color:inherit;box-shadow:0 1px 6px #0f172a0a;transition:border-color .15s ease,background .15s ease,box-shadow .15s ease,transform .12s ease}a.hub-cp__sobre-act-card:before{content:"";position:absolute;inset:0 0 auto;height:3px;background:var(--act-accent)}.hub-cp__sobre-act-card--skeleton{display:flex;flex-direction:column;gap:.42rem;min-height:7rem;padding:.72rem .68rem .58rem;border:1px solid rgba(15,23,42,.08);border-radius:14px;background:#fff;box-shadow:0 1px 6px #0f172a0a}a.hub-cp__sobre-act-card:hover{border-color:var(--act-accent);background:linear-gradient(180deg,var(--act-accent-soft),rgba(255,255,255,0) 76%),#fff;box-shadow:0 8px 18px #0f172a14;transform:translateY(-1px)}a.hub-cp__sobre-act-card--alert{--act-accent: #f59e0b;--act-accent-soft: rgba(245, 158, 11, .1);--act-accent-border: rgba(245, 158, 11, .2)}a.hub-cp__sobre-act-card--info{--act-accent: #3b82f6;--act-accent-soft: rgba(59, 130, 246, .09);--act-accent-border: rgba(59, 130, 246, .18)}a.hub-cp__sobre-act-card--sales{--act-accent: #119531;--act-accent-soft: rgba(17, 149, 49, .09);--act-accent-border: rgba(17, 149, 49, .18)}a.hub-cp__sobre-act-card--quote{--act-accent: #7c3aed;--act-accent-soft: rgba(124, 58, 237, .09);--act-accent-border: rgba(124, 58, 237, .18)}a.hub-cp__sobre-act-card--flow{--act-accent: #0891b2;--act-accent-soft: rgba(8, 145, 178, .09);--act-accent-border: rgba(8, 145, 178, .18)}a.hub-cp__sobre-act-card--flow-done{--act-accent: #64748b;--act-accent-soft: rgba(100, 116, 139, .09);--act-accent-border: rgba(100, 116, 139, .18)}.hub-cp__sobre-act-card-top{display:flex;align-items:center;justify-content:space-between;gap:.5rem}.hub-cp__sobre-act-card-title{min-width:0;overflow:hidden;color:#334155;font-size:.76rem;font-weight:800;line-height:1.2;text-overflow:ellipsis;text-transform:uppercase;letter-spacing:.045em;white-space:nowrap}a.hub-cp__sobre-act-card:hover .hub-cp__sobre-act-card-title{color:#0f172a}.hub-cp__sobre-act-card-count{flex-shrink:0;min-width:1.85rem;padding:.08rem .42rem;border-radius:10px;background:var(--act-accent);box-shadow:0 5px 12px color-mix(in srgb,var(--act-accent) 22%,transparent);color:#fff;font-size:.9rem;font-weight:800;line-height:1.25;text-align:center;font-variant-numeric:tabular-nums}.hub-cp__sobre-act-card-count--zero{background:#f1f5f9;box-shadow:none;color:#94a3b8}.hub-cp__sobre-act-card-preview{margin:0;flex:1;min-height:2.35rem;font-size:.76rem;line-height:1.35;color:#475569;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-cp__sobre-act-card-preview--empty{color:#94a3b8;font-style:italic}.hub-cp__sobre-act-card-tag{align-self:flex-start;max-width:100%;padding:.12rem .42rem;border-radius:999px;font-size:.64rem;font-weight:750;line-height:1.25;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hub-cp__sobre-act-card-tag--late{background:#fef2f2;color:#b91c1c}.hub-cp__sobre-act-card-tag--soon{background:#fffbeb;color:#b45309}.hub-cp__sobre-act-card-tag--pending{background:#fff7ed;color:#c2410c}.hub-cp__sobre-act-card-tag--done{background:#f0fdf4;color:#15803d}.hub-cp__sobre-act-card-tag--neutral{background:#f1f5f9;color:#475569}.hub-cp__sobre-act-card-tag--cot-open{background:#ecfdf5;color:#166534}.hub-cp__sobre-act-card-tag--flux{background:#f5f3ff;color:#6d28d9}.hub-cp__sobre-act-card-cta{margin-top:.02rem;color:var(--act-accent);font-size:.7rem;font-weight:750}@media (max-width: 1180px){.hub-cp__sobre-act-grid{grid-template-columns:repeat(6,minmax(9.25rem,1fr));overflow-x:auto;padding-bottom:.25rem;scrollbar-width:thin}}.hub-cp__facts-simple{margin:0;display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:.85rem 1.75rem}.hub-cp__fact{margin:0;min-width:0}.hub-cp__fact--full{grid-column:1 / -1}.hub-cp__fact dt{margin:0;font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:#008174}.hub-cp__fact dd{margin:.2rem 0 0;font-size:.95rem;font-weight:400;color:#334155;line-height:1.4;word-break:break-word}.hub-cp__fact dd .hub-skeleton,.hub-cp__sobre-contatos-table td .hub-skeleton{display:block}.hub-cp__skeleton-toolbar-meta{flex:1 1 18rem;min-width:min(100%,18rem)}.hub-cp__skeleton-note{display:flex;flex-direction:column;gap:.55rem}@media (max-width: 640px){.hub-cp__facts-simple{grid-template-columns:1fr}}.hub-cp__sobre-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);grid-template-areas:"dados contatos" "gcc comercial";gap:1rem;align-items:stretch}.hub-cp__sobre-cell{min-width:0;display:flex;flex-direction:column}.hub-cp__sobre-cell>.hub-cp__sobre-section,.hub-cp__sobre-cell>.hub-cp__sobre-section--contatos{flex:1 1 auto;min-height:0}.hub-cp__sobre-cell--dados{grid-area:dados}.hub-cp__sobre-cell--contatos{grid-area:contatos}.hub-cp__sobre-cell--gcc{grid-area:gcc}.hub-cp__sobre-cell--comercial{grid-area:comercial}.hub-cp__sobre-section{display:flex;flex-direction:column;min-width:0;padding:0;border-radius:12px;background:#fff;border:1px solid rgba(0,129,116,.18);box-shadow:0 3px 14px #06282512;overflow:hidden}.hub-cp__sobre-section--contatos{height:100%;max-height:min(52vh,520px)}.hub-cp__sobre-section-head{display:flex;align-items:center;justify-content:space-between;gap:.75rem;margin-bottom:0;padding:.8rem 1.15rem;background:linear-gradient(90deg,#e8f7f5,#f6fcfb 55%,#fff);border-bottom:2px solid rgba(0,129,116,.14)}.hub-cp__sobre-section-title{display:flex;align-items:center;gap:.55rem;margin:0;font-size:1rem;font-weight:700;color:#008174}.hub-cp__sobre-section-ico{display:inline-flex;align-items:center;justify-content:center;width:1.65rem;height:1.65rem;padding:.2rem;border-radius:8px;background:#0081741f;color:#008174}.hub-cp__sobre-section .hub-cp__facts-simple,.hub-cp__sobre-section .hub-cp__sobre-contatos-scroll{padding:1rem 1.15rem 1.1rem}.hub-cp__sobre-section>.hub-cp__sobre-note{margin:.85rem 1.15rem 1.1rem}.hub-cp__sobre-section-ico svg{width:100%;height:100%}.hub-cp__sobre-section-actions{display:flex;align-items:center;gap:.5rem;flex-shrink:0}.hub-cp__sobre-section-btn{display:inline-flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;border-radius:8px;border:1px solid rgba(0,129,116,.3);background:#e8f7f5;color:#008174;text-decoration:none}.hub-cp__sobre-section-btn:hover{background:#d3efec}.hub-cp__sobre-section-btn svg{width:1.1rem;height:1.1rem}.hub-cp__facts-simple--dados{grid-template-columns:repeat(3,minmax(0,1fr))}.hub-cp__sobre-note{margin:0;padding:.85rem .95rem;min-height:5rem;border-radius:10px;background:#f8fafc;border:1px solid #cbd5e1;font-size:.92rem;line-height:1.5;color:#1e293b;white-space:pre-wrap;word-break:break-word}.hub-cp__sobre-note--muted{color:#94a3b8;font-style:italic}.hub-cp__sobre-note--editable{display:block;width:auto;text-align:left;font-family:inherit;cursor:pointer;transition:border-color .15s ease,background .15s ease}.hub-cp__sobre-note--editable:hover{border-color:#008174;background:#f2fbfa}.hub-cp__sobre-section-btn--save{border-color:#00817459;background:#008174;color:#fff}.hub-cp__sobre-section-btn--save:hover{background:#006b60}.hub-cp__sobre-section-btn--cancel{border-color:#cbd5e1;background:#fff;color:#64748b}.hub-cp__sobre-section-btn--cancel:hover{background:#f1f5f9}.hub-cp__sobre-section-btn:disabled{opacity:.6;cursor:not-allowed}.hub-cp__obs-edit-actions{display:inline-flex;align-items:center;gap:.4rem}.hub-cp__obs-editor{margin:.85rem 1.15rem 1.1rem;display:flex;flex-direction:column;gap:.6rem}.hub-cp__obs-textarea{width:100%;min-height:6rem;padding:.75rem .9rem;border-radius:10px;border:1px solid #cbd5e1;background:#fff;font-family:inherit;font-size:.92rem;line-height:1.5;color:#0f172a;resize:vertical;transition:border-color .15s ease,box-shadow .15s ease}.hub-cp__obs-textarea:focus{outline:none;border-color:#008174;box-shadow:0 0 0 3px #00817426}.hub-cp__obs-textarea::placeholder{color:#9ca3af}.hub-cp__obs-err{margin:0;padding:.55rem .75rem;border-radius:8px;background:#fef2f2;border:1px solid #fecaca;color:#b91c1c;font-size:.85rem;font-weight:600}.hub-cp__sobre-contatos-tools{display:flex;align-items:center;gap:.5rem}.hub-cp__sobre-contatos-toggle{display:inline-flex;align-items:center;gap:.4rem;font-size:.86rem;font-weight:600;color:#475569;cursor:pointer;-webkit-user-select:none;user-select:none}.hub-cp__sobre-contatos-toggle input{accent-color:#008174}.hub-cp__sobre-contatos-add{display:inline-flex;align-items:center;justify-content:center;width:2rem;height:2rem;flex-shrink:0;border-radius:999px;border:none;background:#008174;color:#fff;text-decoration:none;box-shadow:0 2px 8px #00817447;transition:background .15s ease,box-shadow .15s ease,transform .1s ease}.hub-cp__sobre-contatos-add:hover{background:#016c61;box-shadow:0 4px 12px #00817457}.hub-cp__sobre-contatos-add:active{transform:scale(.94)}.hub-cp__sobre-contatos-add svg{width:1.15rem;height:1.15rem}.hub-cp__sobre-contatos-acoes-col{width:3.25rem;text-align:center}.hub-cp__sobre-contatos-acao{display:inline-flex;align-items:center;justify-content:center;width:1.9rem;height:1.9rem;padding:0;border:none;background:transparent;border-radius:8px;color:#64748b;text-decoration:none;cursor:pointer;transition:background .15s ease,color .15s ease}.hub-cp__sobre-contatos-acao:hover,.hub-cp__sobre-contatos-acao[aria-expanded=true]{background:#0081741a;color:#008174}.hub-cp__sobre-contatos-acao svg{width:1.15rem;height:1.15rem}.hub-cp__contato-menu{position:fixed;z-index:1200;min-width:180px;padding:.35rem;background:#fff;border:1px solid #e2e8f0;border-radius:12px;box-shadow:0 12px 30px #0f172a29;display:flex;flex-direction:column;gap:.1rem;animation:hub-cp__contato-menu-in .12s ease}@keyframes hub-cp__contato-menu-in{0%{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}.hub-cp__contato-menu-item{display:flex;align-items:center;gap:.6rem;padding:.5rem .6rem;border-radius:8px;font-size:.88rem;font-weight:600;color:#334155;text-decoration:none;background:transparent;border:none;cursor:pointer;transition:background .12s ease,color .12s ease}.hub-cp__contato-menu-item:hover{background:#f1f5f9;color:#0f172a}.hub-cp__contato-menu-ico{display:inline-flex;align-items:center;justify-content:center;width:1.15rem;height:1.15rem;flex:0 0 auto}.hub-cp__contato-menu-ico svg{width:1.15rem;height:1.15rem}.hub-cp__contato-menu-ico--edit{color:#008174}.hub-cp__contato-menu-ico--fixo,.hub-cp__contato-menu-ico--celular{color:#2563eb}.hub-cp__contato-menu-ico--whatsapp{color:#25d366}.hub-cp__contato-menu-ico--email{color:#64748b}.hub-cp__sobre-contatos-scroll{overflow:auto;max-height:min(42vh,420px);margin:0 -.15rem;padding:0 .15rem}.hub-cp__sobre-contatos-table{width:100%;border-collapse:collapse;font-size:.9rem}.hub-cp__sobre-contatos-table th{padding:.6rem .55rem;text-align:left;font-size:.74rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:#475569;border-bottom:2px solid #e2e8f0;white-space:nowrap}.hub-cp__sobre-contatos-table td{padding:.7rem .55rem;vertical-align:top;border-bottom:1px solid #e2e8f0;color:#0f172a;line-height:1.45}.hub-cp__sobre-contatos-row--off td{opacity:.55}.hub-cp__sobre-contatos-name{display:flex;flex-wrap:wrap;align-items:center;gap:.35rem;font-weight:600}.hub-cp__sobre-contatos-tag{display:inline-flex;align-items:center;padding:.15rem .5rem;border-radius:999px;font-size:.68rem;font-weight:800;letter-spacing:.03em;text-transform:uppercase}.hub-cp__sobre-contatos-tag--empresa{background:#d3efec;color:#008174}.hub-cp__sobre-contatos-tag--padrao{background:#fef9c3;color:#a16207}.hub-cp__sobre-contatos-emails{display:flex;flex-direction:column;gap:.2rem}.hub-cp__sobre-contatos-email{color:#008174;text-decoration:none;word-break:break-all}.hub-cp__sobre-contatos-email:hover{text-decoration:underline}.hub-cp__sobre-contatos-muted{color:#94a3b8}@media (max-width: 1100px){.hub-cp__sobre-layout{grid-template-columns:1fr;grid-template-areas:"dados" "contatos" "gcc" "comercial"}.hub-cp__sobre-section--contatos{height:auto;max-height:none}.hub-cp__facts-simple--dados{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width: 640px){.hub-cp__facts-simple--dados{grid-template-columns:1fr}.hub-cp__sobre-contatos-scroll{max-height:none}}.hub-cp__sobre .hub-cp__vg{padding:1.1rem 1.15rem;border:1px solid rgba(17,149,49,.16);box-shadow:0 3px 14px #0f281612}.hub-cp__sobre .hub-cp__vg-title{font-size:.92rem;letter-spacing:.05em}.hub-cp__sobre .hub-cp__vg-sub{font-size:.86rem}.hub-cp__sobre .hub-cp__vg-nav-link{font-size:.82rem}.hub-cp__sobre .hub-cp__vg-err,.hub-cp__sobre .hub-cp__vg-empty,.hub-cp__sobre .hub-cp__vg-empty-month,.hub-cp__sobre .hub-cp__vg-panel-empty{font-size:.86rem}.hub-cp__sobre .hub-cp__vg-avisos{font-size:.82rem}.hub-cp__sobre .hub-cp__vg-section-loading p{font-size:.84rem}.hub-cp__sobre .hub-cp__vg-kpis{gap:.75rem}.hub-cp__sobre .hub-cp__vg-kpi{padding:.85rem .95rem;background:linear-gradient(180deg,#f0fdf4,#ecfdf5);border:1px solid rgba(17,149,49,.2);box-shadow:0 1px 4px #11953114}.hub-cp__sobre .hub-cp__vg-kpi:hover{border-color:#11953159;box-shadow:0 6px 16px #1195311f}.hub-cp__sobre .hub-cp__vg-kpi-val{font-size:1rem;color:#0d7a28}.hub-cp__sobre .hub-cp__vg-kpi-lbl{font-size:.72rem;color:#15803d}.hub-cp__sobre .hub-cp__vg-chart-hint{font-size:.82rem}.hub-cp__sobre .hub-cp__vg-chart-legend{font-size:.76rem}.hub-cp__sobre .hub-cp__vg-chart-head-title,.hub-cp__sobre .hub-cp__vg-chart-wrap--mgmt .hub-cp__vg-chart-legend,.hub-cp__sobre .hub-cp__vg-chart-lbl{font-size:.72rem}.hub-cp__sobre .hub-cp__vg-chart-tip{font-size:.68rem}.hub-cp__sobre .hub-cp__vg-chart-tip small{font-size:.62rem}.hub-cp__sobre .hub-cp__vg-chart-summary{font-size:.82rem}.hub-cp__sobre .hub-cp__vg-chart-axis,.hub-cp__sobre .hub-cp__vg-chart-kpi-lbl{font-size:.66rem}.hub-cp__sobre .hub-cp__vg-chart-kpi-val{font-size:.84rem}.hub-cp__sobre .hub-cp__vg-month-panel-head h4{font-size:.94rem}.hub-cp__sobre .hub-cp__vg-month-panel-head p{font-size:.82rem}.hub-cp__sobre .hub-cp__vg-block-title{font-size:.8rem}.hub-cp__sobre .hub-cp__vg-block-count{font-size:.68rem}.hub-cp__sobre .hub-cp__vg-prod-card-code{font-size:.74rem}.hub-cp__sobre .hub-cp__vg-prod-card-name{font-size:.78rem}.hub-cp__sobre .hub-cp__vg-prod-card-foot{font-size:.72rem}.hub-cp__sobre .hub-cp__vg-prod-bar-head{font-size:.8rem}.hub-cp__sobre .hub-cp__vg-prod-bar-name{font-size:.74rem}.hub-cp__sobre .hub-cp__vg-prod-bar-qty{font-size:.7rem}.hub-cp__sobre .hub-cp__vg-prod-bars-hint{font-size:.78rem}.hub-cp__sobre .hub-cp__vg-prod-bar-badge{font-size:.64rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-kicker{font-size:.68rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-code{font-size:.8rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-name{font-size:.86rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-price-lbl{font-size:.66rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-price-val{font-size:.84rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-month-lbl{font-size:.66rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-month-val,.hub-cp__sobre .hub-cp__vg-prod-sidebar-status,.hub-cp__sobre .hub-cp__vg-prod-sidebar-err,.hub-cp__sobre .hub-cp__vg-prod-sidebar-empty{font-size:.82rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-section-title{font-size:.72rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-count{font-size:.66rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-dl-row dt{font-size:.7rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-dl-row dd,.hub-cp__sobre .hub-cp__vg-prod-sidebar-cta{font-size:.8rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-related-hint{font-size:.7rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-rel-code{font-size:.68rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-rel-type{font-size:.62rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-rel-name{font-size:.72rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-rel-price{font-size:.7rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-rel-bought-badge{font-size:.62rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-rel-bought-txt{font-size:.68rem}.hub-cp__sobre .hub-cp__vg-prod-sidebar-rel-link{font-size:.72rem}.hub-cp__sobre .hub-cp__vg-prod-detail-code{font-size:.84rem}.hub-cp__sobre .hub-cp__vg-prod-detail-name{font-size:.88rem}.hub-cp__sobre .hub-cp__vg-prod-detail-meta{font-size:.78rem}.hub-cp__sobre .hub-cp__vg-prod-detail-empty{font-size:.82rem}.hub-cp__sobre .hub-cp__empty{font-size:.92rem}.hub-product-page__state{display:flex;align-items:center;gap:.75rem;padding:1.5rem 0;color:#0f2816a6}.hub-psb__detail-scrim{position:absolute;top:0;right:0;bottom:0;left:0;z-index:20;margin:0;padding:0;border:none;background:#0e302f38;cursor:pointer;opacity:0;transition:opacity .28s ease;pointer-events:none}.hub-psb__detail-scrim--in{opacity:1;pointer-events:auto}.hub-psb__detail{position:absolute;top:0;right:0;bottom:0;z-index:30;width:min(520px,100vw);display:flex;flex-direction:column;background:#f3f4f6;border-left:1px solid #e5e7eb;box-shadow:none;transform:translate(100%);transition:transform .34s cubic-bezier(.22,1,.36,1)}.hub-psb__detail--in{transform:translate(0)}.hub-psb__detail-head{flex-shrink:0;display:flex;align-items:center;justify-content:space-between;gap:.65rem;padding:.85rem 1.1rem;border-bottom:1px solid #e5e7eb;background:#f3f4f6}.hub-psb__detail-head h3{margin:0;font-size:1.2rem;font-weight:800;letter-spacing:-.02em;color:var(--hub-verde-escuro, #0d7a28)}.hub-psb__detail-head .hub-psb__close{width:2.5rem;height:2.5rem;font-size:1.35rem;border-radius:12px}.hub-psb__detail-scroll{flex:1 1 auto;min-height:0;overflow-y:auto;padding:1.1rem 1.15rem 1.5rem;background:#f3f4f6;-webkit-overflow-scrolling:touch}.hub-psb__detail-scroll>.hub-psb__state{font-size:1rem;min-height:200px}.hub-psb__detail-scroll>.hub-psb__empty{font-size:.95rem;padding:2.5rem 1.25rem}.hub-psb__detail-body{display:flex;flex-direction:column;gap:1.5rem;padding:0;background:#f3f4f6}.hub-psb__detail-header{display:grid;grid-template-columns:200px 1fr;gap:1.5rem;padding:1.5rem;background:#fff;border-radius:16px;border:1px solid #e5e7eb;box-shadow:none;flex-shrink:0}.hub-csb__detail-header--no-photo{grid-template-columns:1fr}.hub-csb__card-body--no-photo{min-height:auto;padding:1rem 1.15rem}.hub-psb__detail-header-img{width:200px;height:200px;border-radius:12px;background:#fff;border:1px solid #e5e7eb;padding:1rem;display:flex;align-items:center;justify-content:center;overflow:hidden}.hub-psb__detail-header-img img{width:100%;height:100%;object-fit:contain}.hub-psb__detail-header-info{display:flex;flex-direction:column;gap:1rem;min-width:0}.hub-psb__detail-header-top{display:grid;grid-template-columns:1fr auto;gap:1.5rem;align-items:start}.hub-psb__detail-header-main{min-width:0}.hub-psb__detail-title{margin:0 0 .5rem;font-size:1.75rem;font-weight:800;line-height:1.3;letter-spacing:-.02em;color:var(--tertiary-900, #0f172a)}.hub-psb__detail-code{margin:0 0 .75rem;font-size:.95rem;font-weight:600;font-variant-numeric:tabular-nums;color:var(--tertiary-600, #475569)}.hub-psb__detail-classification{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.5rem}.hub-psb__detail-class-pill{display:inline-flex;align-items:center;padding:.35rem .75rem;border-radius:999px;font-size:.75rem;font-weight:700;letter-spacing:.03em;background:#fff;color:var(--tertiary-700, #334155);border:1px solid #e5e7eb}.hub-psb__detail-class-pill:nth-child(2){background:#fff;color:var(--tertiary-700, #334155);border-color:#e5e7eb}.hub-psb__detail-class-pill:nth-child(3){background:#fff;color:var(--tertiary-700, #334155);border-color:#e5e7eb}.hub-psb__detail-header-status{display:flex;flex-direction:column;align-items:flex-end;gap:.5rem}.hub-psb__detail-header-status-row{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:.5rem}.hub-psb__detail-classification--status{margin-top:0}.hub-psb__detail-status-badge{padding:.5rem 1rem;border-radius:999px;font-size:.85rem;font-weight:700;letter-spacing:.02em;text-align:center;min-width:100px}.hub-psb__detail-status-badge[data-active=true]{background:#fff;color:var(--tertiary-800, #1e293b);border:1px solid #e5e7eb}.hub-psb__detail-status-badge[data-active=false]{background:#fee2e2;color:#991b1b;border:1px solid rgba(153,27,27,.2)}.hub-psb__detail-stock-badge{padding:.5rem 1rem;border-radius:999px;font-size:.85rem;font-weight:600;background:#fff;color:var(--tertiary-700, #334155);border:1px solid #e5e7eb;text-align:center}.hub-psb__detail-stock-badge strong{font-weight:800;color:var(--hub-verde-escuro, #0d7a28)}.hub-psb__detail-special-tags{display:flex;flex-wrap:wrap;gap:.35rem;justify-content:flex-end;margin-top:.25rem}.hub-psb__detail-special-tag{display:inline-flex;align-items:center;padding:.25rem .6rem;border-radius:999px;font-size:.7rem;font-weight:800;letter-spacing:.03em;background:#fff;color:var(--tertiary-700, #334155);border:1px solid #e5e7eb}.hub-psb__detail-header-actions{display:flex;flex-wrap:wrap;gap:.5rem}.hub-psb__detail-btn{padding:.75rem 1.25rem;font-size:.95rem;font-weight:700;border-radius:12px;cursor:pointer;font-family:inherit;transition:all .2s ease;border:1px solid transparent;text-decoration:none;display:inline-flex;align-items:center;justify-content:center}.hub-psb__detail-btn--primary{background:var(--hub-verde-medio, #1d9628);color:#fff;box-shadow:none}.hub-psb__detail-btn--primary:hover{background:var(--hub-verde-escuro, #0d7a28);box-shadow:none;transform:none}.hub-psb__detail-btn--secondary{background:#fff;color:var(--hub-verde-medio, #1d9628);border:1px solid #e5e7eb}.hub-psb__detail-btn--secondary:hover{background:#f9fafb;border-color:#d1d5db}.hub-psb__detail-btn--secondary:disabled{opacity:.6;cursor:wait}.hub-psb__detail-btn--ghost{background:transparent;color:var(--tertiary-700, #334155);border:1px solid #e5e7eb}.hub-psb__detail-btn--ghost:hover{background:#f9fafb;border-color:#d1d5db}@media (max-width: 960px){.hub-psb__detail-header{grid-template-columns:1fr}.hub-psb__detail-header-img{width:100%;max-width:300px;margin:0 auto}.hub-psb__detail-header-top{grid-template-columns:1fr}.hub-psb__detail-header-status{align-items:flex-start}.hub-psb__detail-header-status-row,.hub-psb__detail-special-tags{justify-content:flex-start}}.hub-psb__detail-tabs{display:flex;flex-direction:column;gap:0;border:1px solid #e5e7eb;border-radius:12px;overflow:hidden}.hub-psb__detail-tabs-nav{display:flex;gap:.25rem;border-bottom:1px solid #e5e7eb;background:#fff;padding:.35rem 1.25rem 0 0;min-height:3.5rem;align-items:flex-end;flex-shrink:0;overflow-x:auto;overflow-y:hidden;scrollbar-width:none;-ms-overflow-style:none}.hub-psb__detail-tabs-nav::-webkit-scrollbar{display:none;height:0}.hub-psb__detail-tab{padding:1.1rem 1.75rem 1rem;font-size:1rem;font-weight:700;color:var(--tertiary-600, #475569);background:transparent;border:none;border-bottom:3px solid transparent;cursor:pointer;font-family:inherit;transition:all .2s ease;white-space:nowrap;position:relative;flex-shrink:0}.hub-psb__detail-tab:hover{color:var(--tertiary-800, #1e293b);background:#f8fafc}.hub-psb__detail-tab--active{color:var(--tertiary-900, #0f172a);border-bottom-color:var(--tertiary-700, #334155)}.hub-psb__detail-tabs-content{background:#fff}.hub-psb__detail-tab-panel{padding:1.25rem 1.5rem;animation:fadeIn .3s ease}@keyframes fadeIn{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.hub-psb__detail-section{margin-bottom:2rem}.hub-psb__detail-section:last-child{margin-bottom:0}.hub-psb__detail-section-title{margin:0 0 1rem;font-size:1.15rem;font-weight:800;letter-spacing:-.01em;color:var(--tertiary-900, #0f172a)}.hub-psb__detail-tab-panel--overview{display:flex;flex-direction:column;gap:1.5rem}.hub-psb__detail-overview-specs{grid-template-columns:repeat(2,minmax(0,1fr))}@media (max-width: 720px){.hub-psb__detail-overview-specs{grid-template-columns:1fr}}.hub-psb__detail-section--description,.hub-psb__detail-section--related{margin-bottom:0}.hub-psb__detail-description{display:flex;flex-direction:column;gap:1rem}.hub-psb__detail-desc-block{padding:1rem 1.15rem;background:#fafafa;border-radius:12px;border:1px solid #e5e7eb;flex-shrink:0}.hub-psb__detail-desc-subtitle{margin:0 0 .75rem;padding-left:.75rem;border-left:4px solid rgba(15,23,42,.2);font-size:.95rem;font-weight:800;letter-spacing:.02em;color:var(--tertiary-800, #1e293b)}.hub-psb__detail-desc-text{margin:0;font-size:1rem;line-height:1.7;white-space:pre-wrap;color:var(--tertiary-700, #334155)}.hub-psb__detail-related-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:1rem}.hub-psb__detail-related-card{display:flex;flex-direction:column;padding:1rem;background:#fff;border:1px solid #e5e7eb;border-radius:12px;cursor:pointer;font-family:inherit;transition:border-color .2s ease,background .2s ease;text-align:left}.hub-psb__detail-related-card:hover{border-color:#d1d5db;box-shadow:none;transform:none}.hub-psb__detail-related-img{width:100%;height:140px;border-radius:8px;background:#fafafa;border:1px solid #e5e7eb;display:flex;align-items:center;justify-content:center;overflow:hidden;margin-bottom:.75rem}.hub-psb__detail-related-img img{width:100%;height:100%;object-fit:contain}.hub-psb__detail-related-info{display:flex;flex-direction:column;gap:.35rem}.hub-psb__detail-related-code{margin:0;font-size:.75rem;font-weight:700;letter-spacing:.03em;color:var(--tertiary-500, #64748b)}.hub-psb__detail-related-name{margin:0;font-size:.9rem;font-weight:600;line-height:1.4;color:var(--tertiary-800, #1e293b);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hub-psb__detail-related-price{margin:.25rem 0 0;font-size:.95rem;font-weight:800;color:var(--hub-verde-escuro, #0d7a28)}.hub-psb__detail-specs-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1rem}.hub-psb__detail-spec-card{padding:1.25rem;background:#fafafa;border:1px solid #e5e7eb;border-radius:12px}.hub-psb__detail-spec-card-title{margin:0 0 1rem;font-size:.85rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--hub-verde-medio, #1d9628)}.hub-psb__detail-spec-list{display:grid;grid-template-columns:minmax(7rem,auto) 1fr;column-gap:1rem;row-gap:.65rem;margin:0;align-items:baseline}.hub-psb__detail-spec-list dt{font-size:.8rem;font-weight:600;letter-spacing:.02em;text-transform:uppercase;color:var(--tertiary-500, #64748b);margin:0}.hub-psb__detail-spec-list dd{margin:0;font-size:.95rem;font-weight:600;color:var(--tertiary-800, #1e293b)}.hub-psb__detail-price-table{width:100%;border-collapse:separate;border-spacing:0;border:1px solid #e5e7eb;border-radius:12px;overflow:hidden;font-size:.9rem}.hub-psb__detail-price-table thead tr{background:#f1f5f9}.hub-psb__detail-price-table th{padding:.75rem 1rem;font-size:.78rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:var(--tertiary-600, #475569);text-align:left;border-bottom:1px solid #e5e7eb}.hub-psb__detail-price-table th:nth-child(2),.hub-psb__detail-price-table th:nth-child(3){text-align:right}.hub-psb__detail-price-table td{padding:.7rem 1rem;border-bottom:1px solid #f1f5f9;color:var(--tertiary-700, #334155);font-weight:600}.hub-psb__detail-price-table tbody tr:last-child td{border-bottom:none}.hub-psb__detail-price-table tbody tr:nth-child(2n){background:#fff}.hub-psb__detail-price-table tbody tr:hover{background:#f8fafc}.hub-psb__detail-price-table .hub-psb__detail-price-row--highlight{background:#fff}.hub-psb__detail-price-table .hub-psb__detail-price-row--highlight td{font-weight:800;color:var(--tertiary-900, #0f172a)}.hub-psb__detail-price-table .hub-psb__detail-price-value{text-align:right;font-weight:800;font-variant-numeric:tabular-nums;color:var(--hub-verde-escuro, #0d7a28);white-space:nowrap}.hub-psb__detail-price-table .hub-psb__detail-price-commission{text-align:right;font-weight:600;font-variant-numeric:tabular-nums;color:var(--tertiary-600, #475569)}.hub-psb__detail-stock-summary{margin-bottom:1.5rem;padding:1.5rem;background:#fafafa;border:1px solid #e5e7eb;border-radius:12px}.hub-psb__detail-stock-total{display:flex;align-items:center;justify-content:space-between}.hub-psb__detail-stock-total-label{font-size:1rem;font-weight:700;color:var(--tertiary-700, #334155)}.hub-psb__detail-stock-total-value{font-size:1.75rem;font-weight:900;font-variant-numeric:tabular-nums;color:var(--hub-verde-escuro, #0d7a28)}.hub-psb__detail-stock-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:.75rem}.hub-psb__detail-stock-card{display:flex;justify-content:space-between;align-items:center;padding:1rem 1.25rem;background:#fff;border:1px solid #e5e7eb;border-radius:10px;transition:border-color .2s ease,background .2s ease}.hub-psb__detail-stock-card:hover{border-color:#d1d5db;background:#fafafa}.hub-psb__detail-stock-card-name{font-size:.9rem;font-weight:600;color:var(--tertiary-700, #334155)}.hub-psb__detail-stock-card-qty{font-size:1rem;font-weight:800;font-variant-numeric:tabular-nums;color:var(--hub-verde-escuro, #0d7a28);white-space:nowrap}@media (max-width: 768px){.hub-psb__detail-tabs-nav{padding:.3rem .75rem 0 0;min-height:3.25rem}.hub-psb__detail-tab{padding:1rem 1.15rem .9rem;font-size:.92rem}.hub-psb__detail-tab-panel{padding:1.15rem 1rem}.hub-psb__detail-related-grid{grid-template-columns:repeat(auto-fill,minmax(140px,1fr))}.hub-psb__detail-specs-grid,.hub-psb__detail-stock-grid{grid-template-columns:1fr}}.hub-psb__detail-body--simple{gap:.85rem;padding:.85rem 1rem 1rem;background:#fff}.hub-psb__detail-body--simple .hub-psb__detail-head{display:grid;grid-template-columns:96px minmax(0,1fr);grid-template-areas:"media main" "actions actions";align-items:start;gap:.75rem 1rem;padding:0;background:transparent;border:none;border-radius:0;box-shadow:none}.hub-psb__detail-body--simple .hub-psb__detail-head-media{grid-area:media;width:96px;height:96px;min-width:96px;min-height:96px;box-sizing:border-box;padding:.4rem;border:1px solid #e5e7eb;border-radius:8px;background:#fafafa;display:flex;align-items:center;justify-content:center;overflow:hidden}.hub-psb__detail-body--simple .hub-psb__detail-head-media img{display:block;width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain}.hub-psb__detail-body--simple .hub-psb__detail-head-main{grid-area:main;min-width:0}.hub-psb__detail-body--simple .hub-psb__detail-head-title{margin:0;font-size:1.1rem;font-weight:700;line-height:1.35;letter-spacing:normal;color:var(--hub-verde-escuro, #0f2816)}.hub-psb__detail-body--simple .hub-psb__detail-head-code{margin:.2rem 0 0;font-size:.8rem;font-weight:600;color:#0f28168c}.hub-psb__detail-body--simple .hub-psb__detail-chips{display:flex;flex-wrap:wrap;gap:.3rem;margin-top:.4rem}.hub-psb__detail-body--simple .hub-psb__detail-chip{display:inline-flex;align-items:center;padding:.12rem .5rem;border-radius:999px;font-size:.68rem;font-weight:700;background:#0f281612;color:#0f2816bf;border:none;letter-spacing:normal;text-transform:none}.hub-psb__detail-body--simple .hub-psb__detail-chip--ok{background:#0d7a281f;color:var(--hub-verde-escuro, #0d7a28)}.hub-psb__detail-body--simple .hub-psb__detail-chip--off{background:#b91c1c1a;color:#b91c1c}.hub-psb__detail-body--simple .hub-psb__detail-chip--stock strong{color:var(--hub-verde-escuro, #0d7a28)}.hub-psb__detail-body--simple .hub-psb__detail-price-line{margin:.4rem 0 0;font-size:.88rem;font-weight:700;color:var(--hub-verde-escuro, #0d7a28)}.hub-psb__detail-body--simple .hub-psb__detail-actions{grid-area:actions;display:flex;flex-wrap:wrap;align-items:stretch;gap:.45rem;width:100%;padding-top:.35rem;border-top:1px solid rgba(74,159,42,.14)}.hub-psb__detail-body--simple .hub-psb__detail-actions .hub-psb__detail-btn{flex:1 1 auto;min-width:7.5rem;min-height:2.5rem;padding:.55rem .85rem;font-size:.82rem;border-radius:8px}.hub-psb__detail-body--simple .hub-psb__detail-actions .hub-psb__detail-btn--ghost{background:#fff;color:var(--tertiary-700, #334155);border:1px solid #e5e7eb}.hub-psb__detail-body--simple .hub-psb__detail-actions .hub-psb__detail-btn--ghost:hover{background:#f8fafc}.hub-psb__detail-body--simple .hub-psb__detail-tabs{border:1px solid #e5e7eb;border-radius:8px;overflow:hidden}.hub-psb__detail-body--simple .hub-psb__detail-tabs-nav{padding:0 .5rem;min-height:2.5rem;background:#f8faf8;border-bottom:1px solid #e5e7eb}.hub-psb__detail-body--simple .hub-psb__detail-tab{padding:.65rem .85rem;font-size:.8rem;font-weight:600;border-bottom-width:2px}.hub-psb__detail-body--simple .hub-psb__detail-tab--active{color:var(--hub-verde-escuro, #0d7a28);border-bottom-color:var(--hub-verde-medio, #1d9628)}.hub-psb__detail-body--simple .hub-psb__detail-tab-panel{padding:.85rem 1rem;animation:none}.hub-psb__detail-body--simple .hub-psb__detail-section{margin-bottom:1rem}.hub-psb__detail-body--simple .hub-psb__detail-section-title{margin:0 0 .45rem;font-size:.72rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#0f281680}.hub-psb__detail-body--simple .hub-psb__detail-description--plain .hub-psb__detail-desc-block{padding:0;background:transparent;border:none;border-radius:0}.hub-psb__detail-body--simple .hub-psb__detail-desc-subtitle{margin:0 0 .25rem;padding:0;border:none;font-size:.82rem;font-weight:700;color:#0f2816bf}.hub-psb__detail-body--simple .hub-psb__detail-desc-text{font-size:.86rem;line-height:1.5;color:#0f2816d9}.hub-psb__detail-body--simple .hub-psb__detail-description{gap:.65rem}.hub-psb__detail-facts{margin:0;display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:.45rem 1.25rem}.hub-psb__detail-fact{margin:0;min-width:0}.hub-psb__detail-fact dt{margin:0;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;color:#0f281680}.hub-psb__detail-fact dd{margin:.1rem 0 0;font-size:.86rem;font-weight:600;color:#0f2816e6;line-height:1.35;word-break:break-word}.hub-psb__detail-body--simple .hub-psb__detail-related-grid{grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:.65rem}.hub-psb__detail-related-grid--scroll{display:flex;flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;gap:.65rem;padding-bottom:.35rem;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;scrollbar-width:thin;scrollbar-color:rgba(74,159,42,.45) transparent}.hub-psb__detail-related-grid--scroll::-webkit-scrollbar{height:6px}.hub-psb__detail-related-grid--scroll::-webkit-scrollbar-thumb{border-radius:999px;background:#4a9f2a66}.hub-psb__detail-related-grid--scroll .hub-psb__detail-related-card{flex:0 0 calc((100% - 4.55rem)/8);min-width:118px;max-width:150px;scroll-snap-align:start}@media (max-width: 900px){.hub-psb__detail-related-grid--scroll .hub-psb__detail-related-card{flex:0 0 calc((100% - 2.6rem)/5);min-width:108px}}@media (max-width: 560px){.hub-psb__detail-related-grid--scroll .hub-psb__detail-related-card{flex:0 0 calc((100% - 2 * .65rem) / 3);min-width:96px}}.hub-psb__detail-body--simple .hub-psb__detail-related-card{padding:.65rem;border-radius:8px}.hub-psb__detail-body--simple .hub-psb__detail-related-img{height:110px;margin-bottom:.5rem}.hub-psb__detail-related-list{list-style:none;margin:0;padding:0;border:1px solid #e5e7eb;border-radius:8px;overflow:hidden}.hub-psb__detail-related-list li+li{border-top:1px solid #f1f5f9}.hub-psb__detail-related-row{display:grid;grid-template-columns:auto 1fr auto;gap:.5rem .75rem;align-items:center;width:100%;padding:.55rem .75rem;border:none;background:#fff;font-family:inherit;text-align:left;cursor:pointer}.hub-psb__detail-related-row:hover{background:#f8faf8}.hub-psb__detail-related-row-code{font-size:.72rem;font-weight:700;color:#0f281680;white-space:nowrap}.hub-psb__detail-related-row-name{font-size:.84rem;font-weight:600;color:#0f2816e0;line-height:1.3}.hub-psb__detail-related-row-price{font-size:.84rem;font-weight:700;color:var(--hub-verde-escuro, #0d7a28);white-space:nowrap}.hub-psb__detail-body--simple .hub-psb__detail-price-table--compact{border-radius:8px;font-size:.84rem}.hub-psb__detail-body--simple .hub-psb__detail-price-table--compact th{padding:.45rem .65rem;font-size:.68rem}.hub-psb__detail-body--simple .hub-psb__detail-price-table--compact td{padding:.45rem .65rem}@media (min-width: 720px){.hub-psb__detail-body--simple .hub-psb__detail-head{grid-template-areas:"media main" "media actions";grid-template-columns:96px minmax(0,1fr)}.hub-psb__detail-body--simple .hub-psb__detail-actions{width:auto;padding-top:.25rem;border-top:none;align-self:start}.hub-psb__detail-body--simple .hub-psb__detail-actions .hub-psb__detail-btn{flex:0 0 auto}}@media (max-width: 640px){.hub-psb__detail-facts{grid-template-columns:1fr}.hub-psb__detail-related-row{grid-template-columns:1fr;gap:.15rem}}.hub-psb__sentinel{height:4px;margin:.5rem 0;pointer-events:none}.hub-psb__more{display:flex;align-items:center;justify-content:center;gap:.45rem;padding:.65rem;font-size:.8rem;color:var(--tertiary-600, #6b7280)}.hub-psb__end{text-align:center;font-size:.75rem;color:var(--tertiary-600, #6b7280);margin:.35rem 0 0;padding-bottom:.25rem}.hub-nav__search-btn--active .hub-nav__search-ico{color:currentColor}@media (max-width: 560px){.hub-psb__toolbar{padding:.55rem 1rem .45rem;flex-direction:column;align-items:stretch}.hub-psb__toolbar-left{flex-direction:column;align-items:stretch;width:100%}.hub-psb__toolbar-mid{max-width:none}.hub-psb__toolbar-right{justify-content:space-between;margin-left:0}.hub-psb__main{padding:0 1rem .85rem}.hub-psb__filtros{padding:.4rem 1rem .5rem}.hub-psb__filtros-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.hub-psb__filtro--filial{grid-column:1 / -1}.hub-psb__grid{grid-template-columns:repeat(2,minmax(150px,1fr));gap:.75rem}.hub-psb__card-img-wrap{min-height:150px;padding:.65rem}.hub-psb__card-body{min-height:9.25rem;padding:.7rem .7rem .8rem}.hub-psb__card-name{font-size:.84rem}.hub-psb__card-preco{font-size:.86rem}.hub-csb__avatar{width:4.1rem;height:4.1rem;font-size:1.3rem;border-radius:1rem}.hub-psb__detail{width:100%}}@media (min-width: 1100px){.hub-psb__detail{width:min(560px,100vw)}}.hub-main.hub-cr{--hub-cr-inline: 2rem;max-width:1280px;margin:0 auto;width:100%;padding:1.25rem var(--hub-cr-inline) 1.75rem;box-sizing:border-box;background:#fff}.hub-cr__loading,.hub-cr__warn{padding:1.5rem;font-size:.95rem;color:var(--tertiary-700, #3d4f4f)}.hub-cr__top{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:1rem;margin-bottom:1.35rem}.hub-cr__top-main{min-width:0}.hub-cr__breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:.35rem;font-size:.8rem;color:#667085}.hub-cr__breadcrumb a{color:var(--secondary-700, #1c5f5e);text-decoration:none}.hub-cr__breadcrumb a:hover{text-decoration:underline}.hub-cr__breadcrumb-current{color:#111827;font-weight:600}.hub-cr__page-title{margin:.35rem 0 0;color:#0f1720;font-size:1.38rem;font-weight:800;line-height:1.2}.hub-cr__page-subtitle{margin:.25rem 0 0;color:#667085;font-size:.88rem;line-height:1.45}.hub-cr__banner{display:flex;align-items:flex-start;gap:.85rem;padding:.85rem 1rem;border-radius:12px;border:1px solid;margin-bottom:1rem;box-sizing:border-box}.hub-cr__banner--potencial{background:#fffbeb;border-color:#fde68a;color:#92400e}.hub-cr__banner--cliente{background:#ecfdf5;border-color:#a7f3d0;color:#065f46}.hub-cr__banner-ico{font-size:1.25rem;font-weight:700;line-height:1}.hub-cr__banner-text{flex:1;font-size:.82rem;line-height:1.35}.hub-cr__banner-text strong{display:inline;font-size:.9rem;font-weight:700}.hub-cr__banner-sub{display:block;font-size:.76rem;opacity:.9;margin-top:.2rem}.hub-cr__chip{display:inline-flex;align-items:center;padding:.15rem .55rem;border-radius:999px;font-size:.68rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase;flex-shrink:0}.hub-cr__chip--potencial{background:#fef3c7;color:#92400e}.hub-cr__chip--cliente{background:#dcfce7;color:#166534}.hub-cr__chip--primary{background:var(--primary-600, #8fb04a);color:#fff}.hub-cr__load-note{font-size:.8rem;color:#b45309;background:#fffbeb;border:1px solid #fde68a;border-radius:8px;padding:.5rem .75rem;margin-bottom:1rem}.hub-cr__form{display:flex;flex-direction:column;gap:1.5rem;width:100%}.hub-cr__kind{margin-bottom:1rem;padding-top:.1rem}@keyframes hubCrFieldEnter{0%{opacity:0;transform:translateY(-10px) scale(.985)}to{opacity:1;transform:translateY(0) scale(1)}}@keyframes hubCrLookup{0%{background-position:200% 0}to{background-position:-200% 0}}.hub-cr__kind-title{display:flex;align-items:center;gap:.55rem;margin:0 0 .65rem;color:#64748b;font-size:.78rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase}.hub-cr__kind-title:after{content:"";flex:1;height:1px;background:#dbe4e3}.hub-cr__kind-options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.hub-cr__kind-card{position:relative;display:flex;align-items:center;gap:.9rem;min-height:4.7rem;padding:1rem 1.1rem;overflow:hidden;border:1px solid #dbe4e3;border-radius:16px;background:linear-gradient(180deg,#fff,#f8fafc);color:#0f172a;cursor:pointer;font:inherit;text-align:left;box-shadow:0 1px 3px #0f172a0a;transition:border-color .15s ease,box-shadow .15s ease,transform .15s ease,background .15s ease}.hub-cr__kind-card:before{content:"";position:absolute;inset:0 auto 0 0;width:4px;background:#cbd5e1}.hub-cr__kind-card:hover{border-color:#cbd5e1;box-shadow:0 6px 18px #0f172a14;transform:translateY(-1px)}.hub-cr__kind-card--active{transform:translateY(-1px)}.hub-cr__kind-card--potencial.hub-cr__kind-card--active{border-color:#f59e0b;background:linear-gradient(180deg,#fff7ed,#fff);box-shadow:0 10px 24px #d9770629}.hub-cr__kind-card--completo.hub-cr__kind-card--active{border-color:#22c55e;background:linear-gradient(180deg,#f0fdf4,#fff);box-shadow:0 10px 24px #16a34a24}.hub-cr__kind-card--potencial:before{background:#f59e0b}.hub-cr__kind-card--completo:before{background:#22c55e}.hub-cr__kind-icon{display:inline-flex;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:10px;font-size:1rem;font-weight:900;flex-shrink:0}.hub-cr__kind-icon--potencial{background:#ffedd5;color:#d97706}.hub-cr__kind-icon--completo{background:#dcfce7;color:#15803d}.hub-cr__kind-copy{flex:1;min-width:0}.hub-cr__kind-copy-head{display:flex;flex-wrap:wrap;align-items:center;gap:.45rem}.hub-cr__kind-copy-head em{padding:.12rem .45rem;border-radius:999px;background:#f1f5f9;color:#64748b;font-size:.62rem;font-style:normal;font-weight:900;letter-spacing:.04em;text-transform:uppercase}.hub-cr__kind-card--potencial.hub-cr__kind-card--active .hub-cr__kind-copy-head em{background:#fed7aa;color:#c2410c}.hub-cr__kind-card--completo.hub-cr__kind-card--active .hub-cr__kind-copy-head em{background:#dcfce7;color:#15803d}.hub-cr__kind-copy small{display:block}.hub-cr__kind-copy strong{font-size:.98rem;font-weight:800}.hub-cr__kind-copy small{margin-top:.15rem;color:#64748b;font-size:.8rem;line-height:1.3}.hub-cr__kind-check{width:1.35rem;height:1.35rem;border-radius:999px;background:#eef2f1;flex-shrink:0}.hub-cr__kind-card--active .hub-cr__kind-check{background:#dcfce7}.hub-cr__kind-card--active .hub-cr__kind-check:after{content:"";display:block;width:.48rem;height:.78rem;margin:.2rem auto 0;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg)}.hub-cr__kind-card--potencial.hub-cr__kind-card--active .hub-cr__kind-check{background:#fed7aa;color:#c2410c}.hub-cr__kind-card--completo.hub-cr__kind-card--active .hub-cr__kind-check{background:#dcfce7;color:#15803d}.hub-cr__kind-empty{margin:1rem 0 0;padding:1.65rem 1rem;border:1px dashed #cbd5e1;border-radius:14px;color:#7a8f8f;font-size:.86rem;font-weight:700;text-align:center}.hub-cr__kind-empty strong:first-of-type{color:#b45309}.hub-cr__kind-empty strong:last-of-type{color:#15803d}.hub-cr__layout{display:grid;grid-template-columns:minmax(220px,280px) minmax(0,1fr);gap:1.25rem;align-items:start;width:100%}.hub-cr__layout--single{grid-template-columns:minmax(0,1fr)}.hub-cr__form,.hub-cr__kind-empty{animation:hubCrFieldEnter .28s ease both}.hub-cr__aside{position:sticky;top:calc(var(--hub-chrome-offset, 120px) + .5rem);display:flex;flex-direction:column;gap:.75rem}.hub-cr__aside-card{background:#fff;border:1px solid #e5eceb;border-radius:12px;padding:.75rem;box-shadow:0 1px 3px #0000000a}.hub-cr__aside-title{margin:0 0 .5rem;font-size:.82rem;font-weight:700;color:var(--tertiary-800, #2a3838)}.hub-cr__rules p,.hub-cr__shortcuts a,.hub-cr__shortcuts span{font-size:.76rem;margin:.35rem 0;color:var(--tertiary-700, #3d4f4f)}.hub-cr__rules-foot{margin-top:.5rem!important;padding-top:.5rem;border-top:1px solid #eef2f1}.hub-cr__shortcuts{display:flex;flex-direction:column;gap:.25rem}.hub-cr__shortcuts a{color:var(--secondary-700, #1c5f5e);text-decoration:none;font-weight:600}.hub-cr__shortcuts a:hover{text-decoration:underline}.hub-cr__shortcut-disabled{opacity:.5;cursor:not-allowed}.hub-cr__index-link{display:flex;align-items:center;gap:.5rem;width:100%;padding:.45rem .55rem;border:none;border-left:3px solid transparent;border-radius:8px;background:transparent;font-family:inherit;font-size:.78rem;font-weight:600;color:var(--tertiary-600, #5e7171);cursor:pointer;text-align:left}.hub-cr__index-link:hover{background:#f9fafb;color:var(--tertiary-800, #2a3838)}.hub-cr__index-link--active{background:#a5c35d2e;color:var(--secondary-800, #173f3e);border-left-color:var(--primary-600, #8fb04a)}.hub-cr__index-ico{width:1.4rem;height:1.4rem;display:inline-flex;align-items:center;justify-content:center;border-radius:6px;background:#eef2f1;color:var(--tertiary-600, #5e7171);flex-shrink:0}.hub-cr__index-icon-svg{width:.85rem;height:.85rem}.hub-cr__index-link--active .hub-cr__index-ico{background:var(--primary-500, #a5c35d);color:#fff}.hub-cr__main-col{display:flex;flex-direction:column;gap:1.5rem;min-width:0}.hub-cr__section{background:#fff;border:1px solid #e8ebf2;border-radius:8px;padding:0;overflow:visible;scroll-margin-top:calc(var(--hub-chrome-offset, 120px) + 12px);box-shadow:none}.hub-cr__section-head{display:flex;flex-wrap:wrap;align-items:center;gap:.75rem;margin-bottom:0;padding:1rem 1.5rem;border-bottom:1px solid #e8ebf2;background:#fbfdff}.hub-cr__section-icon{width:2rem;height:2rem;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;background:#e6f6ed;color:#16a34a;flex-shrink:0}.hub-cr__section-icon-svg{width:1.1rem;height:1.1rem}.hub-cr__section-title{margin:0;font-size:.88rem;font-weight:700;color:#111827}.hub-cr__section-desc{flex-basis:100%;margin:-.72rem 0 0 2.75rem;font-size:.75rem;color:#667085}.hub-cr__section-body{display:flex;flex-direction:column;gap:1rem;padding:1.25rem 1.5rem;background:#fff}.hub-cr__section-fieldset{margin:0;padding:0;border:0;min-width:0;display:flex;flex-direction:column;gap:inherit}.hub-cr__section--locked .hub-cr__section-fieldset:disabled{opacity:1}.hub-cr__form--gate-locked .hub-cr__section--locked{border-color:#e4e7ec;background:#f9fafb}.hub-cr__form--gate-locked .hub-cr__section--locked .hub-cr__section-head{background:#f2f4f7}.hub-cr__form--gate-locked .hub-cr__section--locked .hub-cr__section-body{background:#f9fafb}.hub-cr__form--gate-locked .hub-cr__section--locked .hub-cr__section-title{color:#667085}.hub-cr__form--gate-locked .hub-cr__section--locked .hub-cr__section-icon{background:#eaecf0;color:#98a2b3}.hub-cr__classification-fields{display:flex;flex-direction:column;gap:1rem}.hub-cr__section-error{color:#b91c1c;font-size:.8rem;margin:0 0 .75rem}.hub-cr__form--potencial{--hub-cr-pot-accent: #d97706;--hub-cr-pot-accent-deep: #b45309;--hub-cr-pot-accent-soft: #fffbeb;--hub-cr-pot-accent-glow: rgba(217, 119, 6, .1)}.hub-cr__form--potencial .hub-cr__btn--primary{background:var(--hub-cr-pot-accent);border-color:var(--hub-cr-pot-accent);box-shadow:none}.hub-cr__form--potencial .hub-cr__btn--primary:hover:not(:disabled){background:var(--hub-cr-pot-accent-deep);border-color:var(--hub-cr-pot-accent-deep)}.hub-cr__form-fields>.hub-cr__section{animation:hubCrFieldEnter .28s ease both}.hub-cr__form-fields>.hub-cr__section:nth-child(2){animation-delay:.04s}.hub-cr__form-fields>.hub-cr__section:nth-child(3){animation-delay:.08s}.hub-cr__form-fields>.hub-cr__section:nth-child(4){animation-delay:.12s}.hub-cr__form-fields>.hub-cr__section:nth-child(5){animation-delay:.16s}.hub-cr__form-fields>.hub-cr__section:nth-child(6){animation-delay:.2s}.hub-cr__potential{border-color:#e5e7eb;background:#fff;box-shadow:none}.hub-cr__potential .hub-cr__section-head{margin:0;padding:1rem 1.5rem;border-bottom:1px solid #e8ebf2;background:#fbfdff}.hub-cr__potential .hub-cr__section-title{color:#111827;font-size:.88rem;font-weight:700}.hub-cr__potential .hub-cr__section-icon{display:inline-flex;background:#ffedd5;color:#d97706}.hub-cr__potential .hub-cr__section-desc{margin:-.72rem 0 0 2.75rem;color:#6b7280;font-size:.75rem}.hub-cr__potential .hub-cr__input:focus,.hub-cr__potential .hub-cr__select:focus,.hub-cr__potential .hub-cr__textarea:focus,.hub-cr__form--potencial .hub-cr__search-select-input:focus{border-color:var(--hub-cr-pot-accent);box-shadow:0 0 0 3px var(--hub-cr-pot-accent-glow)}.hub-cr__potential .hub-cr__field--required-hot{position:static;padding-left:0;border-left:none}.hub-cr__potential .hub-cr__field--required-hot .hub-cr__label{color:#374151}.hub-cr__potential .hub-cr__field--required-hot .hub-cr__req{color:var(--hub-cr-pot-accent)}.hub-cr__potential .hub-cr__field--required-hot .hub-cr__input,.hub-cr__potential .hub-cr__field--required-hot .hub-cr__select,.hub-cr__potential .hub-cr__field--required-hot .hub-cr__search-select-input{border-color:#e8ebf2;background-color:#fff}.hub-cr__potential .hub-cr__label{color:#374151;font-size:.78rem;font-weight:650;letter-spacing:0;text-transform:none}.hub-cr__potential .hub-cr__input,.hub-cr__potential .hub-cr__select,.hub-cr__potential .hub-cr__search-select-input{min-height:2.25rem;border-color:#e8ebf2;border-radius:6px;background-color:#fff}.hub-cr__input--lookup{background-image:linear-gradient(90deg,transparent 0%,rgba(251,146,60,.08) 50%,transparent 100%);background-size:200% 100%;animation:hubCrLookup 1.1s ease-in-out infinite}.hub-cr__potential-divider{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;margin:1.45rem 0 .85rem;color:#111827;font-size:.92rem;font-weight:750;letter-spacing:0;text-transform:none}.hub-cr__potential-divider:after{content:"";flex:1;min-width:6rem;height:1px;background:#e2e8f0}.hub-cr__potential-quick{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.95rem 2.75rem;align-items:start}.hub-cr__potential-quick .hub-cr__col-6{grid-column:auto}.hub-cr__potential-address{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.95rem 2.75rem;align-items:start}.hub-cr__potential-address-street{min-width:0}.hub-cr__grid{display:grid;gap:1rem 1.25rem}.hub-cr__grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}.hub-cr__grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}.hub-cr__grid--6{grid-template-columns:repeat(6,minmax(0,1fr))}.hub-cr__grid--12{grid-template-columns:repeat(12,minmax(0,1fr))}.hub-cr__grid--id-first-row{margin-bottom:1rem}.hub-cr__grid--id-first-row .hub-cr__col-id-compact .hub-cr__input{font-size:.8rem;padding-inline:.55rem}.hub-cr__grid--id-first-row .hub-cr__col-id-compact .hub-cr__label{font-size:.72rem}.hub-cr__col-1{grid-column:span 1}.hub-cr__col-2{grid-column:span 2}.hub-cr__col-3{grid-column:span 3}.hub-cr__col-4{grid-column:span 4}.hub-cr__col-5{grid-column:span 5}.hub-cr__col-6{grid-column:span 6}.hub-cr__col-9{grid-column:span 9}.hub-cr__col-12{grid-column:span 12}.hub-cr__col--switch{display:flex;align-items:flex-end;padding-bottom:.35rem}.hub-cr__field{min-width:0}.hub-cr__label{display:flex;flex-wrap:wrap;align-items:center;gap:.18rem;font-size:.78rem;font-weight:600;text-transform:none;letter-spacing:0;color:#111827;margin-bottom:.38rem}.hub-cr__field:has(:disabled) .hub-cr__label{color:#98a2b3;font-weight:500}.hub-cr__req{color:#dc2626}.hub-cr__input,.hub-cr__select,.hub-cr__textarea{width:100%;box-sizing:border-box;border:1px solid #e8ebf2;border-radius:6px;min-height:2.25rem;padding:.45rem .75rem;font-family:inherit;font-size:.84rem;color:#111827;background-color:#fff;transition:border-color .12s ease,box-shadow .12s ease}.hub-cr__input:focus,.hub-cr__select:focus,.hub-cr__textarea:focus{outline:none;border-color:#16a34a;box-shadow:0 0 0 3px #16a34a1a}.hub-cr__input--readonly,.hub-cr__input:read-only:not(:disabled){background-color:#f9fafb;background-image:none;border:1px solid #eaecf0;border-style:solid;color:#667085;box-shadow:none;cursor:default}.hub-cr__input:disabled,.hub-cr__select:disabled,.hub-cr__textarea:disabled,.hub-cr__search-select-input:disabled{background-color:#f2f4f7;background-image:repeating-linear-gradient(-45deg,transparent,transparent 5px,rgba(208,213,221,.28) 5px,rgba(208,213,221,.28) 6px);border:1px dashed #c8cdd5;color:#98a2b3;-webkit-text-fill-color:#98a2b3;box-shadow:none;cursor:not-allowed;opacity:1}.hub-cr__input--ok{border-color:#86efac;border-style:solid;background-color:#fff;background-image:none}.hub-cr__input-affix{position:relative}.hub-cr__input--affix{padding-right:2.15rem}.hub-cr__field-status{position:absolute;top:50%;right:.6rem;display:inline-flex;align-items:center;justify-content:center;width:1rem;height:1rem;transform:translateY(-50%);pointer-events:none}.hub-cr__field-status-svg{width:1rem;height:1rem}.hub-cr__field-status--success{color:#16a34a}.hub-cr__field-status--error{color:#dc2626}.hub-cr__field-status-spinner{width:.9rem;height:.9rem;border:2px solid #e4e7ec;border-top-color:#667085;border-radius:50%;animation:hub-cr-field-status-spin .7s linear infinite}@keyframes hub-cr-field-status-spin{to{transform:rotate(360deg)}}.hub-cr__section-fieldset:disabled .hub-cr__btn{opacity:.45;cursor:not-allowed;box-shadow:none}.hub-cr__pay-meth-select-trigger:disabled{background-color:#f2f4f7;background-image:repeating-linear-gradient(-45deg,transparent,transparent 5px,rgba(208,213,221,.28) 5px,rgba(208,213,221,.28) 6px);border:1px dashed #c8cdd5;color:#98a2b3;box-shadow:none;cursor:not-allowed;opacity:1}.hub-cr__select--compact{width:auto;font-size:.72rem;padding:.25rem .4rem}.hub-cr__pay-meth-select{position:relative;width:100%}.hub-cr__pay-meth-select-trigger{display:block;width:100%;text-align:left;cursor:pointer;padding-right:1.75rem;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M2.5 4.5 6 8l3.5-3.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .55rem center}.hub-cr__pay-meth-select-value,.hub-cr__multi-select-value{display:block;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-family:inherit;font-size:.84rem;line-height:1.3;color:#1a2626}.hub-cr__multi-select-value--empty{color:#7a8f8f}.hub-cr__pay-meth-preview-default{font-weight:600;color:#4d6b1f}.hub-cr__pay-meth-select-panel{position:absolute;z-index:30;top:calc(100% + 4px);left:0;right:0;max-height:14rem;overflow-y:auto;background:#fff;border:1px solid #d1d5db;border-radius:8px;box-shadow:0 8px 24px #0000001a}.hub-cr__pay-meth-select-head{display:grid;grid-template-columns:1fr 4.5rem;gap:.5rem;padding:.35rem .65rem .25rem;font-size:.72rem;font-weight:600;color:#64748b;text-transform:uppercase;letter-spacing:.02em;border-bottom:1px solid #e2e8f0}.hub-cr__pay-meth-select-row{display:grid;grid-template-columns:1fr 4.5rem;gap:.5rem;align-items:center;padding:.35rem .65rem;border-bottom:1px solid #f1f5f9}.hub-cr__pay-meth-select-row:last-child{border-bottom:none}.hub-cr__pay-meth-select-row--checked{background:#a5c35d14}.hub-cr__pay-meth-select-check,.hub-cr__pay-meth-select-default{display:flex;align-items:flex-start;gap:.45rem;font-size:.82rem;line-height:1.35;color:#1a2626;cursor:pointer;min-width:0}.hub-cr__pay-meth-select-check span,.hub-cr__pay-meth-select-default span{overflow:hidden;text-overflow:ellipsis}.hub-cr__pay-meth-select-check input,.hub-cr__pay-meth-select-default input{margin-top:.15rem;flex-shrink:0}.hub-cr__pay-meth-select-default{justify-content:flex-end;font-size:.78rem;color:#475569}.hub-cr__pay-meth-select-default--disabled{opacity:.45;cursor:default}.hub-cr__search-select{position:relative}.hub-cr__search-select-input{width:100%}.hub-cr__search-select-list{position:absolute;z-index:80;top:calc(100% + 4px);left:0;right:0;margin:0;padding:.25rem 0;max-height:14rem;overflow-y:auto;list-style:none;background:#fff;border:1px solid #d1d5db;border-radius:8px;box-shadow:0 8px 24px #0000001a}.hub-cr__search-select-list--portal{position:fixed;top:auto;left:auto;right:auto;z-index:1100}.hub-cr__section:has(.hub-cr__search-select--open){position:relative;z-index:50}.hub-cr__search-select-empty{padding:.55rem .75rem;font-size:.8rem;color:#64748b}.hub-cr__search-select-option{display:block;width:100%;padding:.45rem .75rem;border:none;background:transparent;text-align:left;font:inherit;font-size:.82rem;line-height:1.35;color:#1a2626;cursor:pointer}.hub-cr__search-select-option:hover,.hub-cr__search-select-option--active{background:#23777614}.hub-cr__search-select-option--selected{font-weight:600;color:var(--secondary-700, #1c5f5e)}.hub-cr__address-groups{display:flex;flex-direction:column;gap:1.25rem}.hub-cr__address-single{display:flex;flex-direction:column}.hub-cr__address-mode{display:flex;align-items:flex-start;gap:.65rem;margin:0 0 1rem;padding:.85rem 1rem;border:1px solid #e5e7eb;border-radius:10px;background:#f9fafb;cursor:pointer}.hub-cr__address-mode-check{margin-top:.15rem;flex-shrink:0}.hub-cr__address-mode-text{display:flex;flex-direction:column;gap:.2rem;font-size:.84rem;color:#374151;line-height:1.4}.hub-cr__address-mode-text strong{font-weight:650;color:#111827}.hub-cr__address-mode-text small{font-size:.76rem;color:#667085}.hub-cr__grid--address{row-gap:.85rem}.hub-cr__grid--address .hub-cr__field{min-width:0}.hub-cr__card-item--unified{border-color:#e5e7eb;background:#fff;padding-top:.25rem}.hub-cr__address-group{display:flex;flex-direction:column;gap:.75rem}.hub-cr__address-group-head{display:flex;flex-direction:column;gap:.2rem}.hub-cr__address-group-title{margin:0;font-size:.92rem;font-weight:700;color:var(--tertiary-800, #2a3838)}.hub-cr__address-group-desc{margin:0;font-size:.76rem;color:var(--tertiary-600, #5e7171);line-height:1.35}.hub-cr__address-group-add{align-self:flex-start}.hub-cr__textarea{resize:vertical;min-height:5rem}.hub-cr__field-error{margin:.25rem 0 0;font-size:.72rem;color:#dc2626}.hub-cr__field-hint{margin:.2rem 0 0;font-size:.68rem;color:var(--tertiary-500, #7a8f8f)}.hub-cr__promote-hint{margin:.35rem 0 0;font-size:.72rem;line-height:1.4}.hub-cr__promote-hint--cliente{color:#065f46}.hub-cr__promote-hint--lead{color:#92400e}.hub-cr__input-group{display:flex;gap:.35rem}.hub-cr__input-group .hub-cr__input{flex:1;min-width:0}.hub-cr__btn{font-family:inherit;font-size:.82rem;font-weight:600;border-radius:8px;padding:.5rem .9rem;border:1px solid transparent;cursor:pointer;transition:background .12s ease,border-color .12s ease}.hub-cr__btn:disabled{opacity:.55;cursor:not-allowed}.hub-cr__btn--primary{background:#16a34a;color:#fff;border-color:#16a34a}.hub-cr__btn--primary:hover:not(:disabled){background:#15803d;border-color:#15803d}.hub-cr__btn--secondary{background:#fff;color:var(--tertiary-700, #3d4f4f);border-color:#d1d5db}.hub-cr__btn--secondary:hover:not(:disabled){background:#f9fafb}.hub-cr__btn--cancel{background:#dc2626;border-color:#dc2626;color:#fff}.hub-cr__btn--danger{background:#fff;color:#b91c1c;border-color:#fecaca}.hub-cr__btn--danger:hover:not(:disabled){background:#fef2f2;border-color:#fca5a5}.hub-cr__btn--ghost{background:transparent;color:var(--secondary-700, #1c5f5e);border:1px dashed var(--primary-500, #a5c35d);margin-top:.5rem}.hub-cr__btn--ghost:hover:not(:disabled){background:#a5c35d1f}.hub-cr__btn--icon{padding:.5rem .65rem;flex-shrink:0}.hub-cr__card-list{display:flex;flex-direction:column;gap:.75rem}.hub-cr__card-item{border:1px solid #e5e7eb;border-radius:10px;padding:.85rem;background:#fafafa}.hub-cr__card-item--primary{border-color:var(--primary-500, #a5c35d);background:#a5c35d14}.hub-cr__card-item-head{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.5rem;margin-bottom:.65rem}.hub-cr__card-item-tags{display:flex;flex-wrap:wrap;align-items:center;gap:.4rem}.hub-cr__card-item-num{font-size:.72rem;color:var(--tertiary-500, #7a8f8f)}.hub-cr__link-btn,.hub-cr__danger-link{border:none;background:none;font-family:inherit;font-size:.72rem;font-weight:600;cursor:pointer;padding:0}.hub-cr__link-btn{color:var(--secondary-700, #1c5f5e)}.hub-cr__link-btn:hover{text-decoration:underline}.hub-cr__danger-link{color:#dc2626}.hub-cr__danger-link:hover{text-decoration:underline}.hub-cr__switch{display:inline-flex;align-items:center;gap:.5rem;font-size:.78rem;color:var(--tertiary-700, #3d4f4f);cursor:pointer}.hub-cr__switch input{position:absolute;opacity:0;width:0;height:0}.hub-cr__switch-ui{position:relative;width:34px;height:18px;background:#d1d5db;border-radius:999px;flex-shrink:0;transition:background .15s ease}.hub-cr__switch-ui:after{content:"";position:absolute;width:14px;height:14px;background:#fff;border-radius:50%;top:2px;left:2px;transition:left .15s ease;box-shadow:0 1px 2px #00000026}.hub-cr__switch input:checked+.hub-cr__switch-ui{background:var(--primary-500, #a5c35d)}.hub-cr__switch input:checked+.hub-cr__switch-ui:after{left:18px}.hub-cr__upload{margin-top:1rem}.hub-cr__upload-title{font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--tertiary-500, #7a8f8f);margin:0 0 .35rem}.hub-cr__upload-area{border:2px dashed #d1d5db;border-radius:10px;padding:1.25rem;text-align:center;background:#fafafa;color:var(--tertiary-600, #5e7171);font-size:.8rem}.hub-cr__upload-hint{display:block;font-size:.68rem;color:var(--tertiary-400, #9aabab);margin-top:.25rem}.hub-cr__wizard{margin:0 0 1rem;padding:.85rem 0 .35rem}.hub-cr__wizard-track{list-style:none;margin:0;padding:0;display:flex;align-items:flex-start;width:100%}.hub-cr__wizard-item{position:relative;flex:1 1 0;min-width:0;display:flex;flex-direction:column;align-items:center;gap:.4rem;text-align:center}.hub-cr__wizard-item:not(:last-child):before{content:"";position:absolute;top:.95rem;left:calc(50% + 1rem);right:calc(-50% + 1rem);height:2px;background:#e2e8f0;z-index:0}.hub-cr__wizard-item--completed:not(:last-child):before{background:#86efac}.hub-cr__wizard-node{position:relative;z-index:1;flex:0 0 auto;width:1.9rem;height:1.9rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;border:1.5px solid #d7dee8;background:#fff;color:#64748b;line-height:1;padding:0;box-sizing:border-box}button.hub-cr__wizard-node{cursor:pointer;font:inherit;-webkit-appearance:none;-moz-appearance:none;appearance:none}button.hub-cr__wizard-node:hover{border-color:#94a3b8;color:#334155}.hub-cr__wizard-check{width:.85rem;height:.85rem;color:#fff}.hub-cr__wizard-icon{width:1rem;height:1rem;display:block}.hub-cr__wizard-item--completed .hub-cr__wizard-node{border-color:#22c55e;background:#22c55e;color:#fff}.hub-cr__wizard-item--current .hub-cr__wizard-node{border-color:#16a34a;background:#16a34a;color:#fff}.hub-cr__wizard-item--current .hub-cr__wizard-icon{color:#fff}.hub-cr__wizard-item--upcoming .hub-cr__wizard-node{border-color:#e2e8f0;background:#f8fafc;color:#94a3b8}.hub-cr__wizard-label{width:100%;max-width:6.5rem;font-size:.72rem;line-height:1.25;color:#64748b;padding:0 .2rem;word-break:break-word}.hub-cr__wizard-item--current .hub-cr__wizard-label{color:#15803d;font-weight:650}.hub-cr__wizard-item--completed .hub-cr__wizard-label{color:#475569}.hub-cr__review{display:flex;flex-direction:column;gap:1.15rem}.hub-cr__review-group{padding:.85rem 1rem;background:#f8fafc;border:1px solid #e8edf2;border-radius:10px}.hub-cr__review-group-title{margin:0 0 .65rem;font-size:.82rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase;color:#475569}.hub-cr__review-list{margin:0;display:grid;grid-template-columns:minmax(8rem,34%) 1fr;gap:.35rem .75rem}.hub-cr__review-list dt{margin:0;font-size:.8rem;color:#64748b}.hub-cr__review-list dd{margin:0;font-size:.88rem;color:#0f172a;word-break:break-word}.hub-cr__actions{position:static;z-index:auto;display:flex;align-items:center;justify-content:flex-end;width:100%;box-sizing:border-box;margin-top:1.25rem;padding:1rem 0 0;background:transparent;border:none;border-radius:0;box-shadow:none;gap:1rem}.hub-cr__actions-btns{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:.65rem;flex:0 0 auto;width:auto}.hub-cr__actions--wizard .hub-cr__actions-btns{width:100%}.hub-cr__actions--wizard .hub-cr__btn--cancel{margin-right:auto}.hub-cr__form:not(.hub-cr__form--potencial) .hub-cr__actions{margin-top:1.5rem;padding:.7rem .85rem;background:#fffffff5;border:1px solid #e5e7eb;border-radius:14px;box-shadow:0 10px 32px #0f172a1f,0 2px 8px #0f172a0f;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.hub-cr__actions-float-anchor{width:100%;margin-top:1.5rem;position:relative;z-index:20}.hub-cr__actions-float-portal{box-sizing:border-box;padding:.7rem .85rem;background:#fffffff5;border:1px solid #e5e7eb;border-radius:14px;box-shadow:0 10px 32px #0f172a1f,0 2px 8px #0f172a0f;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.hub-cr__actions-float-portal .hub-cr__actions{margin-top:0;padding:0;background:transparent;border:none;border-radius:0;box-shadow:none;-webkit-backdrop-filter:none;backdrop-filter:none}.hub-cr__form:not(.hub-cr__form--potencial) .hub-cr__actions-float-anchor .hub-cr__actions{margin-top:0}.hub-cr__form--potencial .hub-cr__actions{margin-top:1rem;padding:1rem 0 0}.hub-cr__actions .hub-cr__btn{min-width:8.75rem;padding:.6rem 1.15rem;border-radius:8px;font-size:.88rem;font-weight:650;box-shadow:0 1px 2px #0f172a0a}.hub-cr__actions .hub-cr__btn--primary,.hub-cr__actions .hub-cr__btn--danger{min-width:10rem}.swal2-hub-popup--duplicate{padding:1.35rem 1.35rem 1.15rem}.swal2-hub-popup--duplicate .swal2-title{font-size:1.15rem;padding:.35rem .5rem 0}.swal2-hub-popup--duplicate .swal2-icon{margin:.75rem auto .35rem;transform:scale(.92)}.swal2-hub-duplicate-html{text-align:left;padding:0 .5rem}.swal2-hub-duplicate-actions{display:flex!important;flex-direction:column!important;align-items:stretch!important;width:calc(100% - 1rem)!important;margin:1rem auto .15rem!important;padding:0!important;gap:.45rem!important}.swal2-hub-duplicate-actions .swal2-styled{width:100%!important;margin:0!important;padding:.62rem 1rem!important;font-size:.86rem!important;box-shadow:none!important}.swal2-hub-duplicate-actions .swal2-confirm{order:1}.swal2-hub-duplicate-actions .swal2-deny{order:2}.swal2-hub-duplicate-actions .swal2-cancel{order:3;background:#f3f4f6!important;color:#4b5563!important}.swal2-hub-deny{font-weight:600!important;border-radius:8px!important}.hub-cr-duplicate-modal{padding:.1rem 0 0}.hub-cr-duplicate-modal__client{margin:0 0 .65rem;padding:.7rem .8rem;border-radius:10px;border:1px solid #e5e7eb;background:#f9fafb}.hub-cr-duplicate-modal--block .hub-cr-duplicate-modal__client{border-color:#fecdd3;background:#fff1f2}.hub-cr-duplicate-modal--warn .hub-cr-duplicate-modal__client{border-color:#fde68a;background:#fffbeb}.hub-cr-duplicate-modal__name{margin:0;font-size:.9rem;line-height:1.4;color:#1f2937}.hub-cr-duplicate-modal__doc{display:block;margin-top:.3rem;font-size:.8rem;color:#64748b;font-variant-numeric:tabular-nums}.hub-cr-duplicate-modal__more{margin:0 0 .5rem;font-size:.78rem;color:#94a3b8}.hub-cr-duplicate-modal__hint{margin:0;font-size:.82rem;line-height:1.45;color:#64748b}.hub-cp__toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.5rem;margin-bottom:.75rem;padding:0 .5rem}.hub-cp__toolbar-code{margin:0;font-size:.85rem;color:var(--tertiary-600, #5e7171)}.hub-cp__toolbar-name{margin-left:.5rem;font-weight:600;color:var(--tertiary-800, #2a3838)}.hub-cp__toolbar-link{font-size:.82rem;font-weight:600;color:var(--secondary-700, #1c5f5e);text-decoration:none;padding:.35rem .75rem;border:1px solid rgba(35,119,118,.35);border-radius:8px;background:#2377760f}.hub-cp__toolbar-link:hover{background:#2377761f}@media (max-width: 1024px){.hub-cr__layout{grid-template-columns:1fr}.hub-cr__potential-quick,.hub-cr__potential-address{grid-template-columns:repeat(2,minmax(0,1fr))}.hub-cr__potential-address-street{grid-column:span 2}.hub-cr__aside{position:static}.hub-cr__index{display:flex;flex-wrap:nowrap;overflow-x:auto;gap:.25rem;padding-bottom:.25rem}.hub-cr__index-link{flex:0 0 auto;border-left:none;border-bottom:2px solid transparent;white-space:nowrap}.hub-cr__index-link--active{border-left:none;border-bottom-color:var(--primary-600, #8fb04a)}.hub-cr__grid--3,.hub-cr__grid--6,.hub-cr__grid--12{grid-template-columns:repeat(2,minmax(0,1fr))}.hub-cr__col-1,.hub-cr__col-2,.hub-cr__col-3,.hub-cr__col-4,.hub-cr__col-5,.hub-cr__col-6,.hub-cr__col-9{grid-column:span 2}}@media (max-width: 640px){.hub-cr__kind-options,.hub-cr__potential-quick,.hub-cr__potential-address{grid-template-columns:1fr}.hub-cr__potential-address-street{grid-column:auto}.hub-cr__grid--2,.hub-cr__grid--3,.hub-cr__grid--6,.hub-cr__grid--12{grid-template-columns:1fr}.hub-cr__col-1,.hub-cr__col-2,.hub-cr__col-3,.hub-cr__col-4,.hub-cr__col-5,.hub-cr__col-6,.hub-cr__col-9{grid-column:span 1}.hub-cr__form:not(.hub-cr__form--potencial) .hub-cr__actions{padding:.6rem;border-radius:12px;flex-direction:column;align-items:stretch;gap:.75rem}.hub-cr__actions-btns{flex-direction:column}.hub-cr__form--potencial .hub-cr__actions-btns{flex-direction:row;flex-wrap:wrap;justify-content:flex-end;width:100%}.hub-cr__actions-btns .hub-cr__btn{width:100%;min-width:0}.hub-cr__form--potencial .hub-cr__actions-btns .hub-cr__btn{width:auto;min-width:8.75rem}.hub-cr__wizard-label{font-size:.62rem;max-width:4.5rem}.hub-cr__wizard-node{width:1.65rem;height:1.65rem}.hub-cr__wizard-icon{width:.9rem;height:.9rem}.hub-cr__wizard-item:not(:last-child):before{top:.82rem;left:calc(50% + .82rem);right:calc(-50% + .82rem)}.hub-cr__review-list{grid-template-columns:1fr}.hub-cr__form--wizard .hub-cr__actions-btns{flex-direction:column;align-items:stretch}.hub-cr__actions--wizard .hub-cr__btn--cancel{margin-right:0}}.hub-main.hub-pe.hub-cr{--hub-cr-inline: 1.25rem}.hub-pe__form{min-width:0}.hub-pe__photo-row{display:flex;flex-wrap:wrap;align-items:flex-start;gap:1.25rem}.hub-pe__photo-wrap{flex-shrink:0}.hub-pe__photo-fields{flex:1;min-width:min(100%,16rem)}.hub-pe__avatar{width:5rem;height:5rem;border-radius:999px;object-fit:cover;border:2px solid #efefef;background:#f9fafb}.hub-pe__avatar--placeholder{display:flex;align-items:center;justify-content:center;color:var(--tertiary-500, #7a8f8f)}.hub-pe__regioes{resize:vertical;min-height:4.5rem;max-height:7.5rem;line-height:1.45;font-size:.8rem}.hub-pe__client-link-wrap{margin:.85rem 0 0}.hub-pe__client-link{font-size:.84rem;font-weight:600;color:var(--secondary-700, #1c5f5e);text-decoration:none}.hub-pe__client-link:hover{text-decoration:underline}.hub-main.hub-pe .hub-pe__form-actions.hub-cr__actions{position:sticky;bottom:.75rem;z-index:5}.hub-pe__actions-toolbar{display:flex;flex:1 1 auto;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:.5rem;min-width:min(100%,16rem)}.hub-pe__btn-logout{color:#fff;background:#dc2626;border:1px solid #b91c1c;box-shadow:0 2px 8px #dc262638}.hub-pe__btn-logout:hover:not(:disabled){background:#b91c1c;border-color:#991b1b}.hub-pe__btn-logout:active:not(:disabled){background:#991b1b}.hub-pe__btn-logout:disabled{opacity:.65}.hub-pe__actions-badge{display:inline-block;margin-left:.35rem;padding:.1rem .45rem;font-size:.62rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--tertiary-600, #5e7171);background:#f1f5f4;border:1px solid #e2e8e7;border-radius:999px;vertical-align:middle}.hub-cr__actions-hint strong{font-weight:700;color:var(--tertiary-800, #2a3a3a)}.hub-pe__sync,.hub-pe__warn{margin:0 0 .75rem;padding:.55rem .75rem;border-radius:8px;font-size:.78rem;line-height:1.4}.hub-pe__sync{color:var(--tertiary-600, #5e7171);background:#f4f7f6;border:1px solid #e5eceb}.hub-pe__warn{color:#92400e;background:#fffbeb;border:1px solid #fde68a}@media (max-width: 720px){.hub-pe__photo-row{flex-direction:column;align-items:center}.hub-pe__photo-fields{width:100%}.hub-main.hub-pe .hub-pe__form-actions.hub-cr__actions{flex-direction:column;align-items:stretch}.hub-pe__actions-toolbar{flex-direction:column;align-items:stretch;width:100%}.hub-pe__actions-toolbar .hub-cr__actions-btns{flex-direction:column;width:100%}.hub-pe__actions-toolbar .hub-cr__btn{width:100%}}.hub-notif-sidebar__root{position:fixed;top:0;right:0;bottom:0;left:0;z-index:650;pointer-events:none}.hub-notif-sidebar__root--in{pointer-events:auto}.hub-notif-sidebar__backdrop{position:absolute;top:0;right:0;bottom:0;left:0;margin:0;padding:0;border:none;background:#0e302f61;cursor:pointer;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);opacity:0;transition:opacity .28s ease}.hub-notif-sidebar__root--in .hub-notif-sidebar__backdrop{opacity:1}.hub-notif-sidebar__panel{position:absolute;top:0;right:0;bottom:0;width:min(28rem,100vw);max-width:100%;display:flex;flex-direction:column;background:#f4f7fb;box-shadow:-10px 0 40px #0f172a24;transform:translate(100%);transition:transform .34s cubic-bezier(.22,1,.36,1);will-change:transform}.hub-notif-sidebar__root--in .hub-notif-sidebar__panel{transform:translate(0)}.hub-notif-sidebar__head{flex-shrink:0;display:flex;align-items:flex-start;justify-content:space-between;gap:.75rem;padding:1.15rem 1rem .9rem 1.15rem;background:#fff;border-bottom:1px solid #e8edf3}.hub-notif-sidebar__head-main{min-width:0;flex:1}.hub-notif-sidebar__title-row{display:flex;align-items:center;flex-wrap:wrap;gap:.45rem .55rem}.hub-notif-sidebar__title-ico{width:1.2rem;height:1.2rem;color:#1e3a5f;flex-shrink:0}.hub-notif-sidebar__title{margin:0;font-size:1.15rem;font-weight:700;color:#1e3a5f;line-height:1.2}.hub-notif-sidebar__new-count{font-size:.82rem;font-weight:600;color:var(--hub-verde-forte, #119531);line-height:1.2}.hub-notif-sidebar__close{flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;width:2rem;height:2rem;margin:-.1rem -.05rem 0 0;padding:0;border:none;border-radius:8px;background:transparent;color:#64748b;cursor:pointer;transition:background .12s ease,color .12s ease}.hub-notif-sidebar__close:hover{background:#f1f5f9;color:#0f172a}.hub-notif-sidebar__close-ico{width:1.15rem;height:1.15rem}.hub-notif-sidebar__toolbar{flex-shrink:0;display:flex;gap:.5rem;padding:.75rem 1rem .35rem;background:#fff}.hub-notif-sidebar__tool-btn{display:inline-flex;align-items:center;gap:.4rem;min-height:2rem;padding:.35rem .75rem;border:1px solid #e2e8f0;border-radius:999px;background:#fff;color:#334155;font-size:.78rem;font-weight:600;cursor:pointer;transition:background .12s ease,border-color .12s ease,color .12s ease}.hub-notif-sidebar__tool-btn:hover,.hub-notif-sidebar__tool-btn--active{background:#f8fafc;border-color:#cbd5e1;color:#1e3a5f}.hub-notif-sidebar__tool-ico{width:.95rem;height:.95rem;flex-shrink:0}.hub-notif-sidebar__chips,.hub-notif-sidebar__category{flex-shrink:0;display:flex;flex-wrap:wrap;gap:.4rem;padding:.35rem 1rem .75rem;background:#fff;border-bottom:1px solid #e8edf3}.hub-notif-sidebar__category{padding-top:0;border-bottom:none}.hub-notif-sidebar__chip{display:inline-flex;align-items:center;min-height:1.85rem;padding:.3rem .75rem;border:none;border-radius:999px;background:#eef2f7;color:#475569;font-size:.74rem;font-weight:600;cursor:pointer;white-space:nowrap;transition:background .12s ease,color .12s ease}.hub-notif-sidebar__chip:hover{background:#e2e8f0;color:#1e293b}.hub-notif-sidebar__chip--active{background:#dbeafe;color:#1d4ed8}.hub-notif-sidebar__chip--category{font-size:.72rem}.hub-notif-sidebar__body{flex:1;min-height:0;overflow-y:auto;overscroll-behavior:contain;padding:.85rem .85rem 1rem;display:flex;flex-direction:column;gap:.65rem}.hub-notif-sidebar__empty{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.65rem;min-height:14rem;padding:2rem 1.25rem;text-align:center;color:#64748b}.hub-notif-sidebar__empty p{margin:0;font-size:.88rem;line-height:1.45}.hub-notif-sidebar__empty-icon{display:inline-flex;align-items:center;justify-content:center;width:2.75rem;height:2.75rem;border-radius:999px;background:#fff;color:#94a3b8;box-shadow:0 2px 8px #0f172a0f}.hub-notif-sidebar__empty-icon svg{width:1.35rem;height:1.35rem}.hub-notif-side-card{position:relative;display:grid;grid-template-columns:auto 1fr;gap:.75rem;padding:.9rem .95rem .85rem;border-radius:14px;background:#fff;box-shadow:0 1px 2px #0f172a0a,0 6px 18px #0f172a0f}.hub-notif-side-card--unread{box-shadow:0 1px 2px #0f172a0d,0 8px 22px #0f172a14}.hub-notif-side-card__dot{position:absolute;top:.65rem;left:.65rem;width:.45rem;height:.45rem;border-radius:999px;background:#ef4444;box-shadow:0 0 0 2px #fff}.hub-notif-side-card__avatar-wrap{position:relative;flex-shrink:0;width:2.65rem;height:2.65rem;margin-top:.1rem}.hub-notif-side-card__avatar{display:inline-flex;align-items:center;justify-content:center;width:2.65rem;height:2.65rem;border-radius:999px;background:hsl(var(--avatar-hue, 210) 55% 88%);color:hsl(var(--avatar-hue, 210) 45% 32%);font-size:.78rem;font-weight:700;letter-spacing:.02em}.hub-notif-side-card__kind{position:absolute;right:-.15rem;bottom:-.1rem;display:inline-flex;align-items:center;justify-content:center;width:1.25rem;height:1.25rem;border-radius:999px;background:#fff;border:1px solid #e2e8f0;color:#64748b;box-shadow:0 1px 3px #0f172a14}.hub-notif-side-card__kind svg{width:.72rem;height:.72rem}.hub-notif-side-card__kind--pedido{color:#119531}.hub-notif-side-card__kind--cotacao{color:#2563eb}.hub-notif-side-card__kind--oportunidade{color:#7c3aed}.hub-notif-side-card__kind--nota_fiscal{color:#0d7a28}.hub-notif-side-card__content{min-width:0}.hub-notif-side-card__top{display:flex;align-items:flex-start;justify-content:space-between;gap:.5rem}.hub-notif-side-card__title{margin:0;font-size:.84rem;line-height:1.45;color:#334155}.hub-notif-side-card__title strong{color:#1e3a5f;font-weight:700}.hub-notif-side-card__meta{flex-shrink:0;display:flex;flex-direction:column;align-items:flex-end;gap:.25rem}.hub-notif-side-card__time{display:inline-flex;align-items:center;gap:.2rem;font-size:.72rem;font-weight:500;color:#94a3b8;white-space:nowrap}.hub-notif-side-card__time-ico{width:.8rem;height:.8rem}.hub-notif-side-card__context{display:flex;flex-wrap:wrap;align-items:center;gap:.2rem;margin:.35rem 0 0;font-size:.74rem;color:#94a3b8;line-height:1.35}.hub-notif-side-card__context-kind{font-weight:600;color:#64748b}.hub-notif-side-card__context-sep{color:#cbd5e1}.hub-notif-side-card__detail{margin:.4rem 0 0;font-size:.76rem;line-height:1.45;color:#64748b}.hub-notif-side-card__cta{display:inline-flex;align-items:center;gap:.15rem;margin-top:.55rem;font-size:.78rem;font-weight:600;color:var(--hub-verde-forte, #119531);text-decoration:none;transition:color .12s ease}.hub-notif-side-card__cta:hover{color:var(--hub-verde-escuro, #0d7a28)}.hub-notif-side-card__cta-ico{width:.85rem;height:.85rem}@media (max-width: 480px){.hub-notif-sidebar__panel{width:100vw}.hub-notif-side-card__top{flex-direction:column;gap:.35rem}.hub-notif-side-card__meta{flex-direction:row;align-items:center;align-self:flex-start}}.hub-notification-toasts{position:fixed;right:1rem;bottom:1rem;z-index:640;display:flex;flex-direction:column;gap:.65rem;width:min(24rem,calc(100vw - 2rem));pointer-events:none}.hub-notification-toast{position:relative;overflow:hidden;border-radius:14px;pointer-events:auto;animation:hub-notification-toast-in .42s cubic-bezier(.16,1,.3,1) both}.hub-notification-toast--leaving{pointer-events:none;animation:hub-notification-toast-out .42s cubic-bezier(.7,0,.84,0) both}.hub-notification-toast .hub-notif-side-card{margin:0;box-shadow:0 2px 4px #0f172a0d,0 10px 28px #0f172a1f}.hub-notification-toast .hub-notif-side-card--toast{padding-top:1rem;padding-right:2.15rem}.hub-notification-toast__close{position:absolute;top:.55rem;right:.55rem;z-index:2;display:grid;width:1.5rem;height:1.5rem;place-items:center;border:0;border-radius:999px;background:#f1f5f9;color:#64748b;cursor:pointer;font-size:1rem;line-height:1;transition:background .12s ease,color .12s ease}.hub-notification-toast__close:hover{background:#e2e8f0;color:#1e293b}.hub-notification-toast__progress{position:absolute;right:0;bottom:0;left:0;height:.16rem;background:linear-gradient(90deg,var(--hub-verde-forte, #119531),#16a34a);transform-origin:left center;animation:hub-notification-toast-progress var(--hub-notification-ttl, 8s) linear forwards}.hub-notification-toast--leaving .hub-notification-toast__progress{animation-play-state:paused}@keyframes hub-notification-toast-progress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}@keyframes hub-notification-toast-in{0%{opacity:0;transform:translate(22px) translateY(8px) scale(.96)}70%{opacity:1;transform:translate(-3px) translateY(0) scale(1.01)}to{opacity:1;transform:translate(0) translateY(0) scale(1)}}@keyframes hub-notification-toast-out{0%{opacity:1;transform:translate(0) translateY(0) scale(1);max-height:16rem}to{opacity:0;transform:translate(28px) translateY(8px) scale(.96);max-height:0;margin-bottom:-.65rem}}@media (prefers-reduced-motion: reduce){.hub-notification-toast,.hub-notification-toast__progress{animation:none}}@media (max-width: 640px){.hub-notification-toasts{right:.75rem;bottom:.75rem;width:calc(100vw - 1.5rem)}}:root{--swal2-outline: 0 0 0 3px rgba(100, 150, 200, .5);--swal2-container-padding: .625em;--swal2-backdrop: rgba(0, 0, 0, .4);--swal2-backdrop-transition: background-color .15s;--swal2-width: 32em;--swal2-padding: 0 0 1.25em;--swal2-border: none;--swal2-border-radius: .3125rem;--swal2-background: white;--swal2-color: #545454;--swal2-show-animation: swal2-show .3s;--swal2-hide-animation: swal2-hide .15s forwards;--swal2-icon-zoom: 1;--swal2-icon-animations: true;--swal2-title-padding: .8em 1em 0;--swal2-html-container-padding: 1em 1.6em .3em;--swal2-input-border: 1px solid #d9d9d9;--swal2-input-border-radius: .1875em;--swal2-input-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06), 0 0 0 3px transparent;--swal2-input-background: transparent;--swal2-input-transition: border-color .2s, box-shadow .2s;--swal2-input-hover-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06), 0 0 0 3px transparent;--swal2-input-focus-border: 1px solid #b4dbed;--swal2-input-focus-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06), 0 0 0 3px rgba(100, 150, 200, .5);--swal2-progress-step-background: #add8e6;--swal2-validation-message-background: #f0f0f0;--swal2-validation-message-color: #666;--swal2-footer-border-color: #eee;--swal2-footer-background: transparent;--swal2-footer-color: inherit;--swal2-timer-progress-bar-background: rgba(0, 0, 0, .3);--swal2-close-button-position: initial;--swal2-close-button-inset: auto;--swal2-close-button-font-size: 2.5em;--swal2-close-button-color: #ccc;--swal2-close-button-transition: color .2s, box-shadow .2s;--swal2-close-button-outline: initial;--swal2-close-button-box-shadow: inset 0 0 0 3px transparent;--swal2-close-button-focus-box-shadow: inset var(--swal2-outline);--swal2-close-button-hover-transform: none;--swal2-actions-justify-content: center;--swal2-actions-width: auto;--swal2-actions-margin: 1.25em auto 0;--swal2-actions-padding: 0;--swal2-actions-border-radius: 0;--swal2-actions-background: transparent;--swal2-action-button-transition: background-color .2s, box-shadow .2s;--swal2-action-button-hover: black 10%;--swal2-action-button-active: black 10%;--swal2-confirm-button-box-shadow: none;--swal2-confirm-button-border-radius: .25em;--swal2-confirm-button-background-color: #7066e0;--swal2-confirm-button-color: #fff;--swal2-deny-button-box-shadow: none;--swal2-deny-button-border-radius: .25em;--swal2-deny-button-background-color: #dc3741;--swal2-deny-button-color: #fff;--swal2-cancel-button-box-shadow: none;--swal2-cancel-button-border-radius: .25em;--swal2-cancel-button-background-color: #6e7881;--swal2-cancel-button-color: #fff;--swal2-toast-show-animation: swal2-toast-show .5s;--swal2-toast-hide-animation: swal2-toast-hide .1s forwards;--swal2-toast-border: none;--swal2-toast-box-shadow: 0 0 1px hsl(0deg 0% 0% / .075), 0 1px 2px hsl(0deg 0% 0% / .075), 1px 2px 4px hsl(0deg 0% 0% / .075), 1px 3px 8px hsl(0deg 0% 0% / .075), 2px 4px 16px hsl(0deg 0% 0% / .075)}[data-swal2-theme=dark]{--swal2-dark-theme-black: #19191a;--swal2-dark-theme-white: #e1e1e1;--swal2-background: var(--swal2-dark-theme-black);--swal2-color: var(--swal2-dark-theme-white);--swal2-footer-border-color: #555;--swal2-input-background: color-mix(in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10%);--swal2-validation-message-background: color-mix( in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10% );--swal2-validation-message-color: var(--swal2-dark-theme-white);--swal2-timer-progress-bar-background: rgba(255, 255, 255, .7)}@media (prefers-color-scheme: dark){[data-swal2-theme=auto]{--swal2-dark-theme-black: #19191a;--swal2-dark-theme-white: #e1e1e1;--swal2-background: var(--swal2-dark-theme-black);--swal2-color: var(--swal2-dark-theme-white);--swal2-footer-border-color: #555;--swal2-input-background: color-mix(in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10%);--swal2-validation-message-background: color-mix( in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10% );--swal2-validation-message-color: var(--swal2-dark-theme-white);--swal2-timer-progress-bar-background: rgba(255, 255, 255, .7)}}body.swal2-shown:not(.swal2-no-backdrop,.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-container{background-color:#0000!important;pointer-events:none}body.swal2-no-backdrop .swal2-container .swal2-popup{pointer-events:auto}body.swal2-no-backdrop .swal2-container .swal2-modal{box-shadow:0 0 10px var(--swal2-backdrop)}body.swal2-toast-shown .swal2-container{box-sizing:border-box;width:360px;max-width:100%;background-color:#0000;pointer-events:none}body.swal2-toast-shown .swal2-container.swal2-top{inset:0 auto auto 50%;transform:translate(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{inset:0 0 auto auto}body.swal2-toast-shown .swal2-container.swal2-top-start,body.swal2-toast-shown .swal2-container.swal2-top-left{inset:0 auto auto 0}body.swal2-toast-shown .swal2-container.swal2-center-start,body.swal2-toast-shown .swal2-container.swal2-center-left{inset:50% auto auto 0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{inset:50% auto auto 50%;transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{inset:50% 0 auto auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-start,body.swal2-toast-shown .swal2-container.swal2-bottom-left{inset:auto auto 0 0}body.swal2-toast-shown .swal2-container.swal2-bottom{inset:auto auto 0 50%;transform:translate(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{inset:auto 0 0 auto}@media print{body.swal2-shown:not(.swal2-no-backdrop,.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop,.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop,.swal2-toast-shown) .swal2-container{position:static!important}}div:where(.swal2-container){display:grid;position:fixed;z-index:1060;top:0;right:0;bottom:0;left:0;box-sizing:border-box;grid-template-areas:"top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end";grid-template-rows:minmax(min-content,auto) minmax(min-content,auto) minmax(min-content,auto);height:100%;padding:var(--swal2-container-padding);overflow-x:hidden;transition:var(--swal2-backdrop-transition);-webkit-overflow-scrolling:touch}div:where(.swal2-container).swal2-backdrop-show,div:where(.swal2-container).swal2-noanimation{background:var(--swal2-backdrop)}div:where(.swal2-container).swal2-backdrop-hide{background:#0000!important}div:where(.swal2-container).swal2-top-start,div:where(.swal2-container).swal2-center-start,div:where(.swal2-container).swal2-bottom-start{grid-template-columns:minmax(0,1fr) auto auto}div:where(.swal2-container).swal2-top,div:where(.swal2-container).swal2-center,div:where(.swal2-container).swal2-bottom{grid-template-columns:auto minmax(0,1fr) auto}div:where(.swal2-container).swal2-top-end,div:where(.swal2-container).swal2-center-end,div:where(.swal2-container).swal2-bottom-end{grid-template-columns:auto auto minmax(0,1fr)}div:where(.swal2-container).swal2-top-start>.swal2-popup{align-self:start}div:where(.swal2-container).swal2-top>.swal2-popup{grid-column:2;place-self:start center}div:where(.swal2-container).swal2-top-end>.swal2-popup,div:where(.swal2-container).swal2-top-right>.swal2-popup{grid-column:3;place-self:start end}div:where(.swal2-container).swal2-center-start>.swal2-popup,div:where(.swal2-container).swal2-center-left>.swal2-popup{grid-row:2;align-self:center}div:where(.swal2-container).swal2-center>.swal2-popup{grid-column:2;grid-row:2;place-self:center center}div:where(.swal2-container).swal2-center-end>.swal2-popup,div:where(.swal2-container).swal2-center-right>.swal2-popup{grid-column:3;grid-row:2;place-self:center end}div:where(.swal2-container).swal2-bottom-start>.swal2-popup,div:where(.swal2-container).swal2-bottom-left>.swal2-popup{grid-column:1;grid-row:3;align-self:end}div:where(.swal2-container).swal2-bottom>.swal2-popup{grid-column:2;grid-row:3;place-self:end center}div:where(.swal2-container).swal2-bottom-end>.swal2-popup,div:where(.swal2-container).swal2-bottom-right>.swal2-popup{grid-column:3;grid-row:3;place-self:end end}div:where(.swal2-container).swal2-grow-row>.swal2-popup,div:where(.swal2-container).swal2-grow-fullscreen>.swal2-popup{grid-column:1/4;width:100%}div:where(.swal2-container).swal2-grow-column>.swal2-popup,div:where(.swal2-container).swal2-grow-fullscreen>.swal2-popup{grid-row:1/4;align-self:stretch}div:where(.swal2-container).swal2-no-transition{transition:none!important}div:where(.swal2-container)[popover]{width:auto;border:0}div:where(.swal2-container) div:where(.swal2-popup){display:none;position:relative;box-sizing:border-box;grid-template-columns:minmax(0,100%);width:var(--swal2-width);max-width:100%;padding:var(--swal2-padding);border:var(--swal2-border);border-radius:var(--swal2-border-radius);background:var(--swal2-background);color:var(--swal2-color);font-family:inherit;font-size:1rem;container-name:swal2-popup}div:where(.swal2-container) div:where(.swal2-popup):focus{outline:none}div:where(.swal2-container) div:where(.swal2-popup).swal2-loading{overflow-y:hidden}div:where(.swal2-container) div:where(.swal2-popup).swal2-draggable{cursor:grab}div:where(.swal2-container) div:where(.swal2-popup).swal2-draggable div:where(.swal2-icon){cursor:grab}div:where(.swal2-container) div:where(.swal2-popup).swal2-dragging{cursor:grabbing}div:where(.swal2-container) div:where(.swal2-popup).swal2-dragging div:where(.swal2-icon){cursor:grabbing}div:where(.swal2-container) h2:where(.swal2-title){position:relative;max-width:100%;margin:0;padding:var(--swal2-title-padding);color:inherit;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;overflow-wrap:break-word;cursor:initial}div:where(.swal2-container) div:where(.swal2-actions){display:flex;z-index:1;box-sizing:border-box;flex-wrap:wrap;align-items:center;justify-content:var(--swal2-actions-justify-content);width:var(--swal2-actions-width);margin:var(--swal2-actions-margin);padding:var(--swal2-actions-padding);border-radius:var(--swal2-actions-border-radius);background:var(--swal2-actions-background)}div:where(.swal2-container) div:where(.swal2-loader){display:none;align-items:center;justify-content:center;width:2.2em;height:2.2em;margin:0 1.875em;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border-width:.25em;border-style:solid;border-radius:100%;border-color:#2778c4 rgba(0,0,0,0) #2778c4 rgba(0,0,0,0)}div:where(.swal2-container) button:where(.swal2-styled){margin:.3125em;padding:.625em 1.1em;transition:var(--swal2-action-button-transition);border:none;box-shadow:0 0 0 3px #0000;font-weight:500}div:where(.swal2-container) button:where(.swal2-styled):not([disabled]){cursor:pointer}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){border-radius:var(--swal2-confirm-button-border-radius);background:initial;background-color:var(--swal2-confirm-button-background-color);box-shadow:var(--swal2-confirm-button-box-shadow);color:var(--swal2-confirm-button-color);font-size:1em}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover{background-color:color-mix(in srgb,var(--swal2-confirm-button-background-color),var(--swal2-action-button-hover))}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):active{background-color:color-mix(in srgb,var(--swal2-confirm-button-background-color),var(--swal2-action-button-active))}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny){border-radius:var(--swal2-deny-button-border-radius);background:initial;background-color:var(--swal2-deny-button-background-color);box-shadow:var(--swal2-deny-button-box-shadow);color:var(--swal2-deny-button-color);font-size:1em}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny):hover{background-color:color-mix(in srgb,var(--swal2-deny-button-background-color),var(--swal2-action-button-hover))}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny):active{background-color:color-mix(in srgb,var(--swal2-deny-button-background-color),var(--swal2-action-button-active))}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel){border-radius:var(--swal2-cancel-button-border-radius);background:initial;background-color:var(--swal2-cancel-button-background-color);box-shadow:var(--swal2-cancel-button-box-shadow);color:var(--swal2-cancel-button-color);font-size:1em}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):hover{background-color:color-mix(in srgb,var(--swal2-cancel-button-background-color),var(--swal2-action-button-hover))}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):active{background-color:color-mix(in srgb,var(--swal2-cancel-button-background-color),var(--swal2-action-button-active))}div:where(.swal2-container) button:where(.swal2-styled):focus-visible{outline:none;box-shadow:var(--swal2-action-button-focus-box-shadow)}div:where(.swal2-container) button:where(.swal2-styled)[disabled]:not(.swal2-loading){opacity:.4}div:where(.swal2-container) button:where(.swal2-styled)::-moz-focus-inner{border:0}div:where(.swal2-container) div:where(.swal2-footer){margin:1em 0 0;padding:1em 1em 0;border-top:1px solid var(--swal2-footer-border-color);background:var(--swal2-footer-background);color:var(--swal2-footer-color);font-size:1em;text-align:center;cursor:initial}div:where(.swal2-container) .swal2-timer-progress-bar-container{position:absolute;right:0;bottom:0;left:0;grid-column:auto!important;overflow:hidden;border-bottom-right-radius:var(--swal2-border-radius);border-bottom-left-radius:var(--swal2-border-radius)}div:where(.swal2-container) div:where(.swal2-timer-progress-bar){width:100%;height:.25em;background:var(--swal2-timer-progress-bar-background)}div:where(.swal2-container) img:where(.swal2-image){max-width:100%;margin:2em auto 1em;cursor:initial}div:where(.swal2-container) button:where(.swal2-close){position:var(--swal2-close-button-position);inset:var(--swal2-close-button-inset);z-index:2;align-items:center;justify-content:center;width:1.2em;height:1.2em;margin-top:0;margin-right:0;margin-bottom:-1.2em;padding:0;overflow:hidden;transition:var(--swal2-close-button-transition);border:none;border-radius:var(--swal2-border-radius);outline:var(--swal2-close-button-outline);background:#0000;color:var(--swal2-close-button-color);font-family:monospace;font-size:var(--swal2-close-button-font-size);cursor:pointer;justify-self:end}div:where(.swal2-container) button:where(.swal2-close):hover{transform:var(--swal2-close-button-hover-transform);background:#0000;color:#f27474}div:where(.swal2-container) button:where(.swal2-close):focus-visible{outline:none;box-shadow:var(--swal2-close-button-focus-box-shadow)}div:where(.swal2-container) button:where(.swal2-close)::-moz-focus-inner{border:0}div:where(.swal2-container) div:where(.swal2-html-container){z-index:1;justify-content:center;margin:0;padding:var(--swal2-html-container-padding);overflow:auto;color:inherit;font-size:1.125em;font-weight:400;line-height:normal;text-align:center;overflow-wrap:break-word;word-break:break-word;cursor:initial}div:where(.swal2-container) input:where(.swal2-input),div:where(.swal2-container) input:where(.swal2-file),div:where(.swal2-container) textarea:where(.swal2-textarea),div:where(.swal2-container) select:where(.swal2-select),div:where(.swal2-container) div:where(.swal2-radio),div:where(.swal2-container) label:where(.swal2-checkbox){margin:1em 2em 3px}div:where(.swal2-container) input:where(.swal2-input),div:where(.swal2-container) input:where(.swal2-file),div:where(.swal2-container) textarea:where(.swal2-textarea){box-sizing:border-box;width:auto;transition:var(--swal2-input-transition);border:var(--swal2-input-border);border-radius:var(--swal2-input-border-radius);background:var(--swal2-input-background);box-shadow:var(--swal2-input-box-shadow);color:inherit;font-size:1.125em}div:where(.swal2-container) input:where(.swal2-input).swal2-inputerror,div:where(.swal2-container) input:where(.swal2-file).swal2-inputerror,div:where(.swal2-container) textarea:where(.swal2-textarea).swal2-inputerror{border-color:#f27474!important;box-shadow:0 0 2px #f27474!important}div:where(.swal2-container) input:where(.swal2-input):hover,div:where(.swal2-container) input:where(.swal2-file):hover,div:where(.swal2-container) textarea:where(.swal2-textarea):hover{box-shadow:var(--swal2-input-hover-box-shadow)}div:where(.swal2-container) input:where(.swal2-input):focus,div:where(.swal2-container) input:where(.swal2-file):focus,div:where(.swal2-container) textarea:where(.swal2-textarea):focus{border:var(--swal2-input-focus-border);outline:none;box-shadow:var(--swal2-input-focus-box-shadow)}div:where(.swal2-container) input:where(.swal2-input)::placeholder,div:where(.swal2-container) input:where(.swal2-file)::placeholder,div:where(.swal2-container) textarea:where(.swal2-textarea)::placeholder{color:#ccc}div:where(.swal2-container) .swal2-range{margin:1em 2em 3px;background:var(--swal2-background)}div:where(.swal2-container) .swal2-range input{width:80%}div:where(.swal2-container) .swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}div:where(.swal2-container) .swal2-range input,div:where(.swal2-container) .swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}div:where(.swal2-container) .swal2-input{height:2.625em;padding:0 .75em}div:where(.swal2-container) .swal2-file{width:75%;margin-right:auto;margin-left:auto;background:var(--swal2-input-background);font-size:1.125em}div:where(.swal2-container) .swal2-textarea{height:6.75em;padding:.75em}div:where(.swal2-container) .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:var(--swal2-input-background);color:inherit;font-size:1.125em}div:where(.swal2-container) .swal2-radio,div:where(.swal2-container) .swal2-checkbox{align-items:center;justify-content:center;background:var(--swal2-background);color:inherit}div:where(.swal2-container) .swal2-radio label,div:where(.swal2-container) .swal2-checkbox label{margin:0 .6em;font-size:1.125em}div:where(.swal2-container) .swal2-radio input,div:where(.swal2-container) .swal2-checkbox input{flex-shrink:0;margin:0 .4em}div:where(.swal2-container) label:where(.swal2-input-label){display:flex;justify-content:center;margin:1em auto 0}div:where(.swal2-container) div:where(.swal2-validation-message){align-items:center;justify-content:center;margin:1em 0 0;padding:.625em;overflow:hidden;background:var(--swal2-validation-message-background);color:var(--swal2-validation-message-color);font-size:1em;font-weight:300}div:where(.swal2-container) div:where(.swal2-validation-message):before{content:"!";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}div:where(.swal2-container) .swal2-progress-steps{flex-wrap:wrap;align-items:center;max-width:100%;margin:1.25em auto;padding:0;background:#0000;font-weight:600}div:where(.swal2-container) .swal2-progress-steps li{display:inline-block;position:relative}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step{z-index:20;flex-shrink:0;width:2em;height:2em;border-radius:2em;background:#2778c4;color:#fff;line-height:2em;text-align:center}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#2778c4}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:var(--swal2-progress-step-background);color:#fff}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:var(--swal2-progress-step-background)}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step-line{z-index:10;flex-shrink:0;width:2.5em;height:.4em;margin:0 -1px;background:#2778c4}div:where(.swal2-icon){position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:2.5em auto .6em;zoom:var(--swal2-icon-zoom);border:.25em solid rgba(0,0,0,0);border-radius:50%;border-color:#000;font-family:inherit;line-height:5em;cursor:default;-webkit-user-select:none;user-select:none}div:where(.swal2-icon) .swal2-icon-content{display:flex;align-items:center;font-size:3.75em}div:where(.swal2-icon).swal2-error{border-color:#f27474;color:#f27474}div:where(.swal2-icon).swal2-error .swal2-x-mark{position:relative;flex-grow:1}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}@container swal2-popup style(--swal2-icon-animations:true){div:where(.swal2-icon).swal2-error.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-error.swal2-icon-show .swal2-x-mark{animation:swal2-animate-error-x-mark .5s}}div:where(.swal2-icon).swal2-warning{border-color:#f8bb86;color:#f8bb86}@container swal2-popup style(--swal2-icon-animations:true){div:where(.swal2-icon).swal2-warning.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-warning.swal2-icon-show .swal2-icon-content{animation:swal2-animate-i-mark .5s}}div:where(.swal2-icon).swal2-info{border-color:#3fc3ee;color:#3fc3ee}@container swal2-popup style(--swal2-icon-animations:true){div:where(.swal2-icon).swal2-info.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-info.swal2-icon-show .swal2-icon-content{animation:swal2-animate-i-mark .8s}}div:where(.swal2-icon).swal2-question{border-color:#87adbd;color:#87adbd}@container swal2-popup style(--swal2-icon-animations:true){div:where(.swal2-icon).swal2-question.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-question.swal2-icon-show .swal2-icon-content{animation:swal2-animate-question-mark .8s}}div:where(.swal2-icon).swal2-success{border-color:#a5dc86;color:#a5dc86}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;border-radius:50%}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}div:where(.swal2-icon).swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-.25em;left:-.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%}div:where(.swal2-icon).swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}div:where(.swal2-icon).swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.8125em;width:1.5625em;transform:rotate(45deg)}div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}@container swal2-popup style(--swal2-icon-animations:true){div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-tip{animation:swal2-animate-success-line-tip .75s}div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-long{animation:swal2-animate-success-line-long .75s}div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right{animation:swal2-rotate-success-circular-line 4.25s ease-in}}[class^=swal2]{-webkit-tap-highlight-color:rgba(0,0,0,0)}.swal2-show{animation:var(--swal2-show-animation)}.swal2-hide{animation:var(--swal2-hide-animation)}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.swal2-rtl .swal2-close{margin-right:initial;margin-left:0}.swal2-rtl .swal2-timer-progress-bar{right:0;left:auto}.swal2-toast{box-sizing:border-box;grid-column:1/4!important;grid-row:1/4!important;grid-template-columns:min-content auto min-content;padding:1em;overflow-y:hidden;border:var(--swal2-toast-border);background:var(--swal2-background);box-shadow:var(--swal2-toast-box-shadow);pointer-events:auto}.swal2-toast>*{grid-column:2}.swal2-toast h2:where(.swal2-title){margin:.5em 1em;padding:0;font-size:1em;text-align:initial}.swal2-toast .swal2-loading{justify-content:center}.swal2-toast input:where(.swal2-input){height:2em;margin:.5em;font-size:1em}.swal2-toast .swal2-validation-message{font-size:1em}.swal2-toast div:where(.swal2-footer){margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-toast button:where(.swal2-close){grid-column:3/3;grid-row:1/99;align-self:center;width:.8em;height:.8em;margin:0;font-size:2em}.swal2-toast div:where(.swal2-html-container){margin:.5em 1em;padding:0;overflow:initial;font-size:1em;text-align:initial}.swal2-toast div:where(.swal2-html-container):empty{padding:0}.swal2-toast .swal2-loader{grid-column:1;grid-row:1/99;align-self:center;width:2em;height:2em;margin:.25em}.swal2-toast .swal2-icon{grid-column:1;grid-row:1/99;align-self:center;width:2em;min-width:2em;height:2em;margin:0 .5em 0 0}.swal2-toast .swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:1.8em;font-weight:700}.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-toast div:where(.swal2-actions){justify-content:flex-start;height:auto;margin:.5em 0 0;padding:0 .5em}.swal2-toast button:where(.swal2-styled){margin:.25em .5em;padding:.4em .6em;font-size:1em}.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;border-radius:50%}.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.8em;left:-.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}@container swal2-popup style(--swal2-icon-animations:true){.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip{animation:swal2-toast-animate-success-line-tip .75s}.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long{animation:swal2-toast-animate-success-line-long .75s}}.swal2-toast.swal2-show{animation:var(--swal2-toast-show-animation)}.swal2-toast.swal2-hide{animation:var(--swal2-toast-hide-animation)}@keyframes swal2-show{0%{transform:translate3d(0,-50px,0) scale(.9);opacity:0}to{transform:translateZ(0) scale(1);opacity:1}}@keyframes swal2-hide{0%{transform:translateZ(0) scale(1);opacity:1}to{transform:translate3d(0,-50px,0) scale(.9);opacity:0}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.8125em;width:1.5625em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}to{transform:rotate(-405deg)}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}to{margin-top:0;transform:scale(1);opacity:1}}@keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}to{transform:rotateX(0);opacity:1}}@keyframes swal2-rotate-loading{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes swal2-animate-question-mark{0%{transform:rotateY(-360deg)}to{transform:rotateY(0)}}@keyframes swal2-animate-i-mark{0%{transform:rotate(45deg);opacity:0}25%{transform:rotate(-25deg);opacity:.4}50%{transform:rotate(15deg);opacity:.8}75%{transform:rotate(-5deg);opacity:1}to{transform:rotateX(0);opacity:1}}@keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotate(2deg)}33%{transform:translateY(0) rotate(-2deg)}66%{transform:translateY(.3125em) rotate(2deg)}to{transform:translateY(0) rotate(0)}}@keyframes swal2-toast-hide{to{transform:rotate(1deg);opacity:0}}@keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}:root{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Arial,sans-serif;line-height:1.5;font-weight:400;color:#1a1a1a;background:#f4f8f8;--primary-100: #f9fbf5;--primary-200: #e9f0d7;--primary-300: #d2e1ae;--primary-400: #bcd286;--primary-500: #a5c35d;--primary-600: #8fb435;--primary-700: #72902a;--primary-800: #566c20;--primary-900: #394815;--primary-950: #1d240b;--secondary-100: #f4f8f8;--secondary-200: #d3e4e4;--secondary-300: #a7c9c8;--secondary-400: #7badad;--secondary-500: #4f9291;--secondary-600: #237776;--secondary-700: #1c5f5e;--secondary-800: #154747;--secondary-900: #0e302f;--secondary-950: #071818;--tertiary-100: #f7f8f8;--tertiary-300: #bfc6c6;--tertiary-600: #5e7171;--tertiary-900: #262d2d;--login-page-bg: #ffffff;--login-side-bg: #173f3e;--login-accent-stripe: var(--primary-500);--login-input-fill: #f2f7f6;--login-divider-line: rgba(14, 48, 47, .14)}*,*:before,*:after{box-sizing:border-box}input,textarea,select,button{font-family:inherit}body{margin:0;min-height:100vh}#root{min-height:100vh}.muted{color:var(--tertiary-600);font-size:.95rem}.center-screen{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:1rem}
