:root {
  --white: white;
  --grey: #777;
  --black-2: #070801;
  --firebrick: #c80000;
  --dim-grey: #555;
  --yellow-green-2: #bed630;
  --grey-3: #939393;
  --black: #0000;
  --dark-slate-grey: #404040;
  --yellow-green: #c2d10f;
  --grey-2: #8e8e8e;
  --slate-grey: #7d7d96;
  --yellow: #daec08;
  --black-3: #231f20;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #000;
  min-height: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.utility-page_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

.form_input {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form_message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #000;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility_block {
  grid-column-gap: 0rem;
  grid-row-gap: 1.25rem;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  width: 50%;
  max-width: 100%;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.lottie-animation {
  width: 50%;
}

.heading {
  color: #232536b0;
}

.text-block {
  color: #b5b5b5;
}

.button-2 {
  color: #fff;
  background-color: #03a9f4;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s ease-in-out;
  display: flex;
}

.button-2:hover {
  background-color: #0474a7;
}

.button-2.btn-hover-shine:hover {
  background-color: #03a9f4;
}

.l-nav {
  z-index: 999;
  background-color: var(--white);
  opacity: 1;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-clip: border-box;
  border: 1px #000;
  flex-flow: row;
  place-content: space-around;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: sticky;
  inset: 0% 0% auto;
}

.l-nav:hover {
  color: #ef2e4d;
}

.c-container {
  background-color: var(--white);
  object-fit: fill;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: static;
}

.c-nav-logo.w--current {
  flex: 0 auto;
  height: auto;
}

.c-nav-link {
  color: #777;
  cursor: pointer;
  margin-top: 0;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .2s;
}

.c-nav-link:hover {
  color: var(--grey);
  font-weight: 400;
  text-decoration: none;
}

.c-nav-link:active, .c-nav-link:focus {
  color: var(--grey);
}

.c-nav-link:focus-visible {
  color: var(--grey);
}

.c-nav-link[data-wf-focus-visible], .c-nav-link:visited {
  color: var(--grey);
}

.c-nav-link.w--current {
  color: var(--grey);
  font-size: 15px;
  text-decoration: none;
}

.c-nav-link.w--current:hover {
  font-weight: 400;
}

.c-nav-link.ocultar-menu {
  display: none;
}

.nav-menu {
  text-align: center;
  flex-flow: row;
  flex: none;
  order: 1;
  justify-content: flex-end;
  align-self: center;
  align-items: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image {
  width: auto;
  max-width: 100%;
  height: 46px;
  margin-left: auto;
  margin-right: auto;
}

.c-nav-compra {
  flex-direction: row;
  flex: 0 auto;
  order: 1;
  justify-content: flex-end;
  align-items: baseline;
  width: auto;
  min-width: 0;
  display: flex;
}

.menu-button {
  width: 20%;
}

.terceira-dobra {
  background-color: var(--white);
  width: 100%;
  height: auto;
  margin: 0;
  padding: 50px 40px;
}

.segunda-dobra {
  background-color: var(--firebrick);
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  display: flex;
}

.passos {
  height: auto;
  padding: 0 10px;
  position: relative;
}

.grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-content: center;
  height: 100%;
}

.coluna {
  text-align: center;
  cursor: pointer;
  background-color: #070b3b;
  border-radius: 25px;
  flex-direction: column;
  justify-content: space-around;
  height: 340px;
  padding: 20px;
  display: flex;
  position: relative;
}

.heading-6 {
  color: #c0ff72;
  text-align: right;
  font-size: 6rem;
}

.heading-7 {
  color: #c0ff72;
  text-align: right;
  padding-top: 10px;
  font-size: 2rem;
  overflow: hidden;
}

.heading-8 {
  color: #c0ff72;
  text-align: left;
  margin-top: 0;
  font-size: 1.4rem;
  overflow: hidden;
}

.coluna-box {
  z-index: 0;
  object-fit: fill;
  background-color: #c0ff72;
  border: 2px solid #c0ff72;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  height: 0%;
  margin: auto;
  padding: 10px;
  display: none;
  position: absolute;
  inset: auto 0% auto auto;
  overflow: hidden;
}

.paragraph {
  height: auto;
  margin: auto;
  font-size: .75rem;
  display: block;
  overflow: hidden;
}

.paragraph-2 {
  margin: auto;
  font-size: .75rem;
  display: flex;
  overflow: hidden;
}

.paragraph-3, .paragraph-4 {
  font-size: .75rem;
  overflow: hidden;
}

.navigation {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  mix-blend-mode: normal;
  background-color: #f5f5f500;
  flex-direction: column;
  flex: 1;
  align-items: center;
  max-width: none;
  padding: 20px 3%;
  display: block;
  position: relative;
  inset: 0% 0% auto;
}

.dropdown-2 {
  color: #242424;
  margin-left: 5px;
  margin-right: 5px;
}

.footer {
  background-color: var(--dim-grey);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 0;
  display: flex;
}

.footer:hover {
  color: var(--yellow-green-2);
}

.f-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
}

.grid-2 {
  grid-template-rows: 1fr;
  grid-template-columns: 25% 25% 25% 25%;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
}

.div-block-4 {
  flex-direction: row;
  justify-content: flex-end;
  align-self: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 0;
  display: flex;
}

.f-r-link {
  color: var(--grey-3);
  align-self: center;
  font-family: Open Sans, sans-serif;
  font-style: normal;
  text-decoration: none;
}

.f-r-link:hover {
  color: var(--grey-3);
  font-weight: 600;
}

.f-r-link.w--current {
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  text-decoration: none;
}

.f-r-link.w--current:hover {
  font-weight: 600;
}

.f-r-link.w--current:focus {
  color: #070b3b;
}

.f-r-link.w--current:visited {
  color: #070b3b;
  -webkit-text-stroke-color: #070b3b;
}

.div-block-5 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.image-3 {
  max-height: 50px;
}

.primeira-dobra {
  background-image: url('../images/headerfranquias-1920w.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 700px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  position: relative;
}

.html-embed-3 {
  display: none;
}

.box-r-sociais {
  flex-direction: column;
  align-items: center;
  display: block;
}

.box-r-sociais.menu {
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-left: 20px;
  display: block;
}

.box-r-sociais.menu.social-box-menu {
  display: none;
}

.heading-12 {
  color: var(--white);
  margin-bottom: .5rem;
  font-size: 1rem;
}

.div-block-16 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 160px;
  display: flex;
}

.div-block-21.p-click-21 {
  margin-bottom: 20px;
}

.heading-13 {
  color: #c9c9c9;
  text-align: center;
  font-size: 1.05rem;
}

.heading-13.p-mouse {
  display: block;
}

.heading-15.p-clickaqui {
  display: none;
}

.div-block-22 {
  display: block;
}

.button-3, .div-block-23, .car-mobile {
  display: none;
}

.facebook-icon, .instagram-icon {
  background-color: #333;
  border-radius: 50%;
  max-height: 42px;
  padding: 10px 10px 5px;
}

.youtube-icon {
  color: var(--white);
  background-color: #333;
  border-radius: 50%;
  max-height: 42px;
  padding: 10px 10px 5px;
  display: block;
}

.l-facebook, .l-instagram {
  background-color: #333;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  text-decoration: none;
  display: flex;
}

.l-email {
  background-color: #333;
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 38px;
  height: 38px;
  padding-top: 0;
  padding-left: 0;
  text-decoration: none;
  display: flex;
}

.social-links-footer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  width: 160px;
  display: flex;
}

.db-politica {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  min-height: 60vh;
  display: flex;
}

.db-politica-custom {
  width: 100%;
  max-width: 100%;
  padding: 20px 20px 100px;
}

.body-politica {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.body-home {
  color: #ffa13a;
  background-color: #f7f8fc;
  flex-flow: column wrap;
  place-content: center space-between;
  align-items: center;
  min-height: auto;
  font-family: Gotu;
  transition: color .3s;
  display: flex;
}

.div-block-25 {
  width: 100%;
  height: 100%;
}

.d-imagem {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: flex;
}

.div-top-bg {
  color: var(--black-2);
  object-fit: contain;
  background-color: #202020;
  width: 100%;
  height: 120px;
  margin-top: -120px;
  margin-left: 0;
  padding-left: 0;
  display: block;
  position: static;
  inset: 0% 0% auto;
}

.slider-section {
  width: 100%;
  margin-top: 100px;
  margin-bottom: 0;
  display: none;
}

.first-slide-content {
  background-color: #ffdfcd;
  width: 50%;
  height: 100%;
  position: relative;
}

.mask {
  border: 0 dashed #000;
  width: 33%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0;
  display: block;
  overflow: visible;
}

.column-slide {
  border: 1px solid #0003;
  width: 100%;
}

.column-slide.first {
  z-index: 10;
  padding-right: 0;
}

.column-slide.last {
  z-index: 500;
}

.slide-content {
  background-color: #ffdfcd;
  height: 96%;
  padding: 25px 10px;
  position: relative;
  overflow: hidden;
}

.column-step-slider {
  background-color: #0000;
  border: 0 dashed #d32ce6;
  flex-direction: row;
  width: 100%;
  min-height: 700px;
  margin-left: 15px;
  margin-right: 15px;
  padding: 36px 100px 25px;
  display: flex;
  overflow: hidden;
}

.last-slide-content {
  width: 50%;
  height: 100%;
}

.slide-title {
  z-index: 20;
  color: #474747;
  text-align: center;
  display: block;
  position: absolute;
  inset: 0% 0% auto;
}

.slide-title.ghost-last {
  z-index: 20;
  inset: 0% -91% auto auto;
}

.slide-title.ghost {
  z-index: 20;
  inset: 0% auto auto 7%;
}

.tooltip-text {
  padding-left: 7px;
  padding-right: 7px;
  position: absolute;
}

.tooltip-text.every-slide {
  color: #fff;
  text-align: center;
  background-color: #979999;
  width: 25%;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  inset: 0% 0% auto;
}

.tooltip-text.slider {
  color: #fff;
  background-color: #d32ce6;
  inset: 7% auto auto 13%;
}

.tooltip-text.last-slide {
  color: #fff;
  background-color: #05b49a;
  inset: -4% -22% auto auto;
}

.tooltip-text.fist-slider {
  color: #fff;
  background-color: #f11212;
  inset: -4% auto auto 39%;
}

.tooltip-text.slider-mask {
  color: #fff;
  background-color: #000;
  inset: 11% auto auto 48%;
}

.tooltip-text.arrow {
  color: #fff;
  text-align: center;
  background-color: #b095b3;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px;
  inset: 1% 0% auto;
}

.slide-arrow {
  color: #d32ce6;
  background-color: #fff;
  border: 1px dotted #000;
  width: 105px;
}

.first-slide-wrap {
  float: right;
  background-color: #f8474a4a;
  border: 0 dashed #f11212;
  justify-content: flex-end;
  width: 200%;
  height: 100%;
  display: flex;
  position: relative;
}

.last-slide-ghost {
  background-color: #ffdfcd;
  width: 50%;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  overflow: hidden;
}

.last-slide-wrap {
  float: left;
  background-color: #ffdfcd;
  border: 0 dashed #05b49a;
  justify-content: flex-start;
  width: 200%;
  height: 100%;
  display: flex;
}

.slide-image {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  max-width: none;
  height: 750px;
  display: block;
}

.first-slide-ghost {
  background-color: #ffdfcd;
  width: 50%;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  overflow: hidden;
}

.coluna-2 {
  text-align: center;
  cursor: pointer;
  background-color: #5cb85c;
  border-radius: 25px;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px;
  display: flex;
  position: relative;
}

.html-embed-16 {
  width: 100%;
  height: 100%;
}

.paragraph-23 {
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Open Sans, sans-serif;
  font-weight: 700;
}

.container-14 {
  flex-flow: column;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.heading-42 {
  color: #424242;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.paragraph-24 {
  color: var(--grey-2);
  text-align: center;
  max-width: 550px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.html-embed-17 {
  background-color: var(--white);
  border: 0 solid #000;
  max-width: 547px;
  height: 498px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.quarta-dobra {
  background-color: var(--white);
  width: 100%;
  padding-bottom: 220px;
}

.column-6 {
  background-image: url('../images/franquiasimgtxt-1920w.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
  max-height: 600px;
}

.column-7 {
  background-color: var(--white);
  flex-direction: column;
  padding-top: 45px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.columns-4 {
  display: flex;
}

.text-block-7 {
  background-color: var(--white);
  color: #555;
  width: 100%;
  max-width: 800px;
  padding: 40px;
  font-family: Open Sans, sans-serif;
  font-size: 22px;
  font-weight: 300;
  position: relative;
  left: -120px;
}

.text-block-8 {
  color: #646464;
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.section-4 {
  background-color: #aaaab0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.body-franquia {
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.text-block-9 {
  color: #939393;
  margin-top: 20px;
  line-height: 1.5;
}

.primeira-dobra-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 513px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  position: static;
}

.flex-block-8 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.div-block-55 {
  width: 100%;
  height: 100%;
}

.segunda-dobra-2 {
  color: #fff;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
}

.segunda-dobra-2.dobra-franquiado {
  align-items: flex-start;
  max-width: 100%;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.segunda-dobra-2.dobra-franquiado.fraquias-kore {
  max-width: 1200px;
  padding-top: 0;
  padding-left: 20px;
}

.paragraph-25 {
  color: #f0f0f0;
  align-self: flex-start;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 1.2;
}

.paragraph-25.desktop {
  color: #aaaab1;
  text-align: center;
  text-transform: uppercase;
  align-self: center;
  font-size: 60px;
}

.paragraph-25.mobile {
  display: none;
}

.paragraph-26 {
  color: #8e8e8e;
  align-self: center;
  font-size: 1.125rem;
}

.paragraph-27 {
  color: #555;
  text-align: center;
  width: 90%;
  margin-top: 60px;
  margin-bottom: 20px;
}

.terceira-dobra-2 {
  background-color: #aaaab0;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 50px 40px;
}

.terceira-dobra-2.dobra-seja {
  background-color: #e6e6e6;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  padding-bottom: 100px;
  display: flex;
}

.terceira-dobra-2.dobra-seja.franquias-kore {
  margin-top: 40px;
  padding: 60px 20px 40px;
}

.image-24 {
  width: 240px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.flex-block-9 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
}

.image-23 {
  width: 100%;
  max-height: 240px;
}

.div-block-57 {
  width: 100%;
  max-width: 586px;
}

.div-block-57.lado-r {
  background-color: #fff;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  flex-direction: column;
  align-items: center;
  min-width: 500px;
  max-width: 586px;
  height: auto;
  max-height: 950px;
  margin-top: -90px;
  margin-left: 20px;
  padding-bottom: 45px;
  padding-left: 0;
  display: flex;
}

.button-4 {
  border: 1px solid var(--white);
  background-color: var(--black-2);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 40px;
  font-size: 15px;
  display: flex;
}

.button-4.diferenciais {
  background-color: var(--black);
  text-transform: uppercase;
  border-radius: 0;
  height: 51px;
  max-height: 51px;
  margin-top: 0;
  font-size: 16px;
  display: flex;
}

.div-block-58 {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 320px;
  height: auto;
  margin-top: 0;
  display: flex;
}

.div-block-59 {
  flex-flow: column;
  width: 50%;
  padding-right: 20px;
  display: flex;
}

.div-block-60 {
  width: 50%;
}

.flex-block-10 {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.heading-43 {
  color: var(--black);
  font-size: 24px;
}

.paragraph-30 {
  color: #8e8e8e;
  margin-top: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.image-25 {
  width: 100%;
  max-width: 582px;
  height: 100%;
  max-height: 325px;
}

.section-5 {
  flex-flow: column;
  width: 100%;
  max-width: 1279px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.div-block-61 {
  width: 100%;
  margin-left: 20px;
}

.div-block-62 {
  align-self: flex-start;
  width: auto;
  margin-right: 20px;
  padding-top: 0;
}

.flex-block-11 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: grid;
}

.flex-block-11.txtparagrafo {
  display: flex;
}

.html-embed-21 {
  color: var(--black-2);
  padding-top: 0;
  font-weight: 400;
}

.flex-block-12 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.div-block-63 {
  width: 100%;
  margin-bottom: 10px;
}

.div-block-64 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 60px;
  padding-left: 20px;
  display: flex;
}

.heading-47 {
  justify-content: center;
  align-items: center;
  font-size: 20px;
  display: flex;
}

.dobra-formulario {
  flex-direction: column;
  align-items: center;
  height: auto;
  min-height: 0;
  padding-top: 40px;
  padding-bottom: 100px;
  display: flex;
}

.dobra-formulario.franquias-kore {
  margin-top: 0;
  padding-top: 40px;
}

.heading-48 {
  color: var(--dim-grey);
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 24px;
}

.paragraph-31 {
  color: #8e8e8e;
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
  font-family: Open Sans, sans-serif;
  font-size: 17px;
}

.div-block-65 {
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 100%;
  min-height: 500px;
  max-height: 500px;
  margin-top: 40px;
  display: flex;
}

.html-embed-23 {
  width: 100%;
  max-width: 500px;
  min-height: 0;
}

.flex-block-13 {
  justify-content: center;
  align-items: flex-start;
  min-height: 60vh;
  padding-bottom: 60px;
  padding-left: 0;
}

.div-block-66 {
  justify-content: center;
  align-items: center;
  width: 50%;
  padding-left: 20px;
  display: flex;
}

.heading-49 {
  font-size: 28px;
}

.section-6 {
  flex: 0 auto;
  align-self: auto;
}

.div-block-67 {
  width: 50%;
}

.div-block-68 {
  width: 100%;
  max-width: 586px;
}

.div-block-68.lado-l {
  background-color: #fff;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  flex-direction: column;
  align-items: center;
  min-width: 500px;
  height: auto;
  max-height: 950px;
  margin-top: -90px;
  margin-right: 20px;
  padding-bottom: 45px;
  display: flex;
}

.image-26 {
  aspect-ratio: auto;
  object-fit: cover;
  width: 100%;
  max-height: 240px;
}

.paragraph-33 {
  color: #555;
  text-align: center;
  width: 80%;
  margin-top: 60px;
  margin-bottom: 40px;
  font-weight: 400;
}

.image-27 {
  width: 240px;
  margin-bottom: 40px;
}

.paragraph-28, .paragraph-34 {
  color: #555;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 300;
}

.html-embed-28 {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 0;
  padding-top: 0;
  display: flex;
}

.flex-block-14 {
  background-color: var(--white);
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
}

.paragraph-35 {
  color: var(--black-2);
  flex-flow: row;
  width: 50%;
  margin-bottom: 0;
  display: block;
}

.link {
  color: var(--black-2);
  text-align: right;
  width: 50%;
  text-decoration: none;
  display: block;
}

.heading-50 {
  color: var(--dark-slate-grey);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Open Sans, sans-serif;
  display: none;
}

.paragraph-36 {
  text-align: center;
  margin-bottom: 60px;
  font-family: Open Sans, sans-serif;
  display: none;
}

.bold-text-4 {
  color: var(--black-2);
  font-weight: 600;
}

.image-29 {
  width: 100%;
}

.container-15 {
  margin-left: 0;
}

.container-16 {
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  display: flex;
}

.bold-text-6, .bold-text-7 {
  color: #939393;
  font-size: 24px;
}

.paragraph-37 {
  color: #939393;
}

.bold-text-8, .bold-text-9, .bold-text-10, .bold-text-11, .bold-text-12, .bold-text-13, .bold-text-14, .bold-text-15, .bold-text-16, .bold-text-17, .bold-text-18, .bold-text-19, .bold-text-20, .bold-text-21 {
  color: #000;
}

.html-embed-29 {
  font-weight: 300;
}

.html-embed-30 {
  margin-bottom: 20px;
}

.html-embed-31 {
  width: 100%;
}

.html-embed-32, .div-block-70 {
  margin-bottom: 10px;
}

.div-block-71 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 960px;
  padding-top: 20px;
  padding-left: 0;
  display: flex;
}

.code-embed {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
}

.heading-52 {
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.text-span-12 {
  color: #555;
  font-family: Open Sans, sans-serif;
}

.bold-text-22 {
  font-size: 24px;
}

.text-span-13 {
  color: #555;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.text-span-14 {
  color: #555;
  font-weight: 700;
}

.bold-text-23 {
  color: #555;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}

.quinta-dobra {
  background-color: var(--firebrick);
  justify-content: center;
  width: 100%;
  min-height: 280px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.div-block-52 {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .footer {
    align-items: center;
  }

  .body-home {
    height: auto;
  }

  .text-block-8 {
    width: 100%;
    max-width: 600px;
  }

  .paragraph-35 {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1440px) {
  .primeira-dobra {
    min-height: 700px;
    max-height: 700%;
  }

  .container-14 {
    justify-content: space-between;
    align-items: center;
  }

  .text-block-8 {
    width: 100%;
    max-width: 600px;
  }

  .dobra-formulario.franquias-kore {
    margin-top: 20px;
  }

  .paragraph-35 {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1920px) {
  .l-nav {
    align-self: flex-end;
    height: 90px;
  }

  .c-container {
    justify-content: space-between;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
  }

  .c-nav-logo.w--current {
    width: auto;
  }

  .nav-menu {
    justify-content: flex-end;
    align-items: center;
    width: 70%;
  }

  .image {
    max-width: none;
    height: 46px;
  }

  .footer {
    background-color: #555;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .f-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-2 {
    align-items: center;
    max-width: 100%;
    padding: 0;
    display: flex;
  }

  .div-block-4 {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }

  .f-r-link {
    color: #939393;
    font-family: Open Sans, sans-serif;
  }

  .f-r-link:hover {
    color: var(--grey-3);
  }

  .primeira-dobra {
    min-height: 700px;
    max-height: 700%;
  }

  .box-r-sociais.menu {
    justify-content: center;
    align-items: flex-end;
  }

  .body-home {
    font-family: Open Sans, sans-serif;
  }

  .container-14 {
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
  }

  .quarta-dobra {
    background-color: var(--white);
  }

  .column-6 {
    background-image: url('../images/franquiasimgtxt-1920w.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
  }

  .column-7 {
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
    position: static;
  }

  .text-block-7 {
    max-width: 1150px;
    left: -150px;
  }

  .text-block-8 {
    width: 100%;
    max-width: 1000px;
    padding-left: 0;
  }

  .primeira-dobra-2, .flex-block-8 {
    min-width: 100%;
  }

  .div-block-55 {
    max-width: 100%;
  }

  .segunda-dobra-2.dobra-franquiado.fraquias-kore {
    max-width: 1200px;
  }

  .paragraph-25 {
    color: #f0f0f0;
  }

  .flex-block-9 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .div-block-57.lado-r {
    max-width: 586px;
  }

  .flex-block-11 {
    flex-flow: column;
    justify-content: flex-start;
  }

  .dobra-formulario.franquias-kore {
    justify-content: center;
    align-items: center;
    margin-top: 220px;
  }

  .flex-block-14 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .paragraph-35 {
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .image-28, .image-29 {
    object-fit: cover;
    width: 100%;
  }

  .container-15 {
    margin-left: 0;
    padding-left: 40px;
  }

  .html-embed-32, .div-block-70 {
    margin-bottom: 10px;
  }

  .div-block-52 {
    max-width: none;
  }

  .html-embed-25 {
    width: 100%;
    max-width: 1248px;
  }

  .image-31 {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .utility_block {
    width: 95%;
  }

  .l-nav {
    mix-blend-mode: normal;
    align-self: flex-start;
    height: 90px;
    position: relative;
    inset: 0% 0% auto;
  }

  .c-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #0000;
    flex-direction: row;
    flex: 0 auto;
    order: 0;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-self: center;
    align-items: center;
    width: 100%;
    min-width: 100%;
    max-width: none;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .c-nav-logo {
    text-align: left;
    flex-direction: row;
    flex: 1;
    order: 1;
    justify-content: center;
    align-self: center;
    align-items: center;
    display: flex;
  }

  .c-nav-logo.w--current {
    text-align: left;
    flex-flow: row;
    flex: 1;
    order: 1;
    justify-content: flex-start;
    align-items: center;
    margin-right: 0;
    display: flex;
  }

  .c-nav-link {
    color: #777;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5px;
  }

  .c-nav-link:hover {
    color: var(--black-2);
  }

  .nav-menu {
    background-color: var(--white);
    object-fit: contain;
    flex-flow: column;
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: 80%;
    height: 100vh;
    margin-top: 90px;
    overflow: hidden;
  }

  .image {
    text-align: left;
    flex: 0 auto;
    order: -1;
    align-self: center;
    max-width: none;
    height: 31px;
    margin-left: 0;
    margin-right: auto;
    display: block;
    overflow: auto;
  }

  .c-nav-compra {
    background-color: #0000;
    display: none;
  }

  .menu-button {
    background-color: #0000;
    flex: 0 auto;
    order: 2;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    padding-right: 18px;
    display: block;
  }

  .menu-button.w--open {
    background-color: #fff;
  }

  .terceira-dobra {
    flex-flow: column;
    align-content: flex-start;
    align-items: flex-end;
    width: 100%;
    max-width: none;
    height: auto;
    padding-top: 90px;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .segunda-dobra {
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .passos {
    width: auto;
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .grid {
    grid-template-rows: auto auto;
    grid-template-columns: 50% 50% 50% 50%;
    grid-auto-flow: column;
    justify-content: stretch;
  }

  .coluna {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: stretch;
    width: 290px;
    height: 360px;
    max-height: 360px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
  }

  .heading-6 {
    font-size: 5rem;
  }

  .heading-8 {
    text-align: center;
    font-size: 1.1rem;
  }

  .navigation {
    display: none;
  }

  .footer {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .f-container {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .grid-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 25% 25% 25% 25%;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-content: flex-start space-around;
    place-items: center;
    height: auto;
    padding: 0 10px;
    display: flex;
  }

  .div-block-4 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    order: 1;
    grid-template-rows: 100% auto;
    grid-template-columns: 50% 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-self: flex-start;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 0;
    padding-right: 0;
    font-size: .8rem;
    display: flex;
  }

  .div-block-5 {
    order: -1;
    align-self: center;
    align-items: center;
    width: auto;
  }

  .image-3 {
    width: auto;
    max-width: none;
  }

  .primeira-dobra {
    flex-flow: column;
    place-content: flex-start center;
    align-items: center;
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .html-embed-3 {
    width: 100%;
    height: 100%;
    display: none;
    position: static;
    inset: 0% 0% auto;
  }

  .icon {
    background-color: var(--black);
    color: var(--black-2);
    text-align: center;
    display: block;
  }

  .box-r-sociais.menu {
    margin-top: 0%;
    padding-bottom: 0;
    padding-left: 20px;
    display: block;
  }

  .box-r-sociais.menu.social-box-menu {
    margin-top: 10%;
    font-size: .875rem;
    display: block;
  }

  .heading-12 {
    text-align: left;
    font-size: .875rem;
  }

  .heading-12.rs-mobile {
    color: #d45700;
  }

  .div-block-16 {
    align-items: center;
  }

  .html-embed-9 {
    color: var(--yellow-green);
    cursor: pointer;
    display: flex;
  }

  .html-embed-10 {
    cursor: pointer;
    display: flex;
  }

  .div-block-17 {
    display: block;
  }

  .div-block-21 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .div-block-21.p-click-21 {
    margin-top: 20px;
    overflow: hidden;
  }

  .heading-13.p-mouse {
    display: none;
    overflow: visible;
  }

  .heading-15 {
    color: #c9c9c9;
    font-size: 1.05rem;
  }

  .heading-15.p-clickaqui {
    display: block;
  }

  .html-embed-11 {
    padding-top: 0;
  }

  .div-block-22 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    order: 1;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 20px;
    display: flex;
  }

  .button-3 {
    background-color: var(--black-2);
    color: var(--white);
    cursor: pointer;
    border-radius: 50px;
    width: 48px;
    height: 48px;
    margin-top: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 2;
    display: none;
    position: static;
    inset: 13% 0% auto 50%;
  }

  .div-block-23 {
    flex-direction: column;
    order: -1;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    padding-right: 20px;
    display: flex;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .image-4 {
    color: var(--black-2);
    width: 32px;
    max-width: none;
    height: 24px;
    display: none;
  }

  .car-mobile {
    order: 1;
    align-self: center;
    height: auto;
    display: none;
  }

  .html-embed-13 {
    margin-bottom: 0;
    margin-right: 0;
    display: none;
  }

  .facebook-icon {
    cursor: pointer;
    display: flex;
  }

  .instagram-icon {
    cursor: pointer;
  }

  .youtube-icon {
    cursor: pointer;
    display: flex;
  }

  .social-links-footer {
    align-items: center;
  }

  .db-politica {
    width: 100%;
    max-width: 668px;
  }

  .db-politica-custom {
    width: 100%;
    max-width: 100%;
  }

  .body-home {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .bold-text-3 {
    color: var(--white);
  }

  .mask {
    width: 60%;
  }

  .coluna-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .text-block-7 {
    max-width: 600px;
  }

  .primeira-dobra-2 {
    flex-flow: column;
    align-content: flex-start;
    align-items: flex-end;
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .flex-block-8 {
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }

  .div-block-55 {
    padding-bottom: 0;
  }

  .segunda-dobra-2 {
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .terceira-dobra-2 {
    flex-flow: column;
    align-content: flex-start;
    align-items: flex-end;
    width: 100%;
    max-width: none;
    height: auto;
    padding-top: 90px;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .flex-block-9 {
    flex-flow: column;
  }

  .flex-block-11 {
    grid-template-rows: auto;
  }

  .html-embed-28 {
    margin-top: 10px;
  }

  .image-28 {
    object-fit: fill;
  }

  .html-embed-25 {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .utility_block {
    width: 95%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .l-nav {
    mix-blend-mode: normal;
    height: 90px;
  }

  .c-container {
    z-index: 999;
    justify-content: space-around;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .c-nav-logo.w--current {
    flex: 1;
    order: 1;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-menu {
    height: 100vh;
    margin-top: 90px;
  }

  .image {
    flex: 1;
    order: 1;
    max-width: 141px;
    height: auto;
    max-height: none;
    margin-left: 0;
    margin-right: auto;
  }

  .menu-button {
    order: 2;
    width: auto;
  }

  .terceira-dobra {
    width: 100%;
    min-width: 468px;
    max-width: none;
    padding-top: 90px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .segunda-dobra {
    max-width: none;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 0;
    padding-bottom: 60px;
    display: block;
  }

  .passos {
    flex-direction: column;
    height: auto;
    display: block;
  }

  .grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .coluna {
    justify-content: space-around;
    width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .footer {
    padding-left: 0;
    padding-right: 0;
  }

  .f-container {
    justify-content: center;
  }

  .grid-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 25%;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    align-self: center;
    align-items: center;
    display: flex;
  }

  .div-block-4 {
    margin-top: auto;
    margin-bottom: auto;
  }

  .f-r-link {
    align-self: flex-end;
    margin-top: auto;
    margin-bottom: auto;
  }

  .div-block-5 {
    justify-content: flex-start;
    align-self: center;
    margin-bottom: 0;
    padding-left: 0;
  }

  .image-3 {
    max-width: none;
  }

  .primeira-dobra {
    max-width: none;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .box-r-sociais.menu {
    margin-top: 0;
    padding-left: 0;
  }

  .box-r-sociais.menu.social-box-menu {
    padding-left: 20px;
  }

  .div-block-16 {
    justify-content: flex-start;
    margin-left: 0;
  }

  .html-embed-11 {
    padding-top: 0;
  }

  .button-3 {
    line-height: 2;
    display: none;
  }

  .div-block-23 {
    margin-bottom: 40px;
    position: absolute;
    inset: 0 0% auto;
  }

  .html-embed-13 {
    margin-right: 0;
  }

  .social-links-footer {
    justify-content: flex-start;
    margin-left: 0;
  }

  .db-politica {
    max-width: 468px;
  }

  .bold-text-3 {
    color: var(--white);
  }

  .d-imagem {
    height: 100%;
    min-height: 480px;
  }

  .slider-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .mask {
    width: 95%;
  }

  .column-step-slider {
    min-height: 500px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .html-embed-17 {
    width: 100%;
    padding-right: 0;
  }

  .columns-4 {
    flex-flow: wrap;
  }

  .text-block-7 {
    padding-left: 0;
    left: auto;
  }

  .primeira-dobra-2 {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .segunda-dobra-2 {
    max-width: none;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 0;
    padding-bottom: 60px;
    display: block;
  }

  .paragraph-25 {
    width: auto;
    font-size: 60px;
  }

  .terceira-dobra-2 {
    min-width: 468px;
    max-width: none;
    padding-top: 90px;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-59, .div-block-60 {
    width: auto;
  }

  .flex-block-10.franquias {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .flex-block-11 {
    grid-template-columns: 1fr;
  }

  .flex-block-13 {
    flex-direction: column;
  }

  .div-block-66 {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }

  .heading-49 {
    font-size: 24px;
  }

  .html-embed-28 {
    margin-top: 10px;
  }

  .div-block-71 {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }

  .container-17 {
    width: 100%;
  }

  .html-embed-25 {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .utility_block {
    width: 95%;
  }

  .l-nav {
    mix-blend-mode: normal;
    height: 90px;
    position: relative;
  }

  .c-container {
    z-index: 999;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: var(--white);
    order: 1;
    justify-content: space-between;
    position: sticky;
  }

  .c-nav-logo.w--current {
    flex: 1;
    order: 1;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    overflow: hidden;
  }

  .c-nav-link {
    color: #939393;
    font-size: 16px;
  }

  .c-nav-link:hover {
    color: var(--grey);
  }

  .c-nav-link.ocultar-menu {
    display: flex;
  }

  .nav-menu {
    background-color: var(--white);
    opacity: 1;
    -webkit-text-stroke-color: #101010;
    mix-blend-mode: normal;
    width: 80%;
    height: 100vh;
    margin-top: 90px;
  }

  .image {
    flex: 0 auto;
    order: -1;
    align-self: center;
    width: auto;
    max-width: 220px;
    height: 31px;
    margin-left: 0%;
    margin-right: auto;
  }

  .menu-button {
    flex: 0 auto;
    order: 2;
    align-self: center;
  }

  .menu-button.w--open {
    background-color: var(--white);
  }

  .terceira-dobra {
    min-width: 0;
    max-width: 360px;
    margin-bottom: 0;
    padding: 40px 15px 60px;
  }

  .segunda-dobra {
    max-width: none;
    padding: 15px;
  }

  .grid {
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 100%;
    grid-auto-flow: column;
    display: flex;
  }

  .coluna {
    width: 100%;
  }

  .footer {
    margin-bottom: auto;
    padding: 40px 0 0;
  }

  .f-container {
    flex-flow: column;
    max-width: 100%;
    height: auto;
  }

  .grid-2 {
    flex-flow: column;
    justify-content: center;
    margin-top: 0;
  }

  .div-block-4 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    order: -1;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    display: flex;
  }

  .f-r-link {
    text-align: center;
    width: 100%;
  }

  .div-block-5 {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .image-3 {
    max-width: none;
    margin-left: 20px;
  }

  .primeira-dobra {
    background-position: 20%;
    max-width: none;
    height: auto;
    min-height: auto;
    max-height: 100%;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .html-embed-3 {
    display: none;
  }

  .icon {
    background-color: var(--white);
    color: var(--dark-slate-grey);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .box-r-sociais {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .box-r-sociais.menu {
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
  }

  .heading-12.rs-mobile {
    color: var(--white);
  }

  .html-embed-9, .html-embed-10 {
    display: flex;
  }

  .button-3 {
    background-color: var(--white);
    color: var(--grey);
    line-height: 2;
  }

  .div-block-23 {
    justify-content: flex-start;
    align-self: flex-end;
    align-items: flex-end;
    padding-right: 20px;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .image-4 {
    width: 24px;
    display: none;
  }

  .html-embed-13 {
    display: none;
  }

  .facebook-icon, .youtube-icon {
    display: flex;
  }

  .social-links-footer {
    justify-content: space-between;
    align-items: center;
  }

  .db-politica {
    max-width: 360px;
  }

  .db-politica-custom {
    padding-left: 10px;
    padding-right: 10px;
  }

  .body-home {
    background-color: #f7f8fc;
    align-items: center;
  }

  .bold-text-3 {
    color: var(--white);
  }

  .d-imagem {
    height: auto;
    min-height: auto;
    padding: 20px;
  }

  .slider {
    width: 100%;
  }

  .mask {
    width: 75%;
    min-width: 195px;
  }

  .column-slide.first {
    max-width: 300px;
  }

  .slide-content {
    width: 100px;
  }

  .column-step-slider {
    padding-left: 0;
    padding-right: 0;
  }

  .first-slide-wrap {
    width: 100%;
  }

  .first-slide-ghost {
    width: 50%;
  }

  .coluna-2 {
    width: 100%;
  }

  .paragraph-23 {
    font-size: 20px;
  }

  .container-14 {
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
  }

  .paragraph-24 {
    text-align: center;
    font-size: 18px;
  }

  .quarta-dobra {
    max-width: 100%;
    height: auto;
    padding-bottom: 100px;
  }

  .column-6 {
    min-height: 240px;
    max-height: none;
  }

  .column-7 {
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .columns-4 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-left: 0;
  }

  .text-block-7 {
    min-width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
    left: 0;
  }

  .text-block-8 {
    height: auto;
    margin-top: 0;
    font-size: 16px;
  }

  .body-franquia {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .primeira-dobra-2 {
    max-width: none;
    height: auto;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .segunda-dobra-2 {
    max-width: none;
    padding: 0;
  }

  .segunda-dobra-2.dobra-franquiado.fraquias-kore {
    max-width: 100%;
    padding-right: 20px;
  }

  .paragraph-25 {
    color: #aaaab1;
    text-align: center;
    object-fit: fill;
    align-self: center;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.2;
  }

  .paragraph-25.desktop {
    font-size: 36px;
  }

  .paragraph-26 {
    color: #646464;
    text-align: center;
    font-size: 18px;
  }

  .terceira-dobra-2 {
    min-width: 0;
    max-width: 360px;
    margin-bottom: 0;
    padding: 0 15px 60px;
  }

  .terceira-dobra-2.dobra-seja.franquias-kore {
    flex-flow: column;
    max-width: 100%;
  }

  .flex-block-9 {
    flex-flow: column;
  }

  .image-23 {
    object-fit: contain;
    max-width: none;
    min-height: auto;
  }

  .div-block-57.lado-r {
    min-width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .div-block-58 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-59 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
  }

  .div-block-60 {
    width: 100%;
  }

  .flex-block-10.franquias {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .heading-43 {
    color: var(--black-2);
  }

  .paragraph-30 {
    color: var(--grey-2);
    font-size: 18px;
  }

  .section-5 {
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 100px;
  }

  .div-block-61 {
    width: 100%;
    margin-left: 0;
  }

  .div-block-62 {
    width: 100%;
    margin-right: 0;
  }

  .flex-block-11 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .div-block-63 {
    width: 100%;
    overflow: visible;
  }

  .dobra-formulario.franquias-kore {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-66 {
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-49 {
    font-size: 26px;
  }

  .div-block-67.div-obrigado {
    width: 100%;
  }

  .div-block-68.lado-l {
    min-width: 100%;
    max-width: 100%;
    margin-right: 0;
  }

  .image-26 {
    object-fit: contain;
    max-width: none;
    min-height: auto;
    max-height: none;
  }

  .paragraph-33 {
    color: #555;
    font-size: 15px;
  }

  .html-embed-28 {
    margin-top: 0;
  }

  .flex-block-14 {
    flex-flow: column;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .paragraph-35 {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .link {
    text-align: center;
    width: 100%;
  }

  .container-15 {
    z-index: 999;
    background-color: var(--white);
    flex-flow: column;
    align-items: center;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: relative;
    top: -40px;
  }

  .link-block-2 {
    width: 100%;
  }

  .link-block-2.w--current {
    text-align: center;
    justify-content: center;
    align-self: center;
    align-items: center;
    display: flex;
  }

  .container-16 {
    flex-flow: column;
  }

  .image-30 {
    width: 100%;
  }

  .bold-text-5 {
    font-size: 26px;
  }

  .div-block-69 {
    align-self: flex-start;
  }

  .bold-text-8 {
    font-size: 15px;
  }

  .code-embed {
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-52 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-17 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

#w-node-_1f570b48-3731-99cb-1e06-4b8ee7d418b1-e7d418ae, #w-node-_1f570b48-3731-99cb-1e06-4b8ee7d418c6-e7d418ae, #w-node-_1f570b48-3731-99cb-1e06-4b8ee7d418bc-e7d418ae, #w-node-_0b422a80-4c31-7444-5fe5-f911e55d182f-0b8d46d2, #w-node-_0b422a80-4c31-7444-5fe5-f911e55d1830-0b8d46d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


