html {
  scroll-behavior: smooth;
}

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

.header {
  border-bottom: 1px solid #d6d6d6;
  background: #fff;
}

body {
  background-image: url("../images/background-home.webp");
}

.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  margin: 0px auto;
  padding-top: 24px;
  padding-bottom: 24px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .nav {
    width: 90%;
  }
}

.logo {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.link-block {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  color: #2e2e2e;
  gap: 25px;
  display: flex;
}

.menu-icon {
  display: none;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .link-block {
    display: none;
    position: absolute;
    flex-direction: column;
    background: #fff;
    width: 100%;
    top: 100px;
    z-index: 999;
  }

  .link-block .link {
    text-align: left;
  }

  .menu-icon {
    display: block;
  }
}

.body {
  border-top: 1px none #ccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-family: Montserrat, sans-serif;
  color: #2e2e2e;
}

.link {
  padding-right: 0px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #2e2e2e;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.link:hover {
  color: #fa4475;
  text-decoration: underline;
}

.link.ultimio {
  margin-right: 0px;
}

.section-1 {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  max-width: 95%;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.section-1.home {
  position: relative;
  max-width: 95%;
  margin: 50px auto 100px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .section-1,
  .section-1.home {
    width: 90%;
  }
}

.heading {
  margin-top: 0px;
  margin-bottom: 50px;
  color: #006ab1;
  font-size: 36px;
  line-height: normal;
}

.heading.hero-home {
  width: auto;
  margin-top: 0px;
  margin-bottom: 25px;
  font-size: 45px;
}

.quem-somos {
  position: relative;
  background: #fff;
}

.content-quem-somos {
  width: 1200px;
  margin: 0 auto 100px;
}

@media (max-width: 1200px) {
  .content-quem-somos {
    width: 90%;
    margin: 0 auto 50px;
  }
}

.tabs {
  display: flex;
  gap: 20px;
}

@media (max-width: 500px) {
  .tabs {
    justify-content: left;
  }
}

.tab {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  color: #2e2e2e;
  position: relative;
}

.tab:hover {
  color: #2f649d;
  padding-bottom: 8px;
}

.tab:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background-color: #2f649d;
  border-radius: 8px;
}

.tab.active {
  color: #2f649d;
  padding-bottom: 8px;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background-color: #2f649d;
  border-radius: 8px;
}

.tab-content {
  display: none;
  grid-template-columns: 1.5fr 1fr;
  padding: 25px 0;
  gap: 15px;
}

@media (max-width: 1050px) {
  .tab-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .tab-content > :nth-child(1) {
    order: 2;
  }
  .tab-content > :nth-child(2) {
    order: 1;
  }
}

.tab-content img {
  position: absolute;
  right: 0;
  top: 0;
  width: 560px;
}

@media (max-width: 1200px) {
  .tab-content img {
    width: 450px;
  }
}

@media (max-width: 1050px) {
  .tab-content img {
    position: relative;
    float: right;
  }
}

.tab-content p {
  font-size: 16px;
  color: #2e2e2e;
  font-weight: 400;
  line-height: 26px;
}

.tab-content p b {
  color: #ff4a7b;
}

.tab-content.active {
  display: grid;
}

.chip {
  display: inline-block;
  width: auto;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  padding: 5px 10px 5px 15px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 20px;
  background-color: #fff0f4;
  font-family: Montserrat, sans-serif;
  color: #fa4475;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  -o-object-fit: fill;
  object-fit: fill;
}

.chip.mini {
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: 9px;
  padding: 0px 8px;
  border-radius: 100px;
  background-color: #fff0f4;
  color: #fa4475;
  font-size: 12px;
  line-height: 24px;
  text-decoration: none;
}

.chip.mini:hover {
  font-style: normal;
  text-decoration: none;
}

.div-block-3 {
  width: 550px;
  height: auto;
  margin-top: 0px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.descritivo-marcas {
  width: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #2e2e2e;
  font-size: 16px;
  line-height: 26px;
}

.marcas {
  background: #fff;
}

.button {
  width: auto;
  margin-top: 50px;
  margin-bottom: 0px;
  padding-right: 30px;
  padding-left: 30px;
  border: 2px solid #fa4475;
  border-radius: 50px;
  background-color: transparent;
  -webkit-transition: all 500ms ease, background-color 500ms ease;
  transition: all 500ms ease, background-color 500ms ease;
  color: #fa4475;
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  cursor: pointer;
}

.button:hover {
  border-color: #fa4475;
  background-color: #fa4475;
  color: #fff;
}

.button:active {
  background-color: #e53e6b;
}

.button.roxo {
  width: auto;
  margin-top: 20px;
}

.button.roxo.w--current {
  border-color: #594d94;
  color: #594d94;
}

.button.pass {
  width: 200px;
}

.image-5 {
  position: relative;
  left: 651px;
  top: 386px;
  right: 0px;
  bottom: 0%;
  width: 80px;
  height: 80px;
  max-height: none;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.image-5.home {
  position: absolute;
  left: 342px;
  top: 359px;
  right: 0%;
  bottom: 0%;
  z-index: -2;
  -webkit-transform: rotateX(-180deg) rotateY(0deg) rotateZ(0deg);
  transform: rotateX(-180deg) rotateY(0deg) rotateZ(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.section-5 {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 1200px;
  height: 300px;
  max-width: 95%;
  margin: 0 auto 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  background-color: #fff0f4;
  padding: 16px;
}

@media (max-width: 1200px) {
  .section-5 {
    width: 90%;
    margin: 0 auto 50px;
  }
}

.heading-4 {
  text-align: center;
  color: #ff4a7b;
  font-size: 36px;
  margin: 0 0 20px 0;
}

.section-5 p {
  color: #373737;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  text-align: center;
  font-weight: 700;
}

.section-5 button {
  display: block;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  background: #ff4a7b;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  height: 48px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  width: 350px;
  border: 1px solid #ff4a7b;
}

.section-5 a {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 500px) {
  .section-5 button {
    width: 100%;
  }

  .section-5 a {
    padding: 0 1em;
  }
}

.section-5 a {
  text-decoration: none;
}

.section-5 button:hover {
  background: transparent;
  color: #ff4a7b;
}

.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  height: auto;
  max-width: 95%;
  margin: 30px auto 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: transparent;
  padding-bottom: 1em;
}

.grid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0px;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  justify-items: stretch;
  -ms-grid-row-align: auto;
  align-self: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  -ms-grid-columns: 2fr 1.5fr 1fr 1fr;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.div-block-7 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #2e2e2e;
  text-decoration: none;
  cursor: pointer;
}

.div-block-7:hover {
  color: #006ab1;
  text-decoration: underline;
}

.text-footer {
  line-height: 24px;
}

.text-footer:hover {
  text-decoration: none;
}

.text-footer.azul {
  color: #006ab1;
}

.div-block-8 {
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 30px;
  background-color: #ccc;
}

.columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.social {
  width: 20px;
  height: 25px;
  max-width: 100%;
  margin-right: 0px;
}

.social.ultimo {
  margin-right: 0px;
}

.column-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.column-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0px;
  padding-left: 0px;
}

.titulo-footer {
  margin-bottom: 30px;
  color: #fa4475;
  font-size: 16px;
  font-weight: 700;
}

.social-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  cursor: pointer;
}

.social-icon.last {
  margin-right: 0px;
}

.bola-amarela {
  position: absolute;
  left: 810px;
  right: auto;
  bottom: 61px;
  z-index: -3;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  background-color: #fc0;
}

.bola-verde {
  position: absolute;
  left: 107px;
  right: auto;
  bottom: 78px;
  width: 50px;
  height: 50px;
  border-radius: 90px;
  background-color: #397a4c;
}

.bola-branca {
  position: absolute;
  left: 271px;
  right: auto;
  bottom: -46px;
  z-index: -20;
  width: 140px;
  height: 140px;
  border-radius: 500px;
  background-color: #fff;
  opacity: 1;
}

.forma-roxa {
  position: absolute;
  left: 1028px;
  top: 126px;
  right: 6px;
  bottom: 61px;
  z-index: -6;
  width: 60px;
  height: 60px;
  border-radius: 0px 0px 0px 100px;
  background-color: #594d94;
}

.bola-azul {
  position: absolute;
  left: 720px;
  top: 299px;
  right: 752px;
  z-index: -3;
  width: 100px;
  height: 100px;
  border-radius: 110px;
  background-color: rgba(250, 68, 117, 0.2);
}

.text-field {
  width: 100%;
  height: 48px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 5px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 16px;
}

.text-field:hover {
  font-size: 16px;
}

.text-field:focus {
  border-style: solid;
  border-width: 1px;
  border-color: #fa4475;
  color: #2e2e2e;
  font-size: 16px;
}

.text-field::-webkit-input-placeholder {
  color: #bfbfbf;
  font-size: 16px;
}

.text-field:-ms-input-placeholder {
  color: #bfbfbf;
  font-size: 16px;
}

.text-field::-ms-input-placeholder {
  color: #bfbfbf;
  font-size: 16px;
}

.text-field::placeholder {
  color: #bfbfbf;
  font-size: 16px;
}

.label {
  margin-right: 10px;
  margin-bottom: 0px;
  padding-right: 0px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  color: #fa4475;
  font-size: 16px;
  font-weight: 700;
}

.section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  max-width: 95%;
  margin: 0px auto 100px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
}

@media (max-width: 1200px) {
  .section {
    width: 90%;
  }
}

.marcas-ilustra {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 400px;
  height: 390px;
  margin-right: 0px;
  padding-left: 60px;
  clear: right;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 16px;
  background-color: #e6f3ff;
}

.marcas-ilustra.sp {
  padding-right: 10px;
  padding-left: 0px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-color: #f6ffe5;
}

.marcas-ilustra.parceiros {
  background-color: #f3f0ff;
  padding-right: 10px;
  padding-left: 0px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.marcas-ilustra.el {
  background-color: #eb736324;
  padding-right: 10px;
  padding-left: 0px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.marcas-ilustra.vdp {
  background-color: #005aa333;
}

.marca1 {
  width: 700px;
  display: flex;
  margin-right: 0px;
  padding-right: 0px;
  flex-direction: column;
  justify-content: center;
}

.marca1 img {
  object-fit: contain;
  width: 170px;
  margin: 0 0 25px 0;
}

.depoimento {
  position: absolute;
  left: auto;
  top: 54px;
  right: -34px;
  bottom: auto;
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 230px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 1em;
  float: right;
  clear: right;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #ebebeb;
}

@media (max-width: 1200px) {
  .depoimento {
    display: none;
  }
}

.depoimento.vdp {
  padding: 15px 25px 20px;
}

.depoimento.sp {
  left: -34px;
  top: 35px;
  right: auto;
}

.depoimento.pp {
  left: -34px;
  top: 35px;
  right: auto;
}

.depoimento.parceiros {
  top: 35px;
}

.depoimento.vdp {
  top: 25px;
}

.link-marca {
  color: #006ab1;
  text-decoration: none;
}

.link-marca.pp {
  display: block;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.link-marca.pp:hover {
  color: #064e7e;
}

.link-marca.sp button {
  display: block;
  margin-top: 25px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  background: #397a4c;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  height: 48px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  width: 350px;
  border: 1px solid #33794a;
}

@media (max-width: 500px) {
  .link-marca.sp button {
    width: 100%;
  }
}

.link-marca.sp button:hover {
  background: transparent;
  color: #397a4c;
}

.link-marca.parceiros button {
  display: block;
  margin-top: 30px;
  color: #fff;
  background: #594d94;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  height: 48px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  width: 350px;
  border: 1px solid #594d94;
}

@media (max-width: 500px) {
  .link-marca.parceiros button {
    width: 100%;
  }
}

.link-marca.parceiros button:hover {
  background: transparent;
  color: #594d94;
}

.link-marca.el button {
  margin-top: 30px;
  color: #fff;
  background: #eb7363;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  width: 200px;
}

.link-marca.vdp button {
  display: block;
  margin-top: 25px;
  color: #fff;
  background: #005aa3;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  height: 48px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  width: 350px;
  border: 1px solid #005aa3;
}

@media (max-width: 500px) {
  .link-marca.vdp button {
    width: 100%;
  }
}

.link-marca.vdp button:hover {
  background: transparent;
  color: #005aa3;
}

.link-marca.parceiros:hover {
  color: #5024dd;
}

.link-marca.el:hover {
  color: #c95141;
}

.link-marca.vdp:hover {
  color: #027a98;
}

.pp-tela-1 {
  position: relative;
  left: -40px;
  overflow: hidden;
  width: 190px;
  max-width: none;
  margin-top: -67px;
  margin-bottom: 0px;
  padding-top: 0px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-radius: 3px;
  box-shadow: 0 0 10px 4px rgba(0, 106, 177, 0.15);
}

.pp-tela-2 {
  position: relative;
  display: block;
  overflow: hidden;
  width: 160px;
  max-width: none;
  margin-top: 146px;
  margin-bottom: auto;
  margin-left: 0px;
  border-radius: 3px;
  box-shadow: 0 0 10px 4px rgba(0, 106, 177, 0.15);
}

.influencer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.nome-e-credito-depoimento {
  margin-left: 0px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.credito-influencer {
  color: #373737;
  font-size: 12px;
}

.paragraph-3 {
  margin-top: 20px;
  text-align: left;
}

.nome-influencer {
  margin-top: 5px;
  font-size: 14px;
}

.nome-influencer.pp {
  color: #594d94;
}

.nome-influencer.sp {
  color: #397a4c;
}

.nome-influencer.parceiros {
  color: #594d94;
}

.nome-influencer.vdp {
  color: #005aa3;
}

.destaque-nome-marca.pp {
  color: #006ab1;
  font-weight: 700;
}

.destaque-nome-marca.sp {
  color: #397a4c;
  font-weight: 700;
}

.destaque-nome-marca.parceiros {
  color: #594d94;
  font-weight: 700;
}

.destaque-nome-marca.el {
  color: #eb7363;
  font-weight: 700;
}

.destaque-nome-marca.vdp {
  color: #005aa3;
  font-weight: 700;
}

.label-products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 70px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.label-products.mobile {
  display: none;
}

.image-10 {
  width: 20px;
  height: 20px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.metricas-wrapper {
  display: none;
  width: auto;
  height: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0px;
  background-color: transparent;
}

.metrica {
  margin-left: 11px;
  font-size: 16px;
  line-height: 22px;
}

.metrica.mini {
  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
}

.metrica-text {
  margin-top: 0px;
  margin-bottom: 0px;
}

.ic-metrica {
  width: 30px;
  height: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 60px;
  background-color: #bfbfbf;
}

.decoration.pp {
  position: absolute;
  left: -8%;
  top: auto;
  right: auto;
  bottom: -8%;
  width: 38px;
  height: 38px;
  border-bottom-left-radius: 80px;
  background-color: #594d94;
  color: #594d94;
}

.decoration.sp {
  position: absolute;
  left: -8%;
  top: auto;
  right: auto;
  bottom: -8%;
  width: 38px;
  height: 38px;
  border-bottom-left-radius: 80px;
  background-color: #397a4c;
  color: #008aff;
}

.decoration.parceiros {
  position: absolute;
  left: -8%;
  top: auto;
  right: auto;
  bottom: -8%;
  width: 38px;
  height: 38px;
  border-bottom-left-radius: 80px;
  background-color: #594d94;
  color: #008aff;
}

.decoration.el {
  position: absolute;
  left: -8%;
  top: auto;
  right: auto;
  bottom: -8%;
  width: 38px;
  height: 38px;
  border-bottom-left-radius: 80px;
  background-color: #eb7363;
  color: #eb7363;
}

.decoration.vdp {
  position: absolute;
  left: -8%;
  top: auto;
  right: auto;
  bottom: -8%;
  width: 38px;
  height: 38px;
  border-bottom-left-radius: 80px;
  background-color: #005aa3;
  color: #005aa3;
}

.metrica-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
}

.sp-tela-1 {
  position: relative;
  left: -40px;
  overflow: hidden;
  width: 190px;
  max-width: none;
  margin-top: 99px;
  margin-bottom: 0px;
  padding-top: 0px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-radius: 3px;
  box-shadow: 0 0 10px 4px rgba(51, 121, 74, 0.15);
}

.sp-tela-2 {
  position: relative;
  display: block;
  overflow: hidden;
  width: 160px;
  max-width: none;
  margin-top: -39px;
  margin-bottom: auto;
  margin-left: 0px;
  border-radius: 3px;
  box-shadow: 0 0 10px 4px rgba(51, 121, 74, 0.15);
}

.paragraph-4 {
  width: 480px;
  font-size: 16px;
  line-height: 24px;
}

.title-quem-somos {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.bolota {
  position: absolute;
  left: -215px;
  top: -104px;
  z-index: -1;
  width: 500px;
  height: 500px;
  border-radius: 500px;
  background-color: transparent;
  background-image: linear-gradient(261deg, #fff0f4, #fff);
}

.item-carousel {
  width: 300px;
  height: 200px;
  margin-right: 5px;
  margin-left: 5px;
  border-radius: 10px;
}

.foto {
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 10px;
  background-image: url("../images/amopromo5.jpg");
  background-position: 50% 50%;
  background-size: cover;
  opacity: 1;
}

.foto._1 {
  background-image: url("../images/amo-promo-1.webp");
  background-position: 0px 0px;
  background-size: 336px;
}

.foto._2 {
  background-image: url("../images/amo-promo-19.webp");
  background-position: 0px 0px;
  background-size: 315px;
}

.foto._3 {
  background-image: url("../images/amo-promo-3.webp");
  background-position: 50% 50%;
  background-size: 336px;
}

.foto._4 {
  background-image: url("../images/amo-promo-4.webp");
  background-position: 50% 50%;
  background-size: cover;
}

.foto._5 {
  background-image: url("../images/amo-promo-5.webp");
  background-position: 0px 0px;
  background-size: cover;
}

.foto._6 {
  background-image: url("../images/amo-promo-6.webp");
}

.foto._7 {
  background-image: url("../images/amo-promo-7.webp");
  background-size: 336px;
}

.foto._8 {
  background-image: url("../images/amo-promo-21.webp");
  background-size: 336px;
}

.foto._9 {
  background-image: url("../images/amo-promo-9.webp");
  background-size: 336px;
}

.foto._10 {
  background-image: url("../images/amo-promo-10.webp");
  background-position: 50% 50%;
  background-size: cover;
}

.foto._11 {
  background-image: url("../images/amo-promo-11.webp");
  background-position: 0px 0px;
  background-size: cover;
}

.foto._12 {
  background-image: url("../images/amo-promo-12.webp");
  background-position: 50% 50%;
  background-size: 336px;
}

.foto._13 {
  background-image: url("../images/amo-promo-13.webp");
  background-position: 0px 0px;
  background-size: cover;
}

.foto._14 {
  background-image: url("../images/amo-promo-14.webp");
  background-position: 50% 50%;
  background-size: cover;
}

.foto._15 {
  background-image: url("../images/amo-promo-20.webp");
  background-position: 0px 0px;
  background-size: 336px;
}

.foto._16 {
  background-image: url("../images/amo-promo-16.webp");
  background-position: 50% 50%;
  background-size: 315px;
}

.foto._17 {
  background-image: url("../images/amo-promo-17.webp");
  background-position: 0px 0px;
  background-size: 336px;
}

.foto._18 {
  background-image: url("../images/amo-promo-18.webp");
  background-position: 50% 50%;
  background-size: cover;
}

.foto._19 {
  background-image: url("../images/amo-promo-2.webp");
  background-position: 0px 0px;
  background-size: cover;
}

.foto._21 {
  background-image: url("../images/amo-promo-8.webp");
  background-position: 0px 0px;
  background-size: 336px;
}

.image-11 {
  margin-bottom: 0px;
}

#loading-message p {
  text-align: center;
}

.heading-marcas {
  margin-top: 30px;
  margin-bottom: 40px;
}

.heading-marcas.vdp {
  margin-right: 10px;
}

.utility-page-wrap {
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff0f4;
  font-family: Montserrat, sans-serif;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.utility-page-form {
  position: static;
  z-index: 9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  max-width: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.carousel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  justify-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.separador {
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 30px;
  background-color: #ccc;
}

.grid-2 {
  width: 100%;
}

.parceiros-tela-2 {
  position: relative;
  display: block;
  overflow: hidden;
  width: 160px;
  max-width: none;
  margin-top: 146px;
  margin-bottom: auto;
  margin-left: 0px;
  border-radius: 3px;
  box-shadow: 0 0 10px 4px rgba(0, 106, 177, 0.15);
}

.parceiros-tela-1 {
  position: relative;
  left: -40px;
  overflow: hidden;
  width: 190px;
  max-width: none;
  margin-top: -67px;
  margin-bottom: 0px;
  padding-top: 0px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-radius: 3px;
  box-shadow: 0 0 10px 4px rgba(0, 106, 177, 0.15);
}

.el-tela-1 {
  position: relative;
  left: -40px;
  overflow: hidden;
  width: 190px;
  max-width: none;
  margin-top: 99px;
  margin-bottom: 0px;
  padding-top: 0px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-radius: 3px;
  box-shadow: 0 0 10px 4px rgba(51, 121, 74, 0.15);
}

.el-tela-2 {
  position: relative;
  display: block;
  overflow: hidden;
  width: 160px;
  max-width: none;
  margin-top: -39px;
  margin-bottom: auto;
  margin-left: 0px;
  border-radius: 3px;
  box-shadow: 0 0 10px 4px rgba(51, 121, 74, 0.15);
}

.heading-15 {
  margin-bottom: 0px;
  color: #006ab1;
  font-size: 28px;
}

.wip {
  margin-top: 15px;
  margin-bottom: 40px;
  color: #2e2e2e;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}

.image-14 {
  width: 50px;
  max-width: 80%;
}

.body-3 {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#fff0f4),
    to(#fff)
  );
  background-image: linear-gradient(0deg, #fff0f4, #fff);
}

.error-message {
  margin-top: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #fa4475;
  border-radius: 10px;
  background-color: rgba(250, 68, 117, 0.14);
}

.rounded-1-4 {
  width: 470px;
  height: 470px;
  border-radius: 10px 520px 10px 10px;
  background-color: #f85c86;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(250, 68, 117, 0.61)),
    to(rgba(250, 68, 117, 0.61))
  );
  background-image: linear-gradient(
    180deg,
    rgba(250, 68, 117, 0.61),
    rgba(250, 68, 117, 0.61)
  );
}

.imgs-wrapper {
  height: auto;
}

.dots {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: -1;
  opacity: 1;
}

.image-16 {
  width: 155px;
  max-width: 110%;
}

.left-arrow {
  display: none;
}

.right-arrow {
  display: none;
}

.slide-nav {
  display: none;
}

.slide1 {
  border-radius: 10px;
  background-image: url("../images/amoensaio-1.jpg");
  background-position: 0px 0px;
  background-size: 450px;
}

.mask {
  border-radius: 10px;
}

.slider {
  position: absolute;
  top: 90px;
  right: 75px;
  width: 440px;
  margin-top: 0px;
  margin-right: 0px;
  border-radius: 10px;
  background-color: #006ab1;
  box-shadow: 0 0 10px 4px rgba(61, 61, 61, 0.25);
}

.slide2 {
  background-image: url("../images/amoensaio-2.jpg");
  background-position: 0px 0px;
  background-size: 450px;
}

.slide3 {
  background-image: url("../images/amoensaio-3.jpg");
  background-position: 0px 0px;
  background-size: 450px;
}

.slide4 {
  background-image: url("../images/amoensaio-4.jpg");
  background-position: 0px 0px;
  background-size: cover;
}

.slide5 {
  background-image: url("../images/amoensaio-5.jpg");
  background-position: 0px 0px;
  background-size: cover;
}

.heading-16 {
  color: #006ab1;
}

.div-block-22 {
  color: #2e2e2e;
}

.image-17 {
  max-width: 15%;
}

.depoimentos {
  width: 1200px;
  margin: 0 auto 100px;
}

@media (max-width: 1200px) {
  .depoimentos {
    width: 90%;
    margin: 0 auto 50px;
  }
}

.depoimentos .heading {
  text-align: center;
}

.box-depoimentos:nth-child(odd) {
  background-color: #edf6ff;
}

.box-depoimentos:nth-child(even) {
  background-color: #ffedf2;
}

.row-depoimentos {
  display: grid;
  position: relative;
  gap: 8px;
}

.icon-depoimentos {
  position: absolute;
  right: -10px;
  top: -40px;
  width: 80px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .icon-depoimentos {
    display: none;
  }
}

.box-depoimentos {
  padding: 1rem;
  border-radius: 8px;
}

.accordion {
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  width: 100%;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

.accordion img {
  object-fit: contain;
  width: 80px;
  height: 80px;
}

.accordion .name-depoimentos {
  color: #2e2e2e;
  margin: 0 0 5px 0;
  font-weight: 700;
  text-align: left;
}

.accordion .job-depoimentos {
  color: #2e2e2e;
  margin: 0;
  font-weight: 400;
  text-align: left;
}

.text-depoimentos {
  color: #373737;
  font-size: 16px;
  line-height: 26px;
  padding: 0 6em 0 0;
}

@media (max-width: 500px) {
  .text-depoimentos {
    padding: 0;
  }
}

.box-accordion {
  display: flex;
  gap: 15px;
  align-items: center;
}

.box-depoimentos svg {
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  padding: 9px;
  transition: 0.2s;
}

.box-depoimentos:hover svg {
  background: #2f649d;
  border: 1px solid #2f649d;
  fill: #fff;
  transition: 0.2s;
}

.box-depoimentos:hover path {
  fill: #fff;
  transition: 0.2s;
}

.panel {
  display: none;
  overflow: hidden;
}

.panel.show {
  display: block;
}

.arrow {
  transition: transform 0.3s;
}

.arrow.rotated {
  transform: rotate(180deg);
}

.noticias {
  width: 1200px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

@media (max-width: 1200px) {
  .noticias {
    width: 90%;
    padding: 0 20px 60px 20px;
    overflow: hidden;
    position: relative;
  }
}

@media (max-width: 500px) {
  .noticias {
    width: 100%;
  }
}

.pagination {
  position: relative;
  top: 3em;
  align-items: center;
  justify-content: space-between;
  display: none;
}

@media (max-width: 1200px) {
  .pagination {
    display: flex;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
}

.swiper-button-next,
.swiper-button-prev {
  width: 55px !important;
  height: 40px !important;
  color: #fff !important;
  background: #006ab1 30px;
  border-radius: 8px !important;
  position: relative !important;
}

.swiper-button-bullet {
  position: relative !important;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 23px !important;
  height: 8px !important;
  border-radius: 10px !important;
  color: #d9d9d9 !important;
  background: #d9d9d9 !important;
}

.swiper-pagination-bullet-active {
  width: 23px !important;
  height: 8px !important;
  border-radius: 10px !important;
  color: #2F649D !important;
  background: #2F649D !important;
}

.noticias .heading {
  text-align: center;
}

.box-noticias {
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fff;
}

.box-noticias .main-noticias {
  width: 100%;
  object-fit: cover;
  height: 190px;
  border-radius: 8px 8px 0 0;
}

.box-text-noticias {
  padding: 1rem;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box-text-noticias .marca-noticias {
  width: 200px;
  object-fit: contain;
  height: 35px;
}

.box-text-noticias h3 {
  margin: 10px 0;
  color: #373737;
  font-size: 18px;
  font-weight: 700;
}

.box-text-noticias p {
  color: #373737;
  font-size: 16px;
  line-height: 26px;
}

.box-text-noticias button {
  background: transparent;
  color: #2f649d;
  font-weight: 700;
  font-size: 16px;
  transition: 0.2s;
}

.box-text-noticias button:hover {
  color: #ff4a7b;
  transition: 0.2s;
}

.swiper-container {
  overflow: visible;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.duvidas {
  width: 1200px;
  background: #fff;
  margin: 0 auto 100px;
}

@media (max-width: 1200px) {
  .duvidas {
    width: 90%;
    margin: 0 auto 50px;
  }
}

.row-duvidas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 1200px) {
  .row-duvidas {
    grid-template-columns: 1fr;
  }
}

.box-duvidas {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.box-duvidas button {
  width: 100%;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #2e2e2e;
  font-weight: 700;
  height: 59px;
}

.box-duvidas button:hover {
  background: #edf6ff;
  border: 1px solid #2f649d;
}

.box-duvidas button.active {
  background: #edf6ff;
  border: 1px solid #2f649d;
}

@media (max-width: 1200px) {
  .box-duvidas button {
    background: #fff;
    border: 0px;
    padding: 0;
    text-align: left;
  }

  .box-duvidas button:hover {
    background: transparent;
    border: 0px;
  }

  .box-duvidas button.active {
    background: transparent;
    border: 0px;
  }

  .pergunta-mobile.active {
    background: #edf6ff;
    border: 1px solid #2f649d;
    padding: 1em;
    border-radius: 8px;
  }

  .pergunta-mobile {
    padding: 1em;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 8px;
  }
}

.desktop {
  display: grid;
}

.mobile {
  display: none;
}

@media (max-width: 1200px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}

.title-duvidas {
  color: #373737;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.desc-duvidas {
  color: #373737;
  font-size: 16px;
  line-height: 26px;
}

.instagram {
  width: 1200px;
  margin: 0 auto 50px;
}

@media (max-width: 1200px) {
  .instagram {
    width: 90%;
    margin: 0 auto 20px;
  }
}

.swiper-instagram {
  margin: 0 auto 100px;
}

@media (max-width: 1200px) {
  .swiper-instagram {
    width: 90%;
    margin: 0 auto 50px;
  }
}

.swiper-instagram img {
  border-radius: 8px;
  object-fit: cover;
  height: 300px !important;
}

.instagram .heading {
  text-align: center;
}

.instagram-button {
  text-align: center;
}

.instagram-button svg {
  width: 25px;
  fill: #ff4a7b;
  transition: 0.2s;
}

.instagram-button a {
  text-decoration: none;
}

.instagram-button button {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 30px;
  color: #ff4a7b;
  background: #ffedf2;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  height: 48px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  width: 350px;
  box-sizing: border-box;
  border: 1px solid #ff4a7b;
  justify-content: center;
  margin: auto;
  transition: 0.2s;
}

.instagram-button button:hover {
  background: #ff4a7b;
  color: #fff;
  transition: 0.2s;
}

.instagram-button button:hover svg {
  fill: #fff;
  transition: 0.2s;
}

@media (max-width: 500px) {
  .instagram-button button {
    width: 100%;
  }
}

.footer-main {
  background: #fff;
  border-top: 1px solid #d6d6d6;
}

@media screen and (max-width: 991px) {
  .marca1.vdp {
    margin-bottom: 30px;
  }
  .nav {
    width: auto;
    margin-right: 50px;
    margin-left: 50px;
  }
  .body {
    margin-right: 0px;
    margin-left: 0px;
  }
  .link {
    font-size: 14px;
  }
  .section-1 {
    width: 100%;
  }
  .section-1.home {
    width: auto;
    margin-right: 50px;
    margin-bottom: 100px;
    margin-left: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .heading {
    margin-right: auto;
    margin-left: 0px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .heading.hero-home {
    margin-top: 0px;
    margin-bottom: 40px;
    font-size: 42px;
    line-height: 48px;
  }
  .div-block-3 {
    width: auto;
    margin-right: 0px;
    padding-right: 0px;
    text-align: center;
  }
  .image-5.home {
    left: 117px;
    top: 299px;
    width: 50px;
    height: 50px;
  }
  .footer {
    width: auto;
    padding-right: 30px;
    padding-left: 30px;
  }
  .grid {
    -ms-grid-columns: 1.5fr 1fr 1fr;
    grid-template-columns: 1.5fr 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section.pp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .marcas-ilustra.pp {
    width: auto;
    padding-right: 0px;
  }
  .marcas-ilustra.sp {
    width: auto;
    padding-right: 0px;
  }
  .marcas-ilustra.parceiros {
    width: auto;
    margin-right: 60px;
  }
  .marcas-ilustra.vdp {
    width: auto;
  }
  .marcas-ilustra.el {
    width: auto;
    padding-right: 0px;
  }
  .marca1.pp {
    width: auto;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .marca1.sp {
    width: auto;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .marca1.el {
    width: auto;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .label-products {
    display: none;
    margin-top: 50px;
  }
  .label-products.mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .image-10 {
    margin-right: auto;
    margin-left: auto;
  }
  .sp-tela-1 {
    left: -80px;
  }
  .sp-tela-2 {
    left: -29px;
  }
  .carousel {
    margin-right: 0px;
    margin-left: 0px;
  }
  .rounded-1-4 {
    position: absolute;
    left: 136.406px;
    top: 201px;
    display: block;
    width: 170px;
    height: 170px;
    margin-top: 20px;
    margin-left: 309px;
  }
  .imgs-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    margin-top: 41px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .bold-text {
    line-height: 49px;
  }
  .image-15 {
    margin-bottom: 14px;
  }
  .slide1 {
    background-image: url("../images/amoensaio-1.jpg");
  }
  .slider {
    position: static;
    left: auto;
    top: 172px;
    right: 0%;
    bottom: 0%;
    width: 440px;
    height: 250px;
    margin-top: 32px;
    margin-right: auto;
    margin-left: auto;
  }
  .slide2 {
    background-image: url("../images/amoensaio-2.jpg");
    background-position: 0px 0px;
    background-size: cover;
  }
  .slide3 {
    background-image: url("../images/amoensaio-3.jpg");
    background-position: 50% 0%;
    background-size: 450px;
  }
  .slide4 {
    background-image: url("../images/amoensaio-4.jpg");
    background-position: 0px 0px;
    background-size: 450px;
  }
  .slide5 {
    background-image: url("../images/amoensaio-5.jpg");
    background-position: 0px 0px;
    background-size: cover;
  }
}

@media screen and (max-width: 800px) {
  .section-1 {
    width: auto;
    margin-right: 30px;
    margin-left: 30px;
  }
  .image-5.home {
    margin-top: 79px;
    margin-left: -138px;
  }
  .footer {
    margin-right: 50px;
    margin-left: 50px;
  }
  .grid {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 0px;
    padding-left: 0px;
    justify-items: center;
    -ms-grid-columns: 1.5fr 1fr 1fr;
    grid-template-columns: 1.5fr 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .div-block-7 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .text-footer {
    text-align: center;
  }
  .text-footer.azul {
    text-align: center;
  }
  .bola-verde {
    z-index: -1;
  }
  .section.pp {
    margin-bottom: 100px;
  }
  .marcas-ilustra.pp {
    padding-left: 31px;
  }
  .marcas-ilustra.sp {
    width: auto;
  }
  .marcas-ilustra.parceiros {
    width: auto;
    margin-right: 30px;
    padding-left: 28px;
  }
  .marcas-ilustra.el {
    width: auto;
  }
  .marca1.pp {
    margin-right: 30px;
  }
  .paragraph-4 {
    width: auto;
  }
  .div-block-15 {
    text-align: center;
  }
  .div-block-16 {
    text-align: center;
  }
  .rounded-1-4 {
    display: none;
    margin-top: 278px;
    margin-left: 195px;
  }
  .bold-text {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .decoration {
    display: none !important;
  }
  .nav {
    margin-right: 1em;
    margin-left: 1em;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .link-block {
    font-size: 12px;
    text-align: right;
  }
  .body {
    display: block;
    margin-right: 0px;
    margin-left: 0px;
  }
  .link {
    overflow: hidden;
  }
  .link.ultimio {
    font-size: 14px;
  }
  .link.edin {
    display: none;
    overflow: visible;
  }
  .section-1 {
    width: auto;
    margin: 50px 30px -97px;
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .section-1.home {
    max-width: none;
    margin: 50px auto 50px;
    padding-right: 1em;
    padding-left: 1em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .heading {
    width: auto;
    font-size: 24px;
    text-align: center;
    line-height: 38px;
    margin-bottom: 24px;
  }
  .heading.hero-home {
    font-size: 28px;
    text-align: left;
    margin-bottom: 10px;
  }
  .chip.mini {
    height: 25px;
  }
  .div-block-3 {
    width: auto;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    text-align: left;
  }
  .button.roxo {
    margin-bottom: 20px;
    background-color: transparent;
    color: #fa4475;
    font-size: 18px;
    text-align: center;
  }
  .button.roxo:hover {
    background-color: #fa4475;
    color: #fff;
  }
  .image-5 {
    position: absolute;
    left: 0%;
    top: 0%;
    right: auto;
    bottom: auto;
    z-index: 99;
    max-width: 80px;
    margin-bottom: -52px;
  }
  .image-5.home {
    left: 0%;
    top: 0%;
    right: auto;
    bottom: auto;
    margin-top: 359px;
    margin-left: 13px;
  }
  .heading-4 {
    font-size: 26px;
    line-height: 34px;
  }
  .footer {
    display: block;
    width: auto;
    max-width: none;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    padding-right: 30px;
    padding-left: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .grid {
    width: auto;
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    justify-items: center;
    grid-row-gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
    text-align: center;
  }
  .div-block-7 {
    width: 210px;
    margin-right: auto;
    margin-left: auto;
  }
  .text-footer {
    width: auto;
    margin-right: auto;
    margin-left: auto;
  }
  .columns {
    margin-top: -47px;
    margin-bottom: 86px;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .social {
    width: 20px;
    height: 20px;
    max-width: none;
    margin-right: 0px;
  }
  .titulo-footer {
    margin-bottom: 15px;
  }
  .social-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    margin-left: 5px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .social-icon.last {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bola-verde {
    bottom: -44px;
    opacity: 0.35;
  }
  .forma-roxa {
    left: -12%;
    top: -7%;
    right: auto;
    bottom: auto;
    opacity: 0.35;
  }
  .bola-azul {
    left: auto;
    top: 0%;
    right: -22%;
    bottom: auto;
  }
  .label {
    color: #fa4475;
  }
  .section {
    margin-bottom: 50px;
  }
  .marcas-ilustra {
    width: auto;
    height: 290px;
    padding-left: 71px;
  }
  .marcas-ilustra.pp {
    margin-right: 0px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .marcas-ilustra.sp {
    width: 100%;
    margin-left: 0px;
    padding-left: 17px;
  }
  .marcas-ilustra.parceiros {
    width: 100%;
  }
  .marcas-ilustra.el {
    width: 100%;
    margin-left: 0px;
    padding-left: 17px;
  }
  .marca1 {
    width: auto;
    margin-right: 0;
    margin-bottom: 0px;
    margin-left: 0;
  }
  .marca1.pp {
    width: auto;
    margin-right: 0;
    margin-bottom: 0px;
    margin-left: 0;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .marca1.sp {
    width: auto;
    margin-right: 0;
    margin-bottom: 0px;
    margin-left: 0;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .marca1.el {
    width: auto;
    margin-right: 30px;
    margin-bottom: 0px;
    margin-left: 30px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .marca1.vdp {
    width: auto;
    margin-right: 0;
    margin-bottom: 0px;
    margin-left: 0;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .depoimento {
    position: static;
    width: auto;
    right: 0px;
    height: auto;
    margin: 29px 30px 30px;
    padding-top: 20px;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .depoimento.sp {
    box-shadow: 0 0 10px 4px rgba(131, 175, 56, 0.15);
  }
  .depoimento.pp {
    margin-right: 30px;
    margin-left: 30px;
    box-shadow: 0 0 10px 4px rgba(0, 106, 177, 0.15);
  }
  .depoimento.parceiros {
    margin-right: 30px;
    margin-left: 30px;
    box-shadow: 0 0 10px 4px rgba(138, 102, 255, 0.15);
  }
  .depoimento.el {
    margin-right: 30px;
    margin-left: 30px;
    box-shadow: 0 0 10px 4px rgba(138, 102, 255, 0.15);
  }
  .depoimento.vdp {
    margin-right: 30px;
    margin-left: 30px;
    box-shadow: 0 0 10px 4px rgba(138, 102, 255, 0.15);
  }
  .pp-tela-1 {
    left: -15px;
  }
  .pp-tela-2 {
    left: 20px;
  }
  .credito-influencer {
    color: #737373;
  }
  .destaque-nome-marca {
    color: #006ab1;
    font-weight: 700;
  }
  .label-products {
    display: none;
  }
  .label-products.mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .image-10 {
    margin-top: 21px;
  }
  .ic-metrica {
    min-width: 30px;
  }
  .decoration.pp {
    left: 16px;
    top: 621px;
    right: 0%;
    bottom: 0%;
    background-color: #008aff;
    color: #006ab1;
  }
  .decoration.sp {
    left: auto;
    top: 571px;
    right: 8%;
    bottom: 0%;
  }
  .decoration.parceiros {
    left: 263px;
    top: auto;
    right: 0%;
    bottom: 301px;
  }
  .decoration.el {
    left: 263px;
    top: auto;
    right: 0%;
    bottom: 301px;
  }
  .sp-tela-2 {
    left: 11px;
  }
  .paragraph-4 {
    width: auto;
  }
  .bolota {
    left: -124px;
    top: -136px;
    width: 300px;
    height: 300px;
  }
  .item-carousel {
    position: relative;
    overflow: hidden;
    width: 300px;
    height: 200px;
  }
  .foto._1 {
    background-image: url("../images/amo-promo-1.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._2 {
    background-image: url("../images/amo-promo-19.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._3 {
    background-image: url("../images/amo-promo-3.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._4 {
    background-image: url("../images/amo-promo-4.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._5 {
    background-image: url("../images/amo-promo-5.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._6 {
    background-image: url("../images/amo-promo-6.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._7 {
    background-image: url("../images/amo-promo-7.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._8 {
    background-image: url("../images/amo-promo-21.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._9 {
    background-image: url("../images/amo-promo-9.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._10 {
    background-image: url("../images/amo-promo-10.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._11 {
    background-image: url("../images/amo-promo-11.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._12 {
    background-image: url("../images/amo-promo-12.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._13 {
    background-image: url("../images/amo-promo-13.webp");
    background-position: 0px 0px;
    background-size: cover;
  }

  .foto._14 {
    background-image: url("../images/amo-promo-14.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._15 {
    background-image: url("../images/amo-promo-20.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._16 {
    background-image: url("../images/amo-promo-16.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._17 {
    background-image: url("../images/amo-promo-17.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._18 {
    background-image: url("../images/amo-promo-18.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._19 {
    background-image: url("../images/amo-promo-2.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }

  .foto._21 {
    background-image: url("../images/amo-promo-8.webp");
    width: 100%;
    height: 100%;
    background-size: 300px;
  }
  .heading-marcas {
    font-size: 32px;
    line-height: 38px;
  }
  .utility-page-form {
    width: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .carousel {
    position: relative;
    overflow: hidden;
    width: auto;
    height: auto;
    margin-right: 0px;
    margin-left: 0px;
  }
  .separador {
    display: none;
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .social-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .grid-2 {
    margin-top: 24px;
  }
  .rounded-1-4 {
    display: none;
    width: 260px;
    height: 260px;
    margin-bottom: 36px;
    margin-left: 68px;
  }
  .imgs-wrapper {
    width: 100%;
    height: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
  }
  .dots {
    right: 0%;
  }
  .bold-text {
    line-height: 38px;
  }
  .image-16 {
    width: 140px;
  }
  .slide1 {
    background-image: url("../images/amoensaio-1.jpg");
    background-position: 50% 50%;
    background-size: cover;
  }
  .mask {
    overflow: hidden;
  }
  .slider {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: 16%;
    width: 100%;
    height: 200px;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
  }
  .slide2 {
    background-image: url("../images/amoensaio-2.jpg");
    background-size: cover;
  }
  .slide3 {
    background-image: url("../images/amoensaio-3.jpg");
    background-position: 50% 50%;
    background-size: cover;
  }
  .slide4 {
    background-image: url("../images/amoensaio-4.jpg");
    background-position: 50% 50%;
    background-size: cover;
  }
  .slide5 {
    background-image: url("../images/amoensaio-5.jpg");
  }
}

#w-node-47f938004959-38004957 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-47f93800496b-38004957 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-47f938004978-38004957 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-47f93800497a-38004957 {
  -ms-grid-column-align: end;
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-47f938004959-38004957 {
    -ms-grid-column-align: start;
    justify-self: start;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    -ms-grid-column-span: 3;
    grid-column-end: span 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-47f938004959-38004957 {
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 4;
    grid-column-start: span 4;
    -ms-grid-column-span: 4;
    grid-column-end: span 4;
  }
  #w-node-47f93800495a-38004957 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 4;
    grid-column-start: span 4;
    -ms-grid-column-span: 4;
    grid-column-end: span 4;
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-47f938004962-38004957 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 4;
    grid-column-start: span 4;
    -ms-grid-column-span: 4;
    grid-column-end: span 4;
  }
  #w-node-47f93800496b-38004957 {
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 4;
    grid-column-start: span 4;
    -ms-grid-column-span: 4;
    grid-column-end: span 4;
  }
}

@media screen and (max-width: 479px) {
  #w-node-47f938004959-38004957 {
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
  #w-node-47f93800495a-38004957 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-47f938004962-38004957 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-47f93800496b-38004957 {
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
  #w-node-47f938004978-38004957 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }
  #w-node-47f938004979-38004957 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-47f93800497a-38004957 {
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }
}
.gif-wrapper {
  position: absolute;
  top: 90px;
  right: 75px;
  width: 440px;
  margin-top: 0px;
  margin-right: 0px;
  border-radius: 10px;
}

.gif-wrapper img {
  border-radius: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  object-fit: fill;
}

.marcas-heading {
  position: relative;
  max-width: 95%;
  margin: 0 auto 25px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
}

@media (max-width: 1200px) {
  .marcas-heading {
    width: 90%;
  }
}

.marcas-heading h2 {
  width: auto !important;
}

.social-banner {
  margin: 10px 0;
}

.social-banner-mobile {
  display: none;
  margin: 10px 0;
  text-align: center;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.social-banner img,
.social-banner-mobile img {
  width: 40px !important;
  height: 30px !important;
}

@media screen and (max-width: 800px) {
  .gif-wrapper {
    position: static;
  }

  .gif-wrapper img {
    margin: 60px 0 0 0;
    height: auto;
  }

  .social-banner {
    display: none;
  }

  .social-banner-mobile {
    display: flex;
  }
}

@media screen and (max-width: 500px) {
  .gif-wrapper img {
    margin: 0 0 0 0;
  }
}
