{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js", "ssg:https://ga.jspm.io/npm:@studio-freight/lenis@1.0.29/dist/lenis.modern.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js", "ssg:https://framerusercontent.com/modules/il0flUJ488W2J41fMd3J/dpwwT52tkWdBMwsfDj6F/aL1M4pcFt.js", "ssg:https://framerusercontent.com/modules/hZvk9roBHaEKXHACpUFF/6PU1kz2bIGJiAUyvXKGM/BNviWGSsQ.js", "ssg:https://framerusercontent.com/modules/ptUxNJHYIX1ewB0QSwKK/pw3G67MQsGOOXVK7Zfur/BYfjwEyLq.js", "ssg:https://framerusercontent.com/modules/hd0EhjNDtTpvvcnpwkwL/vDlEtN6uT0JRr99oeECl/ijRSA4aUc.js", "ssg:https://framerusercontent.com/modules/8cv6d7wTE0ev6vrdZDqJ/HkelE9GB7uDjQuYfew2t/IpCe_IZOm.js", "ssg:https://framerusercontent.com/modules/oMAEFpMIOnQQMMvSRLyI/oadbMNvTWYOuGJXRDeG2/mXlQRfqAO.js", "ssg:https://framerusercontent.com/modules/N6KEhzmqYF1FJ16daKOv/12yXo4etSuF9xYjKCRWO/np9TfPJSQ.js", "ssg:https://framerusercontent.com/modules/tAiecRa3bTzPUHlwv4hC/wgFkeKpysTtI2jVSInuV/qwleZaeH_.js", "ssg:https://framerusercontent.com/modules/dRo57YahgEdn520LEPz6/pyZqkQe7xMXE2HUMRN8D/qyT6o3Xjc.js", "ssg:https://framerusercontent.com/modules/IAQFb1mYvKlkqlhKUHUZ/R2xhonUjB2LQOuvXh28O/wNq4fuqkw.js", "ssg:https://framerusercontent.com/modules/9zNPHwGKVa6dqn4lUsKE/dgh74H4BccgD9Vr38bPs/fITxrTobQ.js", "ssg:https://framerusercontent.com/modules/PSpjTxXoF0XNs5pmf8ef/5e8UDlnhF7sLhLBxf4TE/augiA20Il.js", "ssg:https://framerusercontent.com/modules/s5Jlr0ewexbWgKD5iJV8/LcarwAfxiq1lOOca9zxc/augiA20Il.js"],
  "sourcesContent": ["import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(u));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=f.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return i(e)?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return l(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){d(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:g(i,s,o[r]),easing:m(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,O(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=x((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=G.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=w(p(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const s=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:i(t)?()=>t(n):scrubAnimation(t,n[s])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const ce={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const le={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of ue)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "function t(){return t=Object.assign?Object.assign.bind():function(r){for(var h=1;h<arguments.length;h++){var a=arguments[h];for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(r[c]=a[c])}return r},t.apply(this,arguments)}function e(r,h,a){return Math.max(r,Math.min(h,a))}class i{advance(r){var h;if(!this.isRunning)return;let a=!1;if(this.lerp)this.value=(c=this.value,u=this.to,(1-(p=1-Math.exp(-60*this.lerp*r)))*c+p*u),Math.round(this.value)===this.to&&(this.value=this.to,a=!0);else{this.currentTime+=r;const h=e(0,this.currentTime/this.duration,1);a=h>=1;const c=a?1:this.easing(h);this.value=this.from+(this.to-this.from)*c}var c,u,p;null==(h=this.onUpdate)||h.call(this,this.value,a),a&&this.stop()}stop(){this.isRunning=!1}fromTo(r,h,{lerp:a=.1,duration:c=1,easing:u=(r=>r),onStart:p,onUpdate:d}){this.from=this.value=r,this.to=h,this.lerp=a,this.duration=c,this.easing=u,this.currentTime=0,this.isRunning=!0,null==p||p(),this.onUpdate=d}}class s{constructor({wrapper:r,content:h,autoResize:a=!0}={}){if(this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth},this.wrapper=r,this.content=h,a){const r=function(r,h){let a;return function(){let h=arguments,c=this;clearTimeout(a),a=setTimeout((function(){r.apply(c,h)}),250)}}(this.resize);this.wrapper!==window&&(this.wrapperResizeObserver=new ResizeObserver(r),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(r),this.contentResizeObserver.observe(this.content)}this.resize()}destroy(){var r,h;null==(r=this.wrapperResizeObserver)||r.disconnect(),null==(h=this.contentResizeObserver)||h.disconnect()}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class o{constructor(){this.events={}}emit(r,...h){let a=this.events[r]||[];for(let r=0,c=a.length;r<c;r++)a[r](...h)}on(r,h){var a;return(null==(a=this.events[r])?void 0:a.push(h))||(this.events[r]=[h]),()=>{var a;this.events[r]=null==(a=this.events[r])?void 0:a.filter((r=>h!==r))}}off(r,h){var a;this.events[r]=null==(a=this.events[r])?void 0:a.filter((r=>h!==r))}destroy(){this.events={}}}class n{constructor(r,{wheelMultiplier:h=1,touchMultiplier:a=2,normalizeWheel:c=!1}){this.onTouchStart=r=>{const{clientX:h,clientY:a}=r.targetTouches?r.targetTouches[0]:r;this.touchStart.x=h,this.touchStart.y=a,this.lastDelta={x:0,y:0}},this.onTouchMove=r=>{const{clientX:h,clientY:a}=r.targetTouches?r.targetTouches[0]:r,c=-(h-this.touchStart.x)*this.touchMultiplier,u=-(a-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=h,this.touchStart.y=a,this.lastDelta={x:c,y:u},this.emitter.emit(\"scroll\",{deltaX:c,deltaY:u,event:r})},this.onTouchEnd=r=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:r})},this.onWheel=r=>{let{deltaX:h,deltaY:a}=r;this.normalizeWheel&&(h=e(-100,h,100),a=e(-100,a,100)),h*=this.wheelMultiplier,a*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:h,deltaY:a,event:r})},this.element=r,this.wheelMultiplier=h,this.touchMultiplier=a,this.normalizeWheel=c,this.touchStart={x:null,y:null},this.emitter=new o,this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(r,h){return this.emitter.on(r,h)}destroy(){this.emitter.destroy(),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}}class l{constructor({wrapper:r=window,content:h=document.documentElement,wheelEventsTarget:a=r,eventsTarget:c=a,smoothWheel:u=!0,smoothTouch:p=!1,syncTouch:d=!1,syncTouchLerp:m=.1,__iosNoInertiaSyncTouchLerp:v=.4,touchInertiaMultiplier:g=35,duration:S,easing:w=(r=>Math.min(1,1.001-Math.pow(2,-10*r))),lerp:f=!S&&.1,infinite:y=!1,orientation:T=\"vertical\",gestureOrientation:z=\"vertical\",touchMultiplier:_=1,wheelMultiplier:M=1,normalizeWheel:L=!1,autoResize:b=!0}={}){this.onVirtualScroll=({deltaX:r,deltaY:h,event:a})=>{if(a.ctrlKey)return;const c=a.type.includes(\"touch\"),u=a.type.includes(\"wheel\");if(\"both\"===this.options.gestureOrientation&&0===r&&0===h||\"vertical\"===this.options.gestureOrientation&&0===h||\"horizontal\"===this.options.gestureOrientation&&0===r||c&&\"vertical\"===this.options.gestureOrientation&&0===this.scroll&&!this.options.infinite&&h<=0)return;let p=a.composedPath();if(p=p.slice(0,p.indexOf(this.rootElement)),p.find((r=>{var h;return(null==r.hasAttribute?void 0:r.hasAttribute(\"data-lenis-prevent\"))||c&&(null==r.hasAttribute?void 0:r.hasAttribute(\"data-lenis-prevent-touch\"))||u&&(null==r.hasAttribute?void 0:r.hasAttribute(\"data-lenis-prevent-wheel\"))||(null==(h=r.classList)?void 0:h.contains(\"lenis\"))})))return;if(this.isStopped||this.isLocked)return void a.preventDefault();if(this.isSmooth=(this.options.smoothTouch||this.options.syncTouch)&&c||this.options.smoothWheel&&u,!this.isSmooth)return this.isScrolling=!1,void this.animate.stop();a.preventDefault();let d=h;\"both\"===this.options.gestureOrientation?d=Math.abs(h)>Math.abs(r)?h:r:\"horizontal\"===this.options.gestureOrientation&&(d=r);const m=c&&this.options.syncTouch,v=c&&\"touchend\"===a.type&&Math.abs(d)>1;v&&(d=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+d,t({programmatic:!1},m&&{lerp:v?this.syncTouchLerp:this.options.__iosNoInertiaSyncTouchLerp}))},this.onNativeScroll=()=>{if(!this.__preventNextScrollEvent&&!this.isScrolling){const r=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.direction=Math.sign(this.animatedScroll-r),this.emit()}},window.lenisVersion=\"1.0.29\",r!==document.documentElement&&r!==document.body||(r=window),this.options={wrapper:r,content:h,wheelEventsTarget:a,eventsTarget:c,smoothWheel:u,smoothTouch:p,syncTouch:d,syncTouchLerp:m,__iosNoInertiaSyncTouchLerp:v,touchInertiaMultiplier:g,duration:S,easing:w,lerp:f,infinite:y,gestureOrientation:z,orientation:T,touchMultiplier:_,wheelMultiplier:M,normalizeWheel:L,autoResize:b},this.animate=new i,this.emitter=new o,this.dimensions=new s({wrapper:r,content:h,autoResize:b}),this.toggleClass(\"lenis\",!0),this.velocity=0,this.isLocked=!1,this.isStopped=!1,this.isSmooth=d||u||p,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,{passive:!1}),this.virtualScroll=new n(c,{touchMultiplier:_,wheelMultiplier:M,normalizeWheel:L}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,{passive:!1}),this.virtualScroll.destroy(),this.dimensions.destroy(),this.toggleClass(\"lenis\",!1),this.toggleClass(\"lenis-smooth\",!1),this.toggleClass(\"lenis-scrolling\",!1),this.toggleClass(\"lenis-stopped\",!1),this.toggleClass(\"lenis-locked\",!1)}on(r,h){return this.emitter.on(r,h)}off(r,h){return this.emitter.off(r,h)}setScroll(r){this.isHorizontal?this.rootElement.scrollLeft=r:this.rootElement.scrollTop=r}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.animate.stop()}start(){this.isStopped=!1,this.reset()}stop(){this.isStopped=!0,this.animate.stop(),this.reset()}raf(r){const h=r-(this.time||r);this.time=r,this.animate.advance(.001*h)}scrollTo(r,{offset:h=0,immediate:a=!1,lock:c=!1,duration:u=this.options.duration,easing:p=this.options.easing,lerp:d=!u&&this.options.lerp,onComplete:m=null,force:v=!1,programmatic:g=!0}={}){if(!this.isStopped&&!this.isLocked||v){if([\"top\",\"left\",\"start\"].includes(r))r=0;else if([\"bottom\",\"right\",\"end\"].includes(r))r=this.limit;else{var S;let a;if(\"string\"==typeof r?a=document.querySelector(r):null!=(S=r)&&S.nodeType&&(a=r),a){if(this.options.wrapper!==window){const r=this.options.wrapper.getBoundingClientRect();h-=this.isHorizontal?r.left:r.top}const c=a.getBoundingClientRect();r=(this.isHorizontal?c.left:c.top)+this.animatedScroll}}if(\"number\"==typeof r){if(r+=h,r=Math.round(r),this.options.infinite?g&&(this.targetScroll=this.animatedScroll=this.scroll):r=e(0,r,this.limit),a)return this.animatedScroll=this.targetScroll=r,this.setScroll(this.scroll),this.reset(),void(null==m||m(this));if(!g){if(r===this.targetScroll)return;this.targetScroll=r}this.animate.fromTo(this.animatedScroll,r,{duration:u,easing:p,lerp:d,onStart:()=>{c&&(this.isLocked=!0),this.isScrolling=!0},onUpdate:(r,h)=>{this.isScrolling=!0,this.velocity=r-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=r,this.setScroll(this.scroll),g&&(this.targetScroll=r),h||this.emit(),h&&(this.reset(),this.emit(),null==m||m(this),this.__preventNextScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextScrollEvent})))}})}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?(this.animatedScroll%(r=this.limit)+r)%r:this.animatedScroll;var r}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isSmooth(){return this.__isSmooth}set isSmooth(r){this.__isSmooth!==r&&(this.__isSmooth=r,this.toggleClass(\"lenis-smooth\",r))}get isScrolling(){return this.__isScrolling}set isScrolling(r){this.__isScrolling!==r&&(this.__isScrolling=r,this.toggleClass(\"lenis-scrolling\",r))}get isStopped(){return this.__isStopped}set isStopped(r){this.__isStopped!==r&&(this.__isStopped=r,this.toggleClass(\"lenis-stopped\",r))}get isLocked(){return this.__isLocked}set isLocked(r){this.__isLocked!==r&&(this.__isLocked=r,this.toggleClass(\"lenis-locked\",r))}get className(){let r=\"lenis\";return this.isStopped&&(r+=\" lenis-stopped\"),this.isLocked&&(r+=\" lenis-locked\"),this.isScrolling&&(r+=\" lenis-scrolling\"),this.isSmooth&&(r+=\" lenis-smooth\"),r}toggleClass(r,h){this.rootElement.classList.toggle(r,h),this.emitter.emit(\"className change\",this)}}export{l as default};\n//# sourceMappingURL=lenis.modern.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"@studio-freight/lenis\";import{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);useEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const handleMutation=(mutationsList,observer)=>{for(const mutation of mutationsList){if(mutation.type===\"childList\"){const hasChildren=overlayElement.children.length>0;if(hasChildren){// Check if the html tag has the style \"overflow: hidden;\"\nconst htmlElement=document.documentElement;const computedStyle=window.getComputedStyle(htmlElement);const isOverflowHidden=computedStyle.getPropertyValue(\"overflow\")===\"hidden\";if(isOverflowHidden){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}}}}};const observer=new MutationObserver(handleMutation);const config={childList:true};observer.observe(overlayElement,config);return()=>observer.disconnect();}},[]);useEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);return /*#__PURE__*/_jsx(_Fragment,{});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Smooth_Scroll.map", "// Generated by Framer (6b748fa)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./aL1M4pcFt-0.js\";const enabledGestures={l4RLHSA6V:{hover:true}};const cycleOrder=[\"l4RLHSA6V\",\"Mt0Mip0FK\"];const serializationHash=\"framer-CrZ07\";const variantClassNames={l4RLHSA6V:\"framer-v-13iksw3\",Mt0Mip0FK:\"framer-v-1gfu0n0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={hAdgU5o6D:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Image:\"l4RLHSA6V\",Text:\"Mt0Mip0FK\"};const getProps=({height,id,image,textBG,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,HJYYGhJC3:(_ref=textBG!==null&&textBG!==void 0?textBG:props.HJYYGhJC3)!==null&&_ref!==void 0?_ref:\"rgb(218, 225, 25)\",shYZ8xZ6P:image!==null&&image!==void 0?image:props.shYZ8xZ6P,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"l4RLHSA6V\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,shYZ8xZ6P,HJYYGhJC3,b4EsfMO6DwoijqL5Mw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"l4RLHSA6V\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Mt0Mip0FK\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13iksw3\",className,classNames),\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"l4RLHSA6V\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"l4RLHSA6V-hover\":{\"data-framer-name\":undefined},Mt0Mip0FK:{\"data-framer-name\":\"Text\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"40px\",...toResponsiveImage(shYZ8xZ6P)},className:\"framer-4rceim\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"FKFFQcwvq\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},variants:{Mt0Mip0FK:{backgroundColor:HJYYGhJC3}},...addPropertyOverrides({Mt0Mip0FK:{background:undefined}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-b4EsfMO6D-woijqL5Mw))\"},children:\"+1k\"})}),className:\"framer-1f7j4lv\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"Kg1ynTzIM\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-b4EsfMO6D-woijqL5Mw)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-b4EsfMO6D-woijqL5Mw\":b4EsfMO6DwoijqL5Mw},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CrZ07.framer-31hwom, .framer-CrZ07 .framer-31hwom { display: block; }\",\".framer-CrZ07.framer-13iksw3 { cursor: pointer; height: 40px; overflow: visible; position: relative; width: 28px; }\",\".framer-CrZ07 .framer-4rceim { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 40px); z-index: 1; }\",\".framer-CrZ07 .framer-1f7j4lv { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; z-index: 1; }\",\".framer-CrZ07.framer-v-1gfu0n0.framer-13iksw3 { cursor: unset; }\",\".framer-CrZ07.framer-v-13iksw3.hover .framer-4rceim { bottom: 10px; top: -10px; width: var(--framer-aspect-ratio-supported, 30px); }\",'.framer-CrZ07[data-border=\"true\"]::after, .framer-CrZ07 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 28\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Mt0Mip0FK\":{\"layout\":[\"fixed\",\"fixed\"]},\"CXZuSKHYI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"shYZ8xZ6P\":\"image\",\"HJYYGhJC3\":\"textBG\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraL1M4pcFt=withCSS(Component,css,\"framer-CrZ07\");export default FrameraL1M4pcFt;FrameraL1M4pcFt.displayName=\"Avatar\";FrameraL1M4pcFt.defaultProps={height:40,width:28};addPropertyControls(FrameraL1M4pcFt,{variant:{options:[\"l4RLHSA6V\",\"Mt0Mip0FK\"],optionTitles:[\"Image\",\"Text\"],title:\"Variant\",type:ControlType.Enum},shYZ8xZ6P:{title:\"Image\",type:ControlType.ResponsiveImage},HJYYGhJC3:{defaultValue:\"rgb(218, 225, 25)\",title:\"Text BG\",type:ControlType.Color}});addFonts(FrameraL1M4pcFt,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraL1M4pcFt\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"40\",\"framerVariables\":\"{\\\"shYZ8xZ6P\\\":\\\"image\\\",\\\"HJYYGhJC3\\\":\\\"textBG\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Mt0Mip0FK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CXZuSKHYI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"28\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aL1M4pcFt.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./BNviWGSsQ-0.js\";const cycleOrder=[\"bRwKpQq70\"];const serializationHash=\"framer-HgJsl\";const variantClassNames={bRwKpQq70:\"framer-v-lqhm40\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={hAdgU5o6D:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bRwKpQq70\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-lqhm40\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bRwKpQq70\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qrg4y2\",\"data-framer-name\":\"logo_mayo_clinic\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:207,layoutDependency:layoutDependency,layoutId:\"q_a56bX0X\",svg:'<svg width=\"207\" height=\"42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M149.487 14.164c-.665 0-1.343.023-2.02.056v-.49c.413-.194.688-.342.804-.456l.137-.227c.07-.182.104-.571.126-1.186.034-.89.058-1.426.058-1.597V4.95c0-.888-.024-1.767-.058-2.621-.023-.616-.069-.994-.149-1.107a.737.737 0 0 0-.379-.263c-.171-.046-.655-.092-1.458-.102V.239c1.677.034 2.71.057 3.111.057.436 0 1.438-.023 2.976-.057v.617c-.829.01-1.321.056-1.506.102-.172.058-.299.138-.367.24-.08.136-.124.456-.149.958-.012.126-.035 1.06-.058 2.793v6.638c0 .695.012 1.254.058 1.687.78.046.872.056 1.643.056 1.952 0 3.409-.114 4.19-.352.092-.196.172-.422.243-.674l.414-1.641h.677a90.558 90.558 0 0 0-.45 3.443c-.275.058-.506.08-.663.101-.359.012-.921.012-1.655.012l-5.525-.055Zm12.783 0-3.18.056v-.615c.802-.011 1.298-.057 1.469-.115a.69.69 0 0 0 .367-.228c.08-.136.138-.443.161-.946.012-.148.024-1.083.058-2.817v-4.55c0-.89-.024-1.768-.058-2.622-.023-.616-.069-.994-.149-1.107a.733.733 0 0 0-.379-.263c-.171-.046-.667-.092-1.469-.102V.237c1.308.035 2.33.058 3.042.058.677 0 1.691-.023 3.022-.058v.618c-.815.01-1.299.056-1.472.102-.184.058-.299.138-.367.24-.08.136-.138.444-.149.958-.01.126-.032 1.06-.07 2.793V9.5c0 .902.025 1.779.037 2.622.023.616.067.993.147 1.106a.734.734 0 0 0 .378.262c.184.058.68.103 1.494.115v.615c-1.458-.033-2.422-.055-2.882-.055Zm.826-4.665v-4.55c.037-1.734.06-2.668.07-2.794l-.07 7.344Zm17.848 5.074-.264-.263-.161-.147a4.432 4.432 0 0 1-.39-.4c-.574-.628-1-1.095-1.263-1.414l-1.334-1.63-7.338-8.428v7.64c0 .65.023 1.414.071 2.302.024.548.067.89.135 1.015l.219.194c.229.092.703.15 1.426.161v.615a36.443 36.443 0 0 0-1.997-.057c-.807 0-1.667.024-2.609.057v-.615c.723-.012 1.205-.07 1.435-.172l.207-.183c.07-.136.116-.478.15-1.037.034-.866.057-1.608.057-2.236V1.96c0-.217-.011-.366-.046-.422a1.282 1.282 0 0 0-.378-.421.937.937 0 0 0-.424-.206 11.255 11.255 0 0 0-1.08-.056V.236c1.183.034 1.94.058 2.253.058.515 0 1.031-.024 1.549-.058.572.72.997 1.255 1.275 1.609l2.112 2.498 3.079 3.58a88.621 88.621 0 0 0 2.376 2.692c.379.432.689.774.953 1.014V4.47c0-.652-.023-1.403-.057-2.259-.034-.548-.08-.89-.138-1.014l-.218-.194c-.23-.092-.712-.138-1.424-.148V.236a59.21 59.21 0 0 0 2.479.058c.781 0 1.504-.024 2.149-.058v.618c-.723.01-1.194.056-1.423.148l-.207.205c-.072.125-.128.467-.152 1.038-.033.745-.051 1.49-.055 2.235v4.732c0 .958.021 2.749.055 5.372l-1.022-.011Zm7.763-.41-3.168.057v-.615c.804-.011 1.286-.057 1.469-.115a.738.738 0 0 0 .367-.228c.08-.136.126-.443.149-.946.012-.148.034-1.083.058-2.817v-4.55c0-.89-.012-1.768-.058-2.622-.023-.616-.069-.994-.149-1.107a.657.657 0 0 0-.367-.263c-.183-.046-.665-.092-1.469-.102V.237c1.308.035 2.319.058 3.033.058.686 0 1.699-.023 3.019-.058v.618c-.804.01-1.298.056-1.47.102-.171.058-.301.138-.356.24-.092.136-.137.444-.163.958-.012.126-.024 1.06-.058 2.793V9.5c0 .902.014 1.779.034 2.622.012.616.072.993.152 1.106a.717.717 0 0 0 .378.262c.172.058.666.103 1.482.115v.615c-1.457-.033-2.409-.055-2.883-.055Zm9.614-.057a7.716 7.716 0 0 1-2.399-1.094 7.069 7.069 0 0 1-1.691-1.585 6.885 6.885 0 0 1-.999-1.928c-.229-.683-.333-1.448-.333-2.269 0-2.087.769-3.809 2.296-5.177C196.736.683 198.837 0 201.502 0c.62 0 1.203.034 1.745.102.658.091 1.309.22 1.952.388.768.193 1.24.308 1.411.342-.145.338-.257.69-.332 1.05-.121.64-.197 1.287-.229 1.938h-.62l-.012-1.151c-.069-.639-.448-1.118-1.125-1.437-.691-.308-1.688-.468-2.996-.468-.99.024-1.829.138-2.506.354a4.763 4.763 0 0 0-1.814 1.072c-.53.479-.953 1.095-1.286 1.847-.335.74-.508 1.676-.508 2.817 0 1.972.632 3.57 1.92 4.767 1.274 1.208 2.963 1.801 5.066 1.801.941 0 1.814-.125 2.629-.365a6.533 6.533 0 0 0 1.641-.786l.171.205-.402.924c-.755.363-1.548.642-2.365.832-.834.18-1.684.268-2.537.263a10.905 10.905 0 0 1-2.984-.389Zm-60.949 0a7.71 7.71 0 0 1-2.4-1.094 7.039 7.039 0 0 1-1.688-1.585 6.827 6.827 0 0 1-1.002-1.928c-.229-.683-.33-1.448-.33-2.269 0-2.087.766-3.809 2.294-5.177C135.787.683 137.888 0 140.541 0c.631 0 1.217.034 1.756.102.658.091 1.31.22 1.952.388a47.51 47.51 0 0 0 1.412.342c-.145.339-.257.69-.333 1.05-.115.559-.181 1.209-.227 1.938h-.622l-.011-1.151c-.07-.639-.448-1.118-1.125-1.437-.689-.308-1.689-.468-2.997-.468-.99.024-1.828.138-2.505.354a4.763 4.763 0 0 0-1.814 1.072c-.528.479-.954 1.095-1.286 1.847-.333.74-.508 1.676-.508 2.817 0 1.972.633 3.57 1.908 4.767 1.286 1.208 2.973 1.801 5.065 1.801.954 0 1.826-.125 2.641-.365a6.768 6.768 0 0 0 1.643-.786l.171.205-.4.924c-.759.364-1.557.644-2.378.832-.83.18-1.677.269-2.525.263a10.906 10.906 0 0 1-2.986-.389Zm-66.418.319a5.692 5.692 0 0 0-.253-.592l-.71-1.437-4.95-9.717v6.854c0 .89.022 1.756.08 2.6.011.615.07.981.149 1.094.07.126.208.206.38.262.171.058.677.103 1.493.115v.627l-2.503-.079-2.608.079v-.627c.816-.012 1.31-.057 1.493-.115.184-.056.31-.136.38-.228.08-.125.126-.443.148-.946.012-.137.025-1.06.058-2.783V5.016c0-.878-.022-1.743-.058-2.6-.023-.604-.07-.98-.148-1.095a.72.72 0 0 0-.38-.249c-.171-.057-.677-.092-1.493-.103V.307c.723.056 1.425.08 2.08.08.678 0 1.31-.024 1.93-.08a88.027 88.027 0 0 0 1.664 3.444l3.94 7.64 3.55-7c.965-1.906 1.608-3.261 1.94-4.084.615.05 1.232.077 1.849.08.46 0 1.205-.024 2.238-.08v.662c-.826.011-1.32.046-1.493.103-.183.057-.297.137-.367.238-.093.125-.15.435-.16.937-.013.123-.024 1.06-.047 2.77v4.515c0 .89.012 1.756.046 2.6.023.615.068.98.148 1.094a.67.67 0 0 0 .38.262c.172.057.677.103 1.493.115v.627a82.79 82.79 0 0 0-2.952-.08c-.46 0-1.48.024-3.054.08v-.627c.816-.012 1.321-.058 1.505-.115.171-.057.3-.137.356-.228.092-.137.139-.444.161-.947 0-.136.022-1.06.046-2.782V2.345l-3.573 7.082c-.562 1.096-1 1.985-1.321 2.657a83.88 83.88 0 0 0-1.034 2.338h-.403v.003Zm24.338-.261-3.344.067v-.627c.782-.012 1.252-.034 1.413-.07.172-.033.275-.08.333-.147l.093-.228c0-.137-.048-.33-.139-.559l-1.287-2.998h-6.018l-1.113 2.52c-.196.457-.299.787-.299.993l.081.227c.1.09.223.15.355.172.254.056.702.091 1.345.091v.627a75.194 75.194 0 0 0-2.631-.067c-.665 0-1.4.024-2.204.067v-.627c.54 0 .884-.023 1.021-.057.14-.045.27-.12.38-.218.114-.091.274-.352.493-.786.115-.24.563-1.163 1.343-2.76l2.596-5.53c.288-.606.896-1.962 1.827-4.072h.655l4.444 9.852c.724 1.596 1.195 2.589 1.435 3 .127.239.275.387.426.455.16.07.504.115 1.057.115v.627a64.394 64.394 0 0 0-2.262-.067ZM86.7 8.77h5.248l-2.595-5.897L86.7 8.77Zm15.86 5.394c-.78 0-1.825.023-3.11.067v-.627c.804-.012 1.298-.046 1.469-.103.183-.058.298-.137.355-.228.092-.138.15-.445.161-.947.012-.136.035-1.06.069-2.77v-1.14c-.131-.268-.272-.53-.425-.786-.103-.16-.448-.731-1.057-1.69l-2.641-3.705c-.321-.514-.562-.822-.723-.958a1.391 1.391 0 0 0-.507-.239c-.206-.046-.482-.08-1.308-.102V.308c1.367.046 1.769.068 2.458.068.711 0 2.538-.022 3.824-.068v.628c-.804.022-1.505.056-1.642.102-.139.056-.207.148-.219.261-.01.114.173.49.528 1.106l3.091 4.961 3.295-4.96c.414-.616.609-.993.619-1.107 0-.113-.067-.204-.195-.26-.137-.047-.735-.08-1.527-.103V.308c.915.04 1.831.062 2.746.068.689 0 1.056-.022 2.423-.068v.628c-.826.022-1.125.056-1.332.102a1.53 1.53 0 0 0-.53.239c-.17.136-.448.444-.812.958l-3.033 4.31c-.587.913-.92 1.472-.988 1.677a1.57 1.57 0 0 0-.115.581v.754c0 .888.012 1.743.059 2.587.023.617.068.98.148 1.096.069.114.207.204.378.262.161.057.655.092 1.459.103v.627a72.986 72.986 0 0 0-2.918-.068Zm11.152-.172a6.308 6.308 0 0 1-2.387-1.484 6.524 6.524 0 0 1-1.47-2.394 8.035 8.035 0 0 1-.516-2.782c0-1.038.172-1.996.494-2.862.333-.88.872-1.666 1.63-2.373a7.706 7.706 0 0 1 2.586-1.574C115.002.17 116.104 0 117.332 0c1.137 0 2.17.148 3.1.444.932.308 1.701.708 2.298 1.209a6.205 6.205 0 0 1 1.401 1.642c.264.443.482.957.631 1.561.161.606.229 1.255.229 1.938 0 2.202-.78 4.026-2.342 5.497-1.563 1.46-3.526 2.19-5.902 2.19a9.283 9.283 0 0 1-3.035-.489Zm.287-12.477a4.447 4.447 0 0 0-1.86 2.018c-.424.88-.631 1.871-.631 2.988 0 .616.069 1.243.195 1.893.138.637.299 1.198.506 1.653a5.897 5.897 0 0 0 1.286 1.974c.542.536 1.137.934 1.79 1.185.701.248 1.44.372 2.183.365 1.114 0 2.079-.251 2.894-.764.817-.514 1.426-1.232 1.828-2.166.414-.925.609-2.008.609-3.229a9.24 9.24 0 0 0-.436-2.874 5.511 5.511 0 0 0-.712-1.447 4.991 4.991 0 0 0-1.058-1.14c-.414-.332-.941-.606-1.595-.822a6.675 6.675 0 0 0-2.113-.332c-1.105.004-2.059.243-2.886.698ZM26.404 42c-7.109-2.67-11.863-7.163-13.057-14.701-.7.342-1.447.662-2.228.957C4.228 25.669 0 21.027 0 12.726V.283h22.246v6.924h-2.561v-4.38H2.55v11.426c0 4.323.805 9.672 8.57 13.115 7.763-3.444 8.566-8.792 8.566-13.115v-3.25h-4.055V22.83a14.844 14.844 0 0 1-2.526 2.066c-.033-.51-.048-1.02-.046-1.53V8.44h16.01v2.565h-6.823v1.723c0 6.294-2.434 10.48-6.603 13.264.148 5.05 1.906 11.196 10.76 15.13 9.315-4.138 10.785-10.73 10.785-15.92V11.005h-4.215v3.25c0 2.887.38 6.249 2.93 9.18v1.744c-3.492-2.768-5.49-6.737-5.49-12.45V.282h22.245v12.443c0 8.301-4.227 12.943-11.117 15.53a25.704 25.704 0 0 1-2.09-.889C38.245 34.872 33.501 39.343 26.403 42Zm6.57-33.561h6.777v14.926c0 1.06-.059 2.065-.161 3.023.632.363 1.283.69 1.951.98 7.764-3.444 8.568-8.792 8.568-13.115V2.827H32.974V8.44Z\" fill=\"#ADBCCE\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HgJsl.framer-5z950h, .framer-HgJsl .framer-5z950h { display: block; }\",\".framer-HgJsl.framer-lqhm40 { height: 42px; overflow: hidden; position: relative; width: 207px; }\",\".framer-HgJsl .framer-qrg4y2 { aspect-ratio: 4.928571428571429 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 207\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBNviWGSsQ=withCSS(Component,css,\"framer-HgJsl\");export default FramerBNviWGSsQ;FramerBNviWGSsQ.displayName=\"logo_mayo_clinic\";FramerBNviWGSsQ.defaultProps={height:42,width:207};addFonts(FramerBNviWGSsQ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBNviWGSsQ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"42\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"207\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BNviWGSsQ.map", "// Generated by Framer (92f3d02)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./BYfjwEyLq-0.js\";const cycleOrder=[\"l_tIJr8HQ\"];const serializationHash=\"framer-M2pi1\";const variantClassNames={l_tIJr8HQ:\"framer-v-ugokga\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={hAdgU5o6D:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"l_tIJr8HQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ugokga\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"l_tIJr8HQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ajoe3h\",\"data-framer-name\":\"OpenAI\",fill:\"black\",intrinsicHeight:86,intrinsicWidth:350,layoutDependency:layoutDependency,layoutId:\"Cbaczx_YO\",svg:'<svg width=\"350\" height=\"86\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M249.432 33.472c-5.08 0-8.706 1.735-10.485 5.021l-.956 1.78v-5.944h-8.266v36.13h8.694V48.964c0-5.136 2.791-8.082 7.653-8.082 4.637 0 7.295 2.869 7.295 7.868v21.71h8.698V47.2c0-8.603-4.721-13.728-12.633-13.728Zm-42.165 0c-10.26 0-16.613 6.402-16.613 16.707v5.072c0 9.91 6.427 16.065 16.776 16.065 6.922 0 11.773-2.537 14.826-7.754l-5.39-3.101c-2.256 3.009-5.859 4.874-9.433 4.874-5.239 0-8.366-3.235-8.366-8.655v-1.436h24.267v-5.992c0-9.6-6.302-15.78-16.06-15.78h-.007Zm8.155 15.931h-16.384v-.867c0-5.948 2.92-9.23 8.222-9.23 5.106 0 8.155 3.234 8.155 8.654l.007 1.443Zm132.989-21.022v-6.912h-30.074v6.912h10.544v35.152h-10.544v6.911h30.074v-6.911h-10.548V28.38h10.548Zm-228.032-7.909c-13.431 0-21.782 8.37-21.782 21.85v7.288c0 13.476 8.347 21.85 21.782 21.85s21.782-8.374 21.782-21.85v-7.288c-.004-13.494-8.362-21.85-21.782-21.85Zm12.796 29.636c0 8.95-4.663 14.082-12.796 14.082s-12.792-5.132-12.792-14.081v-8.29c0-8.949 4.666-14.08 12.796-14.08 8.129 0 12.796 5.131 12.796 14.08l-.004 8.29Zm36.295-16.636c-4.563 0-8.514 1.89-10.574 5.055l-.934 1.44v-5.638h-8.27V82.89h8.698V65.301l.931 1.381c1.956 2.902 5.778 4.634 10.223 4.634 7.498 0 15.062-4.9 15.062-15.85v-6.144c0-7.89-4.662-15.85-15.136-15.85Zm6.438 21.57c0 5.821-3.396 9.44-8.86 9.44-5.095 0-8.65-3.825-8.65-9.297V49.75c0-5.538 3.585-9.437 8.724-9.437 5.423 0 8.794 3.615 8.794 9.437l-.008 5.291ZM286.1 21.472l-17.548 48.986h8.835l3.359-10.5h20.173l.033.103 3.323 10.397h8.831l-17.577-48.99-9.429.004Zm-3.198 31.578 7.916-24.766 7.834 24.766h-15.75ZM81.592 35.148a21.145 21.145 0 0 0-1.816-17.37 21.413 21.413 0 0 0-23.038-10.26A21.15 21.15 0 0 0 40.786.397a21.39 21.39 0 0 0-20.405 14.82 21.157 21.157 0 0 0-14.136 10.26 21.415 21.415 0 0 0 2.632 25.085 21.16 21.16 0 0 0 1.816 17.352A21.413 21.413 0 0 0 33.75 78.198a21.157 21.157 0 0 0 15.934 7.118 21.39 21.39 0 0 0 20.405-14.82 21.154 21.154 0 0 0 14.133-10.26 21.385 21.385 0 0 0-2.629-25.088Zm-31.909 44.63a15.849 15.849 0 0 1-10.182-3.692c.126-.07.37-.192.51-.284l16.908-9.762a2.744 2.744 0 0 0 1.389-2.404V39.793l7.143 4.124a.246.246 0 0 1 .14.2V63.85a15.928 15.928 0 0 1-15.908 15.928ZM15.5 65.179a15.877 15.877 0 0 1-1.9-10.662c.125.077.347.21.502.299l16.913 9.765a2.747 2.747 0 0 0 2.776 0L54.424 52.65v8.248a.247.247 0 0 1-.1.221L37.23 70.983a15.926 15.926 0 0 1-21.73-5.822v.018Zm-4.43-36.92a15.846 15.846 0 0 1 8.28-6.978v20.1a2.75 2.75 0 0 0 1.389 2.403l20.638 11.918-7.17 4.139a.25.25 0 0 1-.24.022l-17.09-9.869a15.924 15.924 0 0 1-5.822-21.735h.015Zm58.7 13.66L49.134 30.003l7.137-4.128a.254.254 0 0 1 .24-.022L73.6 35.72a15.913 15.913 0 0 1-2.46 28.709V44.334a2.746 2.746 0 0 0-1.38-2.414h.01Zm7.115-10.706c-.126-.078-.347-.21-.502-.3L59.47 21.149a2.747 2.747 0 0 0-2.776 0L36.057 33.062v-8.244a.268.268 0 0 1 .103-.222l17.09-9.865a15.912 15.912 0 0 1 23.628 16.485l.007-.003ZM32.162 45.922l-7.148-4.124a.27.27 0 0 1-.136-.2V21.864A15.91 15.91 0 0 1 50.968 9.63c-.126.07-.35.192-.51.284L33.55 19.675a2.752 2.752 0 0 0-1.388 2.403v23.844Zm3.88-8.37 9.193-5.31 9.189 5.31v10.61l-9.193 5.31-9.193-5.31.004-10.61Z\" fill=\"#ADBDCE\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .363)\" d=\"M0 0h350v84.984H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M2pi1.framer-ekx7ll, .framer-M2pi1 .framer-ekx7ll { display: block; }\",\".framer-M2pi1.framer-ugokga { height: 74px; overflow: hidden; position: relative; width: 301px; }\",\".framer-M2pi1 .framer-ajoe3h { aspect-ratio: 4.069767441860465 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 74\n * @framerIntrinsicWidth 301\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBYfjwEyLq=withCSS(Component,css,\"framer-M2pi1\");export default FramerBYfjwEyLq;FramerBYfjwEyLq.displayName=\"OpenAI\";FramerBYfjwEyLq.defaultProps={height:74,width:301};addFonts(FramerBYfjwEyLq,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBYfjwEyLq\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"301\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"74\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BYfjwEyLq.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./ijRSA4aUc-0.js\";const cycleOrder=[\"ngyfr1fKM\"];const serializationHash=\"framer-yfV6s\";const variantClassNames={ngyfr1fKM:\"framer-v-1nat0zb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={hAdgU5o6D:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ngyfr1fKM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1nat0zb\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ngyfr1fKM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pfd291\",\"data-framer-name\":\"logo_aws\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:71,layoutDependency:layoutDependency,layoutId:\"UZnry0nPz\",svg:'<svg width=\"71\" height=\"42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.793 15.254c0 .864.093 1.565.257 2.079.187.514.42 1.074.747 1.682.117.186.164.373.164.537 0 .233-.14.467-.444.7l-1.472.982c-.21.14-.42.21-.607.21-.234 0-.467-.117-.7-.327a7.227 7.227 0 0 1-.842-1.098 18.341 18.341 0 0 1-.724-1.378c-1.822 2.149-4.111 3.223-6.867 3.223-1.963 0-3.528-.56-4.672-1.682-1.145-1.12-1.729-2.616-1.729-4.485 0-1.985.7-3.597 2.126-4.812 1.425-1.214 3.317-1.822 5.723-1.822.794 0 1.612.07 2.476.187.864.117 1.752.304 2.686.514V8.06c0-1.775-.374-3.013-1.098-3.738-.747-.724-2.009-1.074-3.807-1.074-.818 0-1.659.093-2.523.304-.864.21-1.705.467-2.523.794a6.703 6.703 0 0 1-.817.304c-.164.046-.28.07-.374.07-.327 0-.49-.234-.49-.725V2.85c0-.374.046-.654.163-.818.117-.163.327-.327.654-.49C5.917 1.122 6.898.77 8.043.49c1.145-.304 2.36-.444 3.644-.444 2.78 0 4.812.63 6.12 1.892 1.285 1.261 1.94 3.177 1.94 5.746v7.569h.046Zm-9.484 3.55c.77 0 1.565-.14 2.406-.42.84-.28 1.588-.794 2.22-1.495.373-.444.653-.935.793-1.495s.234-1.238.234-2.033v-.98a19.526 19.526 0 0 0-2.15-.398 17.608 17.608 0 0 0-2.195-.14c-1.565 0-2.71.304-3.48.934-.771.631-1.145 1.519-1.145 2.687 0 1.098.28 1.915.864 2.476.56.584 1.378.864 2.453.864Zm18.758 2.523c-.421 0-.701-.07-.888-.234-.187-.14-.35-.467-.49-.91l-5.49-18.057c-.14-.467-.21-.771-.21-.935 0-.373.186-.584.56-.584h2.29c.443 0 .747.07.91.234.187.14.328.467.468.91l3.924 15.465 3.644-15.464c.117-.467.257-.77.444-.911.187-.14.514-.234.934-.234h1.869c.444 0 .748.07.934.234.187.14.35.467.444.91l3.69 15.652 4.042-15.651c.14-.467.304-.77.467-.911.187-.14.49-.234.911-.234h2.173c.373 0 .584.187.584.584 0 .117-.024.234-.047.374a3.33 3.33 0 0 1-.163.584l-5.63 18.057c-.14.467-.304.77-.49.91-.188.141-.491.234-.888.234h-2.01c-.443 0-.747-.07-.934-.233-.187-.164-.35-.467-.443-.935L36.05 5.116l-3.597 15.043c-.117.467-.257.77-.444.934-.187.164-.514.234-.935.234h-2.008Zm30.016.63c-1.215 0-2.43-.14-3.597-.42-1.168-.28-2.08-.584-2.686-.934-.374-.21-.631-.444-.725-.654a1.648 1.648 0 0 1-.14-.654v-1.192c0-.49.187-.724.537-.724.14 0 .28.024.42.07.141.047.351.14.585.234.794.35 1.658.63 2.57.818.934.186 1.845.28 2.78.28 1.47 0 2.615-.257 3.41-.771.794-.514 1.214-1.261 1.214-2.22 0-.653-.21-1.19-.63-1.634-.42-.444-1.215-.841-2.36-1.215l-3.387-1.051c-1.705-.537-2.966-1.332-3.737-2.383-.771-1.028-1.168-2.172-1.168-3.387 0-.981.21-1.845.63-2.593a6.007 6.007 0 0 1 1.682-1.915c.701-.537 1.495-.935 2.43-1.215C57.845.117 58.826 0 59.854 0c.514 0 1.051.023 1.565.093.537.07 1.028.164 1.518.257.468.117.911.234 1.332.374.42.14.747.28.981.42.327.187.56.374.7.585.14.186.211.443.211.77v1.098c0 .49-.187.748-.537.748-.187 0-.49-.094-.888-.28-1.331-.608-2.826-.912-4.485-.912-1.331 0-2.383.21-3.107.655-.724.443-1.098 1.12-1.098 2.079 0 .654.234 1.214.701 1.658.467.444 1.332.888 2.57 1.285l3.317 1.051c1.682.537 2.896 1.285 3.62 2.242.725.958 1.075 2.056 1.075 3.27 0 1.005-.21 1.916-.607 2.71a6.283 6.283 0 0 1-1.706 2.056c-.724.584-1.588 1.005-2.593 1.308-1.05.327-2.148.49-3.34.49Z\" fill=\"#ADBCCE\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.498 33.31C55.813 38.987 44.648 42 35.046 42 21.592 42 9.468 37.025.311 28.755c-.724-.654-.07-1.541.794-1.027 9.905 5.746 22.122 9.226 34.759 9.226 8.526 0 17.893-1.775 26.513-5.419 1.284-.584 2.382.841 1.121 1.775Z\" fill=\"#ADBCCE\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M66.698 29.666c-.98-1.261-6.494-.607-8.993-.303-.748.093-.864-.56-.187-1.051 4.392-3.084 11.61-2.196 12.45-1.168.841 1.05-.233 8.269-4.344 11.726-.631.537-1.238.257-.958-.444.934-2.312 3.013-7.522 2.032-8.76Z\" fill=\"#ADBCCE\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yfV6s.framer-fhhm2k, .framer-yfV6s .framer-fhhm2k { display: block; }\",\".framer-yfV6s.framer-1nat0zb { height: 42px; overflow: hidden; position: relative; width: 71px; }\",\".framer-yfV6s .framer-pfd291 { aspect-ratio: 1.6904761904761905 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 71\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerijRSA4aUc=withCSS(Component,css,\"framer-yfV6s\");export default FramerijRSA4aUc;FramerijRSA4aUc.displayName=\"logo_aws\";FramerijRSA4aUc.defaultProps={height:42,width:71};addFonts(FramerijRSA4aUc,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerijRSA4aUc\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"71\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"42\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ijRSA4aUc.map", "// Generated by Framer (92f3d02)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2TJGoy3D0Iy6zbzAIGMx/YZgGwMdyy9YUFCuNgWGA/qmT0OFPbX.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tmtHy4agkWJI0C3HkY6M/JkcdydSxEsCE4MenKlvL/tjQcKJwyy.js\";import*as localizedValues from\"./IpCe_IZOm-0.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={uMTYjwuKk:{hover:true},WbCczdEcX:{hover:true}};const cycleOrder=[\"uMTYjwuKk\",\"WbCczdEcX\",\"UfQ6HfMtB\",\"XBFYVxps8\"];const serializationHash=\"framer-jRbF7\";const variantClassNames={UfQ6HfMtB:\"framer-v-11x2ogv\",uMTYjwuKk:\"framer-v-12kw9vu\",WbCczdEcX:\"framer-v-dv3n1l\",XBFYVxps8:\"framer-v-ttsr2h\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={hAdgU5o6D:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition1={damping:20,delay:.2,mass:1,stiffness:110,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"AWS Horizontal\":\"uMTYjwuKk\",\"AWS Vertical\":\"UfQ6HfMtB\",\"Google Horizontal\":\"WbCczdEcX\",\"Google Vertical\":\"XBFYVxps8\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"uMTYjwuKk\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uMTYjwuKk\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"WbCczdEcX-hover\")return false;if([\"WbCczdEcX\",\"XBFYVxps8\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"WbCczdEcX-hover\")return true;if(baseVariant===\"WbCczdEcX\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"XBFYVxps8\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12kw9vu\",className,classNames),\"data-border\":true,\"data-framer-name\":\"AWS Horizontal\",layoutDependency:layoutDependency,layoutId:\"uMTYjwuKk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fa1f94af-5944-4641-9b1d-d9a5d376da11, rgb(87, 96, 107))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(13, 15, 23))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{\"uMTYjwuKk-hover\":{\"--border-color\":\"rgba(255, 153, 0, 0.3)\"},\"WbCczdEcX-hover\":{\"--border-color\":\"rgba(66, 133, 244, 0.3)\"}},...addPropertyOverrides({\"uMTYjwuKk-hover\":{\"data-framer-name\":undefined},\"WbCczdEcX-hover\":{\"data-framer-name\":undefined},UfQ6HfMtB:{\"data-framer-name\":\"AWS Vertical\"},WbCczdEcX:{\"data-framer-name\":\"Google Horizontal\"},XBFYVxps8:{\"data-framer-name\":\"Google Vertical\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1alvxfw\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"qlS9rIhzy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",children:\"Amazon AWS\"})}),className:\"framer-z62eqx\",\"data-framer-name\":\"Tell us your vision\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r85VaDkcO\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WbCczdEcX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",children:\"Google Partner\"})})},XBFYVxps8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",children:\"Google Partner\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",children:\"Somos parceiros de tecnologia AWS, nossas solu\\xe7\\xf5es utilizam as ferramentas da Amazon Web Services para maior seguran\\xe7a e velocidade aos nossos usu\\xe1rios\"})}),className:\"framer-se85op\",\"data-framer-name\":\"Choose a plan and share your design project details with us: we\u2019re here to listen.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eeeWtzLSY\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WbCczdEcX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",children:\"Somos revendedores autorizados de solu\\xe7\\xf5es Google, oferecendo produtos e servi\\xe7os oficiais para impulsionar sua empresa com tecnologia confi\\xe1vel, suporte especializado e inova\\xe7\\xe3o constante\"})})},XBFYVxps8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",children:\"Somos revendedores autorizados de solu\\xe7\\xf5es Google, oferecendo produtos e servi\\xe7os oficiais para impulsionar sua empresa com tecnologia confi\\xe1vel, suporte especializado e inova\\xe7\\xe3o constante\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:430,intrinsicWidth:406,pixelHeight:430,pixelWidth:406,src:\"https://framerusercontent.com/images/gaDMrhnerYexH3ROe2kGQx2k4A.png\"},className:\"framer-1ospyhu\",\"data-framer-name\":\"AWS_Badge\",layoutDependency:layoutDependency,layoutId:\"lA2zqhIZd\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-153r4fn\",layoutDependency:layoutDependency,layoutId:\"GT_RSRNbg\",style:{backgroundColor:\"rgba(255, 153, 0, 0.08)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,filter:\"blur(50px)\",WebkitFilter:\"blur(50px)\"},variants:{\"uMTYjwuKk-hover\":{backgroundColor:\"rgba(255, 153, 0, 0.2)\"},\"WbCczdEcX-hover\":{backgroundColor:\"rgba(66, 133, 244, 0.25)\"},WbCczdEcX:{backgroundColor:\"rgba(66, 133, 244, 0.1)\"},XBFYVxps8:{backgroundColor:\"rgba(66, 133, 244, 0.25)\"}}}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:430,intrinsicWidth:406,pixelHeight:430,pixelWidth:406,src:\"https://framerusercontent.com/images/o16RSUNZKzVJgRkqRqHOfOHJ2o.png\"},className:\"framer-136cwi0\",\"data-framer-name\":\"Google_Badge\",layoutDependency:layoutDependency,layoutId:\"bnCKXFluQ\"}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:430,intrinsicWidth:406,pixelHeight:430,pixelWidth:406,src:\"https://framerusercontent.com/images/o16RSUNZKzVJgRkqRqHOfOHJ2o.png\"},className:\"framer-109ensp\",\"data-framer-name\":\"Google_Badge\",layoutDependency:layoutDependency,layoutId:\"ueTAt9Zfb\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jRbF7.framer-1raguwf, .framer-jRbF7 .framer-1raguwf { display: block; }\",\".framer-jRbF7.framer-12kw9vu { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 28px 32px 28px; position: relative; width: 564px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jRbF7 .framer-1alvxfw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jRbF7 .framer-z62eqx, .framer-jRbF7 .framer-se85op { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jRbF7 .framer-1ospyhu { aspect-ratio: 0.9441860465116279 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 212px); overflow: visible; position: relative; width: 200px; z-index: 1; }\",\".framer-jRbF7 .framer-153r4fn { bottom: -78px; flex: none; height: 239px; overflow: hidden; position: absolute; right: -103px; width: 276px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jRbF7 .framer-136cwi0 { aspect-ratio: 0.9441860465116279 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 212px); overflow: visible; position: relative; width: 200px; }\",\".framer-jRbF7 .framer-109ensp { aspect-ratio: 0.9441860465116279 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 169px); overflow: visible; position: relative; width: 160px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jRbF7.framer-12kw9vu, .framer-jRbF7 .framer-1alvxfw { gap: 0px; } .framer-jRbF7.framer-12kw9vu > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-jRbF7.framer-12kw9vu > :first-child { margin-left: 0px; } .framer-jRbF7.framer-12kw9vu > :last-child { margin-right: 0px; } .framer-jRbF7 .framer-1alvxfw > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-jRbF7 .framer-1alvxfw > :first-child { margin-top: 0px; } .framer-jRbF7 .framer-1alvxfw > :last-child { margin-bottom: 0px; } }\",\".framer-jRbF7.framer-v-dv3n1l .framer-153r4fn { bottom: -64px; right: -83px; }\",\".framer-jRbF7.framer-v-11x2ogv.framer-12kw9vu, .framer-jRbF7.framer-v-ttsr2h.framer-12kw9vu { cursor: unset; flex-direction: column; gap: 8px; padding: 24px 24px 32px 24px; width: 342px; }\",\".framer-jRbF7.framer-v-11x2ogv .framer-1alvxfw { flex: none; gap: 8px; order: 1; width: 100%; }\",\".framer-jRbF7.framer-v-11x2ogv .framer-1ospyhu { height: var(--framer-aspect-ratio-supported, 169px); order: 0; width: 160px; }\",\".framer-jRbF7.framer-v-11x2ogv .framer-153r4fn { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jRbF7.framer-v-11x2ogv.framer-12kw9vu, .framer-jRbF7.framer-v-11x2ogv .framer-1alvxfw { gap: 0px; } .framer-jRbF7.framer-v-11x2ogv.framer-12kw9vu > *, .framer-jRbF7.framer-v-11x2ogv .framer-1alvxfw > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-jRbF7.framer-v-11x2ogv.framer-12kw9vu > :first-child, .framer-jRbF7.framer-v-11x2ogv .framer-1alvxfw > :first-child { margin-top: 0px; } .framer-jRbF7.framer-v-11x2ogv.framer-12kw9vu > :last-child, .framer-jRbF7.framer-v-11x2ogv .framer-1alvxfw > :last-child { margin-bottom: 0px; } }\",\".framer-jRbF7.framer-v-ttsr2h .framer-1alvxfw { flex: none; gap: 8px; order: 2; width: 100%; }\",\".framer-jRbF7.framer-v-ttsr2h .framer-153r4fn { order: 3; }\",\".framer-jRbF7.framer-v-ttsr2h .framer-109ensp { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jRbF7.framer-v-ttsr2h.framer-12kw9vu, .framer-jRbF7.framer-v-ttsr2h .framer-1alvxfw { gap: 0px; } .framer-jRbF7.framer-v-ttsr2h.framer-12kw9vu > *, .framer-jRbF7.framer-v-ttsr2h .framer-1alvxfw > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-jRbF7.framer-v-ttsr2h.framer-12kw9vu > :first-child, .framer-jRbF7.framer-v-ttsr2h .framer-1alvxfw > :first-child { margin-top: 0px; } .framer-jRbF7.framer-v-ttsr2h.framer-12kw9vu > :last-child, .framer-jRbF7.framer-v-ttsr2h .framer-1alvxfw > :last-child { margin-bottom: 0px; } }\",\".framer-jRbF7.framer-v-12kw9vu.hover .framer-153r4fn { bottom: -84px; right: -110px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-jRbF7[data-border=\"true\"]::after, .framer-jRbF7 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 276\n * @framerIntrinsicWidth 564\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WbCczdEcX\":{\"layout\":[\"fixed\",\"auto\"]},\"UfQ6HfMtB\":{\"layout\":[\"fixed\",\"auto\"]},\"XBFYVxps8\":{\"layout\":[\"fixed\",\"auto\"]},\"acFLPpT1L\":{\"layout\":[\"fixed\",\"auto\"]},\"LRCzdS5rz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIpCe_IZOm=withCSS(Component,css,\"framer-jRbF7\");export default FramerIpCe_IZOm;FramerIpCe_IZOm.displayName=\"Card Partner\";FramerIpCe_IZOm.defaultProps={height:276,width:564};addPropertyControls(FramerIpCe_IZOm,{variant:{options:[\"uMTYjwuKk\",\"WbCczdEcX\",\"UfQ6HfMtB\",\"XBFYVxps8\"],optionTitles:[\"AWS Horizontal\",\"Google Horizontal\",\"AWS Vertical\",\"Google Vertical\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIpCe_IZOm,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIpCe_IZOm\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WbCczdEcX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UfQ6HfMtB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XBFYVxps8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"acFLPpT1L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LRCzdS5rz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"564\",\"framerIntrinsicHeight\":\"276\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IpCe_IZOm.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./mXlQRfqAO-0.js\";const cycleOrder=[\"IkRDjyeka\"];const serializationHash=\"framer-FbjeO\";const variantClassNames={IkRDjyeka:\"framer-v-ow6nvd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={hAdgU5o6D:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IkRDjyeka\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ow6nvd\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"IkRDjyeka\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nkaq3c\",\"data-framer-name\":\"loog_grupo_vertical\",fill:\"black\",intrinsicHeight:46,intrinsicWidth:198,layoutDependency:layoutDependency,layoutId:\"oOt4XP1CJ\",svg:'<svg width=\"198\" height=\"46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M182.851 0v1.15h4.6v41.63h-4.6v1.15h14.72v-1.15h-4.6V0h-10.12Zm-69.46.34c-4.267.506-3.598 7.156.69 6.662 4.337-.5 3.735-7.186-.69-6.662Zm14.72 8.86h-2.53v.69h1.61c0 .123.004.25.007.38.013.405.026.832-.08 1.205-.33 1.161-1.845 1.062-2.666.51-2.103-1.416-1.534-4.915 1.129-5.215.518-.059 1.044.086 1.556.227.173.047.345.094.514.133l.23-.92c-.916-.17-1.826-.288-2.76-.208-3.462.295-4.03 5.308-1.147 6.866 1.089.59 3.623.866 4.064-.703.179-.64.14-1.404.102-2.127-.015-.29-.029-.572-.029-.838Zm8.28-3.22v7.13h.92V9.89c2.256.008 2.792 1.153 3.22 3.22h.92c-.041-.505-.209-1.029-.376-1.551-.207-.648-.414-1.293-.378-1.899.02-.345.127-.68.232-1.008.228-.711.445-1.388-.268-2.062-.816-.771-2.232-.7-3.424-.64-.301.016-.587.03-.846.03Zm12.81 1.52c-.101 1.536-.217 3.29.373 4.456.932 1.84 3.969 1.822 4.914-.006.595-1.153.477-2.917.374-4.454-.036-.547-.071-1.064-.071-1.516h-.92c0 .399.031.857.063 1.34.092 1.363.197 2.929-.334 3.946-.59 1.128-2.155 1.547-2.982.412-.729-1.002-.599-2.856-.493-4.375.034-.489.066-.943.066-1.323h-.92c0 .455-.034.973-.07 1.52Zm13.87-1.52v7.13h.92v-2.99c.159 0 .324.004.491.007.831.018 1.733.037 2.45-.369 1.144-.648 1.249-2.515.188-3.297-.835-.617-2.118-.558-3.226-.507-.29.013-.568.026-.823.026Zm14.49.132c-3.809 1.1-2.132 8.346 2.07 7.043 4.084-1.267 2.452-8.349-2.07-7.043ZM90.391 9.89v7.82h-4.83v.92h4.83V34.5c0 .48-.018.975-.035 1.48-.073 2.1-.15 4.344.985 6.109 1.827 2.84 6.389 2.994 9.4 2.455 1.762-.315 3.303-1.771 3.997-3.374.466-1.077.93-2.283-.547-2.53-.709 2.983-4.404 7.142-7.27 3.67a4.467 4.467 0 0 1-.829-1.6c-.455-1.576-.353-3.484-.258-5.279.039-.721.076-1.425.076-2.081V18.63h8.511v-.92h-8.51V9.2c-2.04.803-3.352.86-5.52.69ZM56.81 36.8c-1.116.089-1.463.876-1.842 1.74-.15.34-.305.694-.516 1.02-.87 1.353-2.15 2.541-3.623 3.212-1.003.457-2.135.675-3.22.83-.867.123-1.676.05-2.53-.136-6.441-1.396-6.44-9.096-6.44-14.344v-.142H57.5c0-1.87-.231-3.779-.954-5.52-2.438-5.877-9.7-8.173-15.376-5.71-4.835 2.098-8.497 6.803-8.73 12.15-.29 6.624 2.939 12.568 9.65 14.377 5.682 1.533 14.391-.3 14.72-7.477Zm15.18-14.26c-.34-1.146-.297-2.421-.257-3.655.014-.398.026-.792.026-1.175H61.64v.92h4.6v24.15h-4.6v1.15h15.41v-1.15h-5.29V32.66c0-.31-.001-.62-.003-.927v-.002c-.011-2.413-.022-4.764.673-7.121.664-2.25 2.396-5.3 4.85-5.908.288-.071.625-.124.92-.067 1.984.39 1.62 1.827 1.248 3.301-.243.962-.49 1.939-.091 2.649.92 1.641 4.372 1.204 5.263-.227 1.67-2.68-.386-6.474-3.2-7.212-4.01-1.052-8.328 1.4-9.43 5.394Zm77.97 14.26c-1.182.094-1.689 1.14-2.198 2.194-.259.535-.518 1.07-.867 1.485-1.711 2.032-4.609 3.319-7.285 3.197-7.201-.329-8.424-9.26-7.754-14.926l.06-.526c.104-.902.208-1.8.379-2.694.472-2.465 1.337-5.252 3.635-6.619 2.133-1.268 7.332-1.634 8.109 1.56.174.717-.08 1.564-.335 2.412-.427 1.424-.855 2.85.746 3.665.353.18.749.27 1.14.32.449.056.929.062 1.38.018 3.297-.324 3.281-4.296 1.711-6.416-3.906-5.276-13.136-4.462-17.811-.8-5.894 4.614-7.366 14.138-2.662 20.116 3.311 4.207 9.255 5.617 14.392 4.759 3.763-.629 7.047-3.926 7.36-7.745Zm20.47 3.68c1.042 3.567 3.292 4.146 6.67 4.14 1.06-.002 3.353-.114 3.737-1.427.155-.529-.325-.735-.761-.655-.281.052-.563.118-.839.183-1.512.355-2.882.676-3.339-1.551-.256-1.244-.226-2.555-.197-3.842.01-.41.019-.817.019-1.218v-8.98l.001-.216c.006-2.677.012-5.209-1.91-7.356-.918-1.025-2.097-1.66-3.381-2.11-4.414-1.55-12.039-.948-13.869 4.17-.869 2.43-.324 4.855 2.599 4.83l.075-.001c.435-.003.892-.006 1.301-.169 1.541-.612 1.394-2.056 1.24-3.57-.141-1.386-.288-2.831.847-3.753 1.923-1.562 5.54-1.337 6.923.827 1.182 1.851 1.282 5.365.425 7.357-.773 1.798-2.516 2.424-4.205 3.03l-.166.06c-.796.286-1.686.538-2.607.798-3.501.99-7.457 2.107-8.45 5.772-.183.677-.224 1.371-.21 2.07.095 4.714 4.125 5.75 8.047 5.75h.251c1.429.002 2.764.004 4.119-.567 1.758-.74 2.665-2.042 3.68-3.573ZM0 17.71v.92c.267 0 .585-.023.926-.047 1.005-.072 2.209-.158 2.894.283.535.346.772 1.046.988 1.683.073.216.144.425.223.61a222.829 222.829 0 0 1 2.083 5.13v.001l.063.16c1.07 2.7 2.181 5.384 3.293 8.068.696 1.68 1.391 3.36 2.076 5.042.233.571.448 1.19.668 1.824.57 1.642 1.173 3.377 2.196 4.616.928-1.76 1.672-3.655 2.41-5.534.301-.768.602-1.534.913-2.286a798.574 798.574 0 0 1 4.17-9.823v-.003c.405-.941.81-1.883 1.213-2.824a251.137 251.137 0 0 0 1.92-4.6c.047-.115.093-.238.14-.364.235-.627.507-1.35 1.054-1.7.568-.363 1.463-.31 2.232-.264.24.014.467.028.668.028v-.92H20.7v.92h4.83c-1.08 2.633-2.226 5.242-3.371 7.851-1.535 3.496-3.07 6.992-4.449 10.549-1.081-2.312-2.015-4.697-2.947-7.079a257.763 257.763 0 0 0-1.297-3.271c-.413-1.016-.851-2.022-1.289-3.03-.721-1.659-1.443-3.318-2.057-5.02h4.83v-.92H0Zm106.491 0v.92h4.6v24.15h-4.6v1.15h14.72v-1.15h-4.6V17.71h-10.12Zm30.82-11.04V9.2h.176c.48-.003.963-.006 1.433-.11.878-.197 1.895-1.161.847-1.928-.626-.458-1.552-.475-2.313-.49l-.143-.002Zm26.68 0v2.76h.183c.477-.003.959-.005 1.424-.122.951-.24 1.883-1.347.823-2.146-.611-.46-1.522-.476-2.273-.489-.053 0-.106-.002-.157-.003Zm14.031.172c-2.733 1.023-1.762 6.622 1.375 5.407 2.727-1.055 1.696-6.557-1.375-5.407ZM38.87 27.83h12.19c0-.437.013-.896.026-1.37.069-2.455.147-5.278-1.496-7.11-2.127-2.372-6.585-1.562-8.437.7-1.668 2.038-2.23 5.21-2.283 7.78Zm131.101 1.84c-1.136.808-2.46 1.282-3.782 1.755-1.401.501-2.8 1.002-3.972 1.9-2.527 1.935-3.428 6.828-.714 9.058 2.921 2.4 7.036-.006 8.112-3.053.545-1.545.586-3.212.586-4.83 0-.389.024-.813.048-1.251.069-1.228.145-2.57-.278-3.58Z\" fill=\"#ADBCCE\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FbjeO.framer-7mi861, .framer-FbjeO .framer-7mi861 { display: block; }\",\".framer-FbjeO.framer-ow6nvd { height: 46px; overflow: hidden; position: relative; width: 198px; }\",\".framer-FbjeO .framer-1nkaq3c { aspect-ratio: 4.304347826086956 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 46\n * @framerIntrinsicWidth 198\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermXlQRfqAO=withCSS(Component,css,\"framer-FbjeO\");export default FramermXlQRfqAO;FramermXlQRfqAO.displayName=\"loog_grupo_vertical\";FramermXlQRfqAO.defaultProps={height:46,width:198};addFonts(FramermXlQRfqAO,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermXlQRfqAO\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"198\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"46\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mXlQRfqAO.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./np9TfPJSQ-0.js\";const cycleOrder=[\"WKrZsZotG\"];const serializationHash=\"framer-PfjXo\";const variantClassNames={WKrZsZotG:\"framer-v-xrp8a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={hAdgU5o6D:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WKrZsZotG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-xrp8a\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WKrZsZotG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bkfziz\",\"data-framer-name\":\"logo_google\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"RlMBPpiN6\",svg:'<svg width=\"128\" height=\"42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M54.6 22.102c0 6.043-4.726 10.496-10.528 10.496-5.8 0-10.528-4.453-10.528-10.496 0-6.085 4.727-10.495 10.529-10.495 5.8 0 10.528 4.41 10.528 10.495Zm-4.608 0c0-3.776-2.74-6.36-5.92-6.36-3.18 0-5.919 2.584-5.919 6.36 0 3.739 2.74 6.36 5.92 6.36 3.18 0 5.92-2.626 5.92-6.36Zm27.322 0c0 6.043-4.727 10.496-10.528 10.496-5.802 0-10.529-4.453-10.529-10.496 0-6.08 4.727-10.495 10.529-10.495 5.8 0 10.528 4.41 10.528 10.495Zm-4.609 0c0-3.776-2.74-6.36-5.92-6.36-3.18 0-5.92 2.584-5.92 6.36 0 3.739 2.74 6.36 5.92 6.36 3.18 0 5.92-2.626 5.92-6.36Zm26.375-9.861v18.843c0 7.75-4.57 10.916-9.974 10.916-5.087 0-8.149-3.402-9.303-6.185l4.012-1.67c.715 1.708 2.466 3.724 5.286 3.724 3.459 0 5.602-2.134 5.602-6.151v-1.51h-.16c-1.032 1.273-3.02 2.385-5.527 2.385-5.248 0-10.056-4.571-10.056-10.453 0-5.924 4.808-10.533 10.056-10.533 2.503 0 4.49 1.112 5.526 2.347h.161v-1.708h4.377v-.005Zm-4.05 9.9c0-3.696-2.465-6.398-5.603-6.398-3.18 0-5.844 2.702-5.844 6.397 0 3.658 2.665 6.322 5.844 6.322 3.138 0 5.603-2.664 5.603-6.322Zm11.266-20.944v30.757h-4.495V1.197h4.495Zm17.518 24.36 3.577 2.385c-1.154 1.708-3.937 4.651-8.744 4.651-5.963 0-10.415-4.609-10.415-10.495 0-6.241 4.49-10.495 9.899-10.495 5.446 0 8.11 4.334 8.981 6.676l.478 1.193-14.03 5.81c1.074 2.106 2.744 3.18 5.087 3.18 2.347 0 3.974-1.154 5.167-2.905Zm-11.011-3.776 9.378-3.895c-.515-1.31-2.067-2.223-3.894-2.223-2.342 0-5.603 2.067-5.484 6.118Zm-96.275-2.409V14.92h15.005c.147.776.223 1.694.223 2.687 0 3.34-.914 7.472-3.857 10.415-2.863 2.981-6.52 4.571-11.366 4.571C7.553 32.593 0 25.278 0 16.296 0 7.317 7.552 0 16.533 0c4.969 0 8.508 1.95 11.167 4.49l-3.142 3.142c-1.907-1.788-4.49-3.18-8.03-3.18-6.558 0-11.687 5.286-11.687 11.845 0 6.558 5.129 11.843 11.687 11.843 4.254 0 6.677-1.708 8.23-3.26 1.258-1.259 2.086-3.057 2.412-5.512l-10.642.004Z\" fill=\"#ADBCCE\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PfjXo.framer-1hl4p8z, .framer-PfjXo .framer-1hl4p8z { display: block; }\",\".framer-PfjXo.framer-xrp8a { height: 42px; overflow: hidden; position: relative; width: 128px; }\",\".framer-PfjXo .framer-1bkfziz { aspect-ratio: 3.0476190476190474 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 128\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framernp9TfPJSQ=withCSS(Component,css,\"framer-PfjXo\");export default Framernp9TfPJSQ;Framernp9TfPJSQ.displayName=\"logo_google\";Framernp9TfPJSQ.defaultProps={height:42,width:128};addFonts(Framernp9TfPJSQ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framernp9TfPJSQ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"128\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"42\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./np9TfPJSQ.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./qwleZaeH_-0.js\";const cycleOrder=[\"vfHxZ7lre\"];const serializationHash=\"framer-spAxN\";const variantClassNames={vfHxZ7lre:\"framer-v-wv1h1y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={hAdgU5o6D:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vfHxZ7lre\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wv1h1y\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vfHxZ7lre\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-homm1n\",\"data-framer-name\":\"logo_santa_lucia\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:280,layoutDependency:layoutDependency,layoutId:\"DKKf07UKl\",svg:'<svg width=\"280\" height=\"42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.575.165c-.745.272-1.053.533-1.349 1.171l-.284.615v5.06c0 4.305-.023 5.12-.189 5.5-.189.46-.662 1.016-1.053 1.24-.165.107-1.845.154-5.63.202l-5.394.059-.567.354c-.355.225-.663.533-.817.828-.236.45-.248.662-.283 5.558-.024 3.452 0 5.226.094 5.533.142.473.698 1.183 1.112 1.42.177.106 1.727.153 5.63.2l5.382.06.556.319c.296.177.675.532.828.768l.272.45.06 5.38c.047 4.765.082 5.427.26 5.746.284.52.97 1.088 1.42 1.17.212.036 2.732.06 5.606.036l5.204-.035.485-.32c.923-.614.911-.531.982-6.538.048-4.718.083-5.368.26-5.688.26-.473.959-1.087 1.373-1.194.177-.06 2.637-.095 5.464-.095 4.803 0 5.17.012 5.56.225.556.296.816.532 1.052.958.166.307.202 1.029.249 5.676.07 5.983.047 5.864.982 6.61l.461.366 5.43.035c5.263.036 5.44.024 5.902-.212.26-.13.615-.462.792-.734l.331-.496.036-5.203c.023-3.417-.012-5.356-.083-5.64-.177-.591-.532-1.005-1.112-1.324-.485-.26-.603-.26-5.902-.32l-5.394-.059-.461-.366c-.959-.78-.923-.544-.959-6.22-.023-3.37.012-5.215.095-5.534.071-.26.296-.662.497-.898.745-.84.509-.804 6.494-.875l5.394-.06.473-.319c.284-.189.58-.52.733-.827.237-.509.248-.663.248-5.688 0-5.64 0-5.676-.685-6.385C54.526.047 54.1 0 48.847 0c-2.992 0-4.967.047-5.251.13-.249.06-.627.284-.864.485-.84.745-.804.508-.875 6.491l-.06 5.392-.342.485c-.19.272-.544.591-.828.733-.485.225-.71.237-5.737.237-5.642 0-5.56.011-6.257-.639-.686-.615-.675-.508-.734-6.361l-.059-5.392-.355-.509c-.189-.272-.568-.615-.828-.745-.461-.236-.662-.248-5.56-.272-4.033-.023-5.18 0-5.523.13Zm86.372.899v.946h1.064V.118h-1.064v.946Zm-38.68 5.971v6.8h1.053l.036-3.288.035-3.275.343-.627c.556-1.005 1.479-1.56 2.555-1.56 1.077 0 1.857.555 2.13 1.513.07.248.118 1.868.118 3.831v3.405h1.076l-.035-3.878c-.036-3.5-.06-3.902-.26-4.28-.592-1.124-1.527-1.608-2.91-1.514-1.195.095-2.106.639-2.863 1.75-.19.284-.201.154-.201-2.696l-.012-2.98h-1.064v6.8Zm59.143-.685c0 6.113 0 6.125.272 6.586.379.686.876.934 1.857.922 1.136 0 1.301-.07 1.301-.544v-.39l-.579.06c-.769.07-1.148-.036-1.502-.415l-.284-.307V.237h-1.065V6.35Zm-15.637-3.489-.036 1.455-.851.035-.864.036v.816h1.775v3.689c0 4.257.011 4.316.946 4.8.473.249.65.272 1.597.225 1.348-.07 1.478-.13 1.478-.615v-.378l-1.194.012c-1.16.012-1.195 0-1.479-.32l-.284-.33V5.203h2.839v-.828h-2.839V1.419h-1.053l-.035 1.442Zm-31.287 1.49c-1.395.45-2.176 1.407-2.4 2.933-.25 1.726-.084 4.162.342 5.001.13.249.462.65.734.887.697.591 1.49.828 2.767.84.9 0 1.172-.048 1.716-.308.792-.366 1.372-.934 1.703-1.643.225-.473.248-.804.284-2.779.035-2.081.023-2.306-.225-2.956-.355-.993-1.04-1.632-2.07-1.94-.946-.295-2.01-.307-2.85-.035Zm3.052 1.147c.876.615.994.993 1.03 3.37.047 2.389-.048 2.897-.675 3.547-.52.544-1.195.745-2.26.686-.97-.047-1.596-.366-2.07-1.029l-.354-.508V6.645l.355-.52c.213-.296.58-.627.887-.78.461-.237.674-.272 1.561-.237.911.035 1.077.071 1.526.39Zm6.139-1.182c-1.23.378-1.975 1.466-1.869 2.72.107 1.336.805 1.809 3.549 2.423 1.325.296 1.857.604 2.082 1.207.343.874-.142 1.809-1.16 2.258-1.052.473-2.791.225-3.796-.544l-.403-.296-.355.284-.354.296.473.414c.627.555 1.833.922 3.075.922 1.148 0 1.75-.165 2.508-.674 1.348-.899 1.632-2.873.556-3.89-.462-.426-.958-.615-2.508-.97-2.058-.46-2.626-.851-2.626-1.785 0-.674.367-1.206 1.03-1.502.78-.343 2.093-.26 2.968.19l.627.319.343-.249c.201-.142.355-.272.355-.307 0-.142-1.005-.674-1.55-.828-.804-.201-2.247-.201-2.945.012Zm10.493-.012c-.699.26-1.35.733-1.74 1.277l-.355.485V4.375h-1.064V17.5h1.064v-2.66c0-1.691.048-2.66.119-2.66.07 0 .118.082.118.176 0 .095.248.438.568.757.437.461.71.627 1.254.78 1.68.485 3.489-.295 4.175-1.797.154-.366.213-.91.249-2.826.023-1.454 0-2.554-.083-2.838-.367-1.383-1.432-2.187-2.97-2.258-.567-.024-1.052.024-1.336.13Zm1.986 1.005c.592.26 1.077.816 1.242 1.407.154.568.154 4.091-.012 4.67-.272 1.006-1.313 1.739-2.472 1.739-.828 0-1.466-.296-2.034-.922-.663-.733-.84-1.49-.78-3.382.046-1.383.082-1.608.366-2.152.331-.639.863-1.17 1.443-1.419.52-.225 1.691-.201 2.247.06Zm17.542-1.005c-1.207.32-1.987 1.182-1.987 2.2v.472h.473c.449 0 .473-.023.473-.366 0-.875.852-1.502 2.165-1.608.946-.083 1.656.118 2.188.614l.438.39.035 1.242.047 1.242-1.999.047c-1.762.036-2.058.071-2.602.32-1.526.673-2.105 2.234-1.36 3.689.402.804 1.076 1.241 2.093 1.383 1.609.201 2.91-.213 3.608-1.183l.355-.484v.414c0 .236.036.59.071.792.071.343.118.366.568.366h.485l-.059-3.866c-.06-3.713-.083-3.902-.332-4.375-.331-.627-.851-1.029-1.667-1.265-.757-.225-2.212-.237-2.993-.024Zm3.809 5.983c0 1.715-.651 2.53-2.248 2.838-1.691.32-3.087-.686-2.921-2.105.071-.662.378-1.076 1.029-1.419.473-.236.686-.26 2.33-.26h1.81v.946Zm-16.56-1.182v4.73h1.064v-9.46h-1.064v4.73Zm31.582 21.083c0 9.707-.012 9.518.745 10.511.237.32.651.639 1.088.864l.698.354h15.626l.603-.319c1.124-.591 1.822-1.715 1.822-2.956v-.568h-1.893v.414c0 .284-.106.532-.367.828-.709.804-.307.768-8.067.768h-7.026l-.402-.272a2.93 2.93 0 0 1-.662-.662c-.272-.402-.272-.425-.272-4.812v-4.422h15.377v-1.892h-15.377v-6.622h-1.893v8.785Zm46.865.224.035 9.022.272.544c.355.71.958 1.313 1.668 1.667l.544.272h15.496l.674-.33c1.1-.545 1.715-1.49 1.833-2.815l.071-.698h-1.786l-.083.39c-.118.556-.485 1.1-.946 1.384-.39.236-.485.236-7.618.213l-7.227-.036-.497-.508-.508-.497-.036-8.809-.023-8.809h-1.905l.036 9.01Zm70.237-4.694v.887h1.893V24.83h-1.893v.887ZM65.953 28.154a3.44 3.44 0 0 0-1.775 1.04c-.662.733-.828 1.218-.84 2.436-.011 1.313.284 2.081 1.077 2.779 1.029.898.733.875 9.025.946 6.872.059 7.428.07 7.724.272.627.402.793.851.793 2.08 0 1.278-.19 1.703-.958 2.13-.426.247-.592.247-7.429.247-7.676 0-7.357.024-7.984-.709-.166-.213-.343-.58-.379-.84l-.082-.46h-1.857v.449c0 1.277.757 2.518 1.857 3.062l.686.331h15.613l.604-.319a3.568 3.568 0 0 0 1.667-1.916c.308-.934.284-3.37-.059-4.114-.402-.923-.816-1.36-1.656-1.774l-.792-.39-7.476-.06-7.475-.059-.367-.354c-.793-.757-.887-1.478-.308-2.247.603-.78.532-.78 8.257-.745 6.825.036 6.943.036 7.274.284.473.355.864.97.864 1.36v.343h1.987l-.06-.509c-.189-1.773-1.123-2.944-2.637-3.263-.734-.154-14.62-.154-15.294 0Zm23.42 0c-1.526.366-2.685 1.785-2.685 3.31v.462h1.857l.071-.426c.095-.603.58-1.17 1.171-1.395.45-.178 1.29-.19 7.452-.166 6.825.036 6.943.036 7.275.284.686.508.863.934.863 2.07v1.052h-7.476c-4.66 0-7.783.047-8.256.13-1.266.2-2.117.827-2.626 1.939-.248.532-.272.768-.272 2.317 0 1.68.012 1.739.355 2.413.225.437.544.85.864 1.087.993.757.804.745 10.515.745h8.789V30.66l-.367-.72c-.39-.805-.84-1.242-1.644-1.609-.521-.248-.698-.248-7.984-.272-4.117-.012-7.654.036-7.902.095Zm16.004 9.566v2.364h-15.46l-.39-.272c-.722-.484-.887-.827-.935-1.927-.047-1.182.071-1.537.71-2.116l.461-.414h15.614v2.365Zm7.417-9.566a3.439 3.439 0 0 0-1.846 1.123c-.828.946-.839 1.029-.839 7.225v5.474h1.88l.036-5.415.035-5.428.32-.413c.627-.828.508-.816 8.28-.78 6.825.035 6.943.035 7.274.283.178.13.45.426.603.639l.261.39v10.724h1.892V30.66l-.366-.72c-.391-.805-.84-1.242-1.645-1.609-.52-.248-.698-.248-7.984-.272-4.116-.012-7.653.036-7.901.095Zm46.651.059c-.745.2-1.147.473-1.727 1.135-.449.532-.768 1.407-.768 2.128v.45h1.857l.071-.426c.094-.603.579-1.17 1.171-1.395.449-.178 1.277-.19 7.44-.166l6.931.036.426.33c.651.497.793.864.793 2.035v1.005h-7.476c-7.476 0-8.623.059-9.333.425-.591.296-1.171.887-1.502 1.514-.308.58-.319.674-.319 2.388 0 1.75.011 1.798.355 2.472.224.437.544.85.863 1.087.994.757.804.745 10.516.745h8.8l-.035-5.77c-.036-5.676-.036-5.77-.296-6.243-.426-.792-.828-1.195-1.55-1.55l-.674-.33-7.452-.024c-6.222-.024-7.558 0-8.091.154Zm16.194 9.507v2.364h-15.46l-.402-.272c-.734-.496-.935-.934-.935-2.069 0-1.135.213-1.667.864-2.128l.378-.26h15.555v2.365Zm28.175-3.997.036 5.711.272.556c.319.638 1.112 1.407 1.762 1.714.414.201.994.213 8.209.213h7.748l.698-.355c.437-.224.851-.543 1.088-.863.722-.957.745-1.135.745-7.2v-5.487l-.911.035-.922.036-.059 5.439c-.071 6.054-.036 5.794-.887 6.326-.379.236-.521.236-7.618.213l-7.227-.036-.497-.508-.509-.497-.035-5.498-.036-5.498h-1.892l.035 5.699Zm26.295-5.581c-1.206.177-2.188.958-2.614 2.081-.201.532-.225.946-.225 4.895 0 4.245 0 4.328.272 4.86.343.698.97 1.324 1.668 1.667l.544.272h7.748c7.617 0 7.759 0 8.28-.248 1.171-.544 1.857-1.537 1.975-2.873l.071-.722H245.9v.39c0 .497-.473 1.183-.993 1.431-.379.178-1.1.19-7.583.166l-7.168-.036-.532-.555-.52-.556v-3.831c0-3.784 0-3.831.272-4.233a2.93 2.93 0 0 1 .662-.663l.402-.271h7.026c7.76 0 7.358-.036 8.067.768.261.296.367.544.367.828v.414h1.893v-.45c0-1.277-.852-2.577-2.035-3.11l-.627-.283-7.215-.012c-3.963-.012-7.488.012-7.807.07Zm20.546 5.581.036 5.711.283.58a3.472 3.472 0 0 0 1.621 1.62c.473.224.816.283 1.964.319l1.395.047v-1.892l-1.147-.047c-1.266-.036-1.55-.166-2.035-.875-.248-.355-.248-.461-.248-5.759v-5.403h-1.904l.035 5.699Zm10.942-5.581c-1.609.272-2.804 1.667-2.804 3.275v.509h1.751l.071-.379c.106-.544.532-1.111 1.041-1.395.426-.236.532-.236 7.523-.213l7.085.036.426.33c.662.497.792.852.792 2.094v1.064h-7.984c-7.724 0-7.996.012-8.623.236-.828.32-1.62 1.136-1.893 1.987-.177.508-.201.934-.165 2.246.035 1.479.071 1.668.355 2.224.366.697.863 1.158 1.632 1.513.521.248.686.248 9.558.284l9.025.035-.036-5.652c-.035-5.45-.047-5.675-.284-6.184-.544-1.159-1.384-1.797-2.649-1.998-.911-.154-13.946-.154-14.821-.012Zm15.885 9.519v2.424h-15.578l-.402-.272c-.603-.39-.935-1.147-.935-2.105 0-.934.131-1.336.568-1.81.627-.673.391-.65 8.694-.661h7.653v2.424Z\" fill=\"#ADBCCE\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-spAxN.framer-1rg6vav, .framer-spAxN .framer-1rg6vav { display: block; }\",\".framer-spAxN.framer-wv1h1y { height: 42px; overflow: hidden; position: relative; width: 280px; }\",\".framer-spAxN .framer-homm1n { aspect-ratio: 6.666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqwleZaeH_=withCSS(Component,css,\"framer-spAxN\");export default FramerqwleZaeH_;FramerqwleZaeH_.displayName=\"logo_santa_lucia\";FramerqwleZaeH_.defaultProps={height:42,width:280};addFonts(FramerqwleZaeH_,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqwleZaeH_\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"280\",\"framerIntrinsicHeight\":\"42\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qwleZaeH_.map", "// Generated by Framer (c974371)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./qyT6o3Xjc-0.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"tH7CtyAM2\",\"FyU1cDNjY\",\"AYpKDirHC\",\"EEzKXjlsd\"];const serializationHash=\"framer-XitI4\";const variantClassNames={AYpKDirHC:\"framer-v-21p6ym\",EEzKXjlsd:\"framer-v-tqcpfv\",FyU1cDNjY:\"framer-v-1czjxaj\",tH7CtyAM2:\"framer-v-1uhmlpi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={hAdgU5o6D:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:2.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:750};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-750};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1e3,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1e3,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"tH7CtyAM2\",\"Variant 2\":\"FyU1cDNjY\",\"Variant 3\":\"AYpKDirHC\",\"Variant 4\":\"EEzKXjlsd\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"tH7CtyAM2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tH7CtyAM2\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearpxop9w=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"FyU1cDNjY\"),300);});const onTap30mjwq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"FyU1cDNjY\");});const onAppearlwhaes=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"AYpKDirHC\"),300);});const onAppearj26k2c=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"EEzKXjlsd\"),300);});useOnVariantChange(baseVariant,{AYpKDirHC:onAppearj26k2c,default:onAppearpxop9w,EEzKXjlsd:undefined,FyU1cDNjY:onAppearlwhaes});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"FyU1cDNjY\",\"AYpKDirHC\",\"EEzKXjlsd\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"AYpKDirHC\",\"EEzKXjlsd\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"EEzKXjlsd\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1uhmlpi\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tH7CtyAM2\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AYpKDirHC:{\"data-framer-name\":\"Variant 3\"},EEzKXjlsd:{\"data-framer-name\":\"Variant 4\",\"data-highlight\":undefined},FyU1cDNjY:{\"data-framer-name\":\"Variant 2\",onTap:onTap30mjwq}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-197vuqd\",layoutDependency:layoutDependency,layoutId:\"mz1RlqfDv\",style:{borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-euly20\",layoutDependency:layoutDependency,layoutId:\"pJypSQ1OX\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l3bu0g\",layoutDependency:layoutDependency,layoutId:\"TVSaHLkFP\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bpykck\",layoutDependency:layoutDependency,layoutId:\"Y39VcB49U\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-160t2cm\",layoutDependency:layoutDependency,layoutId:\"d2OYhepTg\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"},children:isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-3org7c\",\"data-framer-name\":\"Vertical Dash\",layoutDependency:layoutDependency,layoutId:\"seUzJQZP8\",style:{background:'linear-gradient(0deg, var(--token-a38ab44a-bad5-4e2b-8c2b-1a1ef574a7ab, rgb(126, 211, 252)) /* {\"name\":\"Light Blue\"} */ 0%, rgba(89, 133, 239, 0.3) 100%)'}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-157ifap\",layoutDependency:layoutDependency,layoutId:\"CblLrOCHK\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jeyvzb\",layoutDependency:layoutDependency,layoutId:\"lNG6VpeW4\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17um23o\",layoutDependency:layoutDependency,layoutId:\"d3dvEYal2\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"},children:isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-bxd66n\",\"data-framer-name\":\"Vertical Dash\",layoutDependency:layoutDependency,layoutId:\"NBUa0_9VZ\",style:{background:'linear-gradient(180deg, var(--token-a38ab44a-bad5-4e2b-8c2b-1a1ef574a7ab, rgb(126, 211, 252)) /* {\"name\":\"Light Blue\"} */ 0%, rgba(89, 133, 239, 0.3) 100%)'},variants:{AYpKDirHC:{background:'linear-gradient(0deg, var(--token-a38ab44a-bad5-4e2b-8c2b-1a1ef574a7ab, rgb(126, 211, 252)) /* {\"name\":\"Light Blue\"} */ 0%, rgba(89, 133, 239, 0.3) 100%)'},EEzKXjlsd:{background:'linear-gradient(0deg, var(--token-a38ab44a-bad5-4e2b-8c2b-1a1ef574a7ab, rgb(126, 211, 252)) /* {\"name\":\"Light Blue\"} */ 0%, rgba(89, 133, 239, 0.3) 100%)'}}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vr6775\",layoutDependency:layoutDependency,layoutId:\"pTQUumXkq\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tey450\",layoutDependency:layoutDependency,layoutId:\"XNp7hfnEy\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m2jo1h\",layoutDependency:layoutDependency,layoutId:\"VtGANOlaw\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bqfoxx\",\"data-framer-name\":\"Rows\",layoutDependency:layoutDependency,layoutId:\"cZjf3kF6W\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-swfyai\",layoutDependency:layoutDependency,layoutId:\"DjXtkTnG7\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i05zf8\",layoutDependency:layoutDependency,layoutId:\"jKiPwpvXi\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"},children:isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1pz40p0\",\"data-framer-name\":\"Horizontal Dash\",layoutDependency:layoutDependency,layoutId:\"fnMwyywCN\",style:{background:'linear-gradient(90deg, var(--token-a38ab44a-bad5-4e2b-8c2b-1a1ef574a7ab, rgb(126, 211, 252)) /* {\"name\":\"Light Blue\"} */ 0%, rgba(89, 133, 239, 0.3) 100%)'}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19u92ad\",layoutDependency:layoutDependency,layoutId:\"fP0wAy3iB\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a8l8oy\",layoutDependency:layoutDependency,layoutId:\"AkX1aO84n\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-12vty7s\",\"data-framer-name\":\"Horizontal Dash\",layoutDependency:layoutDependency,layoutId:\"pvG6NWhz_\",style:{background:'linear-gradient(270deg, var(--token-a38ab44a-bad5-4e2b-8c2b-1a1ef574a7ab, rgb(126, 211, 252)) /* {\"name\":\"Light Blue\"} */ 0%, rgba(89, 133, 239, 0.3) 100%)'}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hb7alv\",layoutDependency:layoutDependency,layoutId:\"nYHjecakK\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oc0hk6\",layoutDependency:layoutDependency,layoutId:\"tr_hxFTHt\",style:{backgroundColor:\"rgba(163, 163, 163, 0.05)\"}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XitI4.framer-e1qs64, .framer-XitI4 .framer-e1qs64 { display: block; }\",\".framer-XitI4.framer-1uhmlpi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1400px; }\",\".framer-XitI4 .framer-197vuqd { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-XitI4 .framer-euly20, .framer-XitI4 .framer-l3bu0g, .framer-XitI4 .framer-bpykck, .framer-XitI4 .framer-157ifap, .framer-XitI4 .framer-1jeyvzb, .framer-XitI4 .framer-1vr6775, .framer-XitI4 .framer-1tey450, .framer-XitI4 .framer-1m2jo1h { flex: none; height: 100%; overflow: hidden; position: relative; width: 2px; }\",\".framer-XitI4 .framer-160t2cm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 2px; }\",\".framer-XitI4 .framer-3org7c { flex: none; height: 100px; overflow: hidden; position: relative; width: 2px; z-index: 2; }\",\".framer-XitI4 .framer-17um23o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 250px 0px 0px 0px; position: relative; width: 2px; }\",\".framer-XitI4 .framer-bxd66n { flex: none; height: 100px; overflow: hidden; position: relative; width: 100%; z-index: 2; }\",\".framer-XitI4 .framer-1bqfoxx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-XitI4 .framer-swfyai, .framer-XitI4 .framer-19u92ad, .framer-XitI4 .framer-1hb7alv, .framer-XitI4 .framer-1oc0hk6 { flex: none; height: 2px; overflow: visible; position: relative; width: 100%; }\",\".framer-XitI4 .framer-1i05zf8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 2px; justify-content: center; overflow: visible; padding: 0px 0px 0px 600px; position: relative; width: 100%; }\",\".framer-XitI4 .framer-1pz40p0 { flex: none; height: 2px; overflow: hidden; position: relative; width: 75px; z-index: 2; }\",\".framer-XitI4 .framer-a8l8oy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 2px; justify-content: center; overflow: visible; padding: 0px 750px 0px 0px; position: relative; width: 100%; }\",\".framer-XitI4 .framer-12vty7s { flex: none; height: 2px; overflow: hidden; position: relative; width: 75px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XitI4.framer-1uhmlpi, .framer-XitI4 .framer-160t2cm, .framer-XitI4 .framer-17um23o, .framer-XitI4 .framer-1i05zf8, .framer-XitI4 .framer-a8l8oy { gap: 0px; } .framer-XitI4.framer-1uhmlpi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XitI4.framer-1uhmlpi > :first-child, .framer-XitI4 .framer-160t2cm > :first-child, .framer-XitI4 .framer-17um23o > :first-child { margin-top: 0px; } .framer-XitI4.framer-1uhmlpi > :last-child, .framer-XitI4 .framer-160t2cm > :last-child, .framer-XitI4 .framer-17um23o > :last-child { margin-bottom: 0px; } .framer-XitI4 .framer-160t2cm > *, .framer-XitI4 .framer-17um23o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XitI4 .framer-1i05zf8 > *, .framer-XitI4 .framer-a8l8oy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XitI4 .framer-1i05zf8 > :first-child, .framer-XitI4 .framer-a8l8oy > :first-child { margin-left: 0px; } .framer-XitI4 .framer-1i05zf8 > :last-child, .framer-XitI4 .framer-a8l8oy > :last-child { margin-right: 0px; } }\",\".framer-XitI4.framer-v-1czjxaj.framer-1uhmlpi { cursor: pointer; }\",\".framer-XitI4.framer-v-1czjxaj .framer-3org7c, .framer-XitI4.framer-v-21p6ym .framer-3org7c, .framer-XitI4.framer-v-21p6ym .framer-bxd66n, .framer-XitI4.framer-v-tqcpfv .framer-3org7c, .framer-XitI4.framer-v-tqcpfv .framer-bxd66n { height: 75px; }\",\".framer-XitI4.framer-v-1czjxaj .framer-1i05zf8 { padding: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"FyU1cDNjY\":{\"layout\":[\"fixed\",\"fixed\"]},\"AYpKDirHC\":{\"layout\":[\"fixed\",\"fixed\"]},\"EEzKXjlsd\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqyT6o3Xjc=withCSS(Component,css,\"framer-XitI4\");export default FramerqyT6o3Xjc;FramerqyT6o3Xjc.displayName=\"Grid\";FramerqyT6o3Xjc.defaultProps={height:800,width:1400};addPropertyControls(FramerqyT6o3Xjc,{variant:{options:[\"tH7CtyAM2\",\"FyU1cDNjY\",\"AYpKDirHC\",\"EEzKXjlsd\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerqyT6o3Xjc,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqyT6o3Xjc\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FyU1cDNjY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AYpKDirHC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EEzKXjlsd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1400\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"800\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qyT6o3Xjc.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-cj7Qq\";const variantClassNames={r8_k51nYd:\"framer-v-19ltdlu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"r8_k51nYd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-19ltdlu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"r8_k51nYd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b4jgzi\",\"data-framer-name\":\"Logo-anahh invisual\",fill:\"black\",intrinsicHeight:46,intrinsicWidth:154,layoutDependency:layoutDependency,layoutId:\"CAG1ibMzx\",svg:'<svg width=\"154\" height=\"46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M50.292 32.949c0-3.84 2.803-5.76 8.402-5.76 1.315 0 2.63.121 3.946.372v-1.453c0-1.73-1.246-2.594-3.738-2.594-2.112 0-4.456.311-7.035.925v-3.866c2.579-.614 4.923-.916 7.035-.916 5.745 0 8.618 2.127 8.618 6.373v12.964h-2.838l-1.73-1.73c-1.688 1.15-3.54 1.73-5.564 1.73-4.734-.018-7.096-2.024-7.096-6.045Zm8.402-2.448c-2.345 0-3.522.796-3.522 2.396 0 1.72.987 2.577 2.951 2.577 1.618 0 3.124-.502 4.517-1.514v-3.087a19.784 19.784 0 0 0-3.946-.372Zm12.902 8.476V19.64h3.781l.606 2.836c1.852-1.894 3.972-2.836 6.343-2.836 4.577 0 6.87 2.378 6.87 7.143v12.194h-4.88V26.782c0-2.136-1.065-3.2-3.185-3.2-1.583 0-3.132.632-4.646 1.894v13.5h-4.89Zm20.75-6.028c0-3.84 2.803-5.76 8.402-5.76 1.315 0 2.631.121 3.946.372v-1.453c0-1.73-1.246-2.594-3.738-2.594-2.112 0-4.457.311-7.035.925v-3.866c2.578-.614 4.923-.916 7.035-.916 5.745 0 8.618 2.127 8.618 6.373v12.964h-2.838l-1.731-1.73c-1.687 1.15-3.539 1.73-5.564 1.73-4.724-.018-7.095-2.024-7.095-6.045Zm8.402-2.448c-2.345 0-3.522.796-3.522 2.396 0 1.72.987 2.577 2.951 2.577 1.618 0 3.124-.502 4.517-1.514v-3.087a19.784 19.784 0 0 0-3.946-.372Zm12.911 8.475V12.643h4.88v9.47c1.523-1.643 3.47-2.465 5.841-2.465 4.577 0 6.87 2.378 6.87 7.143v12.194h-4.88V26.79c0-2.136-1.064-3.2-3.184-3.2-1.584 0-3.133.632-4.647 1.894v13.5h-4.88v-.009Zm21.676-18.541c2.57-.527 5.278-.795 8.142-.795 6.577 0 9.856 3.061 9.856 9.192 0 6.763-3.054 10.145-9.172 10.145-1.298 0-2.613-.303-3.946-.926v7.922h-4.88V20.435Zm4.88 13.491a8.061 8.061 0 0 0 3.928.994c2.908 0 4.37-2.04 4.37-6.13 0-3.477-1.609-5.215-4.828-5.215-1.393 0-2.544.086-3.461.259v10.092h-.009ZM35.746 0H.121s22.464 12.85 39 38.976V3.373A3.372 3.372 0 0 0 35.746 0Z\" fill=\"#ADBCCE\"/><path d=\"M39.086 3.252c0-.225-.026-.441-.07-.649a4.236 4.236 0 0 0-.112-.372c-.017-.052-.026-.112-.052-.164A3.358 3.358 0 0 0 35.746 0H21.589a126.982 126.982 0 0 1 17.48 38.89c.008.008.017.026.026.034V3.252h-.009Z\" fill=\"#C1CDDB\"/><path d=\"M3.704 38.976h20.758v-.069c0-13.5-10.954-24.447-24.462-24.447v20.815a3.701 3.701 0 0 0 3.704 3.701Z\" fill=\"#ADBCCE\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h153.333v46H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cj7Qq.framer-19rykzo, .framer-cj7Qq .framer-19rykzo { display: block; }\",\".framer-cj7Qq.framer-19ltdlu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-cj7Qq .framer-b4jgzi { aspect-ratio: 3.347826086956522 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 100px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cj7Qq.framer-19ltdlu { gap: 0px; } .framer-cj7Qq.framer-19ltdlu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cj7Qq.framer-19ltdlu > :first-child { margin-left: 0px; } .framer-cj7Qq.framer-19ltdlu > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwNq4fuqkw=withCSS(Component,css,\"framer-cj7Qq\");export default FramerwNq4fuqkw;FramerwNq4fuqkw.displayName=\"Anahh\";FramerwNq4fuqkw.defaultProps={height:30,width:100};addFonts(FramerwNq4fuqkw,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwNq4fuqkw\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"100\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wNq4fuqkw.map", "// Generated by Framer (48da836)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-500\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-TrY1O .framer-styles-preset-15lgses:not(.rich-text-wrapper), .framer-TrY1O .framer-styles-preset-15lgses.rich-text-wrapper h5 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -1px; --framer-line-height: 130%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, #ecf1f7); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; }','@media (max-width: 1279px) and (min-width: 992px) { .framer-TrY1O .framer-styles-preset-15lgses:not(.rich-text-wrapper), .framer-TrY1O .framer-styles-preset-15lgses.rich-text-wrapper h5 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -1px; --framer-line-height: 130%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, #ecf1f7); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }','@media (max-width: 991px) and (min-width: 576px) { .framer-TrY1O .framer-styles-preset-15lgses:not(.rich-text-wrapper), .framer-TrY1O .framer-styles-preset-15lgses.rich-text-wrapper h5 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -1px; --framer-line-height: 130%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, #ecf1f7); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }','@media (max-width: 575px) and (min-width: 0px) { .framer-TrY1O .framer-styles-preset-15lgses:not(.rich-text-wrapper), .framer-TrY1O .framer-styles-preset-15lgses.rich-text-wrapper h5 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -1px; --framer-line-height: 130%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, #ecf1f7); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }'];export const className=\"framer-TrY1O\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c105afa)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={hAdgU5o6D:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js\";import Grain from\"https://framerusercontent.com/modules/cKGD16u2MGB7MfqfVXFp/wiztTCbXokZrMicHAmZc/Grain.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Avatar from\"#framer/local/canvasComponent/aL1M4pcFt/aL1M4pcFt.js\";import Logo_mayo_clinic from\"#framer/local/canvasComponent/BNviWGSsQ/BNviWGSsQ.js\";import OpenAI from\"#framer/local/canvasComponent/BYfjwEyLq/BYfjwEyLq.js\";import BlogModuleDefault from\"#framer/local/canvasComponent/C3bHI6RiV/C3bHI6RiV.js\";import H2Header from\"#framer/local/canvasComponent/HOp6VgeBe/HOp6VgeBe.js\";import Logo_aws from\"#framer/local/canvasComponent/ijRSA4aUc/ijRSA4aUc.js\";import CardPartner from\"#framer/local/canvasComponent/IpCe_IZOm/IpCe_IZOm.js\";import Loog_grupo_vertical from\"#framer/local/canvasComponent/mXlQRfqAO/mXlQRfqAO.js\";import Logo_google from\"#framer/local/canvasComponent/np9TfPJSQ/np9TfPJSQ.js\";import Logo_santa_lucia from\"#framer/local/canvasComponent/qwleZaeH_/qwleZaeH_.js\";import Grid from\"#framer/local/canvasComponent/qyT6o3Xjc/qyT6o3Xjc.js\";import Footer from\"#framer/local/canvasComponent/qZ_XI3P7P/qZ_XI3P7P.js\";import NavigationBar from\"#framer/local/canvasComponent/SGgu1LoLH/SGgu1LoLH.js\";import Badge from\"#framer/local/canvasComponent/SXR9yB_tn/SXR9yB_tn.js\";import Anahh from\"#framer/local/canvasComponent/wNq4fuqkw/wNq4fuqkw.js\";import GradientMenu from\"#framer/local/canvasComponent/XS7J_ddFJ/XS7J_ddFJ.js\";import Buttons from\"#framer/local/canvasComponent/yORaTwldW/yORaTwldW.js\";import Blog from\"#framer/local/collection/CWvRL2Z7h/CWvRL2Z7h.js\";import*as sharedStyle from\"#framer/local/css/bocXxd6oj/bocXxd6oj.js\";import*as sharedStyle4 from\"#framer/local/css/fITxrTobQ/fITxrTobQ.js\";import*as sharedStyle8 from\"#framer/local/css/MOhTEatyY/MOhTEatyY.js\";import*as sharedStyle2 from\"#framer/local/css/ogKgB8x6f/ogKgB8x6f.js\";import*as sharedStyle5 from\"#framer/local/css/qmT0OFPbX/qmT0OFPbX.js\";import*as sharedStyle3 from\"#framer/local/css/rHs4MAikW/rHs4MAikW.js\";import*as sharedStyle6 from\"#framer/local/css/tjQcKJwyy/tjQcKJwyy.js\";import*as sharedStyle1 from\"#framer/local/css/W5729J3pQ/W5729J3pQ.js\";import*as sharedStyle7 from\"#framer/local/css/waIKCrlqu/waIKCrlqu.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const GrainFonts=getFonts(Grain);const NavigationBarFonts=getFonts(NavigationBar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const GradientMenuFonts=getFonts(GradientMenu);const GridFonts=getFonts(Grid);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonsFonts=getFonts(Buttons);const AvatarFonts=getFonts(Avatar);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const OpenAIFonts=getFonts(OpenAI);const Loog_grupo_verticalFonts=getFonts(Loog_grupo_vertical);const Logo_santa_luciaFonts=getFonts(Logo_santa_lucia);const Logo_awsFonts=getFonts(Logo_aws);const Logo_googleFonts=getFonts(Logo_google);const Logo_mayo_clinicFonts=getFonts(Logo_mayo_clinic);const AnahhFonts=getFonts(Anahh);const TickerFonts=getFonts(Ticker);const YouTubeFonts=getFonts(YouTube);const MotionSectionWithFX=withFX(motion.section);const H2HeaderFonts=getFonts(H2Header);const PhosphorFonts=getFonts(Phosphor);const BadgeFonts=getFonts(Badge);const Ticker1Fonts=getFonts(Ticker1);const CardPartnerFonts=getFonts(CardPartner);const HeroFonts=getFonts(Hero);const MotionDivWithFX=withFX(motion.div);const BlogModuleDefaultFonts=getFonts(BlogModuleDefault);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={J3uB7PlJN:\"(max-width: 575px)\",PqpaQgc5e:\"(min-width: 992px) and (max-width: 1279px)\",WpCIbgkLd:\"(min-width: 576px) and (max-width: 991px)\",WQLkyLRf1:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8LeP3\";const variantClassNames={J3uB7PlJN:\"framer-v-ujtbii\",PqpaQgc5e:\"framer-v-1uu7l1z\",WpCIbgkLd:\"framer-v-qqyzon\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-50};const transition2={damping:30,delay:.2,mass:1,stiffness:300,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.2,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:-10,scale:1,skewX:0,skewY:0,transition:transition6};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition7={damping:30,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition8={damping:20,delay:.2,mass:1,stiffness:150,type:\"spring\"};const transition9={damping:20,delay:.4,mass:1,stiffness:150,type:\"spring\"};const transition10={damping:20,delay:.6,mass:1,stiffness:150,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition11={damping:40,delay:.2,mass:1,stiffness:200,type:\"spring\"};const transition12={damping:40,delay:.1,mass:1,stiffness:200,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition13={damping:30,delay:0,mass:1,stiffness:140,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop L\":\"WQLkyLRf1\",Desktop:\"PqpaQgc5e\",Phone:\"J3uB7PlJN\",Tablet:\"WpCIbgkLd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,wR752i2OMb9HQ5d1Qd,TKjCrGQqib9HQ5d1Qd,ZVhKDtWyEb9HQ5d1Qd,zgMbIQQN4b9HQ5d1Qd,Lx_TFXkL0b9HQ5d1Qd,idb9HQ5d1Qd,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"jv_QmIFgl\");const ref1=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"z1iKI5fcO\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"jPDtQpr9T\");const ref3=React.useRef(null);usePreloadLocalizedValues(activeLocale);const elementId3=useRouteElementId(\"fZdaNaiDu\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"SmoawOunl\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"S7B7vvAvq\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"YS7mhwaJ6\");const ref7=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"J3uB7PlJN\",\"WpCIbgkLd\"].includes(baseVariant))return false;return true;};const elementId7=useRouteElementId(\"SdJnzaJMc\");const ref8=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"J3uB7PlJN\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-328d526d-52b3-499c-854f-6f2f938de898, rgb(13, 13, 13)); } @media (min-width: 992px) and (max-width: 1279px) { html body { background: var(--token-f397b3cb-d77d-48f0-aeb9-53d767c5b5d2, rgb(17, 22, 33)) } }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ltktk-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"ygrvHA9xa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Grain,{height:\"100%\",id:\"ygrvHA9xa\",layoutId:\"ygrvHA9xa\",opacity:.05,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:32},WpCIbgkLd:{y:32}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:48,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-a4ey5c-container\",\"data-framer-appear-id\":\"a4ey5c\",initial:animation1,layoutScroll:true,nodeId:\"i_QgWbjef\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"bPecfmkb2\"},PqpaQgc5e:{variant:\"omUZHBCmg\"},WpCIbgkLd:{variant:\"bPecfmkb2\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"i_QgWbjef\",layoutId:\"i_QgWbjef\",style:{width:\"100%\"},variant:\"fGghqjeqe\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lxcy0b-container\",layoutScroll:true,nodeId:\"dZSZpsxPS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"Laug60Ib3\"},PqpaQgc5e:{variant:\"MvTyEEEmR\"},WpCIbgkLd:{variant:\"G5PgahSE2\"}},children:/*#__PURE__*/_jsx(GradientMenu,{height:\"100%\",id:\"dZSZpsxPS\",layoutId:\"dZSZpsxPS\",style:{height:\"100%\",width:\"100%\"},variant:\"xK2DFU4MN\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1yp8xwc\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{height:712.1,width:`calc(${componentViewport?.width||\"100vw\"} * 2)`,y:(componentViewport?.y||0)+0+0+0},PqpaQgc5e:{height:788.1},WpCIbgkLd:{height:732.1,width:`calc(${componentViewport?.width||\"100vw\"} * 2)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:797.1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+-12,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zwwzqu-container\",nodeId:\"BtBSLnNwU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Grid,{height:\"100%\",id:\"BtBSLnNwU\",layoutId:\"BtBSLnNwU\",style:{height:\"100%\",width:\"100%\"},variant:\"tH7CtyAM2\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9o2owm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":fZdaNaiDu\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"ZGN46nMAz\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation2,className:\"framer-psoogj framer-lux5qc\",\"data-border\":true,\"data-framer-appear-id\":\"psoogj\",\"data-framer-name\":\"New\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gdfu8x\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"Novo\"})}),className:\"framer-902rk0\",\"data-framer-name\":\"Text\",fonts:[\"GF;Be Vietnam Pro-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4jdy0o\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.14px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4d3ccf88-7e92-4da8-96fa-0f99ae8759b8, rgb(249, 250, 251))\"},children:\"Command Center Cl\\xednico\"})}),className:\"framer-j9rgpq\",\"data-framer-name\":\"Message\",fonts:[\"GF;Be Vietnam Pro-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16eajvu\",\"data-framer-name\":\"arrow-right\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 3.333 8 L 12.667 8 M 12.667 8 L 8 3.333 M 12.667 8 L 8 12.667\" fill=\"transparent\" stroke-width=\"1.3333\" stroke=\"var(--token-4d3ccf88-7e92-4da8-96fa-0f99ae8759b8, rgb(249, 250, 251))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11615101466,withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1l15rv8\",\"data-styles-preset\":\"bocXxd6oj\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Desenvolvemos Inova\\xe7\\xe3o e Tecnologia em Sa\\xfade\"})}),className:\"framer-vornxl\",\"data-framer-appear-id\":\"vornxl\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{animate:animation6}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Constru\\xedmos o futuro da medicina hoje, atrav\\xe9s de dados precisos e inova\\xe7\\xf5es tecnol\\xf3gicas\"})}),className:\"framer-u9emc7\",\"data-framer-appear-id\":\"u9emc7\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+0+130+0+0+305.1},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+160+0+0+305.1},WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+130+0+0+305.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:\"350px\",y:(componentViewport?.y||0)+0+0+180+0+0+305.1,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1sbmn16-container\",\"data-framer-appear-id\":\"1sbmn16\",initial:animation4,nodeId:\"hrdZ8lXje\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{vjZWklrqI:resolvedLinks[2]},PqpaQgc5e:{vjZWklrqI:resolvedLinks[1]},WpCIbgkLd:{vjZWklrqI:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"hrdZ8lXje\",layoutId:\"hrdZ8lXje\",style:{maxWidth:\"100%\"},variant:\"mQ3MdL6TJ\",vjZWklrqI:resolvedLinks[0],width:\"100%\",xEfGs_njT:\"Fale com um especialista\"})})})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1yt86wi\",\"data-framer-appear-id\":\"1yt86wi\",\"data-framer-name\":\"Social Trust\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u1w5f8\",\"data-framer-name\":\"Stacked Avatars\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+0+130+0+0+378.1+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+160+0+0+378.1+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+130+0+0+378.1+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25.2px\",y:(componentViewport?.y||0)+0+0+180+0+0+378.1+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e3ehre-container\",nodeId:\"aEiuqGpXR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"aEiuqGpXR\",layoutId:\"aEiuqGpXR\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/POLruGzQKVRpPhOJPT6rBtVFo.png\",srcSet:\"https://framerusercontent.com/images/POLruGzQKVRpPhOJPT6rBtVFo.png?scale-down-to=512 512w,https://framerusercontent.com/images/POLruGzQKVRpPhOJPT6rBtVFo.png 1000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+0+130+0+0+378.1+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+160+0+0+378.1+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+130+0+0+378.1+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",y:(componentViewport?.y||0)+0+0+180+0+0+378.1+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-38qvku-container\",nodeId:\"hCOJepZ1f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"hCOJepZ1f\",layoutId:\"hCOJepZ1f\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg\",srcSet:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg 6220w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+0+130+0+0+378.1+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+160+0+0+378.1+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+130+0+0+378.1+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",y:(componentViewport?.y||0)+0+0+180+0+0+378.1+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ucnd8i-container\",nodeId:\"IfK7zrems\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"IfK7zrems\",layoutId:\"IfK7zrems\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg\",srcSet:\"https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg 3648w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+0+130+0+0+378.1+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+160+0+0+378.1+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+130+0+0+378.1+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",y:(componentViewport?.y||0)+0+0+180+0+0+378.1+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9a9af9-container\",nodeId:\"fox3PiEcJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"fox3PiEcJ\",layoutId:\"fox3PiEcJ\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg\",srcSet:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg 3840w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:\"Mais de 4 Milh\\xf5es\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:\"de vidas impactadas\"})]}),className:\"framer-18v5tzb\",\"data-framer-name\":\"Title\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dn1zvx\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qwlekz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qYkbSEAiC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:30,padding:32,paddingBottom:32,paddingLeft:32,paddingRight:32,paddingTop:32},PqpaQgc5e:{gap:60}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:.5,id:\"qYkbSEAiC\",layoutId:\"qYkbSEAiC\",padding:64,paddingBottom:64,paddingLeft:64,paddingPerSide:false,paddingRight:64,paddingTop:64,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"114px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bcwbrm-container\",inComponentSlot:true,nodeId:\"azpH2nALU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OpenAI,{height:\"100%\",id:\"azpH2nALU\",layoutId:\"azpH2nALU\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"121px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vyv74p-container\",inComponentSlot:true,nodeId:\"y9R9InNVo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Loog_grupo_vertical,{height:\"100%\",id:\"y9R9InNVo\",layoutId:\"y9R9InNVo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"187px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1li34yc-container\",inComponentSlot:true,nodeId:\"PdU6OHSC0\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo_santa_lucia,{height:\"100%\",id:\"PdU6OHSC0\",layoutId:\"PdU6OHSC0\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"47px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16lz9qr-container\",inComponentSlot:true,nodeId:\"FYDqUtzEd\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo_aws,{height:\"100%\",id:\"FYDqUtzEd\",layoutId:\"FYDqUtzEd\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"85px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-chij0c-container\",inComponentSlot:true,nodeId:\"iyB9Az9Y4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo_google,{height:\"100%\",id:\"iyB9Az9Y4\",layoutId:\"iyB9Az9Y4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"158px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11n5na9-container\",inComponentSlot:true,nodeId:\"MQ8bobA3D\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo_mayo_clinic,{height:\"100%\",id:\"MQ8bobA3D\",layoutId:\"MQ8bobA3D\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"107px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12iiqdv-container\",inComponentSlot:true,nodeId:\"HK4jAE4HQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Anahh,{height:\"100%\",id:\"HK4jAE4HQ\",layoutId:\"HK4jAE4HQ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tu23w1\",\"data-framer-name\":\"Introduction\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ktf0t\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-dgcz8a\",\"data-border\":true,\"data-framer-appear-id\":\"dgcz8a\",\"data-framer-name\":\"Content\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15c3mvt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PhIvrDMKO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{height:\"100%\",width:\"100%\"}},PqpaQgc5e:{style:{height:\"100%\",width:\"100%\"}},WpCIbgkLd:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"PhIvrDMKO\",isMixedBorderRadius:false,isRed:false,layoutId:\"PhIvrDMKO\",play:\"On\",shouldMute:true,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://youtu.be/IErNgdnvL5s?si=C6jy8ZVkVF3f5xfU\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-2c3ua9\",\"data-styles-preset\":\"ogKgB8x6f\",style:{\"--framer-text-alignment\":\"center\"},children:[\"H\\xe1 +10 anos a Invisual tem sido \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228))\"},children:\"desenvolvedora de solu\\xe7\\xf5es de gest\\xe3o de sa\\xfade\"}),\". Oferece inova\\xe7\\xe3o e efici\\xeancia para redes hospitalares em todo o pa\\xeds \uD83C\uDDE7\uD83C\uDDF7\"]})}),className:\"framer-w717m0\",\"data-framer-name\":\"We know what\u2019s going on. You need top-notch design to stand out in the tech world, but hiring in-house designers can be costly and time-consuming. That\u2019s when it comes in.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pbhwt4\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Estabelecida com a meta de desenvolver um projeto para gerir a cadeia de suprimentos no principal conglomerado hospitalar do centro-oeste, a companhia logo se sobressaiu devido \\xe0 sua estrat\\xe9gia\"})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Estabelecida com a meta de desenvolver um projeto para gerir a cadeia de suprimentos no principal conglomerado hospitalar do centro-oeste, a companhia logo se sobressaiu devido \\xe0 sua estrat\\xe9gia\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Estabelecida com a meta de desenvolver um projeto para gerir a cadeia de suprimentos no principal conglomerado hospitalar do centro-oeste, a companhia logo se sobressaiu devido \\xe0 sua estrat\\xe9gia\"})}),className:\"framer-1fos7i4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hzuh33\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"shuXL7Ost\"},implicitPathVariables:undefined},{href:{webPageId:\"shuXL7Ost\"},implicitPathVariables:undefined},{href:{webPageId:\"shuXL7Ost\"},implicitPathVariables:undefined},{href:{webPageId:\"shuXL7Ost\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+712.1+12+0+0+0+12+265.8+16+107+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+788.1+32+0+0+32+526.8+37+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+732.1+20+0+0+0+16+415.8+16+107+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+797.1+32+0+0+32+526.8+37+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pju92b-container\",nodeId:\"hh22BpO6Y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{vjZWklrqI:resolvedLinks1[2]},PqpaQgc5e:{vjZWklrqI:resolvedLinks1[1]},WpCIbgkLd:{vjZWklrqI:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowRight\",height:\"100%\",id:\"hh22BpO6Y\",layoutId:\"hh22BpO6Y\",variant:\"oOTmTZ2ir\",vjZWklrqI:resolvedLinks1[0],width:\"100%\",xEfGs_njT:\"Saiba mais\"})})})})})})})]})]})})}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n33gnf\",\"data-framer-name\":\"Features\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wnb9ju\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1209.9+20+0+0+0},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+1549.9+60+0+0+0},WpCIbgkLd:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1399.9+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:(componentViewport?.y||0)+0+1558.9+60+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14t4mkk-container\",nodeId:\"kuzSruFpL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"}},PqpaQgc5e:{style:{width:\"100%\"}},WpCIbgkLd:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(H2Header,{bx4ndZ6RL:\"Nossas Solu\\xe7\\xf5es\",height:\"100%\",id:\"kuzSruFpL\",layoutId:\"kuzSruFpL\",width:\"100%\",wQdEXzeKw:\"Command Center Insightcare\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15lgses\",\"data-styles-preset\":\"fITxrTobQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},children:\"Um novo conceito de acompanhamento da opera\\xe7\\xe3o hospitalar e da assist\\xeancia ao paciente\"})}),className:\"framer-altd2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15wi40v\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zm17zk\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r1ieh3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12xu7sf\",\"data-framer-name\":\"Group_2629\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"80\" height=\"80\" rx=\"40\" fill=\"#0D53A5\"/><path d=\"M36.909 64.62c0 1.315 1.483 2.38 3.313 2.38s3.313-1.065 3.313-2.38H36.91Zm9.963-8.656H33.57v-1.295h13.302v1.295Zm0 3.258H33.57v-1.295h13.302v1.295Zm0 3.261H33.57v-1.295h13.302v1.295Zm-2.38-12.637-4.814-5.504.583-.51 4.814 5.504-.583.51Z\" fill=\"#fff\"/><path d=\"m35.44 50.459-.608-.48 4.832-6.133.609.479-4.833 6.134Zm9.72-.775-.751-.188 2.582-10.354.751.187-2.582 10.355Zm-11.18-7.142-.74-.226 2.17-7.095.74.226-2.17 7.095Z\" fill=\"#fff\"/><path d=\"m40.181 44.408-.425-.648 7.398-4.85.424.647-7.397 4.85Z\" fill=\"#fff\"/><path d=\"M47.042 39.443 40.23 28.917l.65-.42 6.812 10.526-.65.42Z\" fill=\"#fff\"/><path d=\"m48.944 29.26-8.397-.164.016-.774 8.396.163-.015.774Z\" fill=\"#fff\"/><path d=\"m36.095 35.56-.629-.453 4.774-6.624.628.453-4.773 6.624Z\" fill=\"#fff\"/><path d=\"m40.41 29.067-7.638-3.094.29-.717 7.638 3.093-.29.718Zm13.252 3.253-4.918-3.123.414-.653 4.919 3.124-.415.653Z\" fill=\"#fff\"/><path d=\"M53.485 32.042 52.239 21.5l.769-.091 1.246 10.54-.77.092Z\" fill=\"#fff\"/><path d=\"m52.58 21.839-8.72-.983.087-.77 8.72.984-.087.769Z\" fill=\"#fff\"/><path d=\"m44.272 20.596-.733-.252 2.278-6.623.732.252-2.277 6.623Z\" fill=\"#fff\"/><path d=\"m46.123 14.23-7.712-1.19.118-.765 7.711 1.19-.117.765Z\" fill=\"#fff\"/><path d=\"m36.858 19.67-.744-.214 1.984-6.904.744.214-1.984 6.903Z\" fill=\"#fff\"/><path d=\"m36.28 19.888-6.067-3.813.413-.655 6.066 3.813-.412.655Zm-8.19 12.951-.624-.458 5.139-6.995.623.458-5.138 6.995Zm12.663-3.799-.398-.664 12.07-7.254.398.663-12.07 7.254Z\" fill=\"#fff\"/><path d=\"m40.2 28.864-4.068-9.147.707-.314 4.069 9.147-.707.314Zm-6.922 13.76-5.832-9.818.665-.395 5.832 9.818-.665.395Zm-6.668-19.68-.666-.393 4.142-7.001.667.394-4.143 7Zm20.633 16.659L35.658 35.7l.246-.733 11.586 3.901-.247.734Zm5.087-17.898-6.443-7.607.59-.5 6.442 7.607-.59.5Z\" fill=\"#fff\"/><path d=\"m26.393 23.117-.23-.739 10.208-3.187.23.738-10.208 3.188Zm24.875 16.118a3.902 3.902 0 1 0-7.803 0 3.902 3.902 0 0 0 7.803 0ZM44.455 28.71a3.902 3.902 0 1 0-7.803 0 3.902 3.902 0 0 0 7.803 0Zm-13.362 3.898a3.315 3.315 0 1 0-6.63 0 3.315 3.315 0 0 0 6.63 0Z\" fill=\"#fff\"/><path d=\"M39.068 19.562a2.583 2.583 0 1 0-5.165 0 2.583 2.583 0 0 0 5.165 0Zm8.299 30.028a2.583 2.583 0 1 0-5.165 0 2.583 2.583 0 0 0 5.165 0Zm8.988-28.135a3.73 3.73 0 1 0-7.46 0 3.73 3.73 0 0 0 7.46 0Zm-10.172-.985a2.277 2.277 0 1 0-4.555 0 2.277 2.277 0 0 0 4.555 0Zm9.963 11.524a2.277 2.277 0 1 0-4.554 0 2.277 2.277 0 0 0 4.554 0Zm-18.087 3.34a2.277 2.277 0 1 0-4.555 0 2.277 2.277 0 0 0 4.555 0Zm-2.172 7.093a2.277 2.277 0 1 0-4.554 0 2.277 2.277 0 0 0 4.554 0Zm-3.81-26.679a1.658 1.658 0 1 0-3.316 0 1.658 1.658 0 0 0 3.316 0Zm15.763-1.901a1.658 1.658 0 1 0-3.315 0 1.658 1.658 0 0 0 3.315 0ZM34.574 25.614a1.658 1.658 0 1 0-3.315 0 1.658 1.658 0 0 0 3.315 0Zm16.036 3.258a1.658 1.658 0 1 0-3.316 0 1.658 1.658 0 0 0 3.315 0ZM36.794 50.221a1.657 1.657 0 1 0-3.314 0 1.657 1.657 0 0 0 3.315 0Zm4.833-6.136a1.658 1.658 0 1 0-3.315 0 1.658 1.658 0 0 0 3.315 0ZM28.555 22.747a2.277 2.277 0 1 0-4.555 0 2.277 2.277 0 0 0 4.555 0Zm11.573-10.089a1.658 1.658 0 1 0-3.315 0 1.658 1.658 0 0 0 3.315 0Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1se8866\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14z3dgu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",style:{\"--framer-text-color\":\"rgb(31, 114, 209)\"},children:\"InsightCare\"})}),className:\"framer-1fzlusq\",\"data-framer-name\":\"Tell us your vision\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",children:\"Plataforma de gest\\xe3o hospitalar completa e inteligente\"})}),className:\"framer-i8hyit\",\"data-framer-name\":\"Choose a plan and share your design project details with us: we\u2019re here to listen.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j3vhvk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tegpp8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3daol3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Pfx9rGGkX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(31, 114, 209)\",height:\"100%\",iconSearch:\"firstaid\",iconSelection:\"House\",id:\"Pfx9rGGkX\",layoutId:\"Pfx9rGGkX\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Prontu\\xe1rio eletr\\xf4nico multiplataforma em tempo real\"})}),className:\"framer-79ekq9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8liyf9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yye7hi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WBwD7KnKN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(31, 114, 209)\",height:\"100%\",iconSearch:\"users\",iconSelection:\"House\",id:\"WBwD7KnKN\",layoutId:\"WBwD7KnKN\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Gest\\xe3o de atendimento completa e facilitada\"})}),className:\"framer-1qcjhvh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7lm337\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vu5y5p-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"H7Y42vWYd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(31, 114, 209)\",height:\"100%\",iconSearch:\"mobile\",iconSelection:\"House\",id:\"H7Y42vWYd\",layoutId:\"H7Y42vWYd\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"App do paciente para acompanhar todas as movimenta\\xe7\\xf5es hospitalares\"})}),className:\"framer-18ct7yt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ke5x26\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iw9uk7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pig1qm\",\"data-framer-name\":\"Group_2628\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"80\" height=\"80\" rx=\"40\" fill=\"#A24098\"/><path d=\"m35.237 63.246.914-9.44s8.221 12.181 20.704 10.05c0 0-18.574-13.4-19.487-20.402-.914-7.004.913-7.308-.914-7.004-1.828.306-3.35.915-3.045 2.741 0 0-10.352-13.398-10.657-24.969 0 0-3.653 7.003 8.222 32.886 0 0 .305 2.74-.914 4.263-1.217 1.523-2.435 3.349-1.826 5.177.609 1.826 3.654 6.394 7.003 6.698Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z9rt5t\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10epycn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",style:{\"--framer-text-color\":\"rgb(184, 59, 171)\"},children:\"Sadeno\"})}),className:\"framer-nxucya\",\"data-framer-name\":\"Tell us your vision\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",children:\"Sistema gest\\xe3o de suprimentos hospitalar inteligente\"})}),className:\"framer-1jyt0fg\",\"data-framer-name\":\"Choose a plan and share your design project details with us: we\u2019re here to listen.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1beo4im\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nusu78\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dw0d8n-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iexY1G6rh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(184, 59, 171)\",height:\"100%\",iconSearch:\"firstaidkit\",iconSelection:\"House\",id:\"iexY1G6rh\",layoutId:\"iexY1G6rh\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Planejamento, reposi\\xe7\\xe3o e gest\\xe3o da cadeia de suprimentos\"})}),className:\"framer-iby6f5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1976cza\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1957usd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"X1QhvFOsj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(184, 59, 171)\",height:\"100%\",iconSearch:\"clock\",iconSelection:\"House\",id:\"X1QhvFOsj\",layoutId:\"X1QhvFOsj\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Monitoramento em tempo real\"})}),className:\"framer-94cfob\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ic7y8x\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ldz1y6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"D20Xplo9a\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(184, 59, 171)\",height:\"100%\",iconSearch:\"warning\",iconSelection:\"House\",id:\"D20Xplo9a\",layoutId:\"D20Xplo9a\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Alerta de estoque inteligente, antes de acabar, vencer, e de encarecer\"})}),className:\"framer-15v0g3i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c249vj\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bc37rm\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10imbhk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1d0g60c\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"40\" cy=\"40\" r=\"40\" fill=\"#09A27B\"/><path d=\"M64.314 51.825c-.466 0-.771.14-1.145.14-2.521 0-3.574-2.2-3.574-7.66 0-5.96-3.303-9.888-8.223-9.888-1.99 0-5.232.555-7.27 4.306-1.203-2.732-3.38-4.306-6.806-4.306-1.713 0-5.297.694-6.732 3.704 0 0-.065-.545-.065-1.065V31.32c0-5.399-3.967-9.321-8.408-9.321-2.317 0-4.883.936-6.64 1.96-.954.557-1.451 1.316-1.451 2.238 0 1.216 1.01 2.357 2.416 2.357 1.684 0 2.852-1.787 5.625-1.787 2.447 0 3.692 2.357 3.692 4.953l-.012 22.605c0 1.297 1.018 2.408 2.315 2.408a2.45 2.45 0 0 0 2.025-1.05v-.002c.023-.033.044-.067.066-.101a2.32 2.32 0 0 0 .372-1.255v-9.85c.167-3.91 2.767-5.383 5.454-5.383 2.547 0 4.4 1.945 4.4 5.278v9.955c0 1.297 1.018 2.408 2.314 2.408 1.39 0 2.454-1.111 2.454-2.408V44.88c0-3.473 2.084-5.788 5.232-5.788 3.208 0 4.453 2.153 4.453 5.343 0 7.618 2.542 12.262 8.586 12.262 1.995 0 3.319-1.183 3.319-2.516 0-1.284-1.031-2.357-2.397-2.357Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5j9jv3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",style:{\"--framer-text-color\":\"rgb(9, 162, 123)\"},children:\"Medzilla\"})}),className:\"framer-6td61z\",\"data-framer-name\":\"Tell us your vision\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Sistema da farm\\xe1cia cl\\xednica inteligente\"})}),className:\"framer-1a8rcjh\",\"data-framer-name\":\"Choose a plan and share your design project details with us: we\u2019re here to listen.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kuxq0a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12le1m4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vvwaei-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kFn0NCp4T\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(9, 162, 123)\",height:\"100%\",iconSearch:\"pill\",iconSelection:\"House\",id:\"kFn0NCp4T\",layoutId:\"kFn0NCp4T\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Maior seguran\\xe7a medicamentosa do paciente \"})}),className:\"framer-1fpvlwj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r27w46\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11dmns0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"c9l47vXAP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(9, 162, 123)\",height:\"100%\",iconSearch:\"filecloud\",iconSelection:\"House\",id:\"c9l47vXAP\",layoutId:\"c9l47vXAP\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Acompanhamento autom\\xe1tico da jornada da farm\\xe1cia cl\\xednica\"})}),className:\"framer-1la5z5y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kxgtep\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m5n5ls-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zWMk5l3dH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(9, 162, 123)\",height:\"100%\",iconSearch:\"pulse\",iconSelection:\"House\",id:\"zWMk5l3dH\",layoutId:\"zWMk5l3dH\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Avalia\\xe7\\xe3o de risco em tempo real de cada paciente\"})}),className:\"framer-1n6p3zy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})]})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fbj6jq\",\"data-framer-name\":\"Feature Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10n4u0j\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6fhk4e\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x3l0xs\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+2590.3+0+0+550+0+0+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+2251.7+80+0+0+0+0+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+2900.3+0+0+600+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+2344.9+80+141.0334+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ievcew-container\",nodeId:\"TCQbJg5hS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{DTEBE1LHR:\"Aplica\\xe7\\xf5es\",height:\"100%\",id:\"TCQbJg5hS\",j7oQQHdIz:\"var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228))\",layoutId:\"TCQbJg5hS\",mQiWJf8Hp:\"rgba(234, 242, 255, 0.08)\",variant:\"A1hLNSIZ_\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13q1m9x\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qogos3\",\"data-styles-preset\":\"waIKCrlqu\",style:{\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"+30 apps \\xfanicos e especializados\"})}),className:\"framer-erh6mg\",\"data-framer-name\":\"Analyze active visit\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",children:\"Nossa API aberta e estrutura de integra\\xe7\\xe3o robusta garantem uma conex\\xe3o tranquila com as ferramentas das quais voc\\xea depende diariamente, criando um ecossistema unificado para efici\\xeancia incompar\\xe1vel.\"})}),className:\"framer-74blmt\",\"data-framer-name\":\"Podcasting operation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+2590.3+0+0+550+0+303.6},PqpaQgc5e:{y:(componentViewport?.y||0)+0+2251.7+80+0+0+0+287.6},WpCIbgkLd:{y:(componentViewport?.y||0)+0+2900.3+0+0+600+0+287.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+2344.9+80+141.0334+0+287.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qa1jkg-container\",nodeId:\"F8YuWjhtx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{vjZWklrqI:resolvedLinks2[2]},PqpaQgc5e:{vjZWklrqI:resolvedLinks2[1]},WpCIbgkLd:{vjZWklrqI:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"F8YuWjhtx\",layoutId:\"F8YuWjhtx\",variant:\"JiPCvmJb6\",vjZWklrqI:resolvedLinks2[0],width:\"100%\",xEfGs_njT:\"Fale Conosco\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{scale:.7,skewX:-12}},WpCIbgkLd:{style:{scale:.8,skewX:-12}}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cb1jcs\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bwv1i2-container\",isModuleExternal:true,nodeId:\"Eh2aMINWq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"Eh2aMINWq\",layoutId:\"Eh2aMINWq\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-28j0wg\",\"data-border\":true,\"data-framer-name\":\"CC Operacional\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-f5cx2a\",\"data-framer-name\":\"CC_Operacional\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M24 17.25A6.75 6.75 0 1 0 30.75 24 6.757 6.757 0 0 0 24 17.25Zm0 11.25a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm12.375-4.196c.005-.203.005-.405 0-.608l2.098-2.621a1.125 1.125 0 0 0 .208-.993 15.079 15.079 0 0 0-1.53-3.691 1.126 1.126 0 0 0-.844-.553l-3.335-.371a11.19 11.19 0 0 0-.422-.422l-.394-3.344a1.125 1.125 0 0 0-.554-.844 15.146 15.146 0 0 0-3.691-1.529 1.125 1.125 0 0 0-.993.21l-2.614 2.087h-.608L21.075 9.53a1.125 1.125 0 0 0-.993-.208 15.129 15.129 0 0 0-3.691 1.53 1.125 1.125 0 0 0-.553.844l-.371 3.34c-.147.14-.287.281-.422.423l-3.344.384a1.124 1.124 0 0 0-.844.554 15.148 15.148 0 0 0-1.529 3.691 1.125 1.125 0 0 0 .21.993l2.087 2.614v.608l-2.094 2.62a1.125 1.125 0 0 0-.208.994 15.077 15.077 0 0 0 1.53 3.691 1.124 1.124 0 0 0 .844.553l3.335.37c.14.147.28.288.422.423l.39 3.344a1.124 1.124 0 0 0 .554.844 15.148 15.148 0 0 0 3.691 1.528 1.125 1.125 0 0 0 .993-.21l2.614-2.086c.203.005.405.005.608 0l2.62 2.098a1.125 1.125 0 0 0 .994.208 15.079 15.079 0 0 0 3.691-1.53 1.125 1.125 0 0 0 .553-.844l.37-3.335c.147-.14.288-.28.423-.422l3.344-.394a1.125 1.125 0 0 0 .844-.554 15.146 15.146 0 0 0 1.528-3.691 1.125 1.125 0 0 0-.21-.993l-2.086-2.614Zm-2.264-.914c.024.406.024.814 0 1.22-.017.279.07.553.244.77l1.996 2.494a12.874 12.874 0 0 1-.876 2.11l-3.178.36c-.277.03-.533.162-.717.37-.271.305-.56.593-.864.864-.208.185-.34.44-.371.717l-.353 3.176c-.676.354-1.382.647-2.11.876l-2.494-1.996c-.2-.16-.448-.246-.703-.246h-.068a10.4 10.4 0 0 1-1.22 0 1.125 1.125 0 0 0-.771.245l-2.5 1.997a12.883 12.883 0 0 1-2.11-.876l-.36-3.174a1.125 1.125 0 0 0-.371-.717c-.305-.271-.593-.56-.863-.864a1.124 1.124 0 0 0-.718-.371l-3.175-.355a12.843 12.843 0 0 1-.876-2.109l1.995-2.495c.175-.217.262-.492.245-.77a10.4 10.4 0 0 1 0-1.22 1.124 1.124 0 0 0-.245-.771l-1.995-2.5c.229-.727.522-1.433.876-2.109l3.174-.36c.277-.03.532-.163.717-.371.27-.305.56-.593.864-.863a1.13 1.13 0 0 0 .372-.72l.353-3.173a12.84 12.84 0 0 1 2.11-.876l2.494 1.995c.218.175.493.262.77.245.407-.024.815-.024 1.222 0 .278.017.552-.07.77-.245l2.499-1.995c.728.229 1.434.522 2.11.876l.36 3.174c.03.277.162.532.37.717.305.27.593.56.864.864.185.208.44.34.717.37l3.176.354c.354.675.647 1.381.876 2.11l-1.996 2.494c-.176.22-.263.497-.245.778h.005Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b64ixi\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Operacional\"})}),className:\"framer-1j4rsdw\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Command Center\"})}),className:\"framer-xn6wxf\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fn1uf2\",\"data-border\":true,\"data-framer-name\":\"Gest\\xe3o de leitos\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l3blfk\",\"data-framer-name\":\"Gesta\u0303o_de_leitos\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M36.375 16.125H10.5V12.75a1.125 1.125 0 1 0-2.25 0v22.5a1.125 1.125 0 0 0 2.25 0v-4.5h29.25v4.5a1.125 1.125 0 1 0 2.25 0v-13.5a5.625 5.625 0 0 0-5.625-5.625ZM10.5 18.375h10.125V28.5H10.5V18.375ZM22.875 28.5V18.375h13.5a3.375 3.375 0 0 1 3.375 3.375v6.75H22.875Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jt1x6j\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Gest\\xe3o de leitos\"})}),className:\"framer-dl5gfm\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Insight Care\"})}),className:\"framer-1uhi0mx\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17bpbuu\",\"data-border\":true,\"data-framer-name\":\"Desfechos Cl\\xednicos\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1og3ra2\",\"data-framer-name\":\"Desfechos_Cli\u0301nicos\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M36.375 13.875H30.75V12.75a3.375 3.375 0 0 0-3.375-3.375h-6.75a3.375 3.375 0 0 0-3.375 3.375v1.125h-5.625a2.25 2.25 0 0 0-2.25 2.25v18a2.25 2.25 0 0 0 2.25 2.25h24.75a2.25 2.25 0 0 0 2.25-2.25v-18a2.25 2.25 0 0 0-2.25-2.25ZM19.5 12.75a1.125 1.125 0 0 1 1.125-1.125h6.75A1.125 1.125 0 0 1 28.5 12.75v1.125h-9V12.75Zm16.875 21.375h-24.75v-18h24.75v18Zm-7.875-9a1.125 1.125 0 0 1-1.125 1.125h-2.25v2.25a1.125 1.125 0 1 1-2.25 0v-2.25h-2.25a1.125 1.125 0 1 1 0-2.25h2.25v-2.25a1.125 1.125 0 1 1 2.25 0V24h2.25a1.125 1.125 0 0 1 1.125 1.125Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pjk7se\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Desfechos Cl\\xednicos\"})}),className:\"framer-1mbf61h\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Sa\\xfade do paciente\"})}),className:\"framer-1buyz5x\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xhcrt7\",\"data-border\":true,\"data-framer-name\":\"NPS\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fg1iq3\",\"data-framer-name\":\"NPS\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M39.635 19.677a2.304 2.304 0 0 0-2.006-1.583l-8.296-.67-3.204-7.747a2.3 2.3 0 0 0-4.257 0l-3.2 7.746-8.301.67a2.314 2.314 0 0 0-1.318 4.059l6.328 5.46-1.928 8.165a2.305 2.305 0 0 0 3.445 2.506L24 33.913l7.106 4.37a2.306 2.306 0 0 0 3.44-2.506l-1.934-8.166 6.328-5.46a2.311 2.311 0 0 0 .695-2.474Zm-2.157.77-6.849 5.905a1.125 1.125 0 0 0-.36 1.113l2.093 8.831a.052.052 0 0 1-.024.067c-.026.02-.033.016-.054 0l-7.695-4.732a1.125 1.125 0 0 0-1.178 0l-7.695 4.735c-.021.013-.027.017-.054 0a.052.052 0 0 1-.024-.067l2.093-8.831a1.126 1.126 0 0 0-.36-1.113l-6.848-5.906c-.017-.014-.033-.027-.019-.07.014-.044.026-.038.047-.041l8.988-.726a1.125 1.125 0 0 0 .945-.694l3.462-8.383c.012-.024.016-.035.05-.035s.038.011.049.035l3.47 8.383a1.125 1.125 0 0 0 .95.692l8.989.725c.02 0 .033 0 .046.04.013.042 0 .057-.023.071Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bn2lab\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"NPS\"})}),className:\"framer-m1h4of\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Pesquisa de Satisfa\\xe7\\xe3o / NPS\"})}),className:\"framer-13pbdy4\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kilhhw\",\"data-border\":true,\"data-framer-name\":\"Marca\\xe7\\xe3o Cir\\xfargica\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1d92ofz\",\"data-framer-name\":\"Marcac\u0327a\u0303o_Ciru\u0301rgica\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M39.75 24a1.125 1.125 0 0 1-1.125 1.125H34.82l-5.313 10.628a1.125 1.125 0 0 1-1.007.622h-.056a1.125 1.125 0 0 1-.996-.723l-8.04-21.108-4.51 9.921a1.124 1.124 0 0 1-1.023.66h-4.5a1.125 1.125 0 1 1 0-2.25h3.776l5.325-11.716a1.124 1.124 0 0 1 2.076.065l8.087 21.234 4.48-8.959a1.126 1.126 0 0 1 1.006-.624h4.5A1.125 1.125 0 0 1 39.75 24Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11sroee\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Marca\\xe7\\xe3o Cir\\xfargica\"})}),className:\"framer-1s8iffp\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Online\"})}),className:\"framer-19lowje\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5tf7yv-container\",isModuleExternal:true,nodeId:\"ex0GSMgy4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"ex0GSMgy4\",layoutId:\"ex0GSMgy4\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1285tmh\",\"data-border\":true,\"data-framer-name\":\"CC Cl\\xednico\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-bf1lkl\",\"data-framer-name\":\"CC Cl\\xednico\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 8 48 C 3.582 48 0 48 0 48 L 0 0 C 0 0 3.582 0 8 0 L 40 0 C 44.418 0 48 0 48 0 L 48 48 C 48 48 44.418 48 40 48 Z\" fill=\"rgb(0,50,67)\"></path><path d=\"M 36.375 18.375 L 29.625 18.375 L 29.625 11.625 C 29.625 10.382 28.618 9.375 27.375 9.375 L 20.625 9.375 C 19.382 9.375 18.375 10.382 18.375 11.625 L 18.375 18.375 L 11.625 18.375 C 10.382 18.375 9.375 19.382 9.375 20.625 L 9.375 27.375 C 9.375 28.618 10.382 29.625 11.625 29.625 L 18.375 29.625 L 18.375 36.375 C 18.375 37.618 19.382 38.625 20.625 38.625 L 27.375 38.625 C 28.618 38.625 29.625 37.618 29.625 36.375 L 29.625 29.625 L 36.375 29.625 C 37.618 29.625 38.625 28.618 38.625 27.375 L 38.625 20.625 C 38.625 19.382 37.618 18.375 36.375 18.375 Z M 36.375 27.375 L 28.5 27.375 C 27.879 27.375 27.375 27.879 27.375 28.5 L 27.375 36.375 L 20.625 36.375 L 20.625 28.5 C 20.625 27.879 20.121 27.375 19.5 27.375 L 11.625 27.375 L 11.625 20.625 L 19.5 20.625 C 20.121 20.625 20.625 20.121 20.625 19.5 L 20.625 11.625 L 27.375 11.625 L 27.375 19.5 C 27.375 20.121 27.879 20.625 28.5 20.625 L 36.375 20.625 Z\" fill=\"rgb(81,164,193)\"></path></svg>',svgContentId:8966810568,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cyy6f\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Cl\\xednico\"})}),className:\"framer-3znvli\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Command Center\"})}),className:\"framer-yb9zw1\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14chigl\",\"data-border\":true,\"data-framer-name\":\"Profissionais\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1v2x18p\",\"data-framer-name\":\"Profissionais\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M22.488 28.207a8.438 8.438 0 1 0-9.351 0 13.476 13.476 0 0 0-6.64 5.303 1.125 1.125 0 1 0 1.884 1.23 11.25 11.25 0 0 1 18.863 0 1.125 1.125 0 0 0 1.884-1.23 13.476 13.476 0 0 0-6.64-5.302Zm-10.863-7.02a6.187 6.187 0 1 1 6.187 6.188 6.195 6.195 0 0 1-6.187-6.188Zm29.55 13.88a1.125 1.125 0 0 1-1.556-.328 11.225 11.225 0 0 0-9.432-5.114 1.125 1.125 0 1 1 0-2.25A6.188 6.188 0 1 0 27.89 15.44a1.127 1.127 0 0 1-1.572-1.054 1.124 1.124 0 0 1 .736-1.034 8.438 8.438 0 0 1 7.81 14.855 13.476 13.476 0 0 1 6.64 5.303 1.125 1.125 0 0 1-.328 1.557Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uj6xgb\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Profissionais\"})}),className:\"framer-1ezt4jl\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Registro e Autoriza\\xe7\\xe3o\"})}),className:\"framer-1ggftyx\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m8yoax\",\"data-border\":true,\"data-framer-name\":\"App do paciente\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12h45dg\",\"data-framer-name\":\"App_do_paciente\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M30.75 8.25h-13.5a3.375 3.375 0 0 0-3.375 3.375v24.75a3.375 3.375 0 0 0 3.375 3.375h13.5a3.375 3.375 0 0 0 3.375-3.375v-24.75A3.375 3.375 0 0 0 30.75 8.25ZM16.125 15h15.75v18h-15.75V15Zm1.125-4.5h13.5a1.125 1.125 0 0 1 1.125 1.125v1.125h-15.75v-1.125A1.125 1.125 0 0 1 17.25 10.5Zm13.5 27h-13.5a1.125 1.125 0 0 1-1.125-1.125V35.25h15.75v1.125A1.125 1.125 0 0 1 30.75 37.5Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yrxn8p\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"App do paciente\"})}),className:\"framer-e5hm4d\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Facilidade de uso\"})}),className:\"framer-khwfeu\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vwnvq7\",\"data-border\":true,\"data-framer-name\":\"SAC\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kbidi6\",\"data-framer-name\":\"SAC\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M34.39 13.687a14.545 14.545 0 0 0-10.279-4.312H24A14.625 14.625 0 0 0 9.375 24v7.875a3.375 3.375 0 0 0 3.375 3.375H15a3.375 3.375 0 0 0 3.375-3.375V26.25A3.375 3.375 0 0 0 15 22.875h-3.324a12.393 12.393 0 0 1 21.119-7.604 12.289 12.289 0 0 1 3.53 7.604H33a3.375 3.375 0 0 0-3.375 3.375v5.625A3.375 3.375 0 0 0 33 35.25h3.375A3.375 3.375 0 0 1 33 38.625h-7.875a1.125 1.125 0 1 0 0 2.25H33a5.625 5.625 0 0 0 5.625-5.625V24a14.542 14.542 0 0 0-4.234-10.313ZM15 25.125a1.125 1.125 0 0 1 1.125 1.125v5.625A1.125 1.125 0 0 1 15 33h-2.25a1.125 1.125 0 0 1-1.125-1.125v-6.75H15ZM33 33a1.125 1.125 0 0 1-1.125-1.125V26.25A1.125 1.125 0 0 1 33 25.125h3.375V33H33Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1one9ag\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"SAC\"})}),className:\"framer-1wkcab4\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Ouvidora\"})}),className:\"framer-16s2y9g\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5n8b44\",\"data-border\":true,\"data-framer-name\":\"Gest\\xe3o de OPME\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bh5sx4\",\"data-framer-name\":\"Gesta\u0303o_de_OPME\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M31.031 11.625c-2.904 0-5.446 1.249-7.031 3.36-1.585-2.111-4.127-3.36-7.031-3.36a8.729 8.729 0 0 0-8.719 8.719c0 9.843 14.596 17.811 15.217 18.14a1.126 1.126 0 0 0 1.066 0c.621-.329 15.217-8.297 15.217-18.14a8.729 8.729 0 0 0-8.719-8.719ZM24 36.206c-2.568-1.496-13.5-8.312-13.5-15.862a6.477 6.477 0 0 1 6.469-6.469c2.735 0 5.031 1.457 5.99 3.797a1.125 1.125 0 0 0 2.082 0c.959-2.344 3.255-3.797 5.99-3.797a6.477 6.477 0 0 1 6.469 6.469c0 7.539-10.935 14.365-13.5 15.862Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ty5fps\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Gest\\xe3o de OPME\"})}),className:\"framer-yhmztv\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Insumos utilizados na assist\\xeancia de sa\\xfade\"})}),className:\"framer-2sh7na\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hiqnmt\",\"data-border\":true,\"data-framer-name\":\"Medzilla\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gudyfa\",\"data-framer-name\":\"Sadeno\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M38.375 31.474c-.28 0-.463.085-.687.085-1.513 0-2.145-1.32-2.145-4.596 0-3.577-1.982-5.934-4.933-5.934-1.195 0-3.14.334-4.362 2.584-.722-1.639-2.028-2.584-4.084-2.584-1.028 0-3.178.417-4.039 2.223 0 0-.04-.327-.04-.639v-3.44c0-3.24-2.379-5.593-5.044-5.593-1.39 0-2.93.562-3.984 1.176-.572.334-.87.79-.87 1.343 0 .729.605 1.413 1.449 1.413 1.01 0 1.712-1.072 3.375-1.072 1.468 0 2.215 1.415 2.215 2.972l-.007 13.563c0 .778.611 1.445 1.39 1.445a1.47 1.47 0 0 0 1.214-.63l.04-.062a1.39 1.39 0 0 0 .223-.753v-5.91c.1-2.345 1.66-3.23 3.273-3.23 1.528 0 2.639 1.167 2.639 3.167v5.973c0 .778.611 1.445 1.389 1.445.833 0 1.472-.667 1.472-1.445v-5.667c0-2.084 1.25-3.472 3.14-3.472 1.924 0 2.671 1.291 2.671 3.205 0 4.57 1.526 7.357 5.151 7.357 1.198 0 1.992-.71 1.992-1.51 0-.77-.619-1.413-1.438-1.413Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h5okk\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Medzilla\"})}),className:\"framer-rk8cs2\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Farm\\xe1cia Cl\\xednica\"})}),className:\"framer-atno43\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xjyna7-container\",isModuleExternal:true,nodeId:\"MVFYhmg8N\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"MVFYhmg8N\",layoutId:\"MVFYhmg8N\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fcma2e\",\"data-border\":true,\"data-framer-name\":\"CC Consultas\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1kxa3a9\",\"data-framer-name\":\"CC_Consultas\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M35.25 10.5h-3.375V9.375a1.125 1.125 0 1 0-2.25 0V10.5h-11.25V9.375a1.125 1.125 0 1 0-2.25 0V10.5H12.75a2.25 2.25 0 0 0-2.25 2.25v22.5a2.25 2.25 0 0 0 2.25 2.25h22.5a2.25 2.25 0 0 0 2.25-2.25v-22.5a2.25 2.25 0 0 0-2.25-2.25Zm-19.125 2.25v1.125a1.125 1.125 0 1 0 2.25 0V12.75h11.25v1.125a1.125 1.125 0 1 0 2.25 0V12.75h3.375v4.5h-22.5v-4.5h3.375Zm19.125 22.5h-22.5V19.5h22.5v15.75Zm-13.5-12.375v9a1.125 1.125 0 1 1-2.25 0v-7.18l-.622.312a1.126 1.126 0 1 1-1.006-2.014l2.25-1.125a1.125 1.125 0 0 1 1.628 1.007Zm8.32 4.282-2.695 3.593h2.25a1.125 1.125 0 1 1 0 2.25h-4.5a1.125 1.125 0 0 1-.9-1.8l4.047-5.396a1.126 1.126 0 1 0-1.871-1.241 1.125 1.125 0 1 1-1.948-1.125 3.375 3.375 0 1 1 5.616 3.719Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uc3ebw\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Consultas\"})}),className:\"framer-1yvybk1\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Command Center\"})}),className:\"framer-177qj03\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-84bsam\",\"data-border\":true,\"data-framer-name\":\"Facilities\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-obb4om\",\"data-framer-name\":\"Facilities\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 8 48 C 3.582 48 0 48 0 48 L 0 0 C 0 0 3.582 0 8 0 L 40 0 C 44.418 0 48 0 48 0 L 48 48 C 48 48 44.418 48 40 48 Z\" fill=\"rgb(0,50,67)\"></path><path d=\"M 34.125 17.25 C 34.746 17.25 35.25 16.746 35.25 16.125 C 35.246 11.778 31.722 8.254 27.375 8.25 L 17.25 8.25 C 16.007 8.25 15 9.257 15 10.5 L 15 17.25 C 15 19.114 13.489 20.625 11.625 20.625 C 11.004 20.625 10.5 21.129 10.5 21.75 C 10.5 22.371 11.004 22.875 11.625 22.875 C 14.732 22.875 17.25 20.357 17.25 17.25 L 21.75 17.25 L 21.75 20.712 C 21.753 21.738 21.287 22.709 20.484 23.348 L 18.234 25.146 C 16.897 26.211 16.12 27.829 16.125 29.538 L 16.125 37.5 C 16.125 38.743 17.132 39.75 18.375 39.75 L 33 39.75 C 34.243 39.75 35.25 38.743 35.25 37.5 L 35.25 35.738 C 35.252 29.269 33.607 22.907 30.469 17.25 Z M 17.25 10.5 L 27.375 10.5 C 30.047 10.503 32.349 12.383 32.888 15 L 17.25 15 Z M 33 35.738 L 33 37.5 L 18.375 37.5 L 18.375 29.538 C 18.372 28.512 18.838 27.541 19.641 26.902 L 21.891 25.104 C 23.228 24.039 24.005 22.421 24 20.712 L 24 17.25 L 27.87 17.25 C 31.228 22.832 33.002 29.224 33 35.738 Z\" fill=\"rgb(81,164,193)\"></path></svg>',svgContentId:8786646670,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a2uj2g\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Facilities\"})}),className:\"framer-qu58q9\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Limpeza, hotelaria, manuten\\xe7\\xe3o e transporte\"})}),className:\"framer-1yb66a3\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jxagos\",\"data-border\":true,\"data-framer-name\":\"Repasses M\\xe9dicos\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1plzibk\",\"data-framer-name\":\"Repasses M\\xe9dicos\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M35.25 12.75h-22.5a3.375 3.375 0 0 0-3.375 3.375v15.75a3.375 3.375 0 0 0 3.375 3.375h22.5a3.375 3.375 0 0 0 3.375-3.375v-15.75a3.375 3.375 0 0 0-3.375-3.375ZM11.625 19.5h24.75v2.25H28.5a1.125 1.125 0 0 0-1.125 1.125 3.375 3.375 0 0 1-6.75 0A1.125 1.125 0 0 0 19.5 21.75h-7.875V19.5ZM12.75 15h22.5a1.125 1.125 0 0 1 1.125 1.125v1.125h-24.75v-1.125A1.125 1.125 0 0 1 12.75 15Zm22.5 18h-22.5a1.125 1.125 0 0 1-1.125-1.125V24h6.863a5.625 5.625 0 0 0 11.024 0h6.863v7.875A1.125 1.125 0 0 1 35.25 33Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uf5pg0\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Repasses M\\xe9dicos\"})}),className:\"framer-1xjaz9s\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Gest\\xe3o de pagamentos\"})}),className:\"framer-mtenb2\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wkibxw\",\"data-border\":true,\"data-framer-name\":\"Nutri\\xe7\\xe3o\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rr6r56\",\"data-framer-name\":\"Nutric\u0327a\u0303o\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"M38.625 15h-4.034l3.705-3.704a1.127 1.127 0 0 0-1.592-1.592L33 13.41V9.375a1.125 1.125 0 0 0-2.25 0v4.58a9 9 0 0 0-10.856 1.423c-5.64 5.54-9.879 18.715-10.292 20.032a2.25 2.25 0 0 0 2.99 2.99c1.317-.413 14.509-4.659 20.034-10.295a9 9 0 0 0 1.419-10.855h4.58a1.125 1.125 0 0 0 0-2.25Zm-7.61 11.531c-1.258 1.283-2.989 2.503-4.901 3.619l-3.57-3.57a1.123 1.123 0 0 0-1.591 0 1.127 1.127 0 0 0 0 1.59l3.106 3.107c-5.747 2.98-12.139 4.981-12.234 5.01a1.19 1.19 0 0 0-.2.088c.034-.063.062-.13.083-.198.04-.131 3.938-12.598 9-18.376l4.749 4.75a1.126 1.126 0 0 0 1.592-1.593l-4.711-4.71a6.75 6.75 0 0 1 8.677 10.283Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-71assr\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Nutri\\xe7\\xe3o\"})}),className:\"framer-1aroo16\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Hospitalar\"})}),className:\"framer-yacn3d\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dtwnnx\",\"data-border\":true,\"data-framer-name\":\"Sadeno\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-azzl3r\",\"data-framer-name\":\"Sadeno_1\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"48\" height=\"48\" rx=\"8\" fill=\"#003243\"/><path d=\"m21.019 41.38.633-6.813S27.35 43.357 36 41.82c0 0-12.871-9.67-13.504-14.723-.634-5.054.633-5.274-.634-5.054-1.266.22-2.32.66-2.11 1.978 0 0-7.174-9.67-7.384-18.02 0 0-2.533 5.054 5.697 23.733 0 0 .21 1.978-.634 3.076-.843 1.1-1.687 2.418-1.265 3.736.422 1.319 2.532 4.615 4.853 4.835Z\" fill=\"#51A4C1\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a7b8el\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Sadeno\"})}),className:\"framer-ruzvtd\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Gest\\xe3o de Suprimentos\"})}),className:\"framer-16d43sq\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5fm95x\",\"data-framer-name\":\"Features\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-79dvu6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+3552.9+20+0+0+0},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+3421.3+60+0+0+0},WpCIbgkLd:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+3896.9+20+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:(componentViewport?.y||0)+0+3123.5667+96+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xhpeby-container\",nodeId:\"qPWBPMqPX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"}},PqpaQgc5e:{style:{width:\"100%\"}},WpCIbgkLd:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(H2Header,{bx4ndZ6RL:\"Solu\\xe7\\xe3o destaque\",height:\"100%\",id:\"qPWBPMqPX\",layoutId:\"qPWBPMqPX\",width:\"100%\",wQdEXzeKw:\"Command Center Cl\\xednico\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15lgses\",\"data-styles-preset\":\"fITxrTobQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Projetado para monitorar a condi\\xe7\\xe3o cl\\xednica de todos os pacientes em tempo real\"})}),className:\"framer-1g4uw6x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3552.9+20+162),pixelHeight:1117,pixelWidth:1920,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,src:\"https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png\",srcSet:\"https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png 1920w\"}},PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3421.3+60+194),pixelHeight:1117,pixelWidth:1920,sizes:`min(${componentViewport?.width||\"100vw\"} - 120px, 1280px)`,src:\"https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png\",srcSet:\"https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png 1920w\"}},WpCIbgkLd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3896.9+20+162),pixelHeight:1117,pixelWidth:1920,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,src:\"https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png\",srcSet:\"https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3123.5667+96+194),pixelHeight:1117,pixelWidth:1920,sizes:`min(${componentViewport?.width||\"100vw\"} - 120px, 1280px)`,src:\"https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png\",srcSet:\"https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4h39Yjj1RAiKgO7FRiXH2viPMxA.png 1920w\"},className:\"framer-1w6croh\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-amzq09\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sczw1g\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lyqoe2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Y2AP4YHAD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(78, 207, 253))\",height:\"100%\",iconSearch:\"bellringing\",iconSelection:\"House\",id:\"Y2AP4YHAD\",layoutId:\"Y2AP4YHAD\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Monitoramento em tempo real de todos os dados integrados, alertas para qualquer m\\xe9trica fora do esperado\"})}),className:\"framer-1xsic0n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w4xp4w\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gwjrf5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"y3pNu5wSF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(78, 207, 253))\",height:\"100%\",iconSearch:\"users\",iconSelection:\"House\",id:\"y3pNu5wSF\",layoutId:\"y3pNu5wSF\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Algoritmos de IA que calculam diferentes probabilidades de condi\\xe7\\xf5es cl\\xednicas do paciente, tudo em tempo real\"})}),className:\"framer-1bwblvf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l8h32\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yg2l06-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oOj_2J4yt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(78, 207, 253))\",height:\"100%\",iconSearch:\"mobile\",iconSelection:\"House\",id:\"oOj_2J4yt\",layoutId:\"oOj_2J4yt\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-color\":\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\"},children:\"Sistema multiplataforma e de f\\xe1cil utiliza\\xe7\\xe3o, al\\xe9m de integrar com diversas plataformas  \"})}),className:\"framer-11v9x55\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ir7ht\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-2c3ua9\",\"data-styles-preset\":\"ogKgB8x6f\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(78, 207, 253))\"},children:\"O Command Center Cl\\xednico centraliza e monitora todas as informa\\xe7\\xf5es cl\\xednicas de atendimento do paciente.\"})}),className:\"framer-gfsoyo\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oeu8vq\",\"data-border\":true,\"data-framer-name\":\"How It Works\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+4543.3667+20+0},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+4638.8778+80+0},WpCIbgkLd:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+5098.7+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:(componentViewport?.y||0)+0+4529.5889+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dgj3w7-container\",nodeId:\"Kn6WRqfBq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"}},PqpaQgc5e:{style:{width:\"100%\"}},WpCIbgkLd:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(H2Header,{bx4ndZ6RL:\"Parcerias\",height:\"100%\",id:\"Kn6WRqfBq\",layoutId:\"Kn6WRqfBq\",width:\"100%\",wQdEXzeKw:\"Parceiros de gigantes da tecnologia\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-buu68m\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xq0w5\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px), 1px)`,y:(componentViewport?.y||0)+0+4543.3667+20+120+0+0+0},PqpaQgc5e:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 80px, 1280px), 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4638.8778+80+144+0+0},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px), 1px)`,y:(componentViewport?.y||0)+0+5098.7+20+136+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 120px, 1280px), 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4529.5889+60+148+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lcidja-container\",nodeId:\"P75FT2V16\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"UfQ6HfMtB\"},PqpaQgc5e:{variant:\"UfQ6HfMtB\"}},children:/*#__PURE__*/_jsx(CardPartner,{height:\"100%\",id:\"P75FT2V16\",layoutId:\"P75FT2V16\",style:{width:\"100%\"},variant:\"uMTYjwuKk\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px), 1px)`,y:(componentViewport?.y||0)+0+4543.3667+20+120+0+0+308},PqpaQgc5e:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 80px, 1280px), 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4638.8778+80+144+0+0},WpCIbgkLd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px), 1px)`,y:(componentViewport?.y||0)+0+5098.7+20+136+0+0+301}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 120px, 1280px), 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4529.5889+60+148+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wj3oai-container\",nodeId:\"VKAQEVP4r\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"XBFYVxps8\"},PqpaQgc5e:{variant:\"XBFYVxps8\"}},children:/*#__PURE__*/_jsx(CardPartner,{height:\"100%\",id:\"VKAQEVP4r\",layoutId:\"VKAQEVP4r\",style:{width:\"100%\"},variant:\"WbCczdEcX\",width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ocfs7h\",\"data-framer-name\":\"How It Works\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+5327.3667+20+0},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+5218.8778+80+0},WpCIbgkLd:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+5891.7+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:(componentViewport?.y||0)+0+5109.5889+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-145di56-container\",nodeId:\"JfKsWPDWE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"}},PqpaQgc5e:{style:{width:\"100%\"}},WpCIbgkLd:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(H2Header,{bx4ndZ6RL:\"O que fazemos\",height:\"100%\",id:\"JfKsWPDWE\",layoutId:\"JfKsWPDWE\",width:\"100%\",wQdEXzeKw:\"O equil\\xedbrio perfeito entre tecnologia e sa\\xfade para m\\xe1xima efici\\xeancia\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t0kxm0\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-70tv6t\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-137qjaq\",\"data-border\":true,\"data-framer-name\":\"Item\",whileHover:animation11,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hh8dof\",\"data-border\":true,\"data-framer-name\":\"Icon-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bsyrl1-container\",isModuleExternal:true,nodeId:\"tZyeEHUPC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"CheckCircle\",id:\"tZyeEHUPC\",layoutId:\"tZyeEHUPC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z9sljr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",children:\"Efici\\xeancia Operacional\"})}),className:\"framer-1d9j9y9\",\"data-framer-name\":\"Tell us your vision\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",children:\"Em sistemas automatizados, tarefas como preenchimento de receitas, gest\\xe3o de estoque e agendamento de procedimentos s\\xe3o realizadas de forma r\\xe1pida e precisa, permitindo que os profissionais de sa\\xfade dediquem mais tempo ao cuidado dos pacientes.\"})}),className:\"framer-1ybym5x\",\"data-framer-name\":\"Choose a plan and share your design project details with us: we\u2019re here to listen.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3s2b5m\",\"data-border\":true,\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wy0nrh\",\"data-border\":true,\"data-framer-name\":\"Icon-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17ztlex-container\",isModuleExternal:true,nodeId:\"EjAg5e8Ef\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228))\",height:\"100%\",iconSearch:\"shield-check\",iconSelection:\"CheckCircle\",id:\"EjAg5e8Ef\",layoutId:\"EjAg5e8Ef\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16wpdnr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",children:\"Maior precis\\xe3o \"})}),className:\"framer-29evmr\",\"data-framer-name\":\"Get ongoing support\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",children:\"A automa\\xe7\\xe3o minimiza a possibilidade de erros humanos, garantindo que os tratamentos e procedimentos sejam realizados com precis\\xe3o e seguran\\xe7a, resultando em melhores resultados para os pacientes.\"})}),className:\"framer-1a3va7g\",\"data-framer-name\":\"Your subscription ensures you have continuous access to our design team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h0ngci\",\"data-border\":true,\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1npkk83\",\"data-border\":true,\"data-framer-name\":\"Icon-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6tj85i-container\",isModuleExternal:true,nodeId:\"qJ_VdeLmp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(78, 207, 253))\",height:\"100%\",iconSearch:\"clock\",iconSelection:\"CheckCircle\",id:\"qJ_VdeLmp\",layoutId:\"qJ_VdeLmp\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16pcphb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",children:\"Economia de tempo e recursos\"})}),className:\"framer-1wpwy9y\",\"data-framer-name\":\"Get ongoing support\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",children:\"Ao agilizar processos e otimizar fluxos de trabalho, a automa\\xe7\\xe3o ajuda a economizar tempo e recursos, permitindo que os hospitais atendam mais pacientes de forma eficiente.\"})}),className:\"framer-pwienq\",\"data-framer-name\":\"Your subscription ensures you have continuous access to our design team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m2fi8e\",\"data-border\":true,\"data-framer-name\":\"Socials & Metrics\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+6329.7667+20+0},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+6577.2778+80+0},WpCIbgkLd:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+7150.1+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:(componentViewport?.y||0)+0+5817.5889+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f90jw-container\",nodeId:\"nRA0XWAa9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"}},PqpaQgc5e:{style:{width:\"100%\"}},WpCIbgkLd:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(H2Header,{bx4ndZ6RL:\"Hist\\xf3rias de Sucesso\",height:\"100%\",id:\"nRA0XWAa9\",layoutId:\"nRA0XWAa9\",width:\"100%\",wQdEXzeKw:\"O Que Nossos Clientes Dizem\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2qqb0z\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xuav5a\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvl3tv\",\"data-border\":true,\"data-framer-name\":\"Quote Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\u201C\"A ferramenta apresenta solu\\xe7\\xf5es para o planejamento da demanda de suprimentos e log\\xedstica hospitalar, permitindo definir estrategicamente prioridades e acompanhamento da varia\\xe7\\xe3o de consumo no tempo. Tamb\\xe9m permite o correto gerenciamento e acompanhamento de contratos de aquisi\\xe7\\xe3o e est\\xe1 em aprimoramento a parte de servi\\xe7o. A rela\\xe7\\xe3o com fornecedor \\xe9 boa, sempre cordial e de apoio as demandas institucionais. O sistema n\\xe3o apresenta falhas peri\\xf3dicas ou interrup\\xe7\\xf5es de funcionamento, por essa quest\\xe3o, a nota concedida para a recomenda\\xe7\\xe3o.\"'})})},PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\u201C\"A ferramenta apresenta solu\\xe7\\xf5es para o planejamento da demanda de suprimentos e log\\xedstica hospitalar, permitindo definir estrategicamente prioridades e acompanhamento da varia\\xe7\\xe3o de consumo no tempo. Tamb\\xe9m permite o correto gerenciamento e acompanhamento de contratos de aquisi\\xe7\\xe3o e est\\xe1 em aprimoramento a parte de servi\\xe7o. A rela\\xe7\\xe3o com fornecedor \\xe9 boa, sempre cordial e de apoio as demandas institucionais. O sistema n\\xe3o apresenta falhas peri\\xf3dicas ou interrup\\xe7\\xf5es de funcionamento, por essa quest\\xe3o, a nota concedida para a recomenda\\xe7\\xe3o.\"'})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\u201C\"A ferramenta apresenta solu\\xe7\\xf5es para o planejamento da demanda de suprimentos e log\\xedstica hospitalar, permitindo definir estrategicamente prioridades e acompanhamento da varia\\xe7\\xe3o de consumo no tempo. Tamb\\xe9m permite o correto gerenciamento e acompanhamento de contratos de aquisi\\xe7\\xe3o e est\\xe1 em aprimoramento a parte de servi\\xe7o. A rela\\xe7\\xe3o com fornecedor \\xe9 boa, sempre cordial e de apoio as demandas institucionais. O sistema n\\xe3o apresenta falhas peri\\xf3dicas ou interrup\\xe7\\xf5es de funcionamento, por essa quest\\xe3o, a nota concedida para a recomenda\\xe7\\xe3o.\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\u201C\"A ferramenta apresenta solu\\xe7\\xf5es para o planejamento da demanda de suprimentos e log\\xedstica hospitalar, permitindo definir estrategicamente prioridades e acompanhamento da varia\\xe7\\xe3o de consumo no tempo. Tamb\\xe9m permite o correto gerenciamento e acompanhamento de contratos de aquisi\\xe7\\xe3o e est\\xe1 em aprimoramento a parte de servi\\xe7o. A rela\\xe7\\xe3o com fornecedor \\xe9 boa, sempre cordial e de apoio as demandas institucionais. O sistema n\\xe3o apresenta falhas peri\\xf3dicas ou interrup\\xe7\\xf5es de funcionamento, por essa quest\\xe3o, a nota concedida para a recomenda\\xe7\\xe3o.\"'})}),className:\"framer-1iq3e0t\",\"data-framer-name\":\"Quote\",fonts:[\"FS;Poppins-italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mnaj6f\",\"data-border\":true,\"data-framer-name\":\"Avatar and text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:277,intrinsicWidth:461,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6329.7667+20+112+0+0+0+0+12+122+16+0),pixelHeight:277,pixelWidth:461,src:\"https://framerusercontent.com/images/1feke431pBLxHxja22vvdG6QPM.png\"}},PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:277,intrinsicWidth:461,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6577.2778+80+168+0+0+0+0+24+32+0),pixelHeight:277,pixelWidth:461,src:\"https://framerusercontent.com/images/1feke431pBLxHxja22vvdG6QPM.png\"}},WpCIbgkLd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:277,intrinsicWidth:461,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7150.1+20+112+0+0+0+0+24+136+16+0),pixelHeight:277,pixelWidth:461,src:\"https://framerusercontent.com/images/1feke431pBLxHxja22vvdG6QPM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:277,intrinsicWidth:461,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5817.5889+60+148+0+0+0+0+24+32+0),pixelHeight:277,pixelWidth:461,src:\"https://framerusercontent.com/images/1feke431pBLxHxja22vvdG6QPM.png\"},className:\"framer-1n4srn3\",\"data-framer-name\":\"hospital_da_crianca_brasilia\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17821zk\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},children:\"Leanndro Pereira Bias Machado \"})}),className:\"framer-1a2horl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"Gerente de Suprimentos e Log\\xedstica, Hospital da Crian\\xe7a de Bras\\xedlia\"})}),className:\"framer-lf8n5n\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10bj6bj\",\"data-framer-name\":\"Stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:117,svg:'<svg width=\"117\" height=\"20\" viewBox=\"0 0 117 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_679_5932)\">\\n<path d=\"M9.87232 1.60996C10.0431 1.19932 10.6248 1.19932 10.7956 1.60996L12.8617 6.57744C12.9337 6.75056 13.0965 6.86885 13.2834 6.88383L18.6462 7.31376C19.0896 7.3493 19.2693 7.90256 18.9316 8.19189L14.8457 11.6919C14.7033 11.8139 14.6411 12.0053 14.6846 12.1876L15.9329 17.4208C16.0361 17.8534 15.5655 18.1954 15.1859 17.9635L10.5946 15.1592C10.4346 15.0615 10.2334 15.0615 10.0734 15.1592L5.48204 17.9635C5.10249 18.1954 4.63187 17.8534 4.73506 17.4208L5.98337 12.1876C6.02687 12.0053 5.96469 11.8139 5.82229 11.6919L1.7364 8.19189C1.39863 7.90256 1.57839 7.3493 2.02172 7.31376L7.38453 6.88383C7.57142 6.86885 7.73423 6.75056 7.80623 6.57744L9.87232 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip1_679_5932)\">\\n<path d=\"M9.87232 1.60996C10.0431 1.19932 10.6248 1.19932 10.7956 1.60996L12.8617 6.57744C12.9337 6.75056 13.0965 6.86885 13.2834 6.88383L18.6462 7.31376C19.0896 7.3493 19.2693 7.90256 18.9316 8.19189L14.8457 11.6919C14.7033 11.8139 14.6411 12.0053 14.6846 12.1876L15.9329 17.4208C16.0361 17.8534 15.5655 18.1954 15.1859 17.9635L10.5946 15.1592C10.4346 15.0615 10.2334 15.0615 10.0734 15.1592L5.48204 17.9635C5.10249 18.1954 4.63187 17.8534 4.73506 17.4208L5.98337 12.1876C6.02687 12.0053 5.96469 11.8139 5.82229 11.6919L1.7364 8.19189C1.39863 7.90256 1.57839 7.3493 2.02172 7.31376L7.38453 6.88383C7.57142 6.86885 7.73423 6.75056 7.80623 6.57744L9.87232 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip2_679_5932)\">\\n<path d=\"M33.8723 1.60996C34.0431 1.19932 34.6248 1.19932 34.7956 1.60996L36.8617 6.57744C36.9337 6.75056 37.0965 6.86885 37.2834 6.88383L42.6462 7.31376C43.0896 7.3493 43.2693 7.90256 42.9316 8.19189L38.8457 11.6919C38.7033 11.8139 38.6411 12.0053 38.6846 12.1876L39.9329 17.4208C40.0361 17.8534 39.5655 18.1954 39.1859 17.9635L34.5946 15.1592C34.4346 15.0615 34.2334 15.0615 34.0734 15.1592L29.482 17.9635C29.1025 18.1954 28.6319 17.8534 28.7351 17.4208L29.9834 12.1876C30.0269 12.0053 29.9647 11.8139 29.8223 11.6919L25.7364 8.19189C25.3986 7.90256 25.5784 7.3493 26.0217 7.31376L31.3845 6.88383C31.5714 6.86885 31.7342 6.75056 31.8062 6.57744L33.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip3_679_5932)\">\\n<path d=\"M33.8723 1.60996C34.0431 1.19932 34.6248 1.19932 34.7956 1.60996L36.8617 6.57744C36.9337 6.75056 37.0965 6.86885 37.2834 6.88383L42.6462 7.31376C43.0896 7.3493 43.2693 7.90256 42.9316 8.19189L38.8457 11.6919C38.7033 11.8139 38.6411 12.0053 38.6846 12.1876L39.9329 17.4208C40.0361 17.8534 39.5655 18.1954 39.1859 17.9635L34.5946 15.1592C34.4346 15.0615 34.2334 15.0615 34.0734 15.1592L29.482 17.9635C29.1025 18.1954 28.6319 17.8534 28.7351 17.4208L29.9834 12.1876C30.0269 12.0053 29.9647 11.8139 29.8223 11.6919L25.7364 8.19189C25.3986 7.90256 25.5784 7.3493 26.0217 7.31376L31.3845 6.88383C31.5714 6.86885 31.7342 6.75056 31.8062 6.57744L33.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip4_679_5932)\">\\n<path d=\"M57.8723 1.60996C58.0431 1.19932 58.6248 1.19932 58.7956 1.60996L60.8617 6.57744C60.9337 6.75056 61.0965 6.86885 61.2834 6.88383L66.6462 7.31376C67.0896 7.3493 67.2693 7.90256 66.9316 8.19189L62.8457 11.6919C62.7033 11.8139 62.6411 12.0053 62.6846 12.1876L63.9329 17.4208C64.0361 17.8534 63.5655 18.1954 63.1859 17.9635L58.5946 15.1592C58.4346 15.0615 58.2334 15.0615 58.0734 15.1592L53.482 17.9635C53.1025 18.1954 52.6319 17.8534 52.7351 17.4208L53.9834 12.1876C54.0269 12.0053 53.9647 11.8139 53.8223 11.6919L49.7364 8.19189C49.3986 7.90256 49.5784 7.3493 50.0217 7.31376L55.3845 6.88383C55.5714 6.86885 55.7342 6.75056 55.8062 6.57744L57.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip5_679_5932)\">\\n<path d=\"M57.8723 1.60996C58.0431 1.19932 58.6248 1.19932 58.7956 1.60996L60.8617 6.57744C60.9337 6.75056 61.0965 6.86885 61.2834 6.88383L66.6462 7.31376C67.0896 7.3493 67.2693 7.90256 66.9316 8.19189L62.8457 11.6919C62.7033 11.8139 62.6411 12.0053 62.6846 12.1876L63.9329 17.4208C64.0361 17.8534 63.5655 18.1954 63.1859 17.9635L58.5946 15.1592C58.4346 15.0615 58.2334 15.0615 58.0734 15.1592L53.482 17.9635C53.1025 18.1954 52.6319 17.8534 52.7351 17.4208L53.9834 12.1876C54.0269 12.0053 53.9647 11.8139 53.8223 11.6919L49.7364 8.19189C49.3986 7.90256 49.5784 7.3493 50.0217 7.31376L55.3845 6.88383C55.5714 6.86885 55.7342 6.75056 55.8062 6.57744L57.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip6_679_5932)\">\\n<path d=\"M81.8723 1.60996C82.0431 1.19932 82.6248 1.19932 82.7956 1.60996L84.8617 6.57744C84.9337 6.75056 85.0965 6.86885 85.2834 6.88383L90.6462 7.31376C91.0896 7.3493 91.2693 7.90256 90.9316 8.19189L86.8457 11.6919C86.7033 11.8139 86.6411 12.0053 86.6846 12.1876L87.9329 17.4208C88.0361 17.8534 87.5655 18.1954 87.1859 17.9635L82.5946 15.1592C82.4346 15.0615 82.2334 15.0615 82.0734 15.1592L77.482 17.9635C77.1025 18.1954 76.6319 17.8534 76.7351 17.4208L77.9834 12.1876C78.0269 12.0053 77.9647 11.8139 77.8223 11.6919L73.7364 8.19189C73.3986 7.90256 73.5784 7.3493 74.0217 7.31376L79.3845 6.88383C79.5714 6.86885 79.7342 6.75056 79.8062 6.57744L81.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip7_679_5932)\">\\n<path d=\"M81.8723 1.60996C82.0431 1.19932 82.6248 1.19932 82.7956 1.60996L84.8617 6.57744C84.9337 6.75056 85.0965 6.86885 85.2834 6.88383L90.6462 7.31376C91.0896 7.3493 91.2693 7.90256 90.9316 8.19189L86.8457 11.6919C86.7033 11.8139 86.6411 12.0053 86.6846 12.1876L87.9329 17.4208C88.0361 17.8534 87.5655 18.1954 87.1859 17.9635L82.5946 15.1592C82.4346 15.0615 82.2334 15.0615 82.0734 15.1592L77.482 17.9635C77.1025 18.1954 76.6319 17.8534 76.7351 17.4208L77.9834 12.1876C78.0269 12.0053 77.9647 11.8139 77.8223 11.6919L73.7364 8.19189C73.3986 7.90256 73.5784 7.3493 74.0217 7.31376L79.3845 6.88383C79.5714 6.86885 79.7342 6.75056 79.8062 6.57744L81.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip8_679_5932)\">\\n<path d=\"M105.872 1.60996C106.043 1.19932 106.625 1.19932 106.796 1.60996L108.862 6.57744C108.934 6.75056 109.097 6.86885 109.283 6.88383L114.646 7.31376C115.09 7.3493 115.269 7.90256 114.932 8.19189L110.846 11.6919C110.703 11.8139 110.641 12.0053 110.685 12.1876L111.933 17.4208C112.036 17.8534 111.565 18.1954 111.186 17.9635L106.595 15.1592C106.435 15.0615 106.233 15.0615 106.073 15.1592L101.482 17.9635C101.102 18.1954 100.632 17.8534 100.735 17.4208L101.983 12.1876C102.027 12.0053 101.965 11.8139 101.822 11.6919L97.7364 8.19189C97.3986 7.90256 97.5784 7.3493 98.0217 7.31376L103.385 6.88383C103.571 6.86885 103.734 6.75056 103.806 6.57744L105.872 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip9_679_5932)\">\\n<path d=\"M105.872 1.60996C106.043 1.19932 106.625 1.19932 106.796 1.60996L108.862 6.57744C108.934 6.75056 109.097 6.86885 109.283 6.88383L114.646 7.31376C115.09 7.3493 115.269 7.90256 114.932 8.19189L110.846 11.6919C110.703 11.8139 110.641 12.0053 110.685 12.1876L111.933 17.4208C112.036 17.8534 111.565 18.1954 111.186 17.9635L106.595 15.1592C106.435 15.0615 106.233 15.0615 106.073 15.1592L101.482 17.9635C101.102 18.1954 100.632 17.8534 100.735 17.4208L101.983 12.1876C102.027 12.0053 101.965 11.8139 101.822 11.6919L97.7364 8.19189C97.3986 7.90256 97.5784 7.3493 98.0217 7.31376L103.385 6.88383C103.571 6.86885 103.734 6.75056 103.806 6.57744L105.872 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.333984)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.333984)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96.334)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lhk8qx\",\"data-border\":true,\"data-framer-name\":\"Quote Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\u201C\"Nossa parceria com a Invisual Tecnologia tem sido transformadora. As ferramentas de gest\\xe3o e an\\xe1lise preditiva de suprimentos nos permitiram centralizar o planejamento e monitorar em tempo real toda a cadeia log\\xedstica. Al\\xe9m disso, as solu\\xe7\\xf5es de Intelig\\xeancia Artificial implementadas em nosso aplicativo de controle de cirurgias e portal do cliente proporcionaram transpar\\xeancia e agilidade, permitindo o acompanhamento remoto de nossa equipe em todo o Brasil. Essa colabora\\xe7\\xe3o impulsionou a efici\\xeancia e a inova\\xe7\\xe3o em nossa opera\\xe7\\xe3o, preparando-nos para enfrentar os desafios do mercado com excel\\xeancia.\"'})})},PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\u201C\"Nossa parceria com a Invisual Tecnologia tem sido transformadora. As ferramentas de gest\\xe3o e an\\xe1lise preditiva de suprimentos nos permitiram centralizar o planejamento e monitorar em tempo real toda a cadeia log\\xedstica. Al\\xe9m disso, as solu\\xe7\\xf5es de Intelig\\xeancia Artificial implementadas em nosso aplicativo de controle de cirurgias e portal do cliente proporcionaram transpar\\xeancia e agilidade, permitindo o acompanhamento remoto de nossa equipe em todo o Brasil. Essa colabora\\xe7\\xe3o impulsionou a efici\\xeancia e a inova\\xe7\\xe3o em nossa opera\\xe7\\xe3o, preparando-nos para enfrentar os desafios do mercado com excel\\xeancia.\"'})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\u201C\"Nossa parceria com a Invisual Tecnologia tem sido transformadora. As ferramentas de gest\\xe3o e an\\xe1lise preditiva de suprimentos nos permitiram centralizar o planejamento e monitorar em tempo real toda a cadeia log\\xedstica. Al\\xe9m disso, as solu\\xe7\\xf5es de Intelig\\xeancia Artificial implementadas em nosso aplicativo de controle de cirurgias e portal do cliente proporcionaram transpar\\xeancia e agilidade, permitindo o acompanhamento remoto de nossa equipe em todo o Brasil. Essa colabora\\xe7\\xe3o impulsionou a efici\\xeancia e a inova\\xe7\\xe3o em nossa opera\\xe7\\xe3o, preparando-nos para enfrentar os desafios do mercado com excel\\xeancia.\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\u201C\"Nossa parceria com a Invisual Tecnologia tem sido transformadora. As ferramentas de gest\\xe3o e an\\xe1lise preditiva de suprimentos nos permitiram centralizar o planejamento e monitorar em tempo real toda a cadeia log\\xedstica. Al\\xe9m disso, as solu\\xe7\\xf5es de Intelig\\xeancia Artificial implementadas em nosso aplicativo de controle de cirurgias e portal do cliente proporcionaram transpar\\xeancia e agilidade, permitindo o acompanhamento remoto de nossa equipe em todo o Brasil. Essa colabora\\xe7\\xe3o impulsionou a efici\\xeancia e a inova\\xe7\\xe3o em nossa opera\\xe7\\xe3o, preparando-nos para enfrentar os desafios do mercado com excel\\xeancia.\"'})}),className:\"framer-ico4z5\",\"data-framer-name\":\"Quote\",fonts:[\"FS;Poppins-italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j404n2\",\"data-border\":true,\"data-framer-name\":\"Avatar and text\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6vzvk6\",\"data-framer-name\":\"Vertical\",fill:\"black\",intrinsicHeight:45,intrinsicWidth:183,svg:'<svg width=\"183\" height=\"45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m166.694 41.491.339.478c-.717.566-1.484 1.02-2.352 1.245-1.309.34-2.63.29-3.926-.037-1.396-.34-2.251-1.296-2.805-2.554-.214-.503-.352-1.044-.528-1.56-.026-.076-.051-.151-.114-.327-.1.189-.163.29-.213.402-.315.58-.567 1.196-.944 1.736-.944 1.309-2.302 2.013-3.837 2.328-1.849.377-3.711.365-5.536-.139-.692-.188-1.358-.528-1.962-.893-1.271-.78-1.912-1.987-2.026-3.447-.063-.817-.063-1.648.051-2.453.226-1.761 1.258-2.982 2.742-3.875 1.309-.792 2.793-1.17 4.227-1.66 1.523-.516 3.045-1.07 4.567-1.623.44-.164.868-.403 1.271-.642a3.463 3.463 0 0 0 1.61-2.327 14.806 14.806 0 0 0-.038-5.813c-.415-2.013-1.358-2.818-3.409-3.044-1.132-.113-2.252.012-3.309.465-1.069.453-1.635 1.246-1.585 2.403.05.919.189 1.837.252 2.743.037.402.075.818 0 1.208-.164.83-.793 1.358-1.736 1.421-.604.025-1.221-.063-1.825-.163-.528-.088-.843-.466-1.006-.97-.39-1.207-.264-2.402.214-3.547.78-1.9 2.264-3.032 4.139-3.711 1.572-.566 3.195-.705 4.856-.63 1.359.051 2.692.265 3.963.831 2.441 1.107 3.787 3.02 4.164 5.636.101.717.138 1.447.138 2.164.013 4.655 0 9.297.013 13.952 0 .49.013.981.076 1.46.188 1.346 1.056 2 2.39 1.698.704-.151 1.384-.478 2.139-.755Zm-9.386-13.348a.273.273 0 0 0-.088-.038c-.39.88-1.207 1.208-2 1.573-.05.025-.105.05-.164.075-1.333.566-2.667 1.12-3.988 1.699-1.736.767-2.981 2-3.422 3.912a8.13 8.13 0 0 0 .189 4.353c.415 1.309 1.296 2.227 2.667 2.453a7.106 7.106 0 0 0 2.365 0c1.837-.314 2.957-1.535 3.661-3.195.642-1.535.768-3.183.806-4.819.025-1.9 0-3.786 0-5.673 0-.114-.013-.227-.026-.34Zm11.537 14.443v-.718c.138-.012.277-.025.428-.025a165.03 165.03 0 0 1 3.447 0c.314 0 .402-.088.402-.402-.012-13.437-.012-26.885-.012-40.321 0-.114-.013-.214-.013-.365h-4.252V0h9.02v41.101c0 .113.013.239-.012.365-.026.29.1.377.39.377a166.18 166.18 0 0 1 3.459 0c.478 0 .579.1.466.579-.013.075-.101.15-.176.176-.088.038-.189.013-.29.013h-12.404c-.139 0-.29-.013-.453-.025Zm-116.95-6.618c.252.063.49.113.768.176-.29.969-.58 1.912-1.082 2.768-1.623 2.705-3.988 4.214-7.146 4.466-2.818.227-5.51-.239-7.964-1.673-3.145-1.824-5.007-4.617-5.75-8.115-1.006-4.667-.062-8.92 3.02-12.606 1.8-2.15 4.039-3.635 6.794-4.252a10.181 10.181 0 0 1 12.253 7.9c.227 1.07.34 2.127.302 3.26H35.955c-.025.44-.037.83-.05 1.207-.088 2.504-.025 4.982.478 7.435.252 1.208.667 2.353 1.384 3.372 1.107 1.585 2.592 2.541 4.554 2.705 1.812.138 3.573-.013 5.221-.843 1.774-.88 2.982-2.277 3.724-4.102.214-.553.415-1.12.63-1.698Zm-15.927-8.87c.126.026.189.039.24.039h10.995c.226 0 .301-.101.314-.303.126-1.824.164-3.648-.15-5.46-.466-2.629-1.825-3.937-4.404-4.1-2.39-.152-4.24.792-5.397 2.943-.856 1.56-1.195 3.271-1.41 5.02-.075.616-.125 1.233-.188 1.862Zm25.551-9.07h-4.252v-.742h8.907v5.9c.042.009.08.021.113.038.05-.126.114-.24.151-.365.529-1.724 1.346-3.284 2.705-4.504 1.774-1.61 3.837-2.139 6.14-1.522 1.912.516 3.183 2.202 3.258 4.177.025.528 0 1.056-.063 1.572-.15 1.183-.88 1.925-2.05 2.076a5.425 5.425 0 0 1-1.498-.013c-1.333-.2-1.849-1.107-1.434-2.415.189-.591.428-1.157.541-1.749.088-.44.076-.905.013-1.346-.151-.88-.73-1.32-1.61-1.384-.718-.063-1.347.139-1.95.516-1.032.642-1.762 1.547-2.353 2.592-1.107 1.95-1.774 4.038-1.8 6.29-.05 4.768-.037 9.536-.062 14.317 0 .29.1.377.39.377 1.359-.012 2.717 0 4.076-.012.302 0 .403.075.403.39 0 .302-.089.402-.39.402-4.379-.012-8.757-.012-13.147-.012-.1 0-.214-.013-.34-.025v-.73c.151 0 .29-.013.44-.013 1.057-.012 2.114 0 3.158-.012.73 0 .68.113.68-.655V18.62c0-.188-.013-.364-.026-.59Zm35.038 19.676c.264.1.477.176.679.264-.478 2.63-1.787 4.517-4.102 5.196a6.826 6.826 0 0 1-2.138.252c-1.032-.038-2.089-.139-3.095-.352-2.29-.478-3.548-2.013-4-4.24-.14-.717-.177-1.485-.177-2.227-.012-5.988-.012-11.964-.012-17.953v-.59h-4.278v-.78c.113 0 .264-.013.403-.013h3.384c.49 0 .49 0 .49-.478V9.675c1.636.503 3.196.59 4.706-.44.012.175.025.314.025.452 0 2.365.013 4.73-.013 7.096 0 .364.101.49.478.49 2.328-.025 4.655-.012 6.995-.012h.453v.78h-.453c-2.352 0-4.705 0-7.07-.013-.29 0-.39.076-.39.39 0 6.379-.013 12.757.013 19.135.012.868.125 1.762.34 2.617.704 2.768 3.144 2.881 4.818 2.076.528-.252 1.006-.705 1.396-1.158.767-.868 1.208-1.925 1.46-3.057.025-.088.05-.176.088-.327Zm41.088-1.723c.251.05.478.1.742.163-.616 2.378-1.786 4.366-3.85 5.762-1.673 1.132-3.535 1.535-5.51 1.522-2.34-.012-4.579-.49-6.642-1.622-3.385-1.85-5.36-4.743-6.027-8.505-.49-2.68-.453-5.36.504-7.938 1.648-4.454 4.68-7.436 9.347-8.555 3.045-.717 6.001-.378 8.744 1.195 1.472.855 2.566 2.063 2.969 3.774.163.742.226 1.497.05 2.252-.277 1.095-1.069 1.812-2.189 1.95-.679.088-1.371.038-2.026-.226-.981-.403-1.358-1.045-1.182-2.089.088-.54.239-1.07.365-1.61.125-.503.276-1.02.352-1.535.151-1.107-.277-1.95-1.258-2.516-1.069-.604-2.227-.818-3.435-.73-.553.038-1.094.114-1.648.214-1.459.24-2.503 1.12-3.283 2.328-.856 1.358-1.334 2.868-1.598 4.428-.541 3.057-.566 6.14-.327 9.234.151 1.887.44 3.75 1.271 5.473.868 1.799 2.163 3.145 4.176 3.51 3.02.54 5.825.088 8.115-2.152 1.094-1.069 1.686-2.453 2.164-3.887.033-.11.071-.222.113-.34.013-.025.025-.038.063-.1ZM13.398 17.286v.755H8.844c2.416 6.215 4.793 12.379 7.184 18.53.033.01.067.018.1.026 2.479-6.164 4.957-12.329 7.473-18.556h-4.554v-.755h8.379c.012.15.012.302.025.44.025.252-.088.315-.327.315-.767-.013-1.535.012-2.315-.013-.302-.012-.415.1-.528.365-3.397 8.567-6.794 17.122-10.203 25.664l-.176.44c-.39-1.006-.743-1.937-1.107-2.88-2.957-7.712-5.9-15.424-8.857-23.149-.113-.314-.264-.453-.617-.44-.968.025-1.937.013-2.906.013H0v-.755h13.398Zm94.242 0V41.29c0 .54 0 .54.528.54 1.133.013 2.265.013 3.385 0 .289 0 .415.064.415.378-.013.29-.076.415-.39.415-4.202-.012-8.417-.012-12.619-.012-.113 0-.213-.013-.34-.025v-.718c.14-.012.29-.025.428-.025 1.158-.012 2.303-.012 3.46 0 .315 0 .39-.1.39-.402-.012-7.675-.012-15.361-.012-23.036 0-.1-.013-.213-.013-.364H98.62v-.755h9.02Zm.44-13.851c0 1.597-1.056 2.88-2.541 3.07-1.547.2-3.019-.92-3.246-2.467-.151-.993.025-1.9.68-2.68.792-.93 1.962-1.27 3.094-.905 1.082.365 1.938 1.472 2.013 2.617v.365Zm10.757 4.453v-.44h1.975l-.013 2.566a4.17 4.17 0 0 1-.943.29 5.691 5.691 0 0 1-1.007.088 3.56 3.56 0 0 1-1.245-.202 2.482 2.482 0 0 1-.906-.566 2.629 2.629 0 0 1-.541-.88 3.307 3.307 0 0 1-.189-1.145c0-.42.067-.814.202-1.183.125-.36.31-.68.553-.956.252-.277.554-.495.906-.654.352-.16.755-.24 1.208-.24.218 0 .423.018.616.051a2.032 2.032 0 0 1 .969.428.934.934 0 0 1 .252.39l-.214.264a.998.998 0 0 0-.265-.302 1.167 1.167 0 0 0-.39-.214 2.492 2.492 0 0 0-.465-.138 3.815 3.815 0 0 0-.541-.038 2.19 2.19 0 0 0-.994.214 2.173 2.173 0 0 0-.717.566c-.193.235-.34.503-.44.805a3.27 3.27 0 0 0-.139.944c0 .36.046.688.139.981.1.302.251.558.453.768.201.21.453.373.754.49a2.91 2.91 0 0 0 1.057.176c.26 0 .508-.02.743-.063.226-.033.44-.1.641-.2l.013-1.8h-1.472Zm11.901 2.416-.604-1.61a4.512 4.512 0 0 0-.214-.479 1.219 1.219 0 0 0-.251-.29.973.973 0 0 0-.353-.163 2.11 2.11 0 0 0-.503-.05h-1.182v2.592h-.516V4.668h1.359c.159 0 .331.004.515.012.177 0 .361.017.554.05.184.026.361.068.528.126.176.059.332.143.466.252.126.1.23.235.314.402.084.16.126.361.126.604a1.3 1.3 0 0 1-.101.516 1.225 1.225 0 0 1-.289.403c-.117.117-.26.218-.428.302a2.22 2.22 0 0 1-.566.163.1.1 0 0 0-.012.038h.012c.185.042.336.105.453.189.118.092.222.214.315.364.1.16.193.353.276.58.093.234.202.507.328.817l.327.818h-.554Zm-3.095-3.032h1.17c.193 0 .386-.017.579-.05a1.8 1.8 0 0 0 .516-.177.995.995 0 0 0 .377-.327.98.98 0 0 0 .139-.54c0-.219-.038-.395-.114-.53a.981.981 0 0 0-.339-.326 1.324 1.324 0 0 0-.504-.164 3.664 3.664 0 0 0-.629-.05h-1.195v2.164Zm13.562-2.604h.491l-.013 3.51c0 .352-.05.662-.151.93-.092.277-.23.508-.415.692-.193.193-.428.34-.704.44a2.98 2.98 0 0 1-.994.152 2.77 2.77 0 0 1-.931-.139 1.792 1.792 0 0 1-.667-.39 1.674 1.674 0 0 1-.415-.629 2.897 2.897 0 0 1-.189-.855V8.24l.025-3.572h.491l-.013 3.535c0 .276.034.52.101.73.067.217.172.402.315.553.142.15.322.264.54.34.227.083.491.125.793.125.277 0 .524-.033.742-.1.21-.059.386-.16.529-.302a1.3 1.3 0 0 0 .327-.529 2.94 2.94 0 0 0 .113-.78l.025-3.572Zm7.372 5.636h-.503V4.668h1.309c.218 0 .432.008.641.025.218.025.424.058.617.1.184.05.356.114.515.19.16.083.298.188.416.314.117.117.205.26.264.427.067.176.1.374.1.592 0 .293-.062.545-.188.754-.134.21-.306.378-.516.504-.218.134-.47.235-.755.302a4.484 4.484 0 0 1-.906.088h-.968l-.026 2.34Zm.026-2.768h1.144c.244 0 .466-.025.667-.076a1.36 1.36 0 0 0 .516-.213 1.18 1.18 0 0 0 .34-.365c.084-.151.126-.332.126-.541 0-.243-.047-.445-.139-.604a.913.913 0 0 0-.377-.378 1.63 1.63 0 0 0-.579-.188 5.172 5.172 0 0 0-.755-.05h-.943v2.415Zm14.505-.05c0 .419-.063.809-.189 1.17a2.47 2.47 0 0 1-.553.918c-.252.26-.55.461-.893.604a3.169 3.169 0 0 1-1.196.214 3.2 3.2 0 0 1-1.17-.202 2.368 2.368 0 0 1-.88-.59 2.734 2.734 0 0 1-.554-.907 3.604 3.604 0 0 1-.188-1.195c0-.428.062-.822.188-1.182a2.62 2.62 0 0 1 1.46-1.535 3.15 3.15 0 0 1 1.195-.214c.428 0 .813.071 1.157.214.344.134.638.327.881.578.243.26.428.567.553.919.126.36.189.763.189 1.208Zm-5.082.012c0 .344.05.667.15.969.093.293.235.55.428.767a2 2 0 0 0 .705.529c.285.126.612.188.981.188s.696-.062.981-.188a2 2 0 0 0 .705-.529c.184-.218.323-.478.415-.78.092-.302.138-.633.138-.994 0-.343-.046-.662-.138-.956a2.178 2.178 0 0 0-.415-.78 1.867 1.867 0 0 0-.705-.528 2.352 2.352 0 0 0-.981-.189c-.369 0-.696.067-.981.202a2.206 2.206 0 0 0-1.133 1.346c-.1.302-.15.616-.15.943Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18hhmke\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},children:\"Daniel Borba\"})}),className:\"framer-1jam97o\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"CEO, Grupo Vertical\"})}),className:\"framer-1o0ewza\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19cg464\",\"data-framer-name\":\"Stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:117,svg:'<svg width=\"117\" height=\"20\" viewBox=\"0 0 117 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_679_5932)\">\\n<path d=\"M9.87232 1.60996C10.0431 1.19932 10.6248 1.19932 10.7956 1.60996L12.8617 6.57744C12.9337 6.75056 13.0965 6.86885 13.2834 6.88383L18.6462 7.31376C19.0896 7.3493 19.2693 7.90256 18.9316 8.19189L14.8457 11.6919C14.7033 11.8139 14.6411 12.0053 14.6846 12.1876L15.9329 17.4208C16.0361 17.8534 15.5655 18.1954 15.1859 17.9635L10.5946 15.1592C10.4346 15.0615 10.2334 15.0615 10.0734 15.1592L5.48204 17.9635C5.10249 18.1954 4.63187 17.8534 4.73506 17.4208L5.98337 12.1876C6.02687 12.0053 5.96469 11.8139 5.82229 11.6919L1.7364 8.19189C1.39863 7.90256 1.57839 7.3493 2.02172 7.31376L7.38453 6.88383C7.57142 6.86885 7.73423 6.75056 7.80623 6.57744L9.87232 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip1_679_5932)\">\\n<path d=\"M9.87232 1.60996C10.0431 1.19932 10.6248 1.19932 10.7956 1.60996L12.8617 6.57744C12.9337 6.75056 13.0965 6.86885 13.2834 6.88383L18.6462 7.31376C19.0896 7.3493 19.2693 7.90256 18.9316 8.19189L14.8457 11.6919C14.7033 11.8139 14.6411 12.0053 14.6846 12.1876L15.9329 17.4208C16.0361 17.8534 15.5655 18.1954 15.1859 17.9635L10.5946 15.1592C10.4346 15.0615 10.2334 15.0615 10.0734 15.1592L5.48204 17.9635C5.10249 18.1954 4.63187 17.8534 4.73506 17.4208L5.98337 12.1876C6.02687 12.0053 5.96469 11.8139 5.82229 11.6919L1.7364 8.19189C1.39863 7.90256 1.57839 7.3493 2.02172 7.31376L7.38453 6.88383C7.57142 6.86885 7.73423 6.75056 7.80623 6.57744L9.87232 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip2_679_5932)\">\\n<path d=\"M33.8723 1.60996C34.0431 1.19932 34.6248 1.19932 34.7956 1.60996L36.8617 6.57744C36.9337 6.75056 37.0965 6.86885 37.2834 6.88383L42.6462 7.31376C43.0896 7.3493 43.2693 7.90256 42.9316 8.19189L38.8457 11.6919C38.7033 11.8139 38.6411 12.0053 38.6846 12.1876L39.9329 17.4208C40.0361 17.8534 39.5655 18.1954 39.1859 17.9635L34.5946 15.1592C34.4346 15.0615 34.2334 15.0615 34.0734 15.1592L29.482 17.9635C29.1025 18.1954 28.6319 17.8534 28.7351 17.4208L29.9834 12.1876C30.0269 12.0053 29.9647 11.8139 29.8223 11.6919L25.7364 8.19189C25.3986 7.90256 25.5784 7.3493 26.0217 7.31376L31.3845 6.88383C31.5714 6.86885 31.7342 6.75056 31.8062 6.57744L33.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip3_679_5932)\">\\n<path d=\"M33.8723 1.60996C34.0431 1.19932 34.6248 1.19932 34.7956 1.60996L36.8617 6.57744C36.9337 6.75056 37.0965 6.86885 37.2834 6.88383L42.6462 7.31376C43.0896 7.3493 43.2693 7.90256 42.9316 8.19189L38.8457 11.6919C38.7033 11.8139 38.6411 12.0053 38.6846 12.1876L39.9329 17.4208C40.0361 17.8534 39.5655 18.1954 39.1859 17.9635L34.5946 15.1592C34.4346 15.0615 34.2334 15.0615 34.0734 15.1592L29.482 17.9635C29.1025 18.1954 28.6319 17.8534 28.7351 17.4208L29.9834 12.1876C30.0269 12.0053 29.9647 11.8139 29.8223 11.6919L25.7364 8.19189C25.3986 7.90256 25.5784 7.3493 26.0217 7.31376L31.3845 6.88383C31.5714 6.86885 31.7342 6.75056 31.8062 6.57744L33.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip4_679_5932)\">\\n<path d=\"M57.8723 1.60996C58.0431 1.19932 58.6248 1.19932 58.7956 1.60996L60.8617 6.57744C60.9337 6.75056 61.0965 6.86885 61.2834 6.88383L66.6462 7.31376C67.0896 7.3493 67.2693 7.90256 66.9316 8.19189L62.8457 11.6919C62.7033 11.8139 62.6411 12.0053 62.6846 12.1876L63.9329 17.4208C64.0361 17.8534 63.5655 18.1954 63.1859 17.9635L58.5946 15.1592C58.4346 15.0615 58.2334 15.0615 58.0734 15.1592L53.482 17.9635C53.1025 18.1954 52.6319 17.8534 52.7351 17.4208L53.9834 12.1876C54.0269 12.0053 53.9647 11.8139 53.8223 11.6919L49.7364 8.19189C49.3986 7.90256 49.5784 7.3493 50.0217 7.31376L55.3845 6.88383C55.5714 6.86885 55.7342 6.75056 55.8062 6.57744L57.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip5_679_5932)\">\\n<path d=\"M57.8723 1.60996C58.0431 1.19932 58.6248 1.19932 58.7956 1.60996L60.8617 6.57744C60.9337 6.75056 61.0965 6.86885 61.2834 6.88383L66.6462 7.31376C67.0896 7.3493 67.2693 7.90256 66.9316 8.19189L62.8457 11.6919C62.7033 11.8139 62.6411 12.0053 62.6846 12.1876L63.9329 17.4208C64.0361 17.8534 63.5655 18.1954 63.1859 17.9635L58.5946 15.1592C58.4346 15.0615 58.2334 15.0615 58.0734 15.1592L53.482 17.9635C53.1025 18.1954 52.6319 17.8534 52.7351 17.4208L53.9834 12.1876C54.0269 12.0053 53.9647 11.8139 53.8223 11.6919L49.7364 8.19189C49.3986 7.90256 49.5784 7.3493 50.0217 7.31376L55.3845 6.88383C55.5714 6.86885 55.7342 6.75056 55.8062 6.57744L57.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip6_679_5932)\">\\n<path d=\"M81.8723 1.60996C82.0431 1.19932 82.6248 1.19932 82.7956 1.60996L84.8617 6.57744C84.9337 6.75056 85.0965 6.86885 85.2834 6.88383L90.6462 7.31376C91.0896 7.3493 91.2693 7.90256 90.9316 8.19189L86.8457 11.6919C86.7033 11.8139 86.6411 12.0053 86.6846 12.1876L87.9329 17.4208C88.0361 17.8534 87.5655 18.1954 87.1859 17.9635L82.5946 15.1592C82.4346 15.0615 82.2334 15.0615 82.0734 15.1592L77.482 17.9635C77.1025 18.1954 76.6319 17.8534 76.7351 17.4208L77.9834 12.1876C78.0269 12.0053 77.9647 11.8139 77.8223 11.6919L73.7364 8.19189C73.3986 7.90256 73.5784 7.3493 74.0217 7.31376L79.3845 6.88383C79.5714 6.86885 79.7342 6.75056 79.8062 6.57744L81.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip7_679_5932)\">\\n<path d=\"M81.8723 1.60996C82.0431 1.19932 82.6248 1.19932 82.7956 1.60996L84.8617 6.57744C84.9337 6.75056 85.0965 6.86885 85.2834 6.88383L90.6462 7.31376C91.0896 7.3493 91.2693 7.90256 90.9316 8.19189L86.8457 11.6919C86.7033 11.8139 86.6411 12.0053 86.6846 12.1876L87.9329 17.4208C88.0361 17.8534 87.5655 18.1954 87.1859 17.9635L82.5946 15.1592C82.4346 15.0615 82.2334 15.0615 82.0734 15.1592L77.482 17.9635C77.1025 18.1954 76.6319 17.8534 76.7351 17.4208L77.9834 12.1876C78.0269 12.0053 77.9647 11.8139 77.8223 11.6919L73.7364 8.19189C73.3986 7.90256 73.5784 7.3493 74.0217 7.31376L79.3845 6.88383C79.5714 6.86885 79.7342 6.75056 79.8062 6.57744L81.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip8_679_5932)\">\\n<path d=\"M105.872 1.60996C106.043 1.19932 106.625 1.19932 106.796 1.60996L108.862 6.57744C108.934 6.75056 109.097 6.86885 109.283 6.88383L114.646 7.31376C115.09 7.3493 115.269 7.90256 114.932 8.19189L110.846 11.6919C110.703 11.8139 110.641 12.0053 110.685 12.1876L111.933 17.4208C112.036 17.8534 111.565 18.1954 111.186 17.9635L106.595 15.1592C106.435 15.0615 106.233 15.0615 106.073 15.1592L101.482 17.9635C101.102 18.1954 100.632 17.8534 100.735 17.4208L101.983 12.1876C102.027 12.0053 101.965 11.8139 101.822 11.6919L97.7364 8.19189C97.3986 7.90256 97.5784 7.3493 98.0217 7.31376L103.385 6.88383C103.571 6.86885 103.734 6.75056 103.806 6.57744L105.872 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip9_679_5932)\">\\n<path d=\"M105.872 1.60996C106.043 1.19932 106.625 1.19932 106.796 1.60996L108.862 6.57744C108.934 6.75056 109.097 6.86885 109.283 6.88383L114.646 7.31376C115.09 7.3493 115.269 7.90256 114.932 8.19189L110.846 11.6919C110.703 11.8139 110.641 12.0053 110.685 12.1876L111.933 17.4208C112.036 17.8534 111.565 18.1954 111.186 17.9635L106.595 15.1592C106.435 15.0615 106.233 15.0615 106.073 15.1592L101.482 17.9635C101.102 18.1954 100.632 17.8534 100.735 17.4208L101.983 12.1876C102.027 12.0053 101.965 11.8139 101.822 11.6919L97.7364 8.19189C97.3986 7.90256 97.5784 7.3493 98.0217 7.31376L103.385 6.88383C103.571 6.86885 103.734 6.75056 103.806 6.57744L105.872 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.333984)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.333984)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96.334)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cub95w\",\"data-border\":true,\"data-framer-name\":\"Quote Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\"A empresa Invisual Tecnologia \\xe9 uma grande parceira dos nossos hospitais, fornecendo uma ampla gama de solu\\xe7\\xf5es que impulsionam nossa efici\\xeancia operacional e assistencial. Destaco as solu\\xe7\\xf5es de an\\xe1lise preditiva da cadeia de suprimentos, de controle de OPME e a gest\\xe3o de Repasses M\\xe9dicos que contribu\\xedram para aprimorar nossos resultados financeiros e operacionais. Al\\xe9m disso, os projetos Insightcare, Command Center e de Intelig\\xeancia Artificial, deram maior agilidade e qualidade nos nossos atendimentos. A Invisual transformou o cen\\xe1rio de tecnologia em nossos hospitais, permitindo que alcancemos novos padr\\xf5es de excel\\xeancia em nossa opera\\xe7\\xe3o e no atendimento ao paciente. Estamos gratos por essa parceria s\\xf3lida e inovadora!\"'})})},PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\"A empresa Invisual Tecnologia \\xe9 uma grande parceira dos nossos hospitais, fornecendo uma ampla gama de solu\\xe7\\xf5es que impulsionam nossa efici\\xeancia operacional e assistencial. Destaco as solu\\xe7\\xf5es de an\\xe1lise preditiva da cadeia de suprimentos, de controle de OPME e a gest\\xe3o de Repasses M\\xe9dicos que contribu\\xedram para aprimorar nossos resultados financeiros e operacionais. Al\\xe9m disso, os projetos Insightcare, Command Center e de Intelig\\xeancia Artificial, deram maior agilidade e qualidade nos nossos atendimentos. A Invisual transformou o cen\\xe1rio de tecnologia em nossos hospitais, permitindo que alcancemos novos padr\\xf5es de excel\\xeancia em nossa opera\\xe7\\xe3o e no atendimento ao paciente. Estamos gratos por essa parceria s\\xf3lida e inovadora!\"'})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\"A empresa Invisual Tecnologia \\xe9 uma grande parceira dos nossos hospitais, fornecendo uma ampla gama de solu\\xe7\\xf5es que impulsionam nossa efici\\xeancia operacional e assistencial. Destaco as solu\\xe7\\xf5es de an\\xe1lise preditiva da cadeia de suprimentos, de controle de OPME e a gest\\xe3o de Repasses M\\xe9dicos que contribu\\xedram para aprimorar nossos resultados financeiros e operacionais. Al\\xe9m disso, os projetos Insightcare, Command Center e de Intelig\\xeancia Artificial, deram maior agilidade e qualidade nos nossos atendimentos. A Invisual transformou o cen\\xe1rio de tecnologia em nossos hospitais, permitindo que alcancemos novos padr\\xf5es de excel\\xeancia em nossa opera\\xe7\\xe3o e no atendimento ao paciente. Estamos gratos por essa parceria s\\xf3lida e inovadora!\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1pdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(199, 210, 225))\"},children:'\"A empresa Invisual Tecnologia \\xe9 uma grande parceira dos nossos hospitais, fornecendo uma ampla gama de solu\\xe7\\xf5es que impulsionam nossa efici\\xeancia operacional e assistencial. Destaco as solu\\xe7\\xf5es de an\\xe1lise preditiva da cadeia de suprimentos, de controle de OPME e a gest\\xe3o de Repasses M\\xe9dicos que contribu\\xedram para aprimorar nossos resultados financeiros e operacionais. Al\\xe9m disso, os projetos Insightcare, Command Center e de Intelig\\xeancia Artificial, deram maior agilidade e qualidade nos nossos atendimentos. A Invisual transformou o cen\\xe1rio de tecnologia em nossos hospitais, permitindo que alcancemos novos padr\\xf5es de excel\\xeancia em nossa opera\\xe7\\xe3o e no atendimento ao paciente. Estamos gratos por essa parceria s\\xf3lida e inovadora!\"'})}),className:\"framer-vdcmq\",\"data-framer-name\":\"Quote\",fonts:[\"FS;Poppins-italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11n1q8a\",\"data-border\":true,\"data-framer-name\":\"Avatar and text\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1k4szxo\",\"data-framer-name\":\"Santa_Lucia\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:280,svg:'<svg width=\"280\" height=\"42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.575.165c-.745.272-1.053.533-1.349 1.171l-.284.615v5.06c0 4.305-.023 5.12-.189 5.5-.189.46-.662 1.016-1.053 1.24-.165.107-1.845.154-5.63.202l-5.394.059-.567.354c-.355.225-.663.533-.817.828-.236.45-.248.662-.283 5.558-.024 3.452 0 5.226.094 5.533.142.473.698 1.183 1.112 1.42.177.106 1.727.153 5.63.2l5.382.06.556.319c.296.177.675.532.828.768l.272.45.06 5.38c.047 4.765.082 5.427.26 5.746.284.52.97 1.088 1.42 1.17.212.036 2.732.06 5.606.036l5.204-.035.485-.32c.923-.614.911-.531.982-6.538.048-4.718.083-5.368.26-5.688.26-.473.959-1.087 1.373-1.194.177-.06 2.637-.095 5.464-.095 4.803 0 5.17.012 5.56.225.556.296.816.532 1.052.958.166.307.202 1.029.249 5.676.07 5.983.047 5.864.982 6.61l.461.366 5.43.035c5.263.036 5.44.024 5.902-.212.26-.13.615-.462.792-.734l.331-.496.036-5.203c.023-3.417-.012-5.356-.083-5.64-.177-.591-.532-1.005-1.112-1.324-.485-.26-.603-.26-5.902-.32l-5.394-.059-.461-.366c-.959-.78-.923-.544-.959-6.22-.023-3.37.012-5.215.095-5.534.071-.26.296-.662.497-.898.745-.84.509-.804 6.494-.875l5.394-.06.473-.319c.284-.189.58-.52.733-.827.237-.509.248-.663.248-5.688 0-5.64 0-5.676-.685-6.385C54.526.047 54.1 0 48.847 0c-2.992 0-4.967.047-5.251.13-.249.06-.627.284-.864.485-.84.745-.804.508-.875 6.491l-.06 5.392-.342.485c-.19.272-.544.591-.828.733-.485.225-.71.237-5.737.237-5.642 0-5.56.011-6.257-.639-.686-.615-.675-.508-.734-6.361l-.059-5.392-.355-.509c-.189-.272-.568-.615-.828-.745-.461-.236-.662-.248-5.56-.272-4.033-.023-5.18 0-5.523.13Zm86.372.899v.946h1.064V.118h-1.064v.946Zm-38.68 5.971v6.8h1.053l.036-3.288.035-3.275.343-.627c.556-1.005 1.479-1.56 2.555-1.56 1.077 0 1.857.555 2.13 1.513.07.248.118 1.868.118 3.831v3.405h1.076l-.035-3.878c-.036-3.5-.06-3.902-.26-4.28-.592-1.124-1.527-1.608-2.91-1.514-1.195.095-2.106.639-2.863 1.75-.19.284-.201.154-.201-2.696l-.012-2.98h-1.064v6.8Zm59.143-.685c0 6.113 0 6.125.272 6.586.379.686.876.934 1.857.922 1.136 0 1.301-.07 1.301-.544v-.39l-.579.06c-.769.07-1.148-.036-1.502-.415l-.284-.307V.237h-1.065V6.35Zm-15.637-3.489-.036 1.455-.851.035-.864.036v.816h1.775v3.689c0 4.257.011 4.316.946 4.8.473.249.65.272 1.597.225 1.348-.07 1.478-.13 1.478-.615v-.378l-1.194.012c-1.16.012-1.195 0-1.479-.32l-.284-.33V5.203h2.839v-.828h-2.839V1.419h-1.053l-.035 1.442Zm-31.287 1.49c-1.395.45-2.176 1.407-2.4 2.933-.25 1.726-.084 4.162.342 5.001.13.249.462.65.734.887.697.591 1.49.828 2.767.84.9 0 1.172-.048 1.716-.308.792-.366 1.372-.934 1.703-1.643.225-.473.248-.804.284-2.779.035-2.081.023-2.306-.225-2.956-.355-.993-1.04-1.632-2.07-1.94-.946-.295-2.01-.307-2.85-.035Zm3.052 1.147c.876.615.994.993 1.03 3.37.047 2.389-.048 2.897-.675 3.547-.52.544-1.195.745-2.26.686-.97-.047-1.596-.366-2.07-1.029l-.354-.508V6.645l.355-.52c.213-.296.58-.627.887-.78.461-.237.674-.272 1.561-.237.911.035 1.077.071 1.526.39Zm6.139-1.182c-1.23.378-1.975 1.466-1.869 2.72.107 1.336.805 1.809 3.549 2.423 1.325.296 1.857.604 2.082 1.207.343.874-.142 1.809-1.16 2.258-1.052.473-2.791.225-3.796-.544l-.403-.296-.355.284-.354.296.473.414c.627.555 1.833.922 3.075.922 1.148 0 1.75-.165 2.508-.674 1.348-.899 1.632-2.873.556-3.89-.462-.426-.958-.615-2.508-.97-2.058-.46-2.626-.851-2.626-1.785 0-.674.367-1.206 1.03-1.502.78-.343 2.093-.26 2.968.19l.627.319.343-.249c.201-.142.355-.272.355-.307 0-.142-1.005-.674-1.55-.828-.804-.201-2.247-.201-2.945.012Zm10.493-.012c-.699.26-1.35.733-1.74 1.277l-.355.485V4.375h-1.064V17.5h1.064v-2.66c0-1.691.048-2.66.119-2.66.07 0 .118.082.118.176 0 .095.248.438.568.757.437.461.71.627 1.254.78 1.68.485 3.489-.295 4.175-1.797.154-.366.213-.91.249-2.826.023-1.454 0-2.554-.083-2.838-.367-1.383-1.432-2.187-2.97-2.258-.567-.024-1.052.024-1.336.13Zm1.986 1.005c.592.26 1.077.816 1.242 1.407.154.568.154 4.091-.012 4.67-.272 1.006-1.313 1.739-2.472 1.739-.828 0-1.466-.296-2.034-.922-.663-.733-.84-1.49-.78-3.382.046-1.383.082-1.608.366-2.152.331-.639.863-1.17 1.443-1.419.52-.225 1.691-.201 2.247.06Zm17.542-1.005c-1.207.32-1.987 1.182-1.987 2.2v.472h.473c.449 0 .473-.023.473-.366 0-.875.852-1.502 2.165-1.608.946-.083 1.656.118 2.188.614l.438.39.035 1.242.047 1.242-1.999.047c-1.762.036-2.058.071-2.602.32-1.526.673-2.105 2.234-1.36 3.689.402.804 1.076 1.241 2.093 1.383 1.609.201 2.91-.213 3.608-1.183l.355-.484v.414c0 .236.036.59.071.792.071.343.118.366.568.366h.485l-.059-3.866c-.06-3.713-.083-3.902-.332-4.375-.331-.627-.851-1.029-1.667-1.265-.757-.225-2.212-.237-2.993-.024Zm3.809 5.983c0 1.715-.651 2.53-2.248 2.838-1.691.32-3.087-.686-2.921-2.105.071-.662.378-1.076 1.029-1.419.473-.236.686-.26 2.33-.26h1.81v.946Zm-16.56-1.182v4.73h1.064v-9.46h-1.064v4.73Zm31.582 21.083c0 9.707-.012 9.518.745 10.511.237.32.651.639 1.088.864l.698.354h15.626l.603-.319c1.124-.591 1.822-1.715 1.822-2.956v-.568h-1.893v.414c0 .284-.106.532-.367.828-.709.804-.307.768-8.067.768h-7.026l-.402-.272a2.93 2.93 0 0 1-.662-.662c-.272-.402-.272-.425-.272-4.812v-4.422h15.377v-1.892h-15.377v-6.622h-1.893v8.785Zm46.865.224.035 9.022.272.544c.355.71.958 1.313 1.668 1.667l.544.272h15.496l.674-.33c1.1-.545 1.715-1.49 1.833-2.815l.071-.698h-1.786l-.083.39c-.118.556-.485 1.1-.946 1.384-.39.236-.485.236-7.618.213l-7.227-.036-.497-.508-.508-.497-.036-8.809-.023-8.809h-1.905l.036 9.01Zm70.237-4.694v.887h1.893V24.83h-1.893v.887ZM65.953 28.154a3.44 3.44 0 0 0-1.775 1.04c-.662.733-.828 1.218-.84 2.436-.011 1.313.284 2.081 1.077 2.779 1.029.898.733.875 9.025.946 6.872.059 7.428.07 7.724.272.627.402.793.851.793 2.08 0 1.278-.19 1.703-.958 2.13-.426.247-.592.247-7.429.247-7.676 0-7.357.024-7.984-.709-.166-.213-.343-.58-.379-.84l-.082-.46h-1.857v.449c0 1.277.757 2.518 1.857 3.062l.686.331h15.613l.604-.319a3.568 3.568 0 0 0 1.667-1.916c.308-.934.284-3.37-.059-4.114-.402-.923-.816-1.36-1.656-1.774l-.792-.39-7.476-.06-7.475-.059-.367-.354c-.793-.757-.887-1.478-.308-2.247.603-.78.532-.78 8.257-.745 6.825.036 6.943.036 7.274.284.473.355.864.97.864 1.36v.343h1.987l-.06-.509c-.189-1.773-1.123-2.944-2.637-3.263-.734-.154-14.62-.154-15.294 0Zm23.42 0c-1.526.366-2.685 1.785-2.685 3.31v.462h1.857l.071-.426c.095-.603.58-1.17 1.171-1.395.45-.178 1.29-.19 7.452-.166 6.825.036 6.943.036 7.275.284.686.508.863.934.863 2.07v1.052h-7.476c-4.66 0-7.783.047-8.256.13-1.266.2-2.117.827-2.626 1.939-.248.532-.272.768-.272 2.317 0 1.68.012 1.739.355 2.413.225.437.544.85.864 1.087.993.757.804.745 10.515.745h8.789V30.66l-.367-.72c-.39-.805-.84-1.242-1.644-1.609-.521-.248-.698-.248-7.984-.272-4.117-.012-7.654.036-7.902.095Zm16.004 9.566v2.364h-15.46l-.39-.272c-.722-.484-.887-.827-.935-1.927-.047-1.182.071-1.537.71-2.116l.461-.414h15.614v2.365Zm7.417-9.566a3.439 3.439 0 0 0-1.846 1.123c-.828.946-.839 1.029-.839 7.225v5.474h1.88l.036-5.415.035-5.428.32-.413c.627-.828.508-.816 8.28-.78 6.825.035 6.943.035 7.274.283.178.13.45.426.603.639l.261.39v10.724h1.892V30.66l-.366-.72c-.391-.805-.84-1.242-1.645-1.609-.52-.248-.698-.248-7.984-.272-4.116-.012-7.653.036-7.901.095Zm46.651.059c-.745.2-1.147.473-1.727 1.135-.449.532-.768 1.407-.768 2.128v.45h1.857l.071-.426c.094-.603.579-1.17 1.171-1.395.449-.178 1.277-.19 7.44-.166l6.931.036.426.33c.651.497.793.864.793 2.035v1.005h-7.476c-7.476 0-8.623.059-9.333.425-.591.296-1.171.887-1.502 1.514-.308.58-.319.674-.319 2.388 0 1.75.011 1.798.355 2.472.224.437.544.85.863 1.087.994.757.804.745 10.516.745h8.8l-.035-5.77c-.036-5.676-.036-5.77-.296-6.243-.426-.792-.828-1.195-1.55-1.55l-.674-.33-7.452-.024c-6.222-.024-7.558 0-8.091.154Zm16.194 9.507v2.364h-15.46l-.402-.272c-.734-.496-.935-.934-.935-2.069 0-1.135.213-1.667.864-2.128l.378-.26h15.555v2.365Zm28.175-3.997.036 5.711.272.556c.319.638 1.112 1.407 1.762 1.714.414.201.994.213 8.209.213h7.748l.698-.355c.437-.224.851-.543 1.088-.863.722-.957.745-1.135.745-7.2v-5.487l-.911.035-.922.036-.059 5.439c-.071 6.054-.036 5.794-.887 6.326-.379.236-.521.236-7.618.213l-7.227-.036-.497-.508-.509-.497-.035-5.498-.036-5.498h-1.892l.035 5.699Zm26.295-5.581c-1.206.177-2.188.958-2.614 2.081-.201.532-.225.946-.225 4.895 0 4.245 0 4.328.272 4.86.343.698.97 1.324 1.668 1.667l.544.272h7.748c7.617 0 7.759 0 8.28-.248 1.171-.544 1.857-1.537 1.975-2.873l.071-.722H245.9v.39c0 .497-.473 1.183-.993 1.431-.379.178-1.1.19-7.583.166l-7.168-.036-.532-.555-.52-.556v-3.831c0-3.784 0-3.831.272-4.233a2.93 2.93 0 0 1 .662-.663l.402-.271h7.026c7.76 0 7.358-.036 8.067.768.261.296.367.544.367.828v.414h1.893v-.45c0-1.277-.852-2.577-2.035-3.11l-.627-.283-7.215-.012c-3.963-.012-7.488.012-7.807.07Zm20.546 5.581.036 5.711.283.58a3.472 3.472 0 0 0 1.621 1.62c.473.224.816.283 1.964.319l1.395.047v-1.892l-1.147-.047c-1.266-.036-1.55-.166-2.035-.875-.248-.355-.248-.461-.248-5.759v-5.403h-1.904l.035 5.699Zm10.942-5.581c-1.609.272-2.804 1.667-2.804 3.275v.509h1.751l.071-.379c.106-.544.532-1.111 1.041-1.395.426-.236.532-.236 7.523-.213l7.085.036.426.33c.662.497.792.852.792 2.094v1.064h-7.984c-7.724 0-7.996.012-8.623.236-.828.32-1.62 1.136-1.893 1.987-.177.508-.201.934-.165 2.246.035 1.479.071 1.668.355 2.224.366.697.863 1.158 1.632 1.513.521.248.686.248 9.558.284l9.025.035-.036-5.652c-.035-5.45-.047-5.675-.284-6.184-.544-1.159-1.384-1.797-2.649-1.998-.911-.154-13.946-.154-14.821-.012Zm15.885 9.519v2.424h-15.578l-.402-.272c-.603-.39-.935-1.147-.935-2.105 0-.934.131-1.336.568-1.81.627-.673.391-.65 8.694-.661h7.653v2.424Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-upc4k3\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},children:\"Sergio Murilo Domingues Junior\"})}),className:\"framer-12pozl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ftma7d\",\"data-styles-preset\":\"tjQcKJwyy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"Diretor Executivo, Hospital Santa Lucia Sul\"})}),className:\"framer-1gfaqi1\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-364hwr\",\"data-framer-name\":\"Stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:117,svg:'<svg width=\"117\" height=\"20\" viewBox=\"0 0 117 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_679_5932)\">\\n<path d=\"M9.87232 1.60996C10.0431 1.19932 10.6248 1.19932 10.7956 1.60996L12.8617 6.57744C12.9337 6.75056 13.0965 6.86885 13.2834 6.88383L18.6462 7.31376C19.0896 7.3493 19.2693 7.90256 18.9316 8.19189L14.8457 11.6919C14.7033 11.8139 14.6411 12.0053 14.6846 12.1876L15.9329 17.4208C16.0361 17.8534 15.5655 18.1954 15.1859 17.9635L10.5946 15.1592C10.4346 15.0615 10.2334 15.0615 10.0734 15.1592L5.48204 17.9635C5.10249 18.1954 4.63187 17.8534 4.73506 17.4208L5.98337 12.1876C6.02687 12.0053 5.96469 11.8139 5.82229 11.6919L1.7364 8.19189C1.39863 7.90256 1.57839 7.3493 2.02172 7.31376L7.38453 6.88383C7.57142 6.86885 7.73423 6.75056 7.80623 6.57744L9.87232 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip1_679_5932)\">\\n<path d=\"M9.87232 1.60996C10.0431 1.19932 10.6248 1.19932 10.7956 1.60996L12.8617 6.57744C12.9337 6.75056 13.0965 6.86885 13.2834 6.88383L18.6462 7.31376C19.0896 7.3493 19.2693 7.90256 18.9316 8.19189L14.8457 11.6919C14.7033 11.8139 14.6411 12.0053 14.6846 12.1876L15.9329 17.4208C16.0361 17.8534 15.5655 18.1954 15.1859 17.9635L10.5946 15.1592C10.4346 15.0615 10.2334 15.0615 10.0734 15.1592L5.48204 17.9635C5.10249 18.1954 4.63187 17.8534 4.73506 17.4208L5.98337 12.1876C6.02687 12.0053 5.96469 11.8139 5.82229 11.6919L1.7364 8.19189C1.39863 7.90256 1.57839 7.3493 2.02172 7.31376L7.38453 6.88383C7.57142 6.86885 7.73423 6.75056 7.80623 6.57744L9.87232 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip2_679_5932)\">\\n<path d=\"M33.8723 1.60996C34.0431 1.19932 34.6248 1.19932 34.7956 1.60996L36.8617 6.57744C36.9337 6.75056 37.0965 6.86885 37.2834 6.88383L42.6462 7.31376C43.0896 7.3493 43.2693 7.90256 42.9316 8.19189L38.8457 11.6919C38.7033 11.8139 38.6411 12.0053 38.6846 12.1876L39.9329 17.4208C40.0361 17.8534 39.5655 18.1954 39.1859 17.9635L34.5946 15.1592C34.4346 15.0615 34.2334 15.0615 34.0734 15.1592L29.482 17.9635C29.1025 18.1954 28.6319 17.8534 28.7351 17.4208L29.9834 12.1876C30.0269 12.0053 29.9647 11.8139 29.8223 11.6919L25.7364 8.19189C25.3986 7.90256 25.5784 7.3493 26.0217 7.31376L31.3845 6.88383C31.5714 6.86885 31.7342 6.75056 31.8062 6.57744L33.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip3_679_5932)\">\\n<path d=\"M33.8723 1.60996C34.0431 1.19932 34.6248 1.19932 34.7956 1.60996L36.8617 6.57744C36.9337 6.75056 37.0965 6.86885 37.2834 6.88383L42.6462 7.31376C43.0896 7.3493 43.2693 7.90256 42.9316 8.19189L38.8457 11.6919C38.7033 11.8139 38.6411 12.0053 38.6846 12.1876L39.9329 17.4208C40.0361 17.8534 39.5655 18.1954 39.1859 17.9635L34.5946 15.1592C34.4346 15.0615 34.2334 15.0615 34.0734 15.1592L29.482 17.9635C29.1025 18.1954 28.6319 17.8534 28.7351 17.4208L29.9834 12.1876C30.0269 12.0053 29.9647 11.8139 29.8223 11.6919L25.7364 8.19189C25.3986 7.90256 25.5784 7.3493 26.0217 7.31376L31.3845 6.88383C31.5714 6.86885 31.7342 6.75056 31.8062 6.57744L33.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip4_679_5932)\">\\n<path d=\"M57.8723 1.60996C58.0431 1.19932 58.6248 1.19932 58.7956 1.60996L60.8617 6.57744C60.9337 6.75056 61.0965 6.86885 61.2834 6.88383L66.6462 7.31376C67.0896 7.3493 67.2693 7.90256 66.9316 8.19189L62.8457 11.6919C62.7033 11.8139 62.6411 12.0053 62.6846 12.1876L63.9329 17.4208C64.0361 17.8534 63.5655 18.1954 63.1859 17.9635L58.5946 15.1592C58.4346 15.0615 58.2334 15.0615 58.0734 15.1592L53.482 17.9635C53.1025 18.1954 52.6319 17.8534 52.7351 17.4208L53.9834 12.1876C54.0269 12.0053 53.9647 11.8139 53.8223 11.6919L49.7364 8.19189C49.3986 7.90256 49.5784 7.3493 50.0217 7.31376L55.3845 6.88383C55.5714 6.86885 55.7342 6.75056 55.8062 6.57744L57.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip5_679_5932)\">\\n<path d=\"M57.8723 1.60996C58.0431 1.19932 58.6248 1.19932 58.7956 1.60996L60.8617 6.57744C60.9337 6.75056 61.0965 6.86885 61.2834 6.88383L66.6462 7.31376C67.0896 7.3493 67.2693 7.90256 66.9316 8.19189L62.8457 11.6919C62.7033 11.8139 62.6411 12.0053 62.6846 12.1876L63.9329 17.4208C64.0361 17.8534 63.5655 18.1954 63.1859 17.9635L58.5946 15.1592C58.4346 15.0615 58.2334 15.0615 58.0734 15.1592L53.482 17.9635C53.1025 18.1954 52.6319 17.8534 52.7351 17.4208L53.9834 12.1876C54.0269 12.0053 53.9647 11.8139 53.8223 11.6919L49.7364 8.19189C49.3986 7.90256 49.5784 7.3493 50.0217 7.31376L55.3845 6.88383C55.5714 6.86885 55.7342 6.75056 55.8062 6.57744L57.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip6_679_5932)\">\\n<path d=\"M81.8723 1.60996C82.0431 1.19932 82.6248 1.19932 82.7956 1.60996L84.8617 6.57744C84.9337 6.75056 85.0965 6.86885 85.2834 6.88383L90.6462 7.31376C91.0896 7.3493 91.2693 7.90256 90.9316 8.19189L86.8457 11.6919C86.7033 11.8139 86.6411 12.0053 86.6846 12.1876L87.9329 17.4208C88.0361 17.8534 87.5655 18.1954 87.1859 17.9635L82.5946 15.1592C82.4346 15.0615 82.2334 15.0615 82.0734 15.1592L77.482 17.9635C77.1025 18.1954 76.6319 17.8534 76.7351 17.4208L77.9834 12.1876C78.0269 12.0053 77.9647 11.8139 77.8223 11.6919L73.7364 8.19189C73.3986 7.90256 73.5784 7.3493 74.0217 7.31376L79.3845 6.88383C79.5714 6.86885 79.7342 6.75056 79.8062 6.57744L81.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip7_679_5932)\">\\n<path d=\"M81.8723 1.60996C82.0431 1.19932 82.6248 1.19932 82.7956 1.60996L84.8617 6.57744C84.9337 6.75056 85.0965 6.86885 85.2834 6.88383L90.6462 7.31376C91.0896 7.3493 91.2693 7.90256 90.9316 8.19189L86.8457 11.6919C86.7033 11.8139 86.6411 12.0053 86.6846 12.1876L87.9329 17.4208C88.0361 17.8534 87.5655 18.1954 87.1859 17.9635L82.5946 15.1592C82.4346 15.0615 82.2334 15.0615 82.0734 15.1592L77.482 17.9635C77.1025 18.1954 76.6319 17.8534 76.7351 17.4208L77.9834 12.1876C78.0269 12.0053 77.9647 11.8139 77.8223 11.6919L73.7364 8.19189C73.3986 7.90256 73.5784 7.3493 74.0217 7.31376L79.3845 6.88383C79.5714 6.86885 79.7342 6.75056 79.8062 6.57744L81.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip8_679_5932)\">\\n<path d=\"M105.872 1.60996C106.043 1.19932 106.625 1.19932 106.796 1.60996L108.862 6.57744C108.934 6.75056 109.097 6.86885 109.283 6.88383L114.646 7.31376C115.09 7.3493 115.269 7.90256 114.932 8.19189L110.846 11.6919C110.703 11.8139 110.641 12.0053 110.685 12.1876L111.933 17.4208C112.036 17.8534 111.565 18.1954 111.186 17.9635L106.595 15.1592C106.435 15.0615 106.233 15.0615 106.073 15.1592L101.482 17.9635C101.102 18.1954 100.632 17.8534 100.735 17.4208L101.983 12.1876C102.027 12.0053 101.965 11.8139 101.822 11.6919L97.7364 8.19189C97.3986 7.90256 97.5784 7.3493 98.0217 7.31376L103.385 6.88383C103.571 6.86885 103.734 6.75056 103.806 6.57744L105.872 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip9_679_5932)\">\\n<path d=\"M105.872 1.60996C106.043 1.19932 106.625 1.19932 106.796 1.60996L108.862 6.57744C108.934 6.75056 109.097 6.86885 109.283 6.88383L114.646 7.31376C115.09 7.3493 115.269 7.90256 114.932 8.19189L110.846 11.6919C110.703 11.8139 110.641 12.0053 110.685 12.1876L111.933 17.4208C112.036 17.8534 111.565 18.1954 111.186 17.9635L106.595 15.1592C106.435 15.0615 106.233 15.0615 106.073 15.1592L101.482 17.9635C101.102 18.1954 100.632 17.8534 100.735 17.4208L101.983 12.1876C102.027 12.0053 101.965 11.8139 101.822 11.6919L97.7364 8.19189C97.3986 7.90256 97.5784 7.3493 98.0217 7.31376L103.385 6.88383C103.571 6.86885 103.734 6.75056 103.806 6.57744L105.872 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.333984)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.333984)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96.334)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wt16gd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation12,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x3n24t\",\"data-framer-name\":\"Separator Line\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wok2gn\",\"data-framer-name\":\"Separator Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:1402,svg:'<svg width=\"1402\" height=\"3\" viewBox=\"-1 -1 1402 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"1400\" y2=\"0.5\" stroke=\"url(#paint0_linear_681_1774)\" stroke-opacity=\"0.3\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_681_1774\" x1=\"0\" y1=\"1\" x2=\"1400\" y2=\"1\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"0.536458\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-la2gza\",\"data-framer-name\":\"Metrics Row\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xl5y97\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vxi7jt\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228)) 0%, var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116)) 100%)\"},children:\"+10\"})})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228)) 0%, var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116)) 100%)\"},children:\"+10\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228)) 0%, var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116)) 100%)\"},children:\"+10\"})})}),className:\"framer-5a6f4w\",\"data-framer-name\":\"Number\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c9y6na\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},children:\"Anos de mercado\"})}),fonts:[\"GF;Poppins-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",style:{\"--framer-text-color\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},children:\"Anos de mercado\"})}),className:\"framer-1nby6lk\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ed5jz7 hidden-ujtbii hidden-qqyzon\",\"data-framer-name\":\"Vertical Separator\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:137,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"137\" viewBox=\"-1 -1 3 137\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499994\" y2=\"135\" stroke=\"url(#paint0_linear_681_1775)\" stroke-opacity=\"0.3\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_681_1775\" x1=\"0\" y1=\"0\" x2=\"-5.90104e-06\" y2=\"135\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"0.494792\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17y93ey\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gcytfj\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228)) 0%, var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116)) 100%)\"},children:\"+2M\"})})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228)) 0%, var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116)) 100%)\"},children:\"+2M\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228)) 0%, var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116)) 100%)\"},children:\"+2M\"})})}),className:\"framer-1cdlnd5\",\"data-framer-name\":\"Number\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8yih6r\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},children:\"De pacientes\"})}),fonts:[\"GF;Poppins-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",style:{\"--framer-text-color\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},children:\"De pacientes\"})}),className:\"framer-s1sly0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1dg18zn hidden-ujtbii hidden-qqyzon\",\"data-framer-name\":\"Vertical Separator\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:137,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"137\" viewBox=\"-1 -1 3 137\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499994\" y2=\"135\" stroke=\"url(#paint0_linear_681_1776)\" stroke-opacity=\"0.3\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_681_1776\" x1=\"0\" y1=\"0\" x2=\"-5.90104e-06\" y2=\"135\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"0.494792\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oq9971\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w2vfev\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228)) 0%, var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116)) 100%)\"},children:\"+20\"})})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228)) 0%, var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116)) 100%)\"},children:\"+20\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, rgb(67, 239, 228)) 0%, var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, rgb(78, 87, 116)) 100%)\"},children:\"+20\"})})}),className:\"framer-1rv0zjy\",\"data-framer-name\":\"Number\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tgt6en\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},children:\"Solu\\xe7\\xf5es\"})}),fonts:[\"GF;Poppins-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15iwhub\",\"data-styles-preset\":\"qmT0OFPbX\",style:{\"--framer-text-color\":\"var(--token-1b3e504c-d305-4876-8e2c-5dc8f71ef80f, rgb(185, 190, 209))\"},children:\"Solu\\xe7\\xf5es\"})}),className:\"framer-19e4w4r\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]})]})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-udlfp0\",\"data-framer-name\":\"Blog\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__styleAppearEffectEnabled:undefined,style:{},transformTemplate:undefined},WpCIbgkLd:{__framer__styleAppearEffectEnabled:undefined,style:{},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sxqa7s\",\"data-framer-name\":\"blue\",style:{transformPerspective:1200},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__styleAppearEffectEnabled:undefined,style:{}},WpCIbgkLd:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8vv19x\",\"data-framer-name\":\"purple \",style:{transformPerspective:1200},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+8387.0667+20+0},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+8651.408+80+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+9217.0302+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:(componentViewport?.y||0)+0+7847.7191+80+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hsib9k-container\",nodeId:\"KsQhDTWbb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(H2Header,{bx4ndZ6RL:\"Blog\",height:\"100%\",id:\"KsQhDTWbb\",layoutId:\"KsQhDTWbb\",width:\"100%\",wQdEXzeKw:\"\\xdaltimas publica\\xe7\\xf5es\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wl1j99\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{query:{from:{alias:\"b9HQ5d1Qd\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"b9HQ5d1Qd\",name:\"wR752i2OM\",type:\"Identifier\"},{collection:\"b9HQ5d1Qd\",name:\"TKjCrGQqi\",type:\"Identifier\"},{collection:\"b9HQ5d1Qd\",name:\"ZVhKDtWyE\",type:\"Identifier\"},{collection:\"b9HQ5d1Qd\",name:\"zgMbIQQN4\",type:\"Identifier\"},{collection:\"b9HQ5d1Qd\",name:\"Lx_TFXkL0\",type:\"Identifier\"},{collection:\"b9HQ5d1Qd\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"b9HQ5d1Qd\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"b9HQ5d1Qd\",name:\"wR752i2OM\",type:\"Identifier\"},{collection:\"b9HQ5d1Qd\",name:\"TKjCrGQqi\",type:\"Identifier\"},{collection:\"b9HQ5d1Qd\",name:\"ZVhKDtWyE\",type:\"Identifier\"},{collection:\"b9HQ5d1Qd\",name:\"zgMbIQQN4\",type:\"Identifier\"},{collection:\"b9HQ5d1Qd\",name:\"Lx_TFXkL0\",type:\"Identifier\"},{collection:\"b9HQ5d1Qd\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idb9HQ5d1Qd,Lx_TFXkL0:Lx_TFXkL0b9HQ5d1Qd,TKjCrGQqi:TKjCrGQqib9HQ5d1Qd,wR752i2OM:wR752i2OMb9HQ5d1Qd,zgMbIQQN4:zgMbIQQN4b9HQ5d1Qd,ZVhKDtWyE:ZVhKDtWyEb9HQ5d1Qd},index)=>{wR752i2OMb9HQ5d1Qd??=\"\";TKjCrGQqib9HQ5d1Qd??=0;Lx_TFXkL0b9HQ5d1Qd??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`b9HQ5d1Qd-${idb9HQ5d1Qd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{wR752i2OM:wR752i2OMb9HQ5d1Qd},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{wR752i2OM:wR752i2OMb9HQ5d1Qd},webPageId:\"CcQek4coT\"},implicitPathVariables:undefined},{href:{pathVariables:{wR752i2OM:wR752i2OMb9HQ5d1Qd},webPageId:\"CcQek4coT\"},implicitPathVariables:undefined},{href:{pathVariables:{wR752i2OM:wR752i2OMb9HQ5d1Qd},webPageId:\"CcQek4coT\"},implicitPathVariables:undefined},{href:{pathVariables:{wR752i2OM:wR752i2OMb9HQ5d1Qd},webPageId:\"CcQek4coT\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+8387.0667+20+112+0+878},PqpaQgc5e:{width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1200px) - 36px) / 2, 298px)`,y:(componentViewport?.y||0)+0+8651.408+80+120+0+0},WpCIbgkLd:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 20px)`,y:(componentViewport?.y||0)+0+9217.0302+40+112+0+878}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:423,width:\"376px\",y:(componentViewport?.y||0)+0+7847.7191+80+120+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4qgre-container\",nodeId:\"Cbx_Cqmka\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{dCpBziIhU:resolvedLinks3[2],variant:\"s6M9jWJZw\"},PqpaQgc5e:{dCpBziIhU:resolvedLinks3[1]},WpCIbgkLd:{dCpBziIhU:resolvedLinks3[3],variant:\"s6M9jWJZw\"}},children:/*#__PURE__*/_jsx(BlogModuleDefault,{au8jrmuqm:zgMbIQQN4b9HQ5d1Qd,dCpBziIhU:resolvedLinks3[0],height:\"100%\",id:\"Cbx_Cqmka\",layoutId:\"Cbx_Cqmka\",MTR1vbowk:toResponsiveImage(ZVhKDtWyEb9HQ5d1Qd),oa_5Omgnz:TKjCrGQqib9HQ5d1Qd,OLU1h34RU:Lx_TFXkL0b9HQ5d1Qd,style:{width:\"100%\"},variant:\"LyX8FBd33\",width:\"100%\"})})})})})})})},idb9HQ5d1Qd);})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XaWxCCBNU\"},implicitPathVariables:undefined},{href:{webPageId:\"XaWxCCBNU\"},implicitPathVariables:undefined},{href:{webPageId:\"XaWxCCBNU\"},implicitPathVariables:undefined},{href:{webPageId:\"XaWxCCBNU\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+8387.0667+20+1437},PqpaQgc5e:{y:(componentViewport?.y||0)+0+8651.408+80+1014},WpCIbgkLd:{y:(componentViewport?.y||0)+0+9217.0302+40+1437}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+7847.7191+80+591,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mlh6q6-container\",nodeId:\"TGosIi0EZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{vjZWklrqI:resolvedLinks4[2]},PqpaQgc5e:{vjZWklrqI:resolvedLinks4[1]},WpCIbgkLd:{vjZWklrqI:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowRight\",height:\"100%\",id:\"TGosIi0EZ\",layoutId:\"TGosIi0EZ\",variant:\"JiPCvmJb6\",vjZWklrqI:resolvedLinks4[0],width:\"100%\",xEfGs_njT:\"Leia mais artigos\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+9933.0667},PqpaQgc5e:{y:(componentViewport?.y||0)+0+9854.408},WpCIbgkLd:{y:(componentViewport?.y||0)+0+10783.0302}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8627.7191,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e9vkll-container\",nodeId:\"pYWEO4VUH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"IFm_nl1xI\"},WpCIbgkLd:{variant:\"IFm_nl1xI\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"pYWEO4VUH\",layoutId:\"pYWEO4VUH\",style:{width:\"100%\"},variant:\"o7RQfo0Of\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{height:64,width:\"100vw\",y:32}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation15,className:\"framer-1r0wun4-container hidden-72rtr7 hidden-1uu7l1z hidden-qqyzon\",\"data-framer-appear-id\":\"1r0wun4\",initial:animation1,layoutScroll:true,nodeId:\"LJIlZSmnU\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"LJIlZSmnU\",layoutId:\"LJIlZSmnU\",style:{width:\"100%\"},variant:\"wqSf5zrf2\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-foun8u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IvmHhEgzx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"IvmHhEgzx\",intensity:10,layoutId:\"IvmHhEgzx\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8LeP3.framer-lux5qc, .framer-8LeP3 .framer-lux5qc { display: block; }\",\".framer-8LeP3.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-328d526d-52b3-499c-854f-6f2f938de898, #0d0d0d); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-8LeP3 .framer-3ltktk-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: calc(50.00000000000002% - 100vh / 2); width: 100%; z-index: 0; }\",\".framer-8LeP3 .framer-a4ey5c-container { flex: none; height: auto; left: 50%; position: fixed; top: 48px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-8LeP3 .framer-lxcy0b-container { flex: none; height: 128px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 8; }\",\".framer-8LeP3 .framer-1yp8xwc { align-content: center; align-items: center; background: radial-gradient(50% 41% at 50% 50%, rgba(50, 90, 103, 0.35) 0%, rgb(13, 13, 13) 86.3914695945946%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 180px 0px 64px 0px; position: relative; scroll-margin-top: 10px; width: 100%; }\",\".framer-8LeP3 .framer-zwwzqu-container { flex: none; height: 100%; left: -7px; pointer-events: none; position: absolute; top: -12px; width: 100%; z-index: 0; }\",\".framer-8LeP3 .framer-9o2owm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 900px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-psoogj { --border-bottom-width: 1px; --border-color: var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, #68708c); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 12px 6px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8LeP3 .framer-gdfu8x { align-content: center; align-items: center; background-color: var(--token-a10213e6-5f6b-4c68-b984-c84617bdce07, #1479f7); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 3px 6px 3px 6px; position: relative; width: min-content; }\",\".framer-8LeP3 .framer-902rk0, .framer-8LeP3 .framer-j9rgpq { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8LeP3 .framer-4jdy0o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8LeP3 .framer-16eajvu { background-color: rgba(0, 0, 0, 0); flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-8LeP3 .framer-vornxl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-u9emc7 { --framer-paragraph-spacing: 30px; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-1sbmn16-container { flex: none; height: auto; max-width: 350px; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8LeP3 .framer-1yt86wi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8LeP3 .framer-u1w5f8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8LeP3 .framer-e3ehre-container { aspect-ratio: 0.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-8LeP3 .framer-38qvku-container, .framer-8LeP3 .framer-ucnd8i-container, .framer-8LeP3 .framer-9a9af9-container { aspect-ratio: 0.6944444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-8LeP3 .framer-18v5tzb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8LeP3 .framer-dn1zvx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-height: 100%; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-1qwlekz-container { flex: none; height: 107px; min-width: 900px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-bcwbrm-container { aspect-ratio: 4.0675675675675675 / 1; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 114px; }\",\".framer-8LeP3 .framer-vyv74p-container { aspect-ratio: 4.304347826086956 / 1; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 121px; }\",\".framer-8LeP3 .framer-1li34yc-container { aspect-ratio: 6.666666666666667 / 1; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 187px; }\",\".framer-8LeP3 .framer-16lz9qr-container { aspect-ratio: 1.6904761904761905 / 1; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 47px; }\",\".framer-8LeP3 .framer-chij0c-container { aspect-ratio: 3.0476190476190474 / 1; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 85px; }\",\".framer-8LeP3 .framer-11n5na9-container { aspect-ratio: 4.928571428571429 / 1; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 158px; }\",\".framer-8LeP3 .framer-12iiqdv-container { height: 32px; position: relative; width: 107px; }\",\".framer-8LeP3 .framer-tu23w1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 60px 32px 60px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-13ktf0t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-dgcz8a { --border-bottom-width: 1px; --border-color: var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, #4e5774); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(78, 87, 116, 0.15); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 850px; overflow: visible; padding: 32px 28px 32px 28px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8LeP3 .framer-15c3mvt-container { flex: none; height: 445px; max-width: 800px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-w717m0, .framer-8LeP3 .framer-erh6mg, .framer-8LeP3 .framer-1d9j9y9, .framer-8LeP3 .framer-1ybym5x, .framer-8LeP3 .framer-29evmr, .framer-8LeP3 .framer-1a3va7g, .framer-8LeP3 .framer-1wpwy9y, .framer-8LeP3 .framer-pwienq, .framer-8LeP3 .framer-lf8n5n, .framer-8LeP3 .framer-1o0ewza, .framer-8LeP3 .framer-1gfaqi1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-pbhwt4 { --border-bottom-width: 0px; --border-color: var(--token-eae6200f-f62a-4545-99bd-8e9d1897ddd5, #4e5774); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-1fos7i4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-1hzuh33 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 49px; justify-content: center; max-width: 180px; overflow: hidden; padding: 4px 0px 4px 0px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-pju92b-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-8LeP3 .framer-1n33gnf { align-content: center; align-items: center; background-color: var(--token-328d526d-52b3-499c-854f-6f2f938de898, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-wnb9ju { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-14t4mkk-container, .framer-8LeP3 .framer-1ievcew-container, .framer-8LeP3 .framer-1qa1jkg-container, .framer-8LeP3 .framer-xhpeby-container, .framer-8LeP3 .framer-dgj3w7-container, .framer-8LeP3 .framer-145di56-container, .framer-8LeP3 .framer-f90jw-container, .framer-8LeP3 .framer-1hsib9k-container, .framer-8LeP3 .framer-mlh6q6-container, .framer-8LeP3 .framer-foun8u-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8LeP3 .framer-altd2, .framer-8LeP3 .framer-1g4uw6x, .framer-8LeP3 .framer-1xsic0n, .framer-8LeP3 .framer-1bwblvf, .framer-8LeP3 .framer-11v9x55 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-15wi40v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 480px; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-zm17zk, .framer-8LeP3 .framer-ke5x26, .framer-8LeP3 .framer-1c249vj { --border-bottom-width: 1px; --border-color: var(--token-fa1f94af-5944-4641-9b1d-d9a5d376da11, #57606b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, #0d0f17); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 32px 28px 32px 28px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-r1ieh3, .framer-8LeP3 .framer-iw9uk7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-12xu7sf, .framer-8LeP3 .framer-pig1qm, .framer-8LeP3 .framer-1d0g60c { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 80px; }\",\".framer-8LeP3 .framer-1se8866, .framer-8LeP3 .framer-z9rt5t, .framer-8LeP3 .framer-1x3l0xs, .framer-8LeP3 .framer-13q1m9x, .framer-8LeP3 .framer-z9sljr, .framer-8LeP3 .framer-16wpdnr, .framer-8LeP3 .framer-16pcphb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-14z3dgu, .framer-8LeP3 .framer-10epycn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8LeP3 .framer-1fzlusq, .framer-8LeP3 .framer-i8hyit, .framer-8LeP3 .framer-nxucya, .framer-8LeP3 .framer-1jyt0fg, .framer-8LeP3 .framer-6td61z, .framer-8LeP3 .framer-1a8rcjh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-j3vhvk, .framer-8LeP3 .framer-1beo4im, .framer-8LeP3 .framer-1kuxq0a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 315px; }\",\".framer-8LeP3 .framer-1tegpp8, .framer-8LeP3 .framer-8liyf9, .framer-8LeP3 .framer-7lm337, .framer-8LeP3 .framer-nusu78, .framer-8LeP3 .framer-1976cza, .framer-8LeP3 .framer-ic7y8x, .framer-8LeP3 .framer-12le1m4, .framer-8LeP3 .framer-1r27w46, .framer-8LeP3 .framer-1kxgtep { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-3daol3-container, .framer-8LeP3 .framer-1yye7hi-container, .framer-8LeP3 .framer-1vu5y5p-container, .framer-8LeP3 .framer-dw0d8n-container, .framer-8LeP3 .framer-1957usd-container, .framer-8LeP3 .framer-1ldz1y6-container, .framer-8LeP3 .framer-1vvwaei-container, .framer-8LeP3 .framer-11dmns0-container, .framer-8LeP3 .framer-m5n5ls-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-8LeP3 .framer-79ekq9, .framer-8LeP3 .framer-1qcjhvh, .framer-8LeP3 .framer-18ct7yt, .framer-8LeP3 .framer-iby6f5, .framer-8LeP3 .framer-94cfob, .framer-8LeP3 .framer-15v0g3i, .framer-8LeP3 .framer-1fpvlwj, .framer-8LeP3 .framer-1la5z5y, .framer-8LeP3 .framer-1n6p3zy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-1bc37rm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-10imbhk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8LeP3 .framer-5j9jv3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8LeP3 .framer-1fbj6jq { align-content: center; align-items: center; background-color: var(--token-328d526d-52b3-499c-854f-6f2f938de898, #0d0d0d); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 80px 60px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-10n4u0j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-6fhk4e { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.9 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-74blmt, .framer-8LeP3 .framer-1a2horl, .framer-8LeP3 .framer-1jam97o, .framer-8LeP3 .framer-12pozl { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-1cb1jcs { aspect-ratio: 1.0344827586206897 / 1; display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: var(--framer-aspect-ratio-supported, 618px); justify-content: center; overflow: visible; padding: 0px 3px 0px 3px; position: relative; width: 640px; }\",\".framer-8LeP3 .framer-bwv1i2-container, .framer-8LeP3 .framer-5tf7yv-container, .framer-8LeP3 .framer-1xjyna7-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-28j0wg, .framer-8LeP3 .framer-fcma2e { --border-bottom-width: 1px; --border-color: var(--token-fa1f94af-5944-4641-9b1d-d9a5d376da11, #ecf1f7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, #111317); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 201px; }\",\".framer-8LeP3 .framer-f5cx2a, .framer-8LeP3 .framer-1l3blfk, .framer-8LeP3 .framer-1og3ra2, .framer-8LeP3 .framer-fg1iq3, .framer-8LeP3 .framer-1d92ofz, .framer-8LeP3 .framer-1v2x18p, .framer-8LeP3 .framer-12h45dg, .framer-8LeP3 .framer-kbidi6, .framer-8LeP3 .framer-1bh5sx4, .framer-8LeP3 .framer-gudyfa, .framer-8LeP3 .framer-1kxa3a9, .framer-8LeP3 .framer-1plzibk, .framer-8LeP3 .framer-1rr6r56, .framer-8LeP3 .framer-azzl3r { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-8LeP3 .framer-b64ixi, .framer-8LeP3 .framer-jt1x6j, .framer-8LeP3 .framer-1pjk7se, .framer-8LeP3 .framer-cyy6f, .framer-8LeP3 .framer-yrxn8p, .framer-8LeP3 .framer-uc3ebw, .framer-8LeP3 .framer-uf5pg0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8LeP3 .framer-1j4rsdw, .framer-8LeP3 .framer-dl5gfm, .framer-8LeP3 .framer-1mbf61h, .framer-8LeP3 .framer-3znvli, .framer-8LeP3 .framer-e5hm4d, .framer-8LeP3 .framer-1yvybk1, .framer-8LeP3 .framer-qu58q9, .framer-8LeP3 .framer-1xjaz9s { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8LeP3 .framer-xn6wxf, .framer-8LeP3 .framer-1uhi0mx, .framer-8LeP3 .framer-1buyz5x, .framer-8LeP3 .framer-yb9zw1, .framer-8LeP3 .framer-khwfeu, .framer-8LeP3 .framer-177qj03 { --framer-paragraph-spacing: 20px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-8LeP3 .framer-1fn1uf2, .framer-8LeP3 .framer-17bpbuu, .framer-8LeP3 .framer-1xhcrt7, .framer-8LeP3 .framer-1kilhhw, .framer-8LeP3 .framer-14chigl, .framer-8LeP3 .framer-m8yoax, .framer-8LeP3 .framer-1vwnvq7, .framer-8LeP3 .framer-5n8b44, .framer-8LeP3 .framer-hiqnmt, .framer-8LeP3 .framer-84bsam, .framer-8LeP3 .framer-jxagos, .framer-8LeP3 .framer-1wkibxw, .framer-8LeP3 .framer-1dtwnnx { --border-bottom-width: 1px; --border-color: var(--token-fa1f94af-5944-4641-9b1d-d9a5d376da11, #ecf1f7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, #111317); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 200px; }\",\".framer-8LeP3 .framer-1bn2lab, .framer-8LeP3 .framer-11sroee, .framer-8LeP3 .framer-uj6xgb, .framer-8LeP3 .framer-1one9ag, .framer-8LeP3 .framer-1ty5fps, .framer-8LeP3 .framer-h5okk, .framer-8LeP3 .framer-1a2uj2g, .framer-8LeP3 .framer-71assr, .framer-8LeP3 .framer-1a7b8el { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-m1h4of, .framer-8LeP3 .framer-1s8iffp, .framer-8LeP3 .framer-1ezt4jl, .framer-8LeP3 .framer-1wkcab4, .framer-8LeP3 .framer-yhmztv, .framer-8LeP3 .framer-rk8cs2, .framer-8LeP3 .framer-1aroo16, .framer-8LeP3 .framer-ruzvtd { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-13pbdy4, .framer-8LeP3 .framer-19lowje, .framer-8LeP3 .framer-1ggftyx, .framer-8LeP3 .framer-16s2y9g, .framer-8LeP3 .framer-2sh7na, .framer-8LeP3 .framer-atno43, .framer-8LeP3 .framer-1yb66a3, .framer-8LeP3 .framer-yacn3d, .framer-8LeP3 .framer-16d43sq { --framer-paragraph-spacing: 20px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-1285tmh { --border-bottom-width: 1px; --border-color: var(--token-fa1f94af-5944-4641-9b1d-d9a5d376da11, #ecf1f7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, #111317); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 202px; }\",\".framer-8LeP3 .framer-bf1lkl, .framer-8LeP3 .framer-obb4om { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-8LeP3 .framer-mtenb2 { --framer-paragraph-spacing: 20px; align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-5fm95x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 60px 96px 60px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-79dvu6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-1w6croh { aspect-ratio: 1.717557251908397 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.12); flex: none; height: var(--framer-aspect-ratio-supported, 675px); max-width: 1280px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-amzq09 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-sczw1g, .framer-8LeP3 .framer-w4xp4w, .framer-8LeP3 .framer-l8h32 { --border-bottom-width: 0px; --border-color: var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, #4ecffd); --border-left-width: 2px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: var(--token-f397b3cb-d77d-48f0-aeb9-53d767c5b5d2, #101012); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-lyqoe2-container, .framer-8LeP3 .framer-1gwjrf5-container, .framer-8LeP3 .framer-yg2l06-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 32px; }\",\".framer-8LeP3 .framer-3ir7ht { --border-bottom-width: 1px; --border-color: var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, #4ecffd); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, #0d0f17); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 900px; overflow: visible; padding: 32px 28px 32px 28px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-gfsoyo { flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-1oeu8vq, .framer-8LeP3 .framer-1m2fi8e { --border-bottom-width: 1px; --border-color: var(--token-fa1f94af-5944-4641-9b1d-d9a5d376da11, #1f2429); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-328d526d-52b3-499c-854f-6f2f938de898, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 60px 96px 60px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-buu68m, .framer-8LeP3 .framer-1t0kxm0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-5xq0w5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-1lcidja-container, .framer-8LeP3 .framer-wj3oai-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-1ocfs7h { align-content: center; align-items: center; background-color: var(--token-328d526d-52b3-499c-854f-6f2f938de898, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 60px 96px 60px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-70tv6t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 400px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-137qjaq { --border-bottom-width: 1px; --border-color: var(--token-fa1f94af-5944-4641-9b1d-d9a5d376da11, #57606b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, #0d0f17); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: flex-start; overflow: visible; padding: 32px 28px 32px 28px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8LeP3 .framer-1hh8dof, .framer-8LeP3 .framer-wy0nrh, .framer-8LeP3 .framer-1npkk83 { --border-bottom-width: 2px; --border-color: var(--token-fa1f94af-5944-4641-9b1d-d9a5d376da11, #1f2429); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; aspect-ratio: 1 / 1; background: radial-gradient(100% 100% at 80.10000000000001% 20.599999999999998%, #474c59 0%, var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(21, 23, 28)) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 4px 8px 0px var(--token-f397b3cb-d77d-48f0-aeb9-53d767c5b5d2, #101012); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 80px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 80px; }\",\".framer-8LeP3 .framer-1bsyrl1-container, .framer-8LeP3 .framer-17ztlex-container, .framer-8LeP3 .framer-6tj85i-container { flex: none; height: 42px; position: relative; width: 42px; }\",\".framer-8LeP3 .framer-3s2b5m, .framer-8LeP3 .framer-1h0ngci { --border-bottom-width: 1px; --border-color: var(--token-fa1f94af-5944-4641-9b1d-d9a5d376da11, #57606b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, #0d0f17); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: flex-start; overflow: visible; padding: 32px 28px 32px 28px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-2qqb0z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-xuav5a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-pvl3tv, .framer-8LeP3 .framer-1lhk8qx, .framer-8LeP3 .framer-cub95w { --border-bottom-width: 0px; --border-color: var(--token-b2a220c9-5417-4234-8a32-eb916bb74524, #4ecffd); --border-left-width: 2px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-f397b3cb-d77d-48f0-aeb9-53d767c5b5d2, #101012); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 24px 24px 32px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-1iq3e0t, .framer-8LeP3 .framer-ico4z5, .framer-8LeP3 .framer-vdcmq { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8LeP3 .framer-1mnaj6f, .framer-8LeP3 .framer-j404n2, .framer-8LeP3 .framer-11n1q8a { --border-bottom-width: 1px; --border-color: var(--token-fa1f94af-5944-4641-9b1d-d9a5d376da11, #57606b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, #0d0f17); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 32px 28px 32px 28px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-1n4srn3 { aspect-ratio: 1.6642599277978338 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); overflow: visible; position: relative; width: 150px; }\",\".framer-8LeP3 .framer-17821zk, .framer-8LeP3 .framer-18hhmke, .framer-8LeP3 .framer-upc4k3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-10bj6bj, .framer-8LeP3 .framer-19cg464, .framer-8LeP3 .framer-364hwr { flex: none; height: 20px; position: relative; width: 117px; }\",\".framer-8LeP3 .framer-6vzvk6 { aspect-ratio: 4.066666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 49px); position: relative; width: 199px; }\",\".framer-8LeP3 .framer-1k4szxo { aspect-ratio: 6.666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 280px; }\",\".framer-8LeP3 .framer-wt16gd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-x3n24t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 3px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-wok2gn { flex: 1 0 0px; height: 3px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-la2gza { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 160px 0px 160px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-xl5y97, .framer-8LeP3 .framer-17y93ey, .framer-8LeP3 .framer-oq9971 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 135px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8LeP3 .framer-1vxi7jt, .framer-8LeP3 .framer-gcytfj, .framer-8LeP3 .framer-1w2vfev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-5a6f4w, .framer-8LeP3 .framer-1nby6lk, .framer-8LeP3 .framer-1cdlnd5, .framer-8LeP3 .framer-s1sly0, .framer-8LeP3 .framer-1rv0zjy, .framer-8LeP3 .framer-19e4w4r { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8LeP3 .framer-c9y6na { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-1ed5jz7, .framer-8LeP3 .framer-1dg18zn { align-self: stretch; flex: none; height: auto; position: relative; width: 3px; }\",\".framer-8LeP3 .framer-8yih6r, .framer-8LeP3 .framer-1tgt6en { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-udlfp0 { align-content: center; align-items: center; background-color: var(--token-328d526d-52b3-499c-854f-6f2f938de898, #0d0d0d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 60px 60px 60px; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-sxqa7s { -webkit-filter: blur(102.5px); aspect-ratio: 2.8666666666666667 / 1; background-color: rgba(20, 122, 247, 0.66); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(102.5px); flex: none; height: var(--framer-aspect-ratio-supported, 270px); left: 50%; position: absolute; top: -248px; transform: translateX(-50%); width: 774px; z-index: 0; }\",\".framer-8LeP3 .framer-8vv19x { -webkit-filter: blur(102.5px); aspect-ratio: 1.079245283018868 / 1; background: radial-gradient(81.35314179490157% 81.35314179490156% at 50.000004849025636% 47.52475209115577%, var(--token-a10213e6-5f6b-4c68-b984-c84617bdce07, #1479f7) 0%, rgba(255, 255, 255, 0.7) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(102.5px); flex: none; height: var(--framer-aspect-ratio-supported, 265px); left: 50%; position: absolute; top: -242px; transform: translateX(-50%); width: 286px; z-index: 1; }\",\".framer-8LeP3 .framer-wl1j99 { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(298px, 1fr)); height: min-content; justify-content: center; max-width: 1200px; padding: 0px 10px 0px 10px; position: relative; width: 1180px; }\",\".framer-8LeP3 .framer-4qgre-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-1e9vkll-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-8LeP3 .framer-1r0wun4-container { flex: none; height: auto; position: fixed; right: -460px; top: 32px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8LeP3.framer-72rtr7, .framer-8LeP3 .framer-1yp8xwc, .framer-8LeP3 .framer-9o2owm, .framer-8LeP3 .framer-psoogj, .framer-8LeP3 .framer-gdfu8x, .framer-8LeP3 .framer-4jdy0o, .framer-8LeP3 .framer-1yt86wi, .framer-8LeP3 .framer-u1w5f8, .framer-8LeP3 .framer-dn1zvx, .framer-8LeP3 .framer-tu23w1, .framer-8LeP3 .framer-13ktf0t, .framer-8LeP3 .framer-dgcz8a, .framer-8LeP3 .framer-pbhwt4, .framer-8LeP3 .framer-1hzuh33, .framer-8LeP3 .framer-1n33gnf, .framer-8LeP3 .framer-wnb9ju, .framer-8LeP3 .framer-15wi40v, .framer-8LeP3 .framer-r1ieh3, .framer-8LeP3 .framer-1se8866, .framer-8LeP3 .framer-14z3dgu, .framer-8LeP3 .framer-j3vhvk, .framer-8LeP3 .framer-1tegpp8, .framer-8LeP3 .framer-8liyf9, .framer-8LeP3 .framer-7lm337, .framer-8LeP3 .framer-iw9uk7, .framer-8LeP3 .framer-z9rt5t, .framer-8LeP3 .framer-10epycn, .framer-8LeP3 .framer-1beo4im, .framer-8LeP3 .framer-nusu78, .framer-8LeP3 .framer-1976cza, .framer-8LeP3 .framer-ic7y8x, .framer-8LeP3 .framer-1bc37rm, .framer-8LeP3 .framer-10imbhk, .framer-8LeP3 .framer-5j9jv3, .framer-8LeP3 .framer-1kuxq0a, .framer-8LeP3 .framer-12le1m4, .framer-8LeP3 .framer-1r27w46, .framer-8LeP3 .framer-1kxgtep, .framer-8LeP3 .framer-1fbj6jq, .framer-8LeP3 .framer-6fhk4e, .framer-8LeP3 .framer-1x3l0xs, .framer-8LeP3 .framer-13q1m9x, .framer-8LeP3 .framer-28j0wg, .framer-8LeP3 .framer-b64ixi, .framer-8LeP3 .framer-1fn1uf2, .framer-8LeP3 .framer-jt1x6j, .framer-8LeP3 .framer-17bpbuu, .framer-8LeP3 .framer-1pjk7se, .framer-8LeP3 .framer-1xhcrt7, .framer-8LeP3 .framer-1bn2lab, .framer-8LeP3 .framer-1kilhhw, .framer-8LeP3 .framer-11sroee, .framer-8LeP3 .framer-1285tmh, .framer-8LeP3 .framer-cyy6f, .framer-8LeP3 .framer-14chigl, .framer-8LeP3 .framer-uj6xgb, .framer-8LeP3 .framer-m8yoax, .framer-8LeP3 .framer-yrxn8p, .framer-8LeP3 .framer-1vwnvq7, .framer-8LeP3 .framer-1one9ag, .framer-8LeP3 .framer-5n8b44, .framer-8LeP3 .framer-1ty5fps, .framer-8LeP3 .framer-hiqnmt, .framer-8LeP3 .framer-h5okk, .framer-8LeP3 .framer-fcma2e, .framer-8LeP3 .framer-uc3ebw, .framer-8LeP3 .framer-84bsam, .framer-8LeP3 .framer-1a2uj2g, .framer-8LeP3 .framer-jxagos, .framer-8LeP3 .framer-uf5pg0, .framer-8LeP3 .framer-1wkibxw, .framer-8LeP3 .framer-71assr, .framer-8LeP3 .framer-1dtwnnx, .framer-8LeP3 .framer-1a7b8el, .framer-8LeP3 .framer-5fm95x, .framer-8LeP3 .framer-79dvu6, .framer-8LeP3 .framer-amzq09, .framer-8LeP3 .framer-sczw1g, .framer-8LeP3 .framer-w4xp4w, .framer-8LeP3 .framer-l8h32, .framer-8LeP3 .framer-3ir7ht, .framer-8LeP3 .framer-1oeu8vq, .framer-8LeP3 .framer-buu68m, .framer-8LeP3 .framer-5xq0w5, .framer-8LeP3 .framer-1ocfs7h, .framer-8LeP3 .framer-1t0kxm0, .framer-8LeP3 .framer-70tv6t, .framer-8LeP3 .framer-137qjaq, .framer-8LeP3 .framer-1hh8dof, .framer-8LeP3 .framer-z9sljr, .framer-8LeP3 .framer-3s2b5m, .framer-8LeP3 .framer-wy0nrh, .framer-8LeP3 .framer-16wpdnr, .framer-8LeP3 .framer-1h0ngci, .framer-8LeP3 .framer-1npkk83, .framer-8LeP3 .framer-16pcphb, .framer-8LeP3 .framer-1m2fi8e, .framer-8LeP3 .framer-2qqb0z, .framer-8LeP3 .framer-xuav5a, .framer-8LeP3 .framer-pvl3tv, .framer-8LeP3 .framer-1mnaj6f, .framer-8LeP3 .framer-17821zk, .framer-8LeP3 .framer-1lhk8qx, .framer-8LeP3 .framer-j404n2, .framer-8LeP3 .framer-18hhmke, .framer-8LeP3 .framer-cub95w, .framer-8LeP3 .framer-11n1q8a, .framer-8LeP3 .framer-upc4k3, .framer-8LeP3 .framer-wt16gd, .framer-8LeP3 .framer-x3n24t, .framer-8LeP3 .framer-la2gza, .framer-8LeP3 .framer-xl5y97, .framer-8LeP3 .framer-1vxi7jt, .framer-8LeP3 .framer-c9y6na, .framer-8LeP3 .framer-17y93ey, .framer-8LeP3 .framer-gcytfj, .framer-8LeP3 .framer-8yih6r, .framer-8LeP3 .framer-oq9971, .framer-8LeP3 .framer-1w2vfev, .framer-8LeP3 .framer-1tgt6en, .framer-8LeP3 .framer-udlfp0 { gap: 0px; } .framer-8LeP3.framer-72rtr7 > *, .framer-8LeP3 .framer-14z3dgu > *, .framer-8LeP3 .framer-10epycn > *, .framer-8LeP3 .framer-5j9jv3 > *, .framer-8LeP3 .framer-3ir7ht > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8LeP3.framer-72rtr7 > :first-child, .framer-8LeP3 .framer-1yp8xwc > :first-child, .framer-8LeP3 .framer-9o2owm > :first-child, .framer-8LeP3 .framer-dn1zvx > :first-child, .framer-8LeP3 .framer-13ktf0t > :first-child, .framer-8LeP3 .framer-dgcz8a > :first-child, .framer-8LeP3 .framer-1n33gnf > :first-child, .framer-8LeP3 .framer-wnb9ju > :first-child, .framer-8LeP3 .framer-r1ieh3 > :first-child, .framer-8LeP3 .framer-1se8866 > :first-child, .framer-8LeP3 .framer-14z3dgu > :first-child, .framer-8LeP3 .framer-j3vhvk > :first-child, .framer-8LeP3 .framer-iw9uk7 > :first-child, .framer-8LeP3 .framer-z9rt5t > :first-child, .framer-8LeP3 .framer-10epycn > :first-child, .framer-8LeP3 .framer-1beo4im > :first-child, .framer-8LeP3 .framer-1bc37rm > :first-child, .framer-8LeP3 .framer-10imbhk > :first-child, .framer-8LeP3 .framer-5j9jv3 > :first-child, .framer-8LeP3 .framer-1kuxq0a > :first-child, .framer-8LeP3 .framer-6fhk4e > :first-child, .framer-8LeP3 .framer-1x3l0xs > :first-child, .framer-8LeP3 .framer-13q1m9x > :first-child, .framer-8LeP3 .framer-28j0wg > :first-child, .framer-8LeP3 .framer-b64ixi > :first-child, .framer-8LeP3 .framer-1fn1uf2 > :first-child, .framer-8LeP3 .framer-jt1x6j > :first-child, .framer-8LeP3 .framer-17bpbuu > :first-child, .framer-8LeP3 .framer-1pjk7se > :first-child, .framer-8LeP3 .framer-1xhcrt7 > :first-child, .framer-8LeP3 .framer-1bn2lab > :first-child, .framer-8LeP3 .framer-1kilhhw > :first-child, .framer-8LeP3 .framer-11sroee > :first-child, .framer-8LeP3 .framer-1285tmh > :first-child, .framer-8LeP3 .framer-cyy6f > :first-child, .framer-8LeP3 .framer-14chigl > :first-child, .framer-8LeP3 .framer-uj6xgb > :first-child, .framer-8LeP3 .framer-m8yoax > :first-child, .framer-8LeP3 .framer-yrxn8p > :first-child, .framer-8LeP3 .framer-1vwnvq7 > :first-child, .framer-8LeP3 .framer-1one9ag > :first-child, .framer-8LeP3 .framer-5n8b44 > :first-child, .framer-8LeP3 .framer-1ty5fps > :first-child, .framer-8LeP3 .framer-hiqnmt > :first-child, .framer-8LeP3 .framer-h5okk > :first-child, .framer-8LeP3 .framer-fcma2e > :first-child, .framer-8LeP3 .framer-uc3ebw > :first-child, .framer-8LeP3 .framer-84bsam > :first-child, .framer-8LeP3 .framer-1a2uj2g > :first-child, .framer-8LeP3 .framer-jxagos > :first-child, .framer-8LeP3 .framer-uf5pg0 > :first-child, .framer-8LeP3 .framer-1wkibxw > :first-child, .framer-8LeP3 .framer-71assr > :first-child, .framer-8LeP3 .framer-1dtwnnx > :first-child, .framer-8LeP3 .framer-1a7b8el > :first-child, .framer-8LeP3 .framer-5fm95x > :first-child, .framer-8LeP3 .framer-79dvu6 > :first-child, .framer-8LeP3 .framer-sczw1g > :first-child, .framer-8LeP3 .framer-w4xp4w > :first-child, .framer-8LeP3 .framer-l8h32 > :first-child, .framer-8LeP3 .framer-3ir7ht > :first-child, .framer-8LeP3 .framer-1oeu8vq > :first-child, .framer-8LeP3 .framer-1ocfs7h > :first-child, .framer-8LeP3 .framer-137qjaq > :first-child, .framer-8LeP3 .framer-z9sljr > :first-child, .framer-8LeP3 .framer-3s2b5m > :first-child, .framer-8LeP3 .framer-16wpdnr > :first-child, .framer-8LeP3 .framer-1h0ngci > :first-child, .framer-8LeP3 .framer-16pcphb > :first-child, .framer-8LeP3 .framer-1m2fi8e > :first-child, .framer-8LeP3 .framer-2qqb0z > :first-child, .framer-8LeP3 .framer-xuav5a > :first-child, .framer-8LeP3 .framer-1mnaj6f > :first-child, .framer-8LeP3 .framer-17821zk > :first-child, .framer-8LeP3 .framer-j404n2 > :first-child, .framer-8LeP3 .framer-18hhmke > :first-child, .framer-8LeP3 .framer-11n1q8a > :first-child, .framer-8LeP3 .framer-upc4k3 > :first-child, .framer-8LeP3 .framer-wt16gd > :first-child, .framer-8LeP3 .framer-xl5y97 > :first-child, .framer-8LeP3 .framer-1vxi7jt > :first-child, .framer-8LeP3 .framer-c9y6na > :first-child, .framer-8LeP3 .framer-17y93ey > :first-child, .framer-8LeP3 .framer-gcytfj > :first-child, .framer-8LeP3 .framer-8yih6r > :first-child, .framer-8LeP3 .framer-oq9971 > :first-child, .framer-8LeP3 .framer-1w2vfev > :first-child, .framer-8LeP3 .framer-1tgt6en > :first-child, .framer-8LeP3 .framer-udlfp0 > :first-child { margin-top: 0px; } .framer-8LeP3.framer-72rtr7 > :last-child, .framer-8LeP3 .framer-1yp8xwc > :last-child, .framer-8LeP3 .framer-9o2owm > :last-child, .framer-8LeP3 .framer-dn1zvx > :last-child, .framer-8LeP3 .framer-13ktf0t > :last-child, .framer-8LeP3 .framer-dgcz8a > :last-child, .framer-8LeP3 .framer-1n33gnf > :last-child, .framer-8LeP3 .framer-wnb9ju > :last-child, .framer-8LeP3 .framer-r1ieh3 > :last-child, .framer-8LeP3 .framer-1se8866 > :last-child, .framer-8LeP3 .framer-14z3dgu > :last-child, .framer-8LeP3 .framer-j3vhvk > :last-child, .framer-8LeP3 .framer-iw9uk7 > :last-child, .framer-8LeP3 .framer-z9rt5t > :last-child, .framer-8LeP3 .framer-10epycn > :last-child, .framer-8LeP3 .framer-1beo4im > :last-child, .framer-8LeP3 .framer-1bc37rm > :last-child, .framer-8LeP3 .framer-10imbhk > :last-child, .framer-8LeP3 .framer-5j9jv3 > :last-child, .framer-8LeP3 .framer-1kuxq0a > :last-child, .framer-8LeP3 .framer-6fhk4e > :last-child, .framer-8LeP3 .framer-1x3l0xs > :last-child, .framer-8LeP3 .framer-13q1m9x > :last-child, .framer-8LeP3 .framer-28j0wg > :last-child, .framer-8LeP3 .framer-b64ixi > :last-child, .framer-8LeP3 .framer-1fn1uf2 > :last-child, .framer-8LeP3 .framer-jt1x6j > :last-child, .framer-8LeP3 .framer-17bpbuu > :last-child, .framer-8LeP3 .framer-1pjk7se > :last-child, .framer-8LeP3 .framer-1xhcrt7 > :last-child, .framer-8LeP3 .framer-1bn2lab > :last-child, .framer-8LeP3 .framer-1kilhhw > :last-child, .framer-8LeP3 .framer-11sroee > :last-child, .framer-8LeP3 .framer-1285tmh > :last-child, .framer-8LeP3 .framer-cyy6f > :last-child, .framer-8LeP3 .framer-14chigl > :last-child, .framer-8LeP3 .framer-uj6xgb > :last-child, .framer-8LeP3 .framer-m8yoax > :last-child, .framer-8LeP3 .framer-yrxn8p > :last-child, .framer-8LeP3 .framer-1vwnvq7 > :last-child, .framer-8LeP3 .framer-1one9ag > :last-child, .framer-8LeP3 .framer-5n8b44 > :last-child, .framer-8LeP3 .framer-1ty5fps > :last-child, .framer-8LeP3 .framer-hiqnmt > :last-child, .framer-8LeP3 .framer-h5okk > :last-child, .framer-8LeP3 .framer-fcma2e > :last-child, .framer-8LeP3 .framer-uc3ebw > :last-child, .framer-8LeP3 .framer-84bsam > :last-child, .framer-8LeP3 .framer-1a2uj2g > :last-child, .framer-8LeP3 .framer-jxagos > :last-child, .framer-8LeP3 .framer-uf5pg0 > :last-child, .framer-8LeP3 .framer-1wkibxw > :last-child, .framer-8LeP3 .framer-71assr > :last-child, .framer-8LeP3 .framer-1dtwnnx > :last-child, .framer-8LeP3 .framer-1a7b8el > :last-child, .framer-8LeP3 .framer-5fm95x > :last-child, .framer-8LeP3 .framer-79dvu6 > :last-child, .framer-8LeP3 .framer-sczw1g > :last-child, .framer-8LeP3 .framer-w4xp4w > :last-child, .framer-8LeP3 .framer-l8h32 > :last-child, .framer-8LeP3 .framer-3ir7ht > :last-child, .framer-8LeP3 .framer-1oeu8vq > :last-child, .framer-8LeP3 .framer-1ocfs7h > :last-child, .framer-8LeP3 .framer-137qjaq > :last-child, .framer-8LeP3 .framer-z9sljr > :last-child, .framer-8LeP3 .framer-3s2b5m > :last-child, .framer-8LeP3 .framer-16wpdnr > :last-child, .framer-8LeP3 .framer-1h0ngci > :last-child, .framer-8LeP3 .framer-16pcphb > :last-child, .framer-8LeP3 .framer-1m2fi8e > :last-child, .framer-8LeP3 .framer-2qqb0z > :last-child, .framer-8LeP3 .framer-xuav5a > :last-child, .framer-8LeP3 .framer-1mnaj6f > :last-child, .framer-8LeP3 .framer-17821zk > :last-child, .framer-8LeP3 .framer-j404n2 > :last-child, .framer-8LeP3 .framer-18hhmke > :last-child, .framer-8LeP3 .framer-11n1q8a > :last-child, .framer-8LeP3 .framer-upc4k3 > :last-child, .framer-8LeP3 .framer-wt16gd > :last-child, .framer-8LeP3 .framer-xl5y97 > :last-child, .framer-8LeP3 .framer-1vxi7jt > :last-child, .framer-8LeP3 .framer-c9y6na > :last-child, .framer-8LeP3 .framer-17y93ey > :last-child, .framer-8LeP3 .framer-gcytfj > :last-child, .framer-8LeP3 .framer-8yih6r > :last-child, .framer-8LeP3 .framer-oq9971 > :last-child, .framer-8LeP3 .framer-1w2vfev > :last-child, .framer-8LeP3 .framer-1tgt6en > :last-child, .framer-8LeP3 .framer-udlfp0 > :last-child { margin-bottom: 0px; } .framer-8LeP3 .framer-1yp8xwc > *, .framer-8LeP3 .framer-6fhk4e > *, .framer-8LeP3 .framer-137qjaq > *, .framer-8LeP3 .framer-3s2b5m > *, .framer-8LeP3 .framer-1h0ngci > *, .framer-8LeP3 .framer-xuav5a > *, .framer-8LeP3 .framer-1mnaj6f > *, .framer-8LeP3 .framer-j404n2 > *, .framer-8LeP3 .framer-11n1q8a > *, .framer-8LeP3 .framer-udlfp0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-8LeP3 .framer-9o2owm > *, .framer-8LeP3 .framer-13ktf0t > *, .framer-8LeP3 .framer-dgcz8a > *, .framer-8LeP3 .framer-r1ieh3 > *, .framer-8LeP3 .framer-iw9uk7 > *, .framer-8LeP3 .framer-10imbhk > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8LeP3 .framer-psoogj > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-8LeP3 .framer-psoogj > :first-child, .framer-8LeP3 .framer-gdfu8x > :first-child, .framer-8LeP3 .framer-4jdy0o > :first-child, .framer-8LeP3 .framer-1yt86wi > :first-child, .framer-8LeP3 .framer-u1w5f8 > :first-child, .framer-8LeP3 .framer-tu23w1 > :first-child, .framer-8LeP3 .framer-pbhwt4 > :first-child, .framer-8LeP3 .framer-1hzuh33 > :first-child, .framer-8LeP3 .framer-15wi40v > :first-child, .framer-8LeP3 .framer-1tegpp8 > :first-child, .framer-8LeP3 .framer-8liyf9 > :first-child, .framer-8LeP3 .framer-7lm337 > :first-child, .framer-8LeP3 .framer-nusu78 > :first-child, .framer-8LeP3 .framer-1976cza > :first-child, .framer-8LeP3 .framer-ic7y8x > :first-child, .framer-8LeP3 .framer-12le1m4 > :first-child, .framer-8LeP3 .framer-1r27w46 > :first-child, .framer-8LeP3 .framer-1kxgtep > :first-child, .framer-8LeP3 .framer-1fbj6jq > :first-child, .framer-8LeP3 .framer-amzq09 > :first-child, .framer-8LeP3 .framer-buu68m > :first-child, .framer-8LeP3 .framer-5xq0w5 > :first-child, .framer-8LeP3 .framer-1t0kxm0 > :first-child, .framer-8LeP3 .framer-70tv6t > :first-child, .framer-8LeP3 .framer-1hh8dof > :first-child, .framer-8LeP3 .framer-wy0nrh > :first-child, .framer-8LeP3 .framer-1npkk83 > :first-child, .framer-8LeP3 .framer-pvl3tv > :first-child, .framer-8LeP3 .framer-1lhk8qx > :first-child, .framer-8LeP3 .framer-cub95w > :first-child, .framer-8LeP3 .framer-x3n24t > :first-child, .framer-8LeP3 .framer-la2gza > :first-child { margin-left: 0px; } .framer-8LeP3 .framer-psoogj > :last-child, .framer-8LeP3 .framer-gdfu8x > :last-child, .framer-8LeP3 .framer-4jdy0o > :last-child, .framer-8LeP3 .framer-1yt86wi > :last-child, .framer-8LeP3 .framer-u1w5f8 > :last-child, .framer-8LeP3 .framer-tu23w1 > :last-child, .framer-8LeP3 .framer-pbhwt4 > :last-child, .framer-8LeP3 .framer-1hzuh33 > :last-child, .framer-8LeP3 .framer-15wi40v > :last-child, .framer-8LeP3 .framer-1tegpp8 > :last-child, .framer-8LeP3 .framer-8liyf9 > :last-child, .framer-8LeP3 .framer-7lm337 > :last-child, .framer-8LeP3 .framer-nusu78 > :last-child, .framer-8LeP3 .framer-1976cza > :last-child, .framer-8LeP3 .framer-ic7y8x > :last-child, .framer-8LeP3 .framer-12le1m4 > :last-child, .framer-8LeP3 .framer-1r27w46 > :last-child, .framer-8LeP3 .framer-1kxgtep > :last-child, .framer-8LeP3 .framer-1fbj6jq > :last-child, .framer-8LeP3 .framer-amzq09 > :last-child, .framer-8LeP3 .framer-buu68m > :last-child, .framer-8LeP3 .framer-5xq0w5 > :last-child, .framer-8LeP3 .framer-1t0kxm0 > :last-child, .framer-8LeP3 .framer-70tv6t > :last-child, .framer-8LeP3 .framer-1hh8dof > :last-child, .framer-8LeP3 .framer-wy0nrh > :last-child, .framer-8LeP3 .framer-1npkk83 > :last-child, .framer-8LeP3 .framer-pvl3tv > :last-child, .framer-8LeP3 .framer-1lhk8qx > :last-child, .framer-8LeP3 .framer-cub95w > :last-child, .framer-8LeP3 .framer-x3n24t > :last-child, .framer-8LeP3 .framer-la2gza > :last-child { margin-right: 0px; } .framer-8LeP3 .framer-gdfu8x > *, .framer-8LeP3 .framer-u1w5f8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8LeP3 .framer-4jdy0o > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-8LeP3 .framer-1yt86wi > *, .framer-8LeP3 .framer-15wi40v > *, .framer-8LeP3 .framer-70tv6t > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-8LeP3 .framer-dn1zvx > *, .framer-8LeP3 .framer-wt16gd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8LeP3 .framer-tu23w1 > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-8LeP3 .framer-pbhwt4 > *, .framer-8LeP3 .framer-1hzuh33 > *, .framer-8LeP3 .framer-1hh8dof > *, .framer-8LeP3 .framer-wy0nrh > *, .framer-8LeP3 .framer-1npkk83 > *, .framer-8LeP3 .framer-x3n24t > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8LeP3 .framer-1n33gnf > *, .framer-8LeP3 .framer-5fm95x > *, .framer-8LeP3 .framer-1ocfs7h > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-8LeP3 .framer-wnb9ju > *, .framer-8LeP3 .framer-c9y6na > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-8LeP3 .framer-1se8866 > *, .framer-8LeP3 .framer-z9rt5t > *, .framer-8LeP3 .framer-1x3l0xs > *, .framer-8LeP3 .framer-13q1m9x > *, .framer-8LeP3 .framer-79dvu6 > *, .framer-8LeP3 .framer-z9sljr > *, .framer-8LeP3 .framer-16wpdnr > *, .framer-8LeP3 .framer-16pcphb > *, .framer-8LeP3 .framer-8yih6r > *, .framer-8LeP3 .framer-1tgt6en > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8LeP3 .framer-j3vhvk > *, .framer-8LeP3 .framer-1beo4im > *, .framer-8LeP3 .framer-1kuxq0a > *, .framer-8LeP3 .framer-sczw1g > *, .framer-8LeP3 .framer-w4xp4w > *, .framer-8LeP3 .framer-l8h32 > *, .framer-8LeP3 .framer-1vxi7jt > *, .framer-8LeP3 .framer-gcytfj > *, .framer-8LeP3 .framer-1w2vfev > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-8LeP3 .framer-1tegpp8 > *, .framer-8LeP3 .framer-8liyf9 > *, .framer-8LeP3 .framer-7lm337 > *, .framer-8LeP3 .framer-nusu78 > *, .framer-8LeP3 .framer-1976cza > *, .framer-8LeP3 .framer-ic7y8x > *, .framer-8LeP3 .framer-12le1m4 > *, .framer-8LeP3 .framer-1r27w46 > *, .framer-8LeP3 .framer-1kxgtep > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-8LeP3 .framer-1bc37rm > *, .framer-8LeP3 .framer-28j0wg > *, .framer-8LeP3 .framer-1fn1uf2 > *, .framer-8LeP3 .framer-17bpbuu > *, .framer-8LeP3 .framer-1xhcrt7 > *, .framer-8LeP3 .framer-1kilhhw > *, .framer-8LeP3 .framer-1285tmh > *, .framer-8LeP3 .framer-14chigl > *, .framer-8LeP3 .framer-m8yoax > *, .framer-8LeP3 .framer-1vwnvq7 > *, .framer-8LeP3 .framer-5n8b44 > *, .framer-8LeP3 .framer-hiqnmt > *, .framer-8LeP3 .framer-fcma2e > *, .framer-8LeP3 .framer-84bsam > *, .framer-8LeP3 .framer-jxagos > *, .framer-8LeP3 .framer-1wkibxw > *, .framer-8LeP3 .framer-1dtwnnx > *, .framer-8LeP3 .framer-2qqb0z > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-8LeP3 .framer-1fbj6jq > * { margin: 0px; margin-left: calc(110px / 2); margin-right: calc(110px / 2); } .framer-8LeP3 .framer-b64ixi > *, .framer-8LeP3 .framer-jt1x6j > *, .framer-8LeP3 .framer-1pjk7se > *, .framer-8LeP3 .framer-1bn2lab > *, .framer-8LeP3 .framer-11sroee > *, .framer-8LeP3 .framer-cyy6f > *, .framer-8LeP3 .framer-uj6xgb > *, .framer-8LeP3 .framer-yrxn8p > *, .framer-8LeP3 .framer-1one9ag > *, .framer-8LeP3 .framer-1ty5fps > *, .framer-8LeP3 .framer-h5okk > *, .framer-8LeP3 .framer-uc3ebw > *, .framer-8LeP3 .framer-1a2uj2g > *, .framer-8LeP3 .framer-uf5pg0 > *, .framer-8LeP3 .framer-71assr > *, .framer-8LeP3 .framer-1a7b8el > *, .framer-8LeP3 .framer-17821zk > *, .framer-8LeP3 .framer-18hhmke > *, .framer-8LeP3 .framer-upc4k3 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-8LeP3 .framer-amzq09 > *, .framer-8LeP3 .framer-buu68m > *, .framer-8LeP3 .framer-5xq0w5 > *, .framer-8LeP3 .framer-1t0kxm0 > *, .framer-8LeP3 .framer-pvl3tv > *, .framer-8LeP3 .framer-1lhk8qx > *, .framer-8LeP3 .framer-cub95w > *, .framer-8LeP3 .framer-la2gza > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-8LeP3 .framer-1oeu8vq > *, .framer-8LeP3 .framer-1m2fi8e > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-8LeP3 .framer-xl5y97 > *, .framer-8LeP3 .framer-17y93ey > *, .framer-8LeP3 .framer-oq9971 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-8LeP3[data-border=\"true\"]::after, .framer-8LeP3 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 992px) and (max-width: 1279px) { .framer-8LeP3.framer-72rtr7 { background-color: var(--token-f397b3cb-d77d-48f0-aeb9-53d767c5b5d2, #111621); width: 992px; } .framer-8LeP3 .framer-1yp8xwc { gap: 50px; padding: 160px 40px 64px 40px; } .framer-8LeP3 .framer-u9emc7 { width: 80%; } .framer-8LeP3 .framer-1qwlekz-container { height: 100px; } .framer-8LeP3 .framer-tu23w1 { padding: 32px 40px 32px 40px; } .framer-8LeP3 .framer-dgcz8a { padding: 32px 24px 32px 24px; } .framer-8LeP3 .framer-15c3mvt-container { max-width: unset; } .framer-8LeP3 .framer-1n33gnf { gap: 23px; } .framer-8LeP3 .framer-14t4mkk-container, .framer-8LeP3 .framer-14z3dgu, .framer-8LeP3 .framer-1fzlusq, .framer-8LeP3 .framer-i8hyit, .framer-8LeP3 .framer-j3vhvk, .framer-8LeP3 .framer-10epycn, .framer-8LeP3 .framer-nxucya, .framer-8LeP3 .framer-1jyt0fg, .framer-8LeP3 .framer-1beo4im, .framer-8LeP3 .framer-10imbhk, .framer-8LeP3 .framer-5j9jv3, .framer-8LeP3 .framer-6td61z, .framer-8LeP3 .framer-1a8rcjh, .framer-8LeP3 .framer-1kuxq0a, .framer-8LeP3 .framer-xhpeby-container, .framer-8LeP3 .framer-dgj3w7-container, .framer-8LeP3 .framer-145di56-container, .framer-8LeP3 .framer-f90jw-container, .framer-8LeP3 .framer-1hsib9k-container { width: 100%; } .framer-8LeP3 .framer-15wi40v { gap: 16px; height: min-content; } .framer-8LeP3 .framer-zm17zk, .framer-8LeP3 .framer-ke5x26, .framer-8LeP3 .framer-1c249vj { height: min-content; padding: 32px 24px 32px 24px; } .framer-8LeP3 .framer-10n4u0j { flex-direction: column; gap: 43px; justify-content: center; } .framer-8LeP3 .framer-6fhk4e { flex: none; width: 90%; } .framer-8LeP3 .framer-1cb1jcs { display: block; gap: unset; height: var(--framer-aspect-ratio-supported, 630px); padding: unset; width: 652px; } .framer-8LeP3 .framer-bwv1i2-container { height: 600px; left: -211px; position: absolute; top: 0px; } .framer-8LeP3 .framer-5tf7yv-container { height: 600px; left: 0px; position: absolute; top: 64px; } .framer-8LeP3 .framer-1xjyna7-container { height: 600px; position: absolute; right: -214px; top: 0px; } .framer-8LeP3 .framer-5fm95x { padding: 60px; } .framer-8LeP3 .framer-1w6croh { height: var(--framer-aspect-ratio-supported, 508px); } .framer-8LeP3 .framer-1oeu8vq, .framer-8LeP3 .framer-1ocfs7h { gap: 56px; padding: 80px 40px 80px 40px; } .framer-8LeP3 .framer-70tv6t { flex-direction: column; gap: 16px; height: min-content; } .framer-8LeP3 .framer-137qjaq, .framer-8LeP3 .framer-3s2b5m, .framer-8LeP3 .framer-1h0ngci { flex: none; height: min-content; padding: 32px 24px 32px 24px; width: 100%; } .framer-8LeP3 .framer-1m2fi8e { gap: 80px; padding: 80px 40px 80px 40px; } .framer-8LeP3 .framer-1mnaj6f, .framer-8LeP3 .framer-j404n2, .framer-8LeP3 .framer-11n1q8a { max-width: 350px; } .framer-8LeP3 .framer-la2gza { padding: 40px 0px 0px 0px; } .framer-8LeP3 .framer-sxqa7s { height: var(--framer-aspect-ratio-supported, 181px); top: -92px; width: 521px; } .framer-8LeP3 .framer-8vv19x { height: var(--framer-aspect-ratio-supported, 178px); left: 48%; top: -132px; width: 192px; } .framer-8LeP3 .framer-wl1j99 { grid-template-columns: repeat(2, minmax(298px, 1fr)); width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8LeP3 .framer-1yp8xwc, .framer-8LeP3 .framer-1n33gnf, .framer-8LeP3 .framer-15wi40v, .framer-8LeP3 .framer-10n4u0j, .framer-8LeP3 .framer-1cb1jcs, .framer-8LeP3 .framer-1oeu8vq, .framer-8LeP3 .framer-1ocfs7h, .framer-8LeP3 .framer-70tv6t, .framer-8LeP3 .framer-1m2fi8e { gap: 0px; } .framer-8LeP3 .framer-1yp8xwc > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-8LeP3 .framer-1yp8xwc > :first-child, .framer-8LeP3 .framer-1n33gnf > :first-child, .framer-8LeP3 .framer-10n4u0j > :first-child, .framer-8LeP3 .framer-1oeu8vq > :first-child, .framer-8LeP3 .framer-1ocfs7h > :first-child, .framer-8LeP3 .framer-70tv6t > :first-child, .framer-8LeP3 .framer-1m2fi8e > :first-child { margin-top: 0px; } .framer-8LeP3 .framer-1yp8xwc > :last-child, .framer-8LeP3 .framer-1n33gnf > :last-child, .framer-8LeP3 .framer-10n4u0j > :last-child, .framer-8LeP3 .framer-1oeu8vq > :last-child, .framer-8LeP3 .framer-1ocfs7h > :last-child, .framer-8LeP3 .framer-70tv6t > :last-child, .framer-8LeP3 .framer-1m2fi8e > :last-child { margin-bottom: 0px; } .framer-8LeP3 .framer-1n33gnf > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-8LeP3 .framer-15wi40v > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-8LeP3 .framer-15wi40v > :first-child { margin-left: 0px; } .framer-8LeP3 .framer-15wi40v > :last-child { margin-right: 0px; } .framer-8LeP3 .framer-10n4u0j > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-8LeP3 .framer-1cb1jcs > *, .framer-8LeP3 .framer-1cb1jcs > :first-child, .framer-8LeP3 .framer-1cb1jcs > :last-child { margin: 0px; } .framer-8LeP3 .framer-1oeu8vq > *, .framer-8LeP3 .framer-1ocfs7h > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-8LeP3 .framer-70tv6t > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8LeP3 .framer-1m2fi8e > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}\",\"@media (max-width: 575px) { .framer-8LeP3.framer-72rtr7 { width: 390px; } .framer-8LeP3 .framer-a4ey5c-container { top: 32px; } .framer-8LeP3 .framer-1yp8xwc { gap: 40px; padding: 130px 16px 48px 16px; } .framer-8LeP3 .framer-zwwzqu-container { left: calc(50.00000000000002% - 200% / 2); top: 0px; width: 200%; } .framer-8LeP3 .framer-psoogj { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; } .framer-8LeP3 .framer-dn1zvx, .framer-8LeP3 .framer-r1ieh3, .framer-8LeP3 .framer-iw9uk7 { gap: 16px; } .framer-8LeP3 .framer-1qwlekz-container { height: 80px; } .framer-8LeP3 .framer-tu23w1 { flex-direction: column; padding: 12px; } .framer-8LeP3 .framer-13ktf0t { flex: none; max-width: unset; width: 100%; } .framer-8LeP3 .framer-dgcz8a { gap: 16px; padding: 12px 12px 24px 12px; } .framer-8LeP3 .framer-15c3mvt-container { height: 200px; max-width: unset; } .framer-8LeP3 .framer-pbhwt4, .framer-8LeP3 .framer-amzq09 { flex-direction: column; gap: 16px; } .framer-8LeP3 .framer-1fos7i4, .framer-8LeP3 .framer-1hzuh33, .framer-8LeP3 .framer-1lcidja-container, .framer-8LeP3 .framer-wj3oai-container, .framer-8LeP3 .framer-1iq3e0t, .framer-8LeP3 .framer-ico4z5, .framer-8LeP3 .framer-vdcmq { flex: none; width: 100%; } .framer-8LeP3 .framer-1n33gnf, .framer-8LeP3 .framer-udlfp0 { gap: 24px; padding: 20px 20px 40px 20px; } .framer-8LeP3 .framer-14t4mkk-container, .framer-8LeP3 .framer-14z3dgu, .framer-8LeP3 .framer-1fzlusq, .framer-8LeP3 .framer-i8hyit, .framer-8LeP3 .framer-j3vhvk, .framer-8LeP3 .framer-10epycn, .framer-8LeP3 .framer-nxucya, .framer-8LeP3 .framer-1jyt0fg, .framer-8LeP3 .framer-1beo4im, .framer-8LeP3 .framer-5j9jv3, .framer-8LeP3 .framer-1kuxq0a, .framer-8LeP3 .framer-xhpeby-container, .framer-8LeP3 .framer-dgj3w7-container, .framer-8LeP3 .framer-145di56-container, .framer-8LeP3 .framer-f90jw-container { width: 100%; } .framer-8LeP3 .framer-15wi40v, .framer-8LeP3 .framer-70tv6t { flex-direction: column; gap: 16px; height: min-content; } .framer-8LeP3 .framer-zm17zk, .framer-8LeP3 .framer-ke5x26, .framer-8LeP3 .framer-1c249vj { flex: none; height: min-content; padding: 16px 24px 24px 24px; width: 100%; } .framer-8LeP3 .framer-12xu7sf, .framer-8LeP3 .framer-pig1qm, .framer-8LeP3 .framer-1d0g60c, .framer-8LeP3 .framer-1hh8dof, .framer-8LeP3 .framer-wy0nrh, .framer-8LeP3 .framer-1npkk83 { height: var(--framer-aspect-ratio-supported, 64px); width: 64px; } .framer-8LeP3 .framer-10imbhk { gap: 16px; width: 100%; } .framer-8LeP3 .framer-1fbj6jq { align-content: flex-start; align-items: flex-start; gap: 16px; overflow: hidden; padding: 0px 20px 60px 20px; } .framer-8LeP3 .framer-10n4u0j { flex-direction: column; gap: 0px; justify-content: center; } .framer-8LeP3 .framer-6fhk4e { flex: none; order: 1; width: 100%; } .framer-8LeP3 .framer-13q1m9x { padding: 8px; } .framer-8LeP3 .framer-1cb1jcs { aspect-ratio: unset; height: 550px; order: 0; width: 621px; } .framer-8LeP3 .framer-bwv1i2-container, .framer-8LeP3 .framer-5tf7yv-container, .framer-8LeP3 .framer-1xjyna7-container { height: 600px; } .framer-8LeP3 .framer-5fm95x { gap: 32px; padding: 20px 20px 40px 20px; } .framer-8LeP3 .framer-1w6croh { height: var(--framer-aspect-ratio-supported, 204px); } .framer-8LeP3 .framer-sczw1g, .framer-8LeP3 .framer-w4xp4w, .framer-8LeP3 .framer-l8h32 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; flex-direction: row; justify-content: center; padding: 12px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-8LeP3 .framer-1xsic0n, .framer-8LeP3 .framer-1bwblvf, .framer-8LeP3 .framer-11v9x55 { flex: 1 0 0px; width: 1px; } .framer-8LeP3 .framer-3ir7ht { padding: 16px; } .framer-8LeP3 .framer-1oeu8vq { gap: 32px; padding: 20px 20px 60px 20px; } .framer-8LeP3 .framer-5xq0w5 { flex-direction: column; } .framer-8LeP3 .framer-1ocfs7h { gap: 32px; padding: 20px 20px 0px 20px; } .framer-8LeP3 .framer-137qjaq, .framer-8LeP3 .framer-3s2b5m, .framer-8LeP3 .framer-1h0ngci { flex: none; gap: 16px; height: min-content; padding: 16px 24px 24px 24px; width: 100%; } .framer-8LeP3 .framer-1bsyrl1-container, .framer-8LeP3 .framer-17ztlex-container, .framer-8LeP3 .framer-6tj85i-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 39px); width: 36px; } .framer-8LeP3 .framer-z9sljr, .framer-8LeP3 .framer-16wpdnr, .framer-8LeP3 .framer-16pcphb { gap: 8px; } .framer-8LeP3 .framer-1m2fi8e { gap: 24px; padding: 20px 20px 60px 20px; } .framer-8LeP3 .framer-2qqb0z, .framer-8LeP3 .framer-wt16gd { max-width: unset; } .framer-8LeP3 .framer-pvl3tv, .framer-8LeP3 .framer-1lhk8qx, .framer-8LeP3 .framer-cub95w { flex-direction: column; gap: 24px; padding: 12px 16px 12px 24px; } .framer-8LeP3 .framer-1mnaj6f, .framer-8LeP3 .framer-j404n2, .framer-8LeP3 .framer-11n1q8a { flex: none; gap: 16px; max-width: 100%; padding: 16px; width: 100%; } .framer-8LeP3 .framer-1n4srn3 { height: var(--framer-aspect-ratio-supported, 72px); width: 120px; } .framer-8LeP3 .framer-6vzvk6 { height: var(--framer-aspect-ratio-supported, 36px); width: 146px; } .framer-8LeP3 .framer-1k4szxo { height: var(--framer-aspect-ratio-supported, 32px); width: 213px; } .framer-8LeP3 .framer-la2gza { gap: 40px; padding: 40px 0px 0px 0px; } .framer-8LeP3 .framer-xl5y97, .framer-8LeP3 .framer-17y93ey, .framer-8LeP3 .framer-oq9971 { height: min-content; } .framer-8LeP3 .framer-5a6f4w, .framer-8LeP3 .framer-1nby6lk, .framer-8LeP3 .framer-1cdlnd5, .framer-8LeP3 .framer-s1sly0, .framer-8LeP3 .framer-1rv0zjy, .framer-8LeP3 .framer-19e4w4r { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-8LeP3 .framer-sxqa7s { aspect-ratio: unset; height: 149px; left: calc(50.00000000000002% - 356px / 2); top: -40px; transform: unset; width: 356px; } .framer-8LeP3 .framer-8vv19x { height: var(--framer-aspect-ratio-supported, 151px); top: -66px; width: 162px; } .framer-8LeP3 .framer-wl1j99 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: wrap; justify-content: flex-start; padding: 0px; width: 100%; } .framer-8LeP3 .framer-4qgre-container { align-self: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8LeP3 .framer-1yp8xwc, .framer-8LeP3 .framer-dn1zvx, .framer-8LeP3 .framer-tu23w1, .framer-8LeP3 .framer-dgcz8a, .framer-8LeP3 .framer-pbhwt4, .framer-8LeP3 .framer-1n33gnf, .framer-8LeP3 .framer-15wi40v, .framer-8LeP3 .framer-r1ieh3, .framer-8LeP3 .framer-iw9uk7, .framer-8LeP3 .framer-10imbhk, .framer-8LeP3 .framer-1fbj6jq, .framer-8LeP3 .framer-10n4u0j, .framer-8LeP3 .framer-5fm95x, .framer-8LeP3 .framer-amzq09, .framer-8LeP3 .framer-sczw1g, .framer-8LeP3 .framer-w4xp4w, .framer-8LeP3 .framer-l8h32, .framer-8LeP3 .framer-1oeu8vq, .framer-8LeP3 .framer-5xq0w5, .framer-8LeP3 .framer-1ocfs7h, .framer-8LeP3 .framer-70tv6t, .framer-8LeP3 .framer-137qjaq, .framer-8LeP3 .framer-z9sljr, .framer-8LeP3 .framer-3s2b5m, .framer-8LeP3 .framer-16wpdnr, .framer-8LeP3 .framer-1h0ngci, .framer-8LeP3 .framer-16pcphb, .framer-8LeP3 .framer-1m2fi8e, .framer-8LeP3 .framer-pvl3tv, .framer-8LeP3 .framer-1mnaj6f, .framer-8LeP3 .framer-1lhk8qx, .framer-8LeP3 .framer-j404n2, .framer-8LeP3 .framer-cub95w, .framer-8LeP3 .framer-11n1q8a, .framer-8LeP3 .framer-la2gza, .framer-8LeP3 .framer-udlfp0, .framer-8LeP3 .framer-wl1j99 { gap: 0px; } .framer-8LeP3 .framer-1yp8xwc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-8LeP3 .framer-1yp8xwc > :first-child, .framer-8LeP3 .framer-dn1zvx > :first-child, .framer-8LeP3 .framer-tu23w1 > :first-child, .framer-8LeP3 .framer-dgcz8a > :first-child, .framer-8LeP3 .framer-pbhwt4 > :first-child, .framer-8LeP3 .framer-1n33gnf > :first-child, .framer-8LeP3 .framer-15wi40v > :first-child, .framer-8LeP3 .framer-r1ieh3 > :first-child, .framer-8LeP3 .framer-iw9uk7 > :first-child, .framer-8LeP3 .framer-10imbhk > :first-child, .framer-8LeP3 .framer-10n4u0j > :first-child, .framer-8LeP3 .framer-5fm95x > :first-child, .framer-8LeP3 .framer-amzq09 > :first-child, .framer-8LeP3 .framer-1oeu8vq > :first-child, .framer-8LeP3 .framer-5xq0w5 > :first-child, .framer-8LeP3 .framer-1ocfs7h > :first-child, .framer-8LeP3 .framer-70tv6t > :first-child, .framer-8LeP3 .framer-137qjaq > :first-child, .framer-8LeP3 .framer-z9sljr > :first-child, .framer-8LeP3 .framer-3s2b5m > :first-child, .framer-8LeP3 .framer-16wpdnr > :first-child, .framer-8LeP3 .framer-1h0ngci > :first-child, .framer-8LeP3 .framer-16pcphb > :first-child, .framer-8LeP3 .framer-1m2fi8e > :first-child, .framer-8LeP3 .framer-pvl3tv > :first-child, .framer-8LeP3 .framer-1mnaj6f > :first-child, .framer-8LeP3 .framer-1lhk8qx > :first-child, .framer-8LeP3 .framer-j404n2 > :first-child, .framer-8LeP3 .framer-cub95w > :first-child, .framer-8LeP3 .framer-11n1q8a > :first-child, .framer-8LeP3 .framer-udlfp0 > :first-child, .framer-8LeP3 .framer-wl1j99 > :first-child { margin-top: 0px; } .framer-8LeP3 .framer-1yp8xwc > :last-child, .framer-8LeP3 .framer-dn1zvx > :last-child, .framer-8LeP3 .framer-tu23w1 > :last-child, .framer-8LeP3 .framer-dgcz8a > :last-child, .framer-8LeP3 .framer-pbhwt4 > :last-child, .framer-8LeP3 .framer-1n33gnf > :last-child, .framer-8LeP3 .framer-15wi40v > :last-child, .framer-8LeP3 .framer-r1ieh3 > :last-child, .framer-8LeP3 .framer-iw9uk7 > :last-child, .framer-8LeP3 .framer-10imbhk > :last-child, .framer-8LeP3 .framer-10n4u0j > :last-child, .framer-8LeP3 .framer-5fm95x > :last-child, .framer-8LeP3 .framer-amzq09 > :last-child, .framer-8LeP3 .framer-1oeu8vq > :last-child, .framer-8LeP3 .framer-5xq0w5 > :last-child, .framer-8LeP3 .framer-1ocfs7h > :last-child, .framer-8LeP3 .framer-70tv6t > :last-child, .framer-8LeP3 .framer-137qjaq > :last-child, .framer-8LeP3 .framer-z9sljr > :last-child, .framer-8LeP3 .framer-3s2b5m > :last-child, .framer-8LeP3 .framer-16wpdnr > :last-child, .framer-8LeP3 .framer-1h0ngci > :last-child, .framer-8LeP3 .framer-16pcphb > :last-child, .framer-8LeP3 .framer-1m2fi8e > :last-child, .framer-8LeP3 .framer-pvl3tv > :last-child, .framer-8LeP3 .framer-1mnaj6f > :last-child, .framer-8LeP3 .framer-1lhk8qx > :last-child, .framer-8LeP3 .framer-j404n2 > :last-child, .framer-8LeP3 .framer-cub95w > :last-child, .framer-8LeP3 .framer-11n1q8a > :last-child, .framer-8LeP3 .framer-udlfp0 > :last-child, .framer-8LeP3 .framer-wl1j99 > :last-child { margin-bottom: 0px; } .framer-8LeP3 .framer-dn1zvx > *, .framer-8LeP3 .framer-dgcz8a > *, .framer-8LeP3 .framer-pbhwt4 > *, .framer-8LeP3 .framer-15wi40v > *, .framer-8LeP3 .framer-r1ieh3 > *, .framer-8LeP3 .framer-iw9uk7 > *, .framer-8LeP3 .framer-10imbhk > *, .framer-8LeP3 .framer-amzq09 > *, .framer-8LeP3 .framer-70tv6t > *, .framer-8LeP3 .framer-137qjaq > *, .framer-8LeP3 .framer-3s2b5m > *, .framer-8LeP3 .framer-1h0ngci > *, .framer-8LeP3 .framer-1mnaj6f > *, .framer-8LeP3 .framer-j404n2 > *, .framer-8LeP3 .framer-11n1q8a > *, .framer-8LeP3 .framer-wl1j99 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8LeP3 .framer-tu23w1 > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-8LeP3 .framer-1n33gnf > *, .framer-8LeP3 .framer-1m2fi8e > *, .framer-8LeP3 .framer-pvl3tv > *, .framer-8LeP3 .framer-1lhk8qx > *, .framer-8LeP3 .framer-cub95w > *, .framer-8LeP3 .framer-udlfp0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8LeP3 .framer-1fbj6jq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-8LeP3 .framer-1fbj6jq > :first-child, .framer-8LeP3 .framer-sczw1g > :first-child, .framer-8LeP3 .framer-w4xp4w > :first-child, .framer-8LeP3 .framer-l8h32 > :first-child, .framer-8LeP3 .framer-la2gza > :first-child { margin-left: 0px; } .framer-8LeP3 .framer-1fbj6jq > :last-child, .framer-8LeP3 .framer-sczw1g > :last-child, .framer-8LeP3 .framer-w4xp4w > :last-child, .framer-8LeP3 .framer-l8h32 > :last-child, .framer-8LeP3 .framer-la2gza > :last-child { margin-right: 0px; } .framer-8LeP3 .framer-10n4u0j > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8LeP3 .framer-5fm95x > *, .framer-8LeP3 .framer-1oeu8vq > *, .framer-8LeP3 .framer-5xq0w5 > *, .framer-8LeP3 .framer-1ocfs7h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-8LeP3 .framer-sczw1g > *, .framer-8LeP3 .framer-w4xp4w > *, .framer-8LeP3 .framer-l8h32 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-8LeP3 .framer-z9sljr > *, .framer-8LeP3 .framer-16wpdnr > *, .framer-8LeP3 .framer-16pcphb > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-8LeP3 .framer-la2gza > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }}\",\"@media (min-width: 576px) and (max-width: 991px) { .framer-8LeP3.framer-72rtr7 { width: 576px; } .framer-8LeP3 .framer-3ltktk-container { order: 0; } .framer-8LeP3 .framer-a4ey5c-container { order: 1; top: 32px; } .framer-8LeP3 .framer-lxcy0b-container { order: 2; } .framer-8LeP3 .framer-1yp8xwc { gap: 40px; order: 3; padding: 130px 20px 48px 20px; } .framer-8LeP3 .framer-zwwzqu-container { left: calc(100.00000000000003% - 200% / 2); width: 200%; } .framer-8LeP3 .framer-psoogj { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; } .framer-8LeP3 .framer-u9emc7 { width: 80%; } .framer-8LeP3 .framer-dn1zvx, .framer-8LeP3 .framer-r1ieh3, .framer-8LeP3 .framer-iw9uk7 { gap: 16px; } .framer-8LeP3 .framer-1qwlekz-container { height: 100px; } .framer-8LeP3 .framer-tu23w1 { flex-direction: column; order: 4; padding: 20px; } .framer-8LeP3 .framer-13ktf0t { flex: none; max-width: unset; width: 100%; } .framer-8LeP3 .framer-dgcz8a { gap: 16px; padding: 16px 16px 24px 16px; } .framer-8LeP3 .framer-15c3mvt-container { height: 350px; max-width: unset; } .framer-8LeP3 .framer-pbhwt4, .framer-8LeP3 .framer-amzq09 { flex-direction: column; gap: 16px; } .framer-8LeP3 .framer-1fos7i4, .framer-8LeP3 .framer-1hzuh33, .framer-8LeP3 .framer-1lcidja-container, .framer-8LeP3 .framer-wj3oai-container, .framer-8LeP3 .framer-1iq3e0t, .framer-8LeP3 .framer-ico4z5, .framer-8LeP3 .framer-vdcmq { flex: none; width: 100%; } .framer-8LeP3 .framer-1n33gnf { gap: 24px; order: 5; padding: 60px 20px 60px 20px; } .framer-8LeP3 .framer-14t4mkk-container, .framer-8LeP3 .framer-j3vhvk, .framer-8LeP3 .framer-1beo4im, .framer-8LeP3 .framer-1kuxq0a, .framer-8LeP3 .framer-xhpeby-container, .framer-8LeP3 .framer-dgj3w7-container, .framer-8LeP3 .framer-145di56-container, .framer-8LeP3 .framer-f90jw-container { width: 100%; } .framer-8LeP3 .framer-15wi40v, .framer-8LeP3 .framer-70tv6t { flex-direction: column; gap: 16px; height: min-content; } .framer-8LeP3 .framer-zm17zk, .framer-8LeP3 .framer-ke5x26, .framer-8LeP3 .framer-1c249vj, .framer-8LeP3 .framer-137qjaq, .framer-8LeP3 .framer-3s2b5m, .framer-8LeP3 .framer-1h0ngci { flex: none; height: min-content; padding: 30px; width: 100%; } .framer-8LeP3 .framer-12xu7sf, .framer-8LeP3 .framer-pig1qm, .framer-8LeP3 .framer-1d0g60c { height: var(--framer-aspect-ratio-supported, 64px); width: 64px; } .framer-8LeP3 .framer-10imbhk { gap: 16px; width: 100%; } .framer-8LeP3 .framer-1fbj6jq { order: 6; overflow: hidden; padding: 0px 60px 60px 60px; } .framer-8LeP3 .framer-10n4u0j { flex-direction: column; } .framer-8LeP3 .framer-6fhk4e { flex: none; order: 1; width: 100%; } .framer-8LeP3 .framer-1cb1jcs { aspect-ratio: unset; grid-auto-rows: min-content; grid-template-rows: repeat(1, min-content); height: 600px; order: 0; width: 100%; } .framer-8LeP3 .framer-bwv1i2-container, .framer-8LeP3 .framer-5tf7yv-container, .framer-8LeP3 .framer-1xjyna7-container { height: 600px; } .framer-8LeP3 .framer-5fm95x { gap: 32px; order: 7; padding: 20px 20px 60px 20px; } .framer-8LeP3 .framer-1w6croh { height: var(--framer-aspect-ratio-supported, 312px); } .framer-8LeP3 .framer-sczw1g, .framer-8LeP3 .framer-w4xp4w, .framer-8LeP3 .framer-l8h32 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; flex-direction: row; justify-content: center; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-8LeP3 .framer-1xsic0n, .framer-8LeP3 .framer-1bwblvf, .framer-8LeP3 .framer-11v9x55 { flex: 1 0 0px; width: 1px; } .framer-8LeP3 .framer-1oeu8vq { gap: 48px; order: 8; padding: 20px 20px 60px 20px; } .framer-8LeP3 .framer-5xq0w5 { flex-direction: column; gap: 25px; } .framer-8LeP3 .framer-1ocfs7h { gap: 48px; order: 9; padding: 20px 20px 60px 20px; } .framer-8LeP3 .framer-1m2fi8e { gap: 24px; order: 10; padding: 20px 20px 60px 20px; } .framer-8LeP3 .framer-2qqb0z, .framer-8LeP3 .framer-wt16gd { max-width: unset; } .framer-8LeP3 .framer-pvl3tv, .framer-8LeP3 .framer-1lhk8qx, .framer-8LeP3 .framer-cub95w { flex-direction: column; gap: 24px; } .framer-8LeP3 .framer-1mnaj6f, .framer-8LeP3 .framer-j404n2, .framer-8LeP3 .framer-11n1q8a { flex: none; gap: 16px; max-width: 100%; padding: 16px; width: 100%; } .framer-8LeP3 .framer-la2gza { gap: 16px; padding: 40px 0px 0px 0px; } .framer-8LeP3 .framer-xl5y97, .framer-8LeP3 .framer-17y93ey, .framer-8LeP3 .framer-oq9971 { height: min-content; } .framer-8LeP3 .framer-1vxi7jt { width: 30px; } .framer-8LeP3 .framer-udlfp0 { gap: 24px; order: 11; padding: 40px 20px 40px 20px; } .framer-8LeP3 .framer-sxqa7s { aspect-ratio: unset; height: 149px; left: calc(50.00000000000002% - 356px / 2); top: -40px; transform: unset; width: 356px; } .framer-8LeP3 .framer-8vv19x { height: var(--framer-aspect-ratio-supported, 150px); top: -66px; width: 162px; } .framer-8LeP3 .framer-wl1j99 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: wrap; justify-content: flex-start; width: 100%; } .framer-8LeP3 .framer-4qgre-container { align-self: unset; order: 0; } .framer-8LeP3 .framer-1e9vkll-container { order: 12; } .framer-8LeP3 .framer-foun8u-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8LeP3 .framer-1yp8xwc, .framer-8LeP3 .framer-dn1zvx, .framer-8LeP3 .framer-tu23w1, .framer-8LeP3 .framer-dgcz8a, .framer-8LeP3 .framer-pbhwt4, .framer-8LeP3 .framer-1n33gnf, .framer-8LeP3 .framer-15wi40v, .framer-8LeP3 .framer-r1ieh3, .framer-8LeP3 .framer-iw9uk7, .framer-8LeP3 .framer-10imbhk, .framer-8LeP3 .framer-10n4u0j, .framer-8LeP3 .framer-5fm95x, .framer-8LeP3 .framer-amzq09, .framer-8LeP3 .framer-sczw1g, .framer-8LeP3 .framer-w4xp4w, .framer-8LeP3 .framer-l8h32, .framer-8LeP3 .framer-1oeu8vq, .framer-8LeP3 .framer-5xq0w5, .framer-8LeP3 .framer-1ocfs7h, .framer-8LeP3 .framer-70tv6t, .framer-8LeP3 .framer-1m2fi8e, .framer-8LeP3 .framer-pvl3tv, .framer-8LeP3 .framer-1mnaj6f, .framer-8LeP3 .framer-1lhk8qx, .framer-8LeP3 .framer-j404n2, .framer-8LeP3 .framer-cub95w, .framer-8LeP3 .framer-11n1q8a, .framer-8LeP3 .framer-la2gza, .framer-8LeP3 .framer-udlfp0, .framer-8LeP3 .framer-wl1j99 { gap: 0px; } .framer-8LeP3 .framer-1yp8xwc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-8LeP3 .framer-1yp8xwc > :first-child, .framer-8LeP3 .framer-dn1zvx > :first-child, .framer-8LeP3 .framer-tu23w1 > :first-child, .framer-8LeP3 .framer-dgcz8a > :first-child, .framer-8LeP3 .framer-pbhwt4 > :first-child, .framer-8LeP3 .framer-1n33gnf > :first-child, .framer-8LeP3 .framer-15wi40v > :first-child, .framer-8LeP3 .framer-r1ieh3 > :first-child, .framer-8LeP3 .framer-iw9uk7 > :first-child, .framer-8LeP3 .framer-10imbhk > :first-child, .framer-8LeP3 .framer-5fm95x > :first-child, .framer-8LeP3 .framer-amzq09 > :first-child, .framer-8LeP3 .framer-1oeu8vq > :first-child, .framer-8LeP3 .framer-5xq0w5 > :first-child, .framer-8LeP3 .framer-1ocfs7h > :first-child, .framer-8LeP3 .framer-70tv6t > :first-child, .framer-8LeP3 .framer-1m2fi8e > :first-child, .framer-8LeP3 .framer-pvl3tv > :first-child, .framer-8LeP3 .framer-1mnaj6f > :first-child, .framer-8LeP3 .framer-1lhk8qx > :first-child, .framer-8LeP3 .framer-j404n2 > :first-child, .framer-8LeP3 .framer-cub95w > :first-child, .framer-8LeP3 .framer-11n1q8a > :first-child, .framer-8LeP3 .framer-udlfp0 > :first-child, .framer-8LeP3 .framer-wl1j99 > :first-child { margin-top: 0px; } .framer-8LeP3 .framer-1yp8xwc > :last-child, .framer-8LeP3 .framer-dn1zvx > :last-child, .framer-8LeP3 .framer-tu23w1 > :last-child, .framer-8LeP3 .framer-dgcz8a > :last-child, .framer-8LeP3 .framer-pbhwt4 > :last-child, .framer-8LeP3 .framer-1n33gnf > :last-child, .framer-8LeP3 .framer-15wi40v > :last-child, .framer-8LeP3 .framer-r1ieh3 > :last-child, .framer-8LeP3 .framer-iw9uk7 > :last-child, .framer-8LeP3 .framer-10imbhk > :last-child, .framer-8LeP3 .framer-5fm95x > :last-child, .framer-8LeP3 .framer-amzq09 > :last-child, .framer-8LeP3 .framer-1oeu8vq > :last-child, .framer-8LeP3 .framer-5xq0w5 > :last-child, .framer-8LeP3 .framer-1ocfs7h > :last-child, .framer-8LeP3 .framer-70tv6t > :last-child, .framer-8LeP3 .framer-1m2fi8e > :last-child, .framer-8LeP3 .framer-pvl3tv > :last-child, .framer-8LeP3 .framer-1mnaj6f > :last-child, .framer-8LeP3 .framer-1lhk8qx > :last-child, .framer-8LeP3 .framer-j404n2 > :last-child, .framer-8LeP3 .framer-cub95w > :last-child, .framer-8LeP3 .framer-11n1q8a > :last-child, .framer-8LeP3 .framer-udlfp0 > :last-child, .framer-8LeP3 .framer-wl1j99 > :last-child { margin-bottom: 0px; } .framer-8LeP3 .framer-dn1zvx > *, .framer-8LeP3 .framer-dgcz8a > *, .framer-8LeP3 .framer-pbhwt4 > *, .framer-8LeP3 .framer-15wi40v > *, .framer-8LeP3 .framer-r1ieh3 > *, .framer-8LeP3 .framer-iw9uk7 > *, .framer-8LeP3 .framer-10imbhk > *, .framer-8LeP3 .framer-amzq09 > *, .framer-8LeP3 .framer-70tv6t > *, .framer-8LeP3 .framer-1mnaj6f > *, .framer-8LeP3 .framer-j404n2 > *, .framer-8LeP3 .framer-11n1q8a > *, .framer-8LeP3 .framer-wl1j99 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8LeP3 .framer-tu23w1 > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-8LeP3 .framer-1n33gnf > *, .framer-8LeP3 .framer-1m2fi8e > *, .framer-8LeP3 .framer-pvl3tv > *, .framer-8LeP3 .framer-1lhk8qx > *, .framer-8LeP3 .framer-cub95w > *, .framer-8LeP3 .framer-udlfp0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8LeP3 .framer-10n4u0j > *, .framer-8LeP3 .framer-10n4u0j > :first-child, .framer-8LeP3 .framer-10n4u0j > :last-child { margin: 0px; } .framer-8LeP3 .framer-5fm95x > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-8LeP3 .framer-sczw1g > *, .framer-8LeP3 .framer-w4xp4w > *, .framer-8LeP3 .framer-l8h32 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-8LeP3 .framer-sczw1g > :first-child, .framer-8LeP3 .framer-w4xp4w > :first-child, .framer-8LeP3 .framer-l8h32 > :first-child, .framer-8LeP3 .framer-la2gza > :first-child { margin-left: 0px; } .framer-8LeP3 .framer-sczw1g > :last-child, .framer-8LeP3 .framer-w4xp4w > :last-child, .framer-8LeP3 .framer-l8h32 > :last-child, .framer-8LeP3 .framer-la2gza > :last-child { margin-right: 0px; } .framer-8LeP3 .framer-1oeu8vq > *, .framer-8LeP3 .framer-1ocfs7h > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-8LeP3 .framer-5xq0w5 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-8LeP3 .framer-la2gza > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8681\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PqpaQgc5e\":{\"layout\":[\"fixed\",\"auto\"]},\"J3uB7PlJN\":{\"layout\":[\"fixed\",\"auto\"]},\"WpCIbgkLd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"jv_QmIFgl\":{\"pattern\":\":jv_QmIFgl\",\"name\":\"hero\"},\"z1iKI5fcO\":{\"pattern\":\":z1iKI5fcO\",\"name\":\"introduction\"},\"jPDtQpr9T\":{\"pattern\":\":jPDtQpr9T\",\"name\":\"solucoes\"},\"fZdaNaiDu\":{\"pattern\":\":fZdaNaiDu\",\"name\":\"commandcenterclinico\"},\"SmoawOunl\":{\"pattern\":\":SmoawOunl\",\"name\":\"\"},\"S7B7vvAvq\":{\"pattern\":\":S7B7vvAvq\",\"name\":\"o-que-fazemos\"},\"YS7mhwaJ6\":{\"pattern\":\":YS7mhwaJ6\",\"name\":\"depoimentos\"},\"SdJnzaJMc\":{\"pattern\":\":SdJnzaJMc\",\"name\":\"blog\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-8LeP3\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8681,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl83T7wrcwap.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7LLTLAW3NRWOADG4II2JGKZC6OSEMBQC/EYFXWX77PEMPU645EAWOTG22E375GULW/SSNNTU67MMJH4CSWT443B4KJ7OB4WFHF.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"}]},...GrainFonts,...NavigationBarFonts,...GradientMenuFonts,...GridFonts,...ButtonsFonts,...AvatarFonts,...OpenAIFonts,...Loog_grupo_verticalFonts,...Logo_santa_luciaFonts,...Logo_awsFonts,...Logo_googleFonts,...Logo_mayo_clinicFonts,...AnahhFonts,...TickerFonts,...YouTubeFonts,...H2HeaderFonts,...PhosphorFonts,...BadgeFonts,...Ticker1Fonts,...CardPartnerFonts,...HeroFonts,...BlogModuleDefaultFonts,...FooterFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1280\",\"framerIntrinsicHeight\":\"8681\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"jv_QmIFgl\\\":{\\\"pattern\\\":\\\":jv_QmIFgl\\\",\\\"name\\\":\\\"hero\\\"},\\\"z1iKI5fcO\\\":{\\\"pattern\\\":\\\":z1iKI5fcO\\\",\\\"name\\\":\\\"introduction\\\"},\\\"jPDtQpr9T\\\":{\\\"pattern\\\":\\\":jPDtQpr9T\\\",\\\"name\\\":\\\"solucoes\\\"},\\\"fZdaNaiDu\\\":{\\\"pattern\\\":\\\":fZdaNaiDu\\\",\\\"name\\\":\\\"commandcenterclinico\\\"},\\\"SmoawOunl\\\":{\\\"pattern\\\":\\\":SmoawOunl\\\",\\\"name\\\":\\\"\\\"},\\\"S7B7vvAvq\\\":{\\\"pattern\\\":\\\":S7B7vvAvq\\\",\\\"name\\\":\\\"o-que-fazemos\\\"},\\\"YS7mhwaJ6\\\":{\\\"pattern\\\":\\\":YS7mhwaJ6\\\",\\\"name\\\":\\\"depoimentos\\\"},\\\"SdJnzaJMc\\\":{\\\"pattern\\\":\\\":SdJnzaJMc\\\",\\\"name\\\":\\\"blog\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PqpaQgc5e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J3uB7PlJN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WpCIbgkLd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "o", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "e", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "P", "j", "testAnimation", "e", "C", "R", "H", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "t", "h", "a", "c", "e", "i", "r", "u", "p", "d", "s", "window", "o", "n", "l", "m", "v", "g", "S", "w", "f", "y", "T", "z", "_", "M", "L", "b", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "handleMutation", "mutationsList", "observer", "mutation", "htmlElement", "window", "config", "allElements", "i", "element", "l", "raf", "time", "styleElement", "p", "addPropertyControls", "ControlType", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "textBG", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "shYZ8xZ6P", "HJYYGhJC3", "b4EsfMO6DwoijqL5Mw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "addPropertyOverrides", "Image2", "RichText2", "css", "FrameraL1M4pcFt", "withCSS", "aL1M4pcFt_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerBNviWGSsQ", "withCSS", "BNviWGSsQ_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerBYfjwEyLq", "withCSS", "BYfjwEyLq_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerijRSA4aUc", "withCSS", "ijRSA4aUc_default", "addFonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "MotionDivWithFX", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "Image2", "css", "FramerIpCe_IZOm", "withCSS", "IpCe_IZOm_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramermXlQRfqAO", "withCSS", "mXlQRfqAO_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "Framernp9TfPJSQ", "withCSS", "np9TfPJSQ_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerqwleZaeH_", "withCSS", "qwleZaeH_default", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearpxop9w", "args", "onTap30mjwq", "onAppearlwhaes", "onAppearj26k2c", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "MotionDivWithFX", "css", "FramerqyT6o3Xjc", "withCSS", "qyT6o3Xjc_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerwNq4fuqkw", "withCSS", "wNq4fuqkw_default", "addFonts", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "GrainFonts", "getFonts", "Grain", "NavigationBarFonts", "SGgu1LoLH_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "GradientMenuFonts", "XS7J_ddFJ_default", "GridFonts", "qyT6o3Xjc_default", "MotionAWithOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonsFonts", "yORaTwldW_default", "AvatarFonts", "aL1M4pcFt_default", "MotionDivWithOptimizedAppearEffect", "OpenAIFonts", "BYfjwEyLq_default", "Loog_grupo_verticalFonts", "mXlQRfqAO_default", "Logo_santa_luciaFonts", "qwleZaeH_default", "Logo_awsFonts", "ijRSA4aUc_default", "Logo_googleFonts", "np9TfPJSQ_default", "Logo_mayo_clinicFonts", "BNviWGSsQ_default", "AnahhFonts", "wNq4fuqkw_default", "TickerFonts", "Ticker", "YouTubeFonts", "Youtube", "MotionSectionWithFX", "withFX", "H2HeaderFonts", "HOp6VgeBe_default", "PhosphorFonts", "Icon", "BadgeFonts", "SXR9yB_tn_default", "Ticker1Fonts", "CardPartnerFonts", "IpCe_IZOm_default", "HeroFonts", "MotionDivWithFX", "BlogModuleDefaultFonts", "C3bHI6RiV_default", "FooterFonts", "qZ_XI3P7P_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "transition4", "animation6", "transition5", "animation7", "addImageAlt", "image", "alt", "animation8", "transition6", "animation9", "animation10", "animation11", "animation12", "transition7", "animation13", "transition8", "transition9", "transition10", "animation14", "transition11", "transition12", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition13", "animation15", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "wR752i2OMb9HQ5d1Qd", "TKjCrGQqib9HQ5d1Qd", "ZVhKDtWyEb9HQ5d1Qd", "zgMbIQQN4b9HQ5d1Qd", "Lx_TFXkL0b9HQ5d1Qd", "idb9HQ5d1Qd", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "elementId1", "ref2", "elementId2", "ref3", "usePreloadLocalizedValues", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "isDisplayed", "elementId7", "ref8", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "Link", "x", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "getLocalizedValue", "resolvedLinks2", "getLoadingLazyAtYPosition", "Image2", "ChildrenCanSuspend", "CWvRL2Z7h_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks3", "resolvedLinks4", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
