/* New includes */

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/


/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
/* Definições do layout drag and drop hubspot */
*,
*:before,
*:after {
  box-sizing: border-box;
}

*[role="button"]:active,
*[role="button"]:focus,
*[role="button"]:focus-visible {
  outline: none;
}

.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/
/* Form Title */

h3.form-title {
  margin-bottom: 0;
  text-align: center;
}

/* Labels */

.hs-form label,
.hs-form-field > label {
  display: block;
  float: none;
  line-height: 1.5;
  margin-bottom: 4px;
  padding-top: 0;
  text-align: left;
  width: auto;
}

.hs-error-msgs label {
  margin-top: 0.5rem;
}

/* Inputs */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="phone"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="file"],
select,
textarea {
  display: inline-block;
  line-height: 22px;
  width: 100%;
}

.hs-input[type="file"] {
  background-color: #fff;
  border: initial;
  line-height: initial;
  padding: initial;
}

input,
textarea {
  transition: border 0.2s linear;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="file"]:focus,
select:focus,
textarea:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: none;
}

textarea {
  height: auto;
  resize: vertical;
}

select[multiple] {
  height: inherit;
}

/* Checkbox and Radio Fields */

input[type="checkbox"],
input[type="radio"] {
  border: none;
  cursor: pointer;
  height: auto;
  line-height: normal;
  margin: 3px 5px 3px 0;
  padding: 0;
  width: auto;
}

.inputs-list {
  margin: 0 0 5px;
  list-style: none;
  padding-left: 0;
  width: 100%;
}

.inputs-list > li {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}

.inputs-list label {
  display: block;
  float: none;
  line-height: 18px;
  padding: 0;
  text-align: left;
  white-space: normal;
  width: auto;
}

.inputs-list:first-child {
  padding-top: 6px;
}

.inputs-list > li + li {
  padding-top: 2px;
}

.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

/* Force single column fields to full width inside of fieldsets */

fieldset.form-columns-1 .hs-input:not([type="radio"]):not([type="checkbox"]) {
  width: 100% !important;
}

/* Help Text */

.hs-form-field legend {
  margin: 0 0 6px;
}

/* Validation */

.hs-form-required {
  color: #f00;
}

/* Rich Text */

form .hs-richtext img {
  height: auto;
  max-width: 100% !important;
}

.hs-richtext {
  line-height: 1.2;
  margin-bottom: 3px;
}

.hs-richtext hr {
  margin-left: 0;
  text-align: left;
  width: 91%;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

/* Submit Button */

form.hs-form .hs-button {
  display: block;
  width: 100%;
}

/* ================= Para o formulário com conteúdo fixo ==================== */
@media (min-width: 1024px) {
  .form__content-sticky .row-fluid .dnd-column:first-child {
    position: sticky;
    top: 24px;
    height: max-content;
  }
}
/* ===========================================================================*/

  

/*============================================================================*/
/* Old includes */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
	scroll-behavior: smooth;
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

:root {
  /* Fontes */
  font-family: "REM";

  /* Cores */
  /* Vermelho - BrandColor 1 */
  --red_official: #eb195b;
  --red-spotlight: #f05384;
  --red_light: #f7a3bd;
  --red_lightest: #fcdde7;

  /* Roxo - BrandColor 2 */
  --purple_official: #851bd8;
  --purple_spotlight: #a454e2;
  --purple_light: #cea4ef;
  --purple_lightest: #edddf9;

  /* Azul - BrandColor 3*/
  --blue_darkest: #060e39;
  --blue_darker: #0b2375;
  --blue_dark: #1659bc;
  --blue_official: #2185ec;
  --blue_spotlight: #59a4f1;
  --blue_light: #a6cef7;
  --blue_lightest: #deedfc;

  /* Verde - BrandColor 4 */
  --green_official: #28b86f;
  --green_spotlight: #5eca93;
  --green_light: #a9e3c5;
  --green_lightest: #dff5ea;

  /* Escalas de Cinza - BrandColor 5 */
  --black: #000000;
  --darkest: #27213d;
  --darker: #433e59;
  --dark: #6a667c;
  --light: #b4b6c8;
  --lightest: #f6f7fc;
  --white: #ffffff;

  /* Cores Auxiliares */
  --Auxiliary-orange: #ff9429;
  --Auxiliary-green: #c3dc3c;
  --Auxiliary-blue: #19c8ff;

  /* Containers */
  --container-desktop: 1440px;
  --container-notebook: 1140px;
  --container-tablet: 920px;
  --container-smart: 540px;

  /* Breakpoints */
  --breakpoint-desktop: 1920px;
  --breakpoint-notebook: 1200px;
  --breakpoint-tablet-landscape: 1024px;
  --breakpoint-tablet: 768px;
  --breakpoint-smart: 640px;
}

@font-face {
  font-family: 'cortex';
  src:  url('https://8917234.fs1.hubspotusercontent-na1.net/hubfs/8917234/website-cortex/icons/fonts/cortex.eot');
  src:  url('https://8917234.fs1.hubspotusercontent-na1.net/hubfs/8917234/website-cortex/icons/fonts/cortex.eot') format('embedded-opentype'),
    url('https://8917234.fs1.hubspotusercontent-na1.net/hubfs/8917234/website-cortex/icons/fonts/cortex.ttf') format('truetype'),
    url('https://8917234.fs1.hubspotusercontent-na1.net/hubfs/8917234/website-cortex/icons/fonts/cortex.woff') format('woff'),
    url('https://8917234.fs1.hubspotusercontent-na1.net/hubfs/8917234/website-cortex/icons/fonts/cortex.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'cortex' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.icon-bandeira-brasil .path1:before {
  content: "\e982";
  color: rgb(30, 155, 80);
}
.icon-bandeira-brasil .path2:before {
  content: "\e983";
  margin-left: -0.9521484375em;
  color: rgb(244, 192, 30);
}
.icon-bandeira-brasil .path3:before {
  content: "\e984";
  margin-left: -0.9521484375em;
  color: rgb(40, 95, 195);
}
.icon-bandeira-estados-unidos .path1:before {
  content: "\e985";
  color: rgb(210, 30, 70);
}
.icon-bandeira-estados-unidos .path2:before {
  content: "\e986";
  margin-left: -0.9521484375em;
  color: rgb(210, 30, 70);
}
.icon-bandeira-estados-unidos .path3:before {
  content: "\e987";
  margin-left: -0.9521484375em;
  color: rgb(210, 30, 70);
}
.icon-bandeira-estados-unidos .path4:before {
  content: "\e988";
  margin-left: -0.9521484375em;
  color: rgb(210, 30, 70);
}
.icon-bandeira-estados-unidos .path5:before {
  content: "\e989";
  margin-left: -0.9521484375em;
  color: rgb(210, 30, 70);
}
.icon-bandeira-estados-unidos .path6:before {
  content: "\e98a";
  margin-left: -0.9521484375em;
  color: rgb(40, 95, 195);
}
.icon-language-switcher:before {
  content: "\e981";
  color: #7a7589;
}
.icon-logo-clientes-pr-philip-morris-1:before {
  content: "\e968";
  color: #642d96;
}
.icon-logo-clientes-SI-jvalerio:before {
  content: "\e96a";
  color: #285fc3;
}
.icon-logo-clientes-SI-zendesk:before {
  content: "\e96b";
  color: #285fc3;
}
.icon-arrow-prev:before {
  content: "\e914";
}
.icon-arrow-next:before {
  content: "\e967";
}
.icon-clientes_salesforce-1:before {
  content: "\e969";
}
.icon-clientes_carrefour:before {
  content: "\e96c";
}
.icon-clientes_central-de-materiais:before {
  content: "\e96d";
}
.icon-clientes_cpfl-energia:before {
  content: "\e96e";
}
.icon-clientes_globo:before {
  content: "\e96f";
}
.icon-clientes_gol:before {
  content: "\e970";
}
.icon-clientes_google:before {
  content: "\e971";
}
.icon-clientes_ifood:before {
  content: "\e972";
}
.icon-clientes_kepler-weber:before {
  content: "\e973";
}
.icon-clientes_loreal:before {
  content: "\e974";
}
.icon-clientes_microsoft:before {
  content: "\e975";
}
.icon-clientes_oracle:before {
  content: "\e976";
}
.icon-clientes_roche:before {
  content: "\e977";
}
.icon-clientes_suzano:before {
  content: "\e978";
}
.icon-clientes_unilever:before {
  content: "\e979";
}
.icon-clientes_visa:before {
  content: "\e97a";
}
.icon-clientes_adobe:before {
  content: "\e97b";
}
.icon-clientes_amazon:before {
  content: "\e97c";
}
.icon-clientes_autodesk:before {
  content: "\e97d";
}
.icon-clientes_bayer:before {
  content: "\e97e";
}
.icon-clientes_bradesco:before {
  content: "\e97f";
}
.icon-clientes_btg-pactual:before {
  content: "\e980";
}
.icon-dados-da-empresa_colorido .path1:before {
  content: "\e92f";
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path2:before {
  content: "\e930";
  margin-left: -0.998046875em;
  color: rgb(40, 95, 195);
}
.icon-dados-da-empresa_colorido .path3:before {
  content: "\e931";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path4:before {
  content: "\e932";
  margin-left: -0.998046875em;
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path5:before {
  content: "\e933";
  margin-left: -0.998046875em;
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path6:before {
  content: "\e934";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path7:before {
  content: "\e935";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path8:before {
  content: "\e936";
  margin-left: -0.998046875em;
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path9:before {
  content: "\e937";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path10:before {
  content: "\e938";
  margin-left: -0.998046875em;
  color: rgb(40, 95, 195);
}
.icon-dados-da-empresa_colorido .path11:before {
  content: "\e939";
  margin-left: -0.998046875em;
  color: rgb(40, 95, 195);
}
.icon-dados-da-empresa_colorido .path12:before {
  content: "\e93a";
  margin-left: -0.998046875em;
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path13:before {
  content: "\e93b";
  margin-left: -0.998046875em;
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path14:before {
  content: "\e93c";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path15:before {
  content: "\e93d";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path16:before {
  content: "\e93e";
  margin-left: -0.998046875em;
  color: rgb(40, 95, 195);
}
.icon-dados-da-empresa_colorido .path17:before {
  content: "\e93f";
  margin-left: -0.998046875em;
  color: rgb(40, 95, 195);
}
.icon-ciencia-de-dados-e-analytics_colorido .path1:before {
  content: "\e940";
  color: rgb(0, 185, 180);
}
.icon-ciencia-de-dados-e-analytics_colorido .path2:before {
  content: "\e941";
  margin-left: -1.033203125em;
  color: rgb(67, 211, 231);
}
.icon-ciencia-de-dados-e-analytics_colorido .path3:before {
  content: "\e942";
  margin-left: -1.033203125em;
  color: rgb(0, 185, 180);
}
.icon-ciencia-de-dados-e-analytics_colorido .path4:before {
  content: "\e943";
  margin-left: -1.033203125em;
  color: rgb(0, 185, 180);
}
.icon-ciencia-de-dados-e-analytics_colorido .path5:before {
  content: "\e944";
  margin-left: -1.033203125em;
  color: rgb(0, 185, 180);
}
.icon-ciencia-de-dados-e-analytics_colorido .path6:before {
  content: "\e945";
  margin-left: -1.033203125em;
  color: rgb(6, 125, 133);
}
.icon-ciencia-de-dados-e-analytics_colorido .path7:before {
  content: "\e946";
  margin-left: -1.033203125em;
  color: rgb(6, 125, 133);
}
.icon-ciencia-de-dados-e-analytics_colorido .path8:before {
  content: "\e947";
  margin-left: -1.033203125em;
  color: rgb(67, 211, 231);
}
.icon-ciencia-de-dados-e-analytics_colorido .path9:before {
  content: "\e948";
  margin-left: -1.033203125em;
  color: rgb(0, 185, 180);
}
.icon-ciencia-de-dados-e-analytics_colorido .path10:before {
  content: "\e949";
  margin-left: -1.033203125em;
  color: rgb(67, 211, 231);
}
.icon-ciencia-de-dados-e-analytics_colorido .path11:before {
  content: "\e94a";
  margin-left: -1.033203125em;
  color: rgb(67, 211, 231);
}
.icon-ciencia-de-dados-e-analytics_colorido .path12:before {
  content: "\e94b";
  margin-left: -1.033203125em;
  color: rgb(6, 125, 133);
}
.icon-ciencia-de-dados-e-analytics_colorido .path13:before {
  content: "\e94c";
  margin-left: -1.033203125em;
  color: rgb(6, 125, 133);
}
.icon-ciencia-de-dados-e-analytics_colorido .path14:before {
  content: "\e94d";
  margin-left: -1.033203125em;
  color: rgb(6, 125, 133);
}
.icon-ciencia-de-dados-e-analytics_colorido .path15:before {
  content: "\e94e";
  margin-left: -1.033203125em;
  color: rgb(67, 211, 231);
}
.icon-workflow-com-dados_colorido .path1:before {
  content: "\e94f";
  color: rgb(195, 220, 60);
}
.icon-workflow-com-dados_colorido .path2:before {
  content: "\e950";
  margin-left: -0.9833984375em;
  color: rgb(140, 195, 40);
}
.icon-workflow-com-dados_colorido .path3:before {
  content: "\e951";
  margin-left: -0.9833984375em;
  color: rgb(30, 155, 80);
}
.icon-workflow-com-dados_colorido .path4:before {
  content: "\e952";
  margin-left: -0.9833984375em;
  color: rgb(140, 195, 40);
}
.icon-dados-externos_colorido .path1:before {
  content: "\e953";
  color: rgb(255, 120, 175);
}
.icon-dados-externos_colorido .path2:before {
  content: "\e954";
  margin-left: -0.7880859375em;
  color: rgb(210, 50, 210);
}
.icon-dados-externos_colorido .path3:before {
  content: "\e955";
  margin-left: -0.7880859375em;
  color: rgb(210, 50, 210);
}
.icon-dados-externos_colorido .path4:before {
  content: "\e956";
  margin-left: -0.7880859375em;
  color: rgb(210, 50, 210);
}
.icon-dados-externos_colorido .path5:before {
  content: "\e957";
  margin-left: -0.7880859375em;
  color: rgb(255, 120, 175);
}
.icon-dados-externos_colorido .path6:before {
  content: "\e958";
  margin-left: -0.7880859375em;
  color: rgb(255, 120, 175);
}
.icon-dados-externos_colorido .path7:before {
  content: "\e959";
  margin-left: -0.7880859375em;
  color: rgb(255, 120, 175);
}
.icon-dados-externos_colorido .path8:before {
  content: "\e95a";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path9:before {
  content: "\e95b";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path10:before {
  content: "\e95c";
  margin-left: -0.7880859375em;
  color: rgb(210, 50, 210);
}
.icon-dados-externos_colorido .path11:before {
  content: "\e95d";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path12:before {
  content: "\e95e";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path13:before {
  content: "\e95f";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path14:before {
  content: "\e960";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path15:before {
  content: "\e961";
  margin-left: -0.7880859375em;
  color: rgb(255, 120, 175);
}
.icon-dados-externos_colorido .path16:before {
  content: "\e962";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path17:before {
  content: "\e963";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path18:before {
  content: "\e964";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path19:before {
  content: "\e965";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-c2 .path1:before {
  content: "\e917";
  color: rgb(1, 1, 1);
}
.icon-c2 .path2:before {
  content: "\e918";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path3:before {
  content: "\e919";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path4:before {
  content: "\e91a";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path5:before {
  content: "\e91b";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path6:before {
  content: "\e91c";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path7:before {
  content: "\e91d";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path8:before {
  content: "\e91e";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path9:before {
  content: "\e91f";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path10:before {
  content: "\e920";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path11:before {
  content: "\e921";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path12:before {
  content: "\e922";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path13:before {
  content: "\e923";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path14:before {
  content: "\e924";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path15:before {
  content: "\e925";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path16:before {
  content: "\e926";
  margin-left: -4.6923828125em;
  color: rgb(82, 99, 112);
}
.icon-c2 .path17:before {
  content: "\e927";
  margin-left: -4.6923828125em;
  color: rgb(82, 99, 112);
}
.icon-c2 .path18:before {
  content: "\e928";
  margin-left: -4.6923828125em;
  color: rgb(82, 99, 112);
}
.icon-c2 .path19:before {
  content: "\e929";
  margin-left: -4.6923828125em;
  color: rgb(82, 99, 112);
}
.icon-c2 .path20:before {
  content: "\e92a";
  margin-left: -4.6923828125em;
  color: rgb(82, 99, 112);
}
.icon-softbank .path1:before {
  content: "\e92b";
  color: rgb(0, 0, 0);
}
.icon-softbank .path2:before {
  content: "\e92c";
  margin-left: -4.25em;
  color: rgb(0, 0, 0);
}
.icon-softbank .path3:before {
  content: "\e92d";
  margin-left: -4.25em;
  color: rgb(183, 187, 190);
}
.icon-softbank .path4:before {
  content: "\e92e";
  margin-left: -4.25em;
  color: rgb(0, 0, 0);
}
.icon-padlock:before {
  content: "\e916";
  color: #ffa028;
}
.icon-check:before {
  content: "\e915";
  color: #c3dc3c;
}
.icon-logo-cortex .path1:before {
  content: "\e900";
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path2:before {
  content: "\e90b";
  margin-left: -5.7998046875em;
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path3:before {
  content: "\e90c";
  margin-left: -5.7998046875em;
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path4:before {
  content: "\e90d";
  margin-left: -5.7998046875em;
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path5:before {
  content: "\e90e";
  margin-left: -5.7998046875em;
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path6:before {
  content: "\e90f";
  margin-left: -5.7998046875em;
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path7:before {
  content: "\e910";
  margin-left: -5.7998046875em;
  color: rgb(40, 95, 195);
}
.icon-logo-cortex .path8:before {
  content: "\e911";
  margin-left: -5.7998046875em;
  color: rgb(100, 45, 150);
}
.icon-logo-cortex .path9:before {
  content: "\e912";
  margin-left: -5.7998046875em;
  color: rgb(30, 155, 80);
}
.icon-logo-cortex .path10:before {
  content: "\e913";
  margin-left: -5.7998046875em;
  color: rgb(210, 30, 70);
}
.icon-linkedin .path1:before {
  content: "\e902";
  color: rgb(122, 117, 137);
}
.icon-linkedin .path2:before {
  content: "\e903";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.icon-linkedin .path3:before {
  content: "\e904";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.icon-youtube .path1:before {
  content: "\e909";
  color: rgb(122, 117, 137);
}
.icon-youtube .path2:before {
  content: "\e90a";
  margin-left: -0.9658203125em;
  color: rgb(255, 255, 255);
}
.icon-facebook .path1:before {
  content: "\e905";
  color: rgb(122, 117, 137);
}
.icon-facebook .path2:before {
  content: "\e906";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.icon-instagram .path1:before {
  content: "\e907";
  color: rgb(255, 255, 255);
}
.icon-instagram .path2:before {
  content: "\e908";
  margin-left: -1em;
  color: rgb(122, 117, 137);
}
.icon-headset-support:before {
  content: "\e901";
  color: #7a7589;
}
.icon-input-seta:before {
  content: "\e966";
}
.button {
  display: block;
  width: max-content;
  font: 400 1em var(--font-family);
  padding: 12px 24px;
  text-decoration: none;
  line-height: 1;
  border-radius: 40px;
  transition: all 0.3s ease-in-out;
}

.button--primary {
  color: var(--darkest);
  background-color: transparent;
  border: 1px solid var(--darkest);
}
.button--primary .icon-input-seta {
  display: none;
}
.button--primary:hover {
  color: var(--white);
  background-color: var(--darkest);
  border: 1px solid var(--darkest);
}
.button--primary-invert {
  color: var(--white);
  background-color: var(--darkest);
  border: 1px solid var(--darkest);
}
.button--primary-invert:hover {
  color: var(--darkest);
  background-color: transparent;
  border: 1px solid var(--darkest);
}
.button--secondary {
  font-weight: 600;
  color: var(--white);
  background-color: transparent;
  border: 1px solid var(--white);
}
.button--secondary:hover {
  color: var(--darkest);
  background-color: var(--white);
  border: 1px solid var(--white);
}
.icon-arrow-round-prev,
.icon-arrow-round-next {
  cursor: pointer;
}

.button--link {
  text-decoration: underline;
  color: var(--blue_spotlight);
}
.button--link:hover {
  text-decoration: underline;
  color: var(--blue_spotlight);
}
.button--lp-cta {
  font: 600 1em var(--font-family);
  line-height: 120%;
  color: var(--white);
  background-color: var(--Auxiliary-orange);
  margin-top: 1.5rem;
}
/* Container */
#cortex-form {
  max-width: 320px;
  margin: 0 auto;
}
#cortex-form .form-title {
  font: 600 1.5em var(--font-family);
  color: var(--lightest);
  line-height: 120%;
  margin-bottom: 2rem;
}
#cortex-form .hs_cos_wrapper_type_form {
  display: block;
  padding: 4em 1.25em;
  border-radius: 25px;
}

/* Inputs */
#cortex-form .hs_cos_wrapper_type_form input:focus-visible,
#cortex-form .hs_cos_wrapper_type_form select:focus-visible {
  outline: none;
}
#cortex-form .hs_cos_wrapper_type_form .form-columns-1 .input,
#cortex-form .hs_cos_wrapper_type_form .form-columns-2 .input {
  margin: 0;
}
#cortex-form .hs_cos_wrapper_type_form .form-columns-1 .hs-input,
#cortex-form .hs_cos_wrapper_type_form .form-columns-2 .hs-input,
#cortex-form .hs_cos_wrapper_type_form form .hs-form-field .input > .hs-input {
  width: 100%;
}
#cortex-form .hs_cos_wrapper_type_form input[type="text"],
#cortex-form .hs_cos_wrapper_type_form input[type="email"],
#cortex-form .hs_cos_wrapper_type_form input[type="tel"],
#cortex-form .hs_cos_wrapper_type_form select {
  height: 35px;
  font: 400 12px var(--font-family);
  padding-left: 6px;
  border: 1px solid var(--darkest);
}
#cortex-form
  .hs_cos_wrapper_type_form
  .form-columns-1
  .hs-input[type="checkbox"] {
  width: auto;
}
#cortex-form .hs_cos_wrapper_type_form .hs-form-field {
  margin-bottom: 1rem;
}

/* Labels */
#cortex-form .hs_cos_wrapper_type_form label {
  display: inline-block;
  width: 95%;
  font: 400 12px var(--font-family);
  color: var(--lightest);
  line-height: 126%;
  margin-bottom: 0.5rem;
}
#cortex-form .hs_cos_wrapper_type_form label.hs-error-msg {
  font-size: 0.7em;
}
#cortex-form .hs_cos_wrapper_type_form label.hs-error-msg,
#cortex-form
  .hs_cos_wrapper_type_form
  .hs_error_rollup
  label.hs-main-font-element {
  color: var(--red-spotlight);
}
#cortex-form .hs_cos_wrapper_type_form label.hs-form-checkbox-display {
  display: flex;
  align-items: center;
}
#cortex-form
  .hs_cos_wrapper_type_form
  label.hs-form-checkbox-display
  .hs-input[type="checkbox"] {
  margin-right: 8px;
}

#cortex-form .hs_cos_wrapper_type_form .legal-consent-container p,
#cortex-form .hs_cos_wrapper_type_form .legal-consent-container .hs-richtext {
  font: 400 12px var(--font-family);
  color: var(--lightest);
  line-height: 148%;
  margin: 1rem 0;
}
#cortex-form
  .hs_cos_wrapper_type_form
  .legal-consent-container
  .hs-input[type="checkbox"] {
  margin-top: 3px;
}

/* button */
#cortex-form .hs_cos_wrapper_type_form input[type="submit"] {
  display: block;
  width: max-content;
  font: bold 0.75em var(--font-family);
  color: var(--lightest);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  padding: 0.875em 1.5em;
  margin: 2rem auto 0 auto;
  transition: all 0.3s ease-in-out;
  outline: none;
  border: none;
  border-radius: 40px;
  background-color: var(--Auxiliary-orange);
  cursor: pointer;
}

/* estilo mensagem de sucesso */
#cortex-form .submitted-message {
  font: 500 1.25em var(--font-family);
  color: var(--Auxiliary-green);
  margin-top: 1em;
}

@media (min-width: 768px) {
  #cortex-form {
    max-width: 400px;
    margin: 0 auto;
  }
  #cortex-form .hs_cos_wrapper_type_form .form-columns-2 .hs-form-field {
    width: 49%;
  }
  #cortex-form
    .hs_cos_wrapper_type_form
    .form-columns-2
    .hs-form-field:first-of-type {
    margin-right: 7px;
  }
}

@media (min-width: 1024px) {
  #cortex-form {
    max-width: 450px;
    margin: 0;
  }
  #cortex-form .hs_cos_wrapper_type_form input[type="submit"] {
    font-size: 1em;
  }
}

@media (min-width: 1200px) {
  /* Container */
  #cortex-form {
    max-width: 500px;
    margin: 0;
  }
  #cortex-form .form-title {
    font-size: 2em;
  }
  #cortex-form .hs_cos_wrapper_type_form {
    padding: 5em 2.5em;
  }

  /* inputs */
  #cortex-form .hs_cos_wrapper_type_form input[type="text"],
  #cortex-form .hs_cos_wrapper_type_form input[type="email"],
  #cortex-form .hs_cos_wrapper_type_form input[type="tel"],
  #cortex-form .hs_cos_wrapper_type_form select {
    height: 45px;
    font-size: 1em;
    padding: 0.5em;
  }

  /* label */
  #cortex-form .hs_cos_wrapper_type_form label,
  #cortex-form .hs_cos_wrapper_type_form .legal-consent-container p,
  #cortex-form .hs_cos_wrapper_type_form .legal-consent-container .hs-richtext {
    font-size: 1em;
  }
  #cortex-form
    .hs_cos_wrapper_type_form
    .legal-consent-container
    .hs-input[type="checkbox"] {
    margin-top: 6px;
  }
}

/* Formulário fundo Escuro */
#cortex-form.cortex-form--black .hs_cos_wrapper_type_form {
  background-color: var(--darkest);
}

/* Formulário fundo claro */
#cortex-form.cortex-form--white .hs_cos_wrapper_type_form {
  background-color: var(--white);
}
#cortex-form.cortex-form--white .form-title {
  color: var(--darkest);
}
#cortex-form.cortex-form--white .hs_cos_wrapper_type_form label {
  color: var(--darkest);
}
#cortex-form.cortex-form--white
  .hs_cos_wrapper_type_form
  .legal-consent-container
  p,
#cortex-form.cortex-form--white
  .hs_cos_wrapper_type_form
  .legal-consent-container
  .hs-richtext {
  color: var(--darkest);
}
#cortex-form.cortex-form--white .hs_cos_wrapper_type_form label.hs-error-msg,
#cortex-form.cortex-form--white
  .hs_cos_wrapper_type_form
  .hs_error_rollup
  label.hs-main-font-element {
  color: var(--red-spotlight);
}
@font-face {
  font-family: 'cortex';
  src:  url('https://8917234.fs1.hubspotusercontent-na1.net/hubfs/8917234/website-cortex/icons/fonts/cortex.eot');
  src:  url('https://8917234.fs1.hubspotusercontent-na1.net/hubfs/8917234/website-cortex/icons/fonts/cortex.eot') format('embedded-opentype'),
    url('https://8917234.fs1.hubspotusercontent-na1.net/hubfs/8917234/website-cortex/icons/fonts/cortex.ttf') format('truetype'),
    url('https://8917234.fs1.hubspotusercontent-na1.net/hubfs/8917234/website-cortex/icons/fonts/cortex.woff') format('woff'),
    url('https://8917234.fs1.hubspotusercontent-na1.net/hubfs/8917234/website-cortex/icons/fonts/cortex.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'cortex' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.icon-bandeira-brasil .path1:before {
  content: "\e982";
  color: rgb(30, 155, 80);
}
.icon-bandeira-brasil .path2:before {
  content: "\e983";
  margin-left: -0.9521484375em;
  color: rgb(244, 192, 30);
}
.icon-bandeira-brasil .path3:before {
  content: "\e984";
  margin-left: -0.9521484375em;
  color: rgb(40, 95, 195);
}
.icon-bandeira-estados-unidos .path1:before {
  content: "\e985";
  color: rgb(210, 30, 70);
}
.icon-bandeira-estados-unidos .path2:before {
  content: "\e986";
  margin-left: -0.9521484375em;
  color: rgb(210, 30, 70);
}
.icon-bandeira-estados-unidos .path3:before {
  content: "\e987";
  margin-left: -0.9521484375em;
  color: rgb(210, 30, 70);
}
.icon-bandeira-estados-unidos .path4:before {
  content: "\e988";
  margin-left: -0.9521484375em;
  color: rgb(210, 30, 70);
}
.icon-bandeira-estados-unidos .path5:before {
  content: "\e989";
  margin-left: -0.9521484375em;
  color: rgb(210, 30, 70);
}
.icon-bandeira-estados-unidos .path6:before {
  content: "\e98a";
  margin-left: -0.9521484375em;
  color: rgb(40, 95, 195);
}
.icon-language-switcher:before {
  content: "\e981";
  color: #7a7589;
}
.icon-logo-clientes-pr-philip-morris-1:before {
  content: "\e968";
  color: #642d96;
}
.icon-logo-clientes-SI-jvalerio:before {
  content: "\e96a";
  color: #285fc3;
}
.icon-logo-clientes-SI-zendesk:before {
  content: "\e96b";
  color: #285fc3;
}
.icon-arrow-prev:before {
  content: "\e914";
}
.icon-arrow-next:before {
  content: "\e967";
}
.icon-clientes_salesforce-1:before {
  content: "\e969";
}
.icon-clientes_carrefour:before {
  content: "\e96c";
}
.icon-clientes_central-de-materiais:before {
  content: "\e96d";
}
.icon-clientes_cpfl-energia:before {
  content: "\e96e";
}
.icon-clientes_globo:before {
  content: "\e96f";
}
.icon-clientes_gol:before {
  content: "\e970";
}
.icon-clientes_google:before {
  content: "\e971";
}
.icon-clientes_ifood:before {
  content: "\e972";
}
.icon-clientes_kepler-weber:before {
  content: "\e973";
}
.icon-clientes_loreal:before {
  content: "\e974";
}
.icon-clientes_microsoft:before {
  content: "\e975";
}
.icon-clientes_oracle:before {
  content: "\e976";
}
.icon-clientes_roche:before {
  content: "\e977";
}
.icon-clientes_suzano:before {
  content: "\e978";
}
.icon-clientes_unilever:before {
  content: "\e979";
}
.icon-clientes_visa:before {
  content: "\e97a";
}
.icon-clientes_adobe:before {
  content: "\e97b";
}
.icon-clientes_amazon:before {
  content: "\e97c";
}
.icon-clientes_autodesk:before {
  content: "\e97d";
}
.icon-clientes_bayer:before {
  content: "\e97e";
}
.icon-clientes_bradesco:before {
  content: "\e97f";
}
.icon-clientes_btg-pactual:before {
  content: "\e980";
}
.icon-dados-da-empresa_colorido .path1:before {
  content: "\e92f";
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path2:before {
  content: "\e930";
  margin-left: -0.998046875em;
  color: rgb(40, 95, 195);
}
.icon-dados-da-empresa_colorido .path3:before {
  content: "\e931";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path4:before {
  content: "\e932";
  margin-left: -0.998046875em;
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path5:before {
  content: "\e933";
  margin-left: -0.998046875em;
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path6:before {
  content: "\e934";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path7:before {
  content: "\e935";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path8:before {
  content: "\e936";
  margin-left: -0.998046875em;
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path9:before {
  content: "\e937";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path10:before {
  content: "\e938";
  margin-left: -0.998046875em;
  color: rgb(40, 95, 195);
}
.icon-dados-da-empresa_colorido .path11:before {
  content: "\e939";
  margin-left: -0.998046875em;
  color: rgb(40, 95, 195);
}
.icon-dados-da-empresa_colorido .path12:before {
  content: "\e93a";
  margin-left: -0.998046875em;
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path13:before {
  content: "\e93b";
  margin-left: -0.998046875em;
  color: rgb(40, 200, 255);
}
.icon-dados-da-empresa_colorido .path14:before {
  content: "\e93c";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path15:before {
  content: "\e93d";
  margin-left: -0.998046875em;
  color: rgb(30, 140, 255);
}
.icon-dados-da-empresa_colorido .path16:before {
  content: "\e93e";
  margin-left: -0.998046875em;
  color: rgb(40, 95, 195);
}
.icon-dados-da-empresa_colorido .path17:before {
  content: "\e93f";
  margin-left: -0.998046875em;
  color: rgb(40, 95, 195);
}
.icon-ciencia-de-dados-e-analytics_colorido .path1:before {
  content: "\e940";
  color: rgb(0, 185, 180);
}
.icon-ciencia-de-dados-e-analytics_colorido .path2:before {
  content: "\e941";
  margin-left: -1.033203125em;
  color: rgb(67, 211, 231);
}
.icon-ciencia-de-dados-e-analytics_colorido .path3:before {
  content: "\e942";
  margin-left: -1.033203125em;
  color: rgb(0, 185, 180);
}
.icon-ciencia-de-dados-e-analytics_colorido .path4:before {
  content: "\e943";
  margin-left: -1.033203125em;
  color: rgb(0, 185, 180);
}
.icon-ciencia-de-dados-e-analytics_colorido .path5:before {
  content: "\e944";
  margin-left: -1.033203125em;
  color: rgb(0, 185, 180);
}
.icon-ciencia-de-dados-e-analytics_colorido .path6:before {
  content: "\e945";
  margin-left: -1.033203125em;
  color: rgb(6, 125, 133);
}
.icon-ciencia-de-dados-e-analytics_colorido .path7:before {
  content: "\e946";
  margin-left: -1.033203125em;
  color: rgb(6, 125, 133);
}
.icon-ciencia-de-dados-e-analytics_colorido .path8:before {
  content: "\e947";
  margin-left: -1.033203125em;
  color: rgb(67, 211, 231);
}
.icon-ciencia-de-dados-e-analytics_colorido .path9:before {
  content: "\e948";
  margin-left: -1.033203125em;
  color: rgb(0, 185, 180);
}
.icon-ciencia-de-dados-e-analytics_colorido .path10:before {
  content: "\e949";
  margin-left: -1.033203125em;
  color: rgb(67, 211, 231);
}
.icon-ciencia-de-dados-e-analytics_colorido .path11:before {
  content: "\e94a";
  margin-left: -1.033203125em;
  color: rgb(67, 211, 231);
}
.icon-ciencia-de-dados-e-analytics_colorido .path12:before {
  content: "\e94b";
  margin-left: -1.033203125em;
  color: rgb(6, 125, 133);
}
.icon-ciencia-de-dados-e-analytics_colorido .path13:before {
  content: "\e94c";
  margin-left: -1.033203125em;
  color: rgb(6, 125, 133);
}
.icon-ciencia-de-dados-e-analytics_colorido .path14:before {
  content: "\e94d";
  margin-left: -1.033203125em;
  color: rgb(6, 125, 133);
}
.icon-ciencia-de-dados-e-analytics_colorido .path15:before {
  content: "\e94e";
  margin-left: -1.033203125em;
  color: rgb(67, 211, 231);
}
.icon-workflow-com-dados_colorido .path1:before {
  content: "\e94f";
  color: rgb(195, 220, 60);
}
.icon-workflow-com-dados_colorido .path2:before {
  content: "\e950";
  margin-left: -0.9833984375em;
  color: rgb(140, 195, 40);
}
.icon-workflow-com-dados_colorido .path3:before {
  content: "\e951";
  margin-left: -0.9833984375em;
  color: rgb(30, 155, 80);
}
.icon-workflow-com-dados_colorido .path4:before {
  content: "\e952";
  margin-left: -0.9833984375em;
  color: rgb(140, 195, 40);
}
.icon-dados-externos_colorido .path1:before {
  content: "\e953";
  color: rgb(255, 120, 175);
}
.icon-dados-externos_colorido .path2:before {
  content: "\e954";
  margin-left: -0.7880859375em;
  color: rgb(210, 50, 210);
}
.icon-dados-externos_colorido .path3:before {
  content: "\e955";
  margin-left: -0.7880859375em;
  color: rgb(210, 50, 210);
}
.icon-dados-externos_colorido .path4:before {
  content: "\e956";
  margin-left: -0.7880859375em;
  color: rgb(210, 50, 210);
}
.icon-dados-externos_colorido .path5:before {
  content: "\e957";
  margin-left: -0.7880859375em;
  color: rgb(255, 120, 175);
}
.icon-dados-externos_colorido .path6:before {
  content: "\e958";
  margin-left: -0.7880859375em;
  color: rgb(255, 120, 175);
}
.icon-dados-externos_colorido .path7:before {
  content: "\e959";
  margin-left: -0.7880859375em;
  color: rgb(255, 120, 175);
}
.icon-dados-externos_colorido .path8:before {
  content: "\e95a";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path9:before {
  content: "\e95b";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path10:before {
  content: "\e95c";
  margin-left: -0.7880859375em;
  color: rgb(210, 50, 210);
}
.icon-dados-externos_colorido .path11:before {
  content: "\e95d";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path12:before {
  content: "\e95e";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path13:before {
  content: "\e95f";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path14:before {
  content: "\e960";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path15:before {
  content: "\e961";
  margin-left: -0.7880859375em;
  color: rgb(255, 120, 175);
}
.icon-dados-externos_colorido .path16:before {
  content: "\e962";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path17:before {
  content: "\e963";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path18:before {
  content: "\e964";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-dados-externos_colorido .path19:before {
  content: "\e965";
  margin-left: -0.7880859375em;
  color: rgb(100, 45, 150);
}
.icon-c2 .path1:before {
  content: "\e917";
  color: rgb(1, 1, 1);
}
.icon-c2 .path2:before {
  content: "\e918";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path3:before {
  content: "\e919";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path4:before {
  content: "\e91a";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path5:before {
  content: "\e91b";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path6:before {
  content: "\e91c";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path7:before {
  content: "\e91d";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path8:before {
  content: "\e91e";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path9:before {
  content: "\e91f";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path10:before {
  content: "\e920";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path11:before {
  content: "\e921";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path12:before {
  content: "\e922";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path13:before {
  content: "\e923";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path14:before {
  content: "\e924";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path15:before {
  content: "\e925";
  margin-left: -4.6923828125em;
  color: rgb(1, 1, 1);
}
.icon-c2 .path16:before {
  content: "\e926";
  margin-left: -4.6923828125em;
  color: rgb(82, 99, 112);
}
.icon-c2 .path17:before {
  content: "\e927";
  margin-left: -4.6923828125em;
  color: rgb(82, 99, 112);
}
.icon-c2 .path18:before {
  content: "\e928";
  margin-left: -4.6923828125em;
  color: rgb(82, 99, 112);
}
.icon-c2 .path19:before {
  content: "\e929";
  margin-left: -4.6923828125em;
  color: rgb(82, 99, 112);
}
.icon-c2 .path20:before {
  content: "\e92a";
  margin-left: -4.6923828125em;
  color: rgb(82, 99, 112);
}
.icon-softbank .path1:before {
  content: "\e92b";
  color: rgb(0, 0, 0);
}
.icon-softbank .path2:before {
  content: "\e92c";
  margin-left: -4.25em;
  color: rgb(0, 0, 0);
}
.icon-softbank .path3:before {
  content: "\e92d";
  margin-left: -4.25em;
  color: rgb(183, 187, 190);
}
.icon-softbank .path4:before {
  content: "\e92e";
  margin-left: -4.25em;
  color: rgb(0, 0, 0);
}
.icon-padlock:before {
  content: "\e916";
  color: #ffa028;
}
.icon-check:before {
  content: "\e915";
  color: #c3dc3c;
}
.icon-logo-cortex .path1:before {
  content: "\e900";
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path2:before {
  content: "\e90b";
  margin-left: -5.7998046875em;
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path3:before {
  content: "\e90c";
  margin-left: -5.7998046875em;
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path4:before {
  content: "\e90d";
  margin-left: -5.7998046875em;
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path5:before {
  content: "\e90e";
  margin-left: -5.7998046875em;
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path6:before {
  content: "\e90f";
  margin-left: -5.7998046875em;
  color: rgb(55, 50, 75);
}
.icon-logo-cortex .path7:before {
  content: "\e910";
  margin-left: -5.7998046875em;
  color: rgb(40, 95, 195);
}
.icon-logo-cortex .path8:before {
  content: "\e911";
  margin-left: -5.7998046875em;
  color: rgb(100, 45, 150);
}
.icon-logo-cortex .path9:before {
  content: "\e912";
  margin-left: -5.7998046875em;
  color: rgb(30, 155, 80);
}
.icon-logo-cortex .path10:before {
  content: "\e913";
  margin-left: -5.7998046875em;
  color: rgb(210, 30, 70);
}
.icon-linkedin .path1:before {
  content: "\e902";
  color: rgb(122, 117, 137);
}
.icon-linkedin .path2:before {
  content: "\e903";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.icon-linkedin .path3:before {
  content: "\e904";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.icon-youtube .path1:before {
  content: "\e909";
  color: rgb(122, 117, 137);
}
.icon-youtube .path2:before {
  content: "\e90a";
  margin-left: -0.9658203125em;
  color: rgb(255, 255, 255);
}
.icon-facebook .path1:before {
  content: "\e905";
  color: rgb(122, 117, 137);
}
.icon-facebook .path2:before {
  content: "\e906";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.icon-instagram .path1:before {
  content: "\e907";
  color: rgb(255, 255, 255);
}
.icon-instagram .path2:before {
  content: "\e908";
  margin-left: -1em;
  color: rgb(122, 117, 137);
}
.icon-headset-support:before {
  content: "\e901";
  color: #7a7589;
}
.icon-input-seta:before {
  content: "\e966";
}
.button {
  display: block;
  width: max-content;
  font: 400 1em var(--font-family);
  padding: 12px 24px;
  text-decoration: none;
  line-height: 1;
  border-radius: 40px;
  transition: all 0.3s ease-in-out;
}

.button--primary {
  color: var(--darkest);
  background-color: transparent;
  border: 1px solid var(--darkest);
}
.button--primary .icon-input-seta {
  display: none;
}
.button--primary:hover {
  color: var(--white);
  background-color: var(--darkest);
  border: 1px solid var(--darkest);
}
.button--primary-invert {
  color: var(--white);
  background-color: var(--darkest);
  border: 1px solid var(--darkest);
}
.button--primary-invert:hover {
  color: var(--darkest);
  background-color: transparent;
  border: 1px solid var(--darkest);
}
.button--secondary {
  font-weight: 600;
  color: var(--white);
  background-color: transparent;
  border: 1px solid var(--white);
}
.button--secondary:hover {
  color: var(--darkest);
  background-color: var(--white);
  border: 1px solid var(--white);
}
.icon-arrow-round-prev,
.icon-arrow-round-next {
  cursor: pointer;
}

.button--link {
  text-decoration: underline;
  color: var(--blue_spotlight);
}
.button--link:hover {
  text-decoration: underline;
  color: var(--blue_spotlight);
}
.button--lp-cta {
  font: 600 1em var(--font-family);
  line-height: 120%;
  color: var(--white);
  background-color: var(--Auxiliary-orange);
  margin-top: 1.5rem;
}
/* Container */
#cortex-form {
  max-width: 320px;
  margin: 0 auto;
}
#cortex-form .form-title {
  font: 600 1.5em var(--font-family);
  color: var(--lightest);
  line-height: 120%;
  margin-bottom: 2rem;
}
#cortex-form .hs_cos_wrapper_type_form {
  display: block;
  padding: 4em 1.25em;
  border-radius: 25px;
}

/* Inputs */
#cortex-form .hs_cos_wrapper_type_form input:focus-visible,
#cortex-form .hs_cos_wrapper_type_form select:focus-visible {
  outline: none;
}
#cortex-form .hs_cos_wrapper_type_form .form-columns-1 .input,
#cortex-form .hs_cos_wrapper_type_form .form-columns-2 .input {
  margin: 0;
}
#cortex-form .hs_cos_wrapper_type_form .form-columns-1 .hs-input,
#cortex-form .hs_cos_wrapper_type_form .form-columns-2 .hs-input,
#cortex-form .hs_cos_wrapper_type_form form .hs-form-field .input > .hs-input {
  width: 100%;
}
#cortex-form .hs_cos_wrapper_type_form input[type="text"],
#cortex-form .hs_cos_wrapper_type_form input[type="email"],
#cortex-form .hs_cos_wrapper_type_form input[type="tel"],
#cortex-form .hs_cos_wrapper_type_form select {
  height: 35px;
  font: 400 12px var(--font-family);
  padding-left: 6px;
  border: 1px solid var(--darkest);
}
#cortex-form
  .hs_cos_wrapper_type_form
  .form-columns-1
  .hs-input[type="checkbox"] {
  width: auto;
}
#cortex-form .hs_cos_wrapper_type_form .hs-form-field {
  margin-bottom: 1rem;
}

/* Labels */
#cortex-form .hs_cos_wrapper_type_form label {
  display: inline-block;
  width: 95%;
  font: 400 12px var(--font-family);
  color: var(--lightest);
  line-height: 126%;
  margin-bottom: 0.5rem;
}
#cortex-form .hs_cos_wrapper_type_form label.hs-error-msg {
  font-size: 0.7em;
}
#cortex-form .hs_cos_wrapper_type_form label.hs-error-msg,
#cortex-form
  .hs_cos_wrapper_type_form
  .hs_error_rollup
  label.hs-main-font-element {
  color: var(--red-spotlight);
}
#cortex-form .hs_cos_wrapper_type_form label.hs-form-checkbox-display {
  display: flex;
  align-items: center;
}
#cortex-form
  .hs_cos_wrapper_type_form
  label.hs-form-checkbox-display
  .hs-input[type="checkbox"] {
  margin-right: 8px;
}

#cortex-form .hs_cos_wrapper_type_form .legal-consent-container p,
#cortex-form .hs_cos_wrapper_type_form .legal-consent-container .hs-richtext {
  font: 400 12px var(--font-family);
  color: var(--lightest);
  line-height: 148%;
  margin: 1rem 0;
}
#cortex-form
  .hs_cos_wrapper_type_form
  .legal-consent-container
  .hs-input[type="checkbox"] {
  margin-top: 3px;
}

/* button */
#cortex-form .hs_cos_wrapper_type_form input[type="submit"] {
  display: block;
  width: max-content;
  font: bold 0.75em var(--font-family);
  color: var(--lightest);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  padding: 0.875em 1.5em;
  margin: 2rem auto 0 auto;
  transition: all 0.3s ease-in-out;
  outline: none;
  border: none;
  border-radius: 40px;
  background-color: var(--Auxiliary-orange);
  cursor: pointer;
}

/* estilo mensagem de sucesso */
#cortex-form .submitted-message {
  font: 500 1.25em var(--font-family);
  color: var(--Auxiliary-green);
  margin-top: 1em;
}

@media (min-width: 768px) {
  #cortex-form {
    max-width: 400px;
    margin: 0 auto;
  }
  #cortex-form .hs_cos_wrapper_type_form .form-columns-2 .hs-form-field {
    width: 49%;
  }
  #cortex-form
    .hs_cos_wrapper_type_form
    .form-columns-2
    .hs-form-field:first-of-type {
    margin-right: 7px;
  }
}

@media (min-width: 1024px) {
  #cortex-form {
    max-width: 450px;
    margin: 0;
  }
  #cortex-form .hs_cos_wrapper_type_form input[type="submit"] {
    font-size: 1em;
  }
}

@media (min-width: 1200px) {
  /* Container */
  #cortex-form {
    max-width: 500px;
    margin: 0;
  }
  #cortex-form .form-title {
    font-size: 2em;
  }
  #cortex-form .hs_cos_wrapper_type_form {
    padding: 5em 2.5em;
  }

  /* inputs */
  #cortex-form .hs_cos_wrapper_type_form input[type="text"],
  #cortex-form .hs_cos_wrapper_type_form input[type="email"],
  #cortex-form .hs_cos_wrapper_type_form input[type="tel"],
  #cortex-form .hs_cos_wrapper_type_form select {
    height: 45px;
    font-size: 1em;
    padding: 0.5em;
  }

  /* label */
  #cortex-form .hs_cos_wrapper_type_form label,
  #cortex-form .hs_cos_wrapper_type_form .legal-consent-container p,
  #cortex-form .hs_cos_wrapper_type_form .legal-consent-container .hs-richtext {
    font-size: 1em;
  }
  #cortex-form
    .hs_cos_wrapper_type_form
    .legal-consent-container
    .hs-input[type="checkbox"] {
    margin-top: 6px;
  }
}

/* Formulário fundo Escuro */
#cortex-form.cortex-form--black .hs_cos_wrapper_type_form {
  background-color: var(--darkest);
}

/* Formulário fundo claro */
#cortex-form.cortex-form--white .hs_cos_wrapper_type_form {
  background-color: var(--white);
}
#cortex-form.cortex-form--white .form-title {
  color: var(--darkest);
}
#cortex-form.cortex-form--white .hs_cos_wrapper_type_form label {
  color: var(--darkest);
}
#cortex-form.cortex-form--white
  .hs_cos_wrapper_type_form
  .legal-consent-container
  p,
#cortex-form.cortex-form--white
  .hs_cos_wrapper_type_form
  .legal-consent-container
  .hs-richtext {
  color: var(--darkest);
}
#cortex-form.cortex-form--white .hs_cos_wrapper_type_form label.hs-error-msg,
#cortex-form.cortex-form--white
  .hs_cos_wrapper_type_form
  .hs_error_rollup
  label.hs-main-font-element {
  color: var(--red-spotlight);
}