/* NORMALIZE CSS */

html {
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-appearance: none;
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 75px;
}

*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

a {
  background-color: transparent;
  color: grey;
  font-weight: 450;
  cursor: pointer;
  text-align: center;
}

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  background-color: transparent;
  max-width: auto;
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

.cta-txt {
  font-size: 18px;
  line-height: 20px;
  padding: 15px 5px;
  color: white;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.boas-vindas {
  width: 100%;
  position: fixed;
  z-index: 50000;
  top: 0;
  left: 0;
  height: 5px;
  background: #2e2e2e;
}

/*CONFIG CSS*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: ease-in-out;
}

html,
body {
  min-height: 100%;
  position: relative;
}

body {
  background: #fafafa;
}

h1,
h2,
h3 {
  padding: 5px;
  margin: 0px;
}

p {
  color: rgb(43, 43, 43);
  display: block;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  font-size: 16px;
  font-weight: normal;
  margin: 10px;
  line-height: 1.6rem;
}

h1 {
  display: block;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  margin: 0 auto;
  font-size: 35px;
  font-weight: 700;
  line-height: 2.5rem;
  color: grey;
}

h2 {
  display: block;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5rem;
}

h3 {
  display: inline-block;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  margin: 5px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5rem;
  align-items: center;
  color: black;
}

a:hover {
  background: rgba(0, 0, 0, 0.05);
}

header {
  z-index: 20000;
  height: 90px;
  width: 100%;
  position: fixed;
  backdrop-filter: blur(1px);
  transition: ease-in-out .2s;
}

header.sticky {
  backdrop-filter: blur(10px);
  box-shadow: 2px 3px 50px rgb(0 0 0 / 11%);
  height: auto;
  margin-top: -15px;
  transition: ease-in-out .2s;
}

/*CRIADOR DE COLUNAS*/
.column-creator-justify-content {
  display: flex;
  justify-content: center;
}

.column-creator-100pp {
  margin: 0 auto;
  width: 100%;
}

.column-creator-550px {
  margin: 0 auto;
  max-width: 550px;
}

/* BUTTONS CSS */

.button-call {
  width: 300px;
  height: 75px;
  text-align: center;
  align-items: center;
  border-radius: 10px;
  border: none;
  background-color: #25d366;
  padding: 10px;
  margin: 5px auto;
  display: inline-flex;
  cursor: pointer;
  justify-content: center;
}

.button-call img {
  width: 30px;
  height: 30px;
  margin: 5px 0px;
}

.button-call a {
  color: #fff !important;
  font-size: 18px;
  line-height: 20px;
  padding: 15px 5px;
}

.button-elements {
  width: 300px;
  height: 150px;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  border-radius: 15px;
  border-top-style: none;
  border-left-style: none;
  border-right-style: none;
  border-bottom-style: dotted;
  border-color: #fff;
  background-color: transparent;
  padding: 0px 0 70px 0;
  margin: 15px 10%;
  display: inline-block;
  gap: 0.5rem;
  cursor: pointer;
  justify-content: center;
  flex-wrap: wrap;
}

.button-elements img {
  width: 75px;
  height: 75px;
  margin: 0px;
}

.button-elements a {
  font-size: 18px;
  line-height: 20px;
}

.button-medium {
  width: 300px;
  height: 65px;
  text-align: center;
  border-radius: 10px;
  background-color: #1769b0;
  padding: 20px;
  display: flex;
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: solid 1px #ffffff52;
}

.button-medium img {
  width: 60px;
  height: 60px;
  margin: 5px 0px;
}

.button-medium a {
  font-size: 15px;
  line-height: 20px;
  padding: 15px 5px;
  color: white;
}

.button-small {
  width: 300px;
  height: 45px;
  text-align: center;
  line-height: 15px;
  border-radius: 50px;
  padding: 0 0 0 30px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 7px;
  border: solid 2px #ffffff;
  background-color: #333333e0;
  color: white;
  font-weight: 450;
  box-shadow: rgba(73, 73, 73, 0.17) 0px -23px 25px 0px inset,
    rgba(90, 90, 90, 0.15) 0px -36px 30px 0px inset,
    rgba(75, 75, 75, 0.1) 0px -79px 40px 0px inset,
    rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
  animation: bounce .5s alternate infinite ease-in;
}

.button-large {
  max-width: 80%;
  height: 65px;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: solid 1px white;
  background-color: none;
}

.button-large a {
  color: white;
  font-weight: 700;
  font-size: 20px;
  margin: 20px;
}

.button-small img {

  margin: 0 10px 0 0;
}

.button-small a {
  font-size: 15px !important;
  line-height: 70px;
  padding: 15px 5px;
  font-weight: 700;
  color: white;
}

.button-social-media {
  width: 250px;
  height: 45px;
  text-align: center;
  border-radius: 10px;
  background-color: #e8e8e8;
  padding: 10px;
  display: flex;
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  border: solid 1px #ffffff52;
}

.button-social-media img {
  width: 30px;
  height: 30px;
  margin: 0px auto;
  padding-top: 8px;
}

.button-social-media a {
  font-size: 15px;
  line-height: 15px;
  padding: 15px 5px;
  color: rgb(75, 75, 75);
}

.button-model-card {
  width: 250px;
  height: 110px;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(49deg,
      rgba(0, 0, 0, 1) 27%,
      rgba(34, 34, 34, 1) 100%);
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin: 10px;
  border: solid 0.5px rgb(156, 156, 156);
}

.button-model-card img {
  width: auto;
  height: 35px;
  margin: 5px auto;
}

.button-model-card a {
  box-sizing: border-box;
  text-align: center;
  font-size: 15px;
  color: rgb(156, 156, 156);
}

.button-model-card p {
  box-sizing: border-box;
  text-align: center;
  font-size: 15px;
  line-height: 16px;
  padding: 0;
  margin: 0 0 20px 0;
  color: rgb(156, 156, 156);
}

.button-model-card:hover {
  background: linear-gradient(49deg,
      rgba(0, 0, 0, 1) 27%,
      rgba(34, 34, 34, 1) 100%);
  opacity: 100%;
}

.card-perfil {
  width: 80px;
  height: 30px;
  border: none 1px #f05323a8;
  background-color: transparent;
  cursor: pointer;
  margin: 10px 15px 0 0px;
}

.card-linkedin {
  width: 30px;
  height: 30px;
  border: none 1px #f05323a8;
  background-color: transparent;
  cursor: pointer;
  margin: 6px 15px 0px 0px;
}

.card-linkedin img {
  margin: 5px 0 0 0;
}

.scale:hover {
  transform: translateY(-10%);
  box-shadow: rgba(177, 177, 177, 0.17) 0px -23px 25px 0px inset,
    rgba(255, 255, 255, 0.15) 0px -36px 30px 0px inset,
    rgba(255, 255, 255, 0.1) 0px -79px 40px 0px inset,
    rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.shrink:hover {
  transform: scale(0.98);
  filter: brightness(90%) contrast(120%);
  color: white;
  /* background: #e84c19; */
  box-shadow: rgba(131, 131, 131, 0.17) 0px -23px 25px 0px inset,
    rgba(90, 90, 90, 0.048) 0px -36px 30px 0px inset,
    rgba(199, 199, 199, 0.1) 0px -79px 40px 0px inset,
    rgba(189, 189, 189, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.089) 0px 4px 2px,
    rgba(87, 87, 87, 0.267) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(139, 139, 139, 0.09) 0px 32px 16px;
}

.shrink:hover a {
  color: white;
  transition: all 0.3s ease;
  font-weight: 600;
}

.transition {
  transition: all 0.3s ease;
}

/*CTA CSS*/

.cta-simples {
  box-sizing: border-box;
  background-color: none;
  border: solid 1px rgb(236 234 234);
  text-align: center;
  align-items: center;
  border-radius: 10px;
  padding: 10px;
  justify-content: center;
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.cta {
  box-sizing: border-box;
  background-color: rgb(245 245 245);
  text-align: center;
  align-items: center;
  border-radius: 30px;
  padding: 10px;
  margin: 30px !important;
  border: solid 1px white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.cta img {
  width: 500px;
  margin: 0 auto;
}

.cta-hero {
  box-sizing: border-box;
  margin: 5px;
  text-align: center;
  align-items: center;
  border-radius: 10px;
  padding: 5px;
  align-content: center;
  height: 160px;
  background-color: rgb(214, 214, 214);
}

.cta-hero-min {
  display: none;
  text-align: center;
  margin-top: -100px;
}

/* CUSTOM CSS */
.custom-mark {
  list-style: outside disclosure-closed;
  color: rgb(83, 83, 83);
  margin-left: 30px;
}

.custom-img {
  max-width: 500px;
  padding: 10px;
  margin: auto !important;
  box-sizing: border-box;
}

.custom-img-over {
  max-width: 120%;
  box-sizing: border-box;
  padding: 5px;
  margin-top: -150px;
  margin-left: -82px;
  margin-bottom: -100px;
  overflow: hidden;
  display: flex;
}

.custom-solucoes {
  max-width: 120px;
  margin: 20px auto;
  box-sizing: border-box;
}

.custom-img-soft-light {
  max-width: 500px;
  margin: auto !important;
  box-sizing: border-box;
  mix-blend-mode: soft-light;
}

.custom-img-overlay {
  max-width: 500px;
  margin: auto !important;
  box-sizing: border-box;
  mix-blend-mode: overlay;
}

.custom-backgound {
  background-color: #e84c19;
  padding: 50px 0 50px 0;
}

.custom-backgound-02 {
  background-color: #d49d06;
  padding: 50px 0 50px 0;
}

/* FOOTER CSS */
footer {
  /* margin-top: 100px; */
  bottom: 0;
  padding: 100px 0px 50px 0px;
  width: 100%;
  height: auto;
  background-color: #e9e9e9;
  text-align: center;
}

.cta-2 {
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  text-align: center;
  align-items: center;
  border-radius: 10px;
  padding: 1rem;
  justify-content: center;
}

.disclaimer {
  line-height: 24px;
  font-size: 12px;
}

.disclaimer-2 {
  line-height: 20px;
  font-size: 12px;
}

.copy {
  padding: 20px;
  line-height: 1rem;
  font-size: 12px;
  bottom: 0;
  margin: 0 auto;
  text-align: center;
}

/* IMAGENS CSS */
img {
  max-width: 100%;
  display: inline-flex;
}

.img-taxas {
  width: 230px;
  height: 230px;
  padding: 5px;
  margin: 5px;
  align-items: center;
}

.img-cta-livre {
  width: 65px;
  height: 65px;
  padding: 5px;
  margin: 15px 0 -20px 0;
  align-items: center;
  border-radius: 50px;
  border: solid 3px #e84c19;
  /* background-color: #fafafa ; */
}

.icon {
  width: 75px;
  height: 75px;
  padding: 5px;
  align-items: center;
  margin: 0 50%;
}

.icon-medium {
  width: auto;
  height: 55px;
  padding: 5px;
  align-items: center;
  margin: 0 50%;
}

.img-iphones {
  width: 250px;
  height: auto;
  align-items: center;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0)
  }

  50% {
    transform: translatey(10px)
  }
}

.icon-min {
  width: 43px;
  height: 43px;
  padding: 5px;
  align-items: center;
}

.icon-social-media {
  width: 39px;
  height: 39px;
  padding: 5px;
  margin: 30px 10px;
  align-items: center;
  border: solid 1px rgb(187, 187, 187);
  border-radius: 50px;
}

.icon-gps {
  width: 65px;
  height: 65px;
  padding: 5px;
  margin: 30px 10px;
  align-items: center;
  border: solid 1px rgb(187, 187, 187);
  border-radius: 50px;
}

.icon-menu {
  width: 30px;
  height: 30px;
  padding: 5px;
  margin: -5px auto;
}

.elements {
  width: 300px;
  height: 150px;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  border-radius: 20px;
  border-bottom: dotted 2px rgb(168, 168, 168);
  background-color: none;
  padding: 10px;
  margin: 15px 10%;
  display: inline-block;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.elements img {
  width: 50px;
  height: 50px;
  margin: 5px 0px;
  flex-wrap: wrap;
  display: inline-block;
}

.bg-img-01 {
  margin: 0;
  padding: 0;
  width: 50%;
  height: auto;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 95%;
  filter: contrast(1.5);
  background: url("../assets/imagens/052.png");
}

.logo-assinatura {
  width: 45px;
  height: 12px;
  margin-bottom: -3px;
}

.phone {
  width: 80px;
  height: 30px;
  background-color: transparent;
  margin: 6px -20px 0 0px;
}

/* LAZY-LOAD CSS */
.lazy-img {
  align-items: center;
}

.lazy-img img {
  opacity: 0;
}

.lazy-img img.loaded {
  opacity: 1;
  transition: opacity 2s;
}

/* LOADER CSS */
.loader {
  position: fixed;
  z-index: 10000000000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: whitesmoke;
  opacity: 95%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.loader img {
  z-index: 10000000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  opacity: 50;
  mix-blend-mode: multiply;
}

.loaderhidden {
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
  display: none !important;
}

@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* MENU CSS */
.logo {
  width: 230px;
  height: 60px;
  box-sizing: border-box;
  margin: 15px 0px 5px 0px;
  padding: 3px;
  /* filter: contrast(2) opacity(0.9); */
  /* filter: brightness(100); */
}

.logo-footer {
  width: 100%;
  height: 70px;
  box-sizing: border-box;
  margin: 10px 0px;
  padding: 3px;
  filter: contrast(2) opacity(0.9);
}

.navbar {
  max-width: 1200px;
  padding: 5px 0 0 0;
  width: 100%;
  position: fixed;
  z-index: 200;
}

.navbar ul {
  margin: 0;
  padding: 0px;
  list-style: none;
  box-sizing: border-box;
  float: right;
}

.navbar li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
  align-items: baseline !important;
}

.navbar a {
  color: #e84c19;
  font-size: 15px;
  padding: 2px 10px;
  margin: 0;
}

.navbar a.active,
a:hover {
  background: none;
  transition: 0.5s ease-in-out;
}

.checkbtn {
  float: right;
  line-height: 80px;
  margin-right: 0px;
  cursor: pointer;
  display: none;
  padding: 42px 20px;
}

#check {
  display: none;
}

.bg-nav {
  background-color: #f05323;
}

@media (max-width: 1215px) {
  .hide {
    display: block !important;
  }

  .navbar {
    z-index: 10;
  }

  .checkbtn {
    display: block;
  }

  .navbar ul {
    position: relative;
    margin-top: -21px;
    width: 100%;
    height: auto;
    background: white;
    filter: opacity(0.99);
    text-align: center;
    transition: all 0.5s;
    z-index: -1;
    border-bottom: solid 3px rgb(175, 173, 173);
    display: none;
    font-weight: 900;
  }

  .navbar li {
    display: block;
    margin: 50px;
    line-height: 30px;
  }

  .navbar a {
    font-size: 20px;
  }

  .navbar a.active,
  a:hover {
    background: none;
  }

  #hamburger {
    position: relative;
    display: block;
    background: #f05323;
    width: 30px;
    height: 3px;
    transition: 0.3s ease-in-out;
  }

  #hamburger:before,
  #hamburger:after {
    background: #f05323;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.3s ease-in;
  }

  #hamburger:before {
    top: -10px;
  }

  #hamburger:after {
    bottom: -10px;
  }

  #check:checked~label #hamburger {
    transform: rotate(45deg);
  }

  #check:checked~label #hamburger:before {
    transform: rotate(270deg);
    top: 0;
  }

  #check:checked~label #hamburger:after {
    transform: rotate(180deg);
    bottom: 0;
  }

  #check:checked~ul {
    top: 0;
    opacity: 100;
    z-index: -1;
    padding-top: 0px;
    display: block;
  }
}

/* SECTION CSS */

.flex {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.box-color-bg {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  background-color: #e84c19;
  border: solid 5px white;
  border-radius: 25px;
}

.min-box-color-bg {
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
  padding: 12px;
  justify-content: center;
  background-color: #d3d3d31f;
  border: solid 5px white;
  border-radius: 20px;
}

.imagem-empresa {
  border-radius: 20px;
  padding: 12px;
}

.flex-modal {
  display: block;
  flex-wrap: wrap;
  width: 100%;
}

.justify {
  justify-content: space-evenly;
}

.flex-mobile {
  flex-direction: column;
}

.flex>div {
  flex: 1 350px;
  margin: 30px 5px 30px 5px;
  /* NÃO PODE COLOCAR PADDING AQUI */
}

.flex-min {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.flex-min>div {
  flex: 1 100px;
  margin: 20px;
  /* NÃO PODE COLOCAR PADDING AQUI */
}

@media (max-width: 950px) {
  .flex-min>div {
    flex: 1 300px;
    margin: 20px;
    /* NÃO PODE COLOCAR PADDING AQUI */
  }
}

/* SPLIT CSS */
.split-simple {
  max-width: 95%;
  margin-bottom: 90px;
  margin-right: auto;
  margin-left: auto;
  opacity: 0.1;
}

.split-medium {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0.2;
}

.split-hard {
  max-width: 1200px;
  margin: 50px auto;
  opacity: 0.3;
}

/* TITLES CSS */
.title-decoration {
  color: #f05323;
  border-bottom: 1px solid #42403f;
  width: 95%;
  margin: 50px 5px 10px 15px;
  text-align: left;
  padding: 15px;
}

.title-simple {
  text-align: center;
}

.card-text {
  text-align: justify;
  font-size: 14px;
}

.font-color-blue {
  color: #f05323;
}

.font-color-white {
  color: #fff;
  text-decoration: none;
}

.font-color-site {
  color: rgb(43, 43, 43);
  text-decoration: none;
}

.align-center {
  text-align: center;
  align-items: center;
  margin: 0 auto;
}

.align-center-title {
  text-align: center;
  align-items: center;
  padding: 15px;
}

.align-justify {
  text-align: justify;
}

.subtitle {
  width: 100%;
  margin-top: -20px;
  margin-left: 30px;
  margin-bottom: 30px;
  color: grey;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: normal;
}

.subtitle-cards {
  width: 100%;
  margin-top: -20px;
  margin-left: 0px;
  margin-bottom: 0px;
  color: grey;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: normal;
}

.subtitle-box-color {

  margin-left: 30px;
  margin-right: 10px;
  margin-bottom: 30px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: normal;
}

/* MEDIA QUERIES CSS */

@media (max-width: 1150px) {
  .navbar {
    justify-content: center;
  }

  .logo {
    justify-content: center;
    max-width: 200px;
    height: 60px;
  }

  .cta-simples {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .cta-hero {
    display: none;
  }

  .cta-hero-min {
    display: block;
  }

  .split-simple {
    display: none;
  }

  .flex {
    flex-wrap: wrap;
  }
}

/* ACCORDION CSS */
details {
  position: relative;
  z-index: 10;
  margin: 10px;
  text-align: center;
  align-items: center;
  border-radius: 0px;
  max-width: 600px;
  cursor: pointer;
}

summary::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  color: transparent;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  text-align-last: start !important;
}

summary::-webkit-details-marker {
  display: none !important;
}

summary::before {
  content: "»";
  position: absolute;
  top: 20px;
  left: 55px;
  transform: rotate(0);
  transform-origin: center;
  transition: 0.2s transform ease;
}

details[open]>summary:before {
  transform: rotate(90deg);
  transition: 0.45s transform ease;
}

/* # The Sliding Summary # */
details {
  overflow: hidden;
}

details summary {
  position: relative;
  z-index: 10;
  margin: 0px;
  padding: 20px;
  text-align: center;
  align-items: center;
  justify-content: space-around;
  border: solid 1px #c1c1c1;
  background-color: rgb(248, 248, 248);
  border-radius: 10px;
  max-width: 700px;
}

@keyframes details-show {
  from {
    margin-bottom: -80%;
    opacity: 0;
    transform: translateY(-100%);
  }
}

details>*:not(summary) {
  animation: details-show 500ms ease-in-out;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  color: transparent;
  overflow: hidden;
}

details[open]>*:not(summary) {
  color: inherit;
}

/*DISPLAY CARD*/
.show-form {
  display: none;
}

#show-01 {
  display: none;
  margin: 10px;
}

#show-01:checked~.show-form {
  display: block;
  opacity: 0;
  transform: translateY(1rem);
  animation: slideUp 0.5s forwards;
  height: 339px;
}

#show-01:checked~.show-img {
  display: none;
  opacity: 0;
}

#show-02 {
  display: none;
  margin: 10px;
}

#show-02:checked~.show-form {
  display: block;
  opacity: 0;
  transform: translateY(1rem);
  animation: slideUp 0.5s forwards;
  height: 339px;
}

#show-02:checked~.show-img {
  display: none;
  opacity: 0;
}

#show-03 {
  display: none;
  margin: 10px;
}

#show-03:checked~.show-form {
  display: block;
  opacity: 0;
  transform: translateY(1rem);
  animation: slideUp 0.5s forwards;
  height: 339px;
}

#show-03:checked~.show-img {
  display: none;
  opacity: 0;
}

#show-04 {
  display: none;
  margin: 10px;
}

#show-04:checked~.show-form {
  display: block;
  opacity: 0;
  transform: translateY(1rem);
  animation: slideUp 0.5s forwards;
  height: 339px;
}

#show-04:checked~.show-img {
  display: none;
  opacity: 0;
}

#show-05 {
  display: none;
  margin: 10px;
}

#show-05:checked~.show-form {
  display: block;
  opacity: 0;
  transform: translateY(1rem);
  animation: slideUp 0.5s forwards;
  height: 339px;
}

#show-05:checked~.show-img {
  display: none;
  opacity: 0;
}

#show-06 {
  display: none;
  margin: 10px;
}

#show-06:checked~.show-form {
  display: block;
  opacity: 0;
  transform: translateY(1rem);
  animation: slideUp 0.5s forwards;
  height: 339px;
}

#show-06:checked~.show-img {
  display: none;
  opacity: 0;
}

/* Animação */

[data-anime] {
  opacity: 0;
  transition: all .4s ease 0s;
}

[data-anime="top"] {
  transform: translate3d(0, -100px, 0);
}

[data-anime="bottom"] {
  transform: translate3d(0, 300px, 0);
}

[data-anime="left"] {
  transform: translate3d(-20px, 0, 0);
}

[data-anime="right"] {
  transform: translate3d(20px, 0, 0);
}

[data-anime].animate {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

[data-anime-delay="100"] {
  transition-delay: 0.1s;
}

[data-anime-delay="300"] {
  transition-delay: 0.3s;
}

[data-anime-delay="350"] {
  transition-delay: 0.5s;
}

.button-cta-top {
  width: 300px;
  height: 65px;
  text-align: center;
  border-radius: 50px;
  border: none;
  background-color: #25d366;
  padding: 10px;
  display: flex;
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  animation: bounce 0.5s alternate infinite ease-in;
}

.button-cta-top img {
  width: 30px;
  height: 30px;
  margin: 5px 0px;
}

.button-cta-top a {
  font-size: 18px;
  line-height: 20px;
  padding: 15px 5px;
  color: white;
}

.button-cta-wpp {
  width: 290px;
  max-width: 350px;
  height: 65px;
  text-align: center;
  border-radius: 50px;
  border: none;
  background-color: #25d366;
  padding: 10px;
  display: flex;
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-evenly;
  margin: 10px auto;
}

.button-cta-insta {
  width: 290px;
  max-width: 350px;
  height: 65px;
  text-align: center;
  border-radius: 50px;
  border: none;
  background: rgb(131, 58, 180);
  background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  padding: 10px;
  display: flex;
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-evenly;
  margin: 10px auto;
}

.button-cta-site {
  width: 290px;
  max-width: 350px;
  height: 65px;
  text-align: center;
  border-radius: 50px;
  border: none;
  background: #1332e2;
  background: linear-gradient(293deg, rgba(0, 146, 255, 1) 17%, #1332e2 100%);
  padding: 10px 25px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-evenly;
  margin: 10px auto;
}

.button-cta-footer img {
  width: 30px;
  height: 30px;
  margin: 5px 0px;
}

.button-cta-footer a {
  font-size: 19px;
  line-height: 20px;
  padding: 15px 5px;
  color: white;
}

.button-cta img {
  width: 30px;
  height: 30px;
  margin: 5px 0px;
}

.button-cta a {
  font-size: 18px;
  line-height: 20px;
  padding: 15px 5px;
  color: white;
}

@media screen and (min-width: 701px) {
  @keyframes bounce {
    0% {
      transform: scale(1);
    }

    100% {
      transform: scale(1.1);
    }
  }

  h1 {
    display: inline-block;
  }
}

@media screen and (max-width: 700px) {
  @keyframes bounce {
    0% {
      transform: scale(1);
    }

    100% {
      transform: scale(1.1);
    }
  }
}

.button-cta-top :hover {
  background-color: transparent;
}

.grow {
  transition: all 0.2s ease-in-out;
}

.grow:hover {
  transform: scale(1.1);
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.grow-banner:hover {
  transition: all .3s ease 0s;
  transform: scale(1.05);
}

.banner-produtos {
  z-index: 100000;
}

.icone {
  width: 50px;
}

@media (max-width: 800px) {
  h2 {
    text-align: center;
    line-height: 27px;
  }
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: rgb(204, 204, 204);
}

#voltaraotopo {
  position: fixed;
  font-size: 25px;
  font-style: normal;
  color: #3f3f3f52;
  text-align: center;
  border-radius: 5px;
  background-color: #f5f5f5;
  padding: 1px;
  margin: 5px;
  width: 40px;
  height: 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#voltaraotopo:after {
  top: 1px;
  left: 8px;
  content: "▲";
  position: absolute;
  text-align: center;
}

.cta-fixo-01 {
  z-index: 100;
  cursor: pointer;
  position: fixed;
  bottom: 45px;
  right: 5px;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  color: white;
  text-align: center;
  border-radius: 50px;
  background-color: #07bc4c;
  padding: 10px;
  margin: 7px 5px;
  width: 40px;
  height: 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.cta-fixo-02 {
  z-index: 100;
  cursor: pointer;
  position: fixed;
  bottom: 85px;
  right: 5px;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  color: white;
  text-align: center;
  border-radius: 50px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  padding: 10px;
  margin: 10px 5px;
  width: 40px;
  height: 40px;
  box-shadow: rgba(179, 179, 179, 0.24) 0px 3px 8px;
}

.cta-fixo-01:hover {
  transform: scale(1.1);
}

.cta-fixo-02:hover {
  transform: scale(1.1);
}

#alertbar {
  background: black;
}

.msg {
  color: #ffffff;
  font-size: 14px;
}

.user-section {
  color: #ffffff;
  font-size: 14px;
}

.titling {
  color: #ffffff;
  font-size: 15px;
}

.relative {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 300px;
}

#alertbar {
  width: 100%;
  position: fixed;
  z-index: 50000;
  top: 0;
  left: 0;
  height: 25px;
  animation: bar-slide 10s infinite;
  transition: all 800ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  overflow: hidden;
  transform: translateY(-1250px);
}

.titling {
  width: 100%;
  text-align: center;
  padding: 5px 20px 5px 20px;
  font-weight: 600;
  position: fixed;
  z-index: 999;
  animation: titling-slide 10s infinite;
  animation-delay: 1.4s;
  transition: all 800ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.user-section {
  width: 100%;
  margin: auto;
  padding: 2px 20px 2px 20px;
  text-align: center;
  line-height: 12px;
  height: 30px;
  position: fixed;
  display: flex;
  justify-content: center;
  flex-direction: column;
  right: -1900px;
  animation: slanted-slide 10s infinite;
  animation-delay: 1s;
}

.alert-img-animar {
  display: inline-block;
  animation: icon 10s ease infinite;
  transform: scale(0) rotate(-45deg);
  animation-delay: 500ms;
}

.alert-img {
  width: 15px;
  height: 15px;
  margin: 0px 20px;
}

@keyframes icon {
  0% {
    transform: scale(0) rotate(-45deg);
  }

  3% {
    transform: scale(1.5) rotate(15deg);
  }

  8% {
    transform: scale(1.2) rotate(0deg);
  }

  88% {
    transform: scale(1.2) rotate(0deg);
  }

  93% {
    transform: scale(1.5) rotate(15deg);
  }

  98% {
    transform: scale(0) rotate(-45deg);
  }
}

@keyframes bar-slide {
  0% {
    transform: translateY(-100px);
  }

  10% {
    transform: translateY(0px);
  }

  85% {
    transform: translateY(0px);
  }

  95% {
    transform: translateY(-100px);
  }
}

@keyframes slanted-slide {
  0% {
    right: -1900px;
  }

  15% {
    right: 20px;
  }

  20% {
    right: 0px;
  }

  85% {
    right: 0px;
  }

  100% {
    right: -1900px;
  }
}

@keyframes titling-slide {
  2% {
    transform: translateX(0px);
  }

  12% {
    transform: translateX(-1920px);
  }

  14% {
    transform: translateX(-1920px);
  }

  82% {
    transform: translateX(-1920px);
  }

  92% {
    transform: translateX(0px);
  }
}

.accordion-elegant {
  margin: auto;
  width: 600px;
}

.accordion-elegant input {
  display: none;
}

@media (max-width: 650px) {
  .accordion-elegant {
    margin: auto;
    width: 320px;
  }
}

.box {
  position: relative;
  background: white;
  height: 64px;
  transition: all 0.15s ease-in-out;
}

.box::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px rgba(0, 0, 0, 0.12),
    0 2px 4px rgba(63, 63, 63, 0.164);
}

/* header.box {
  background: #00bcd4;
  z-index: 100;
  cursor: initial;
  box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px -2px rgba(0, 0, 0, 0.12),
    0 2px 4px -4px rgba(0, 0, 0, 0.24);
}
header .box-title {
  margin: 0;
  font-weight: normal;
  font-size: 16pt;
  color: #fafafa;
  cursor: initial;
} */
.box-title {
  width: calc(100% - 40px);
  height: 64px;
  line-height: 64px;
  padding: 0 20px;
  display: inline-block;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.box-content {
  width: calc(100% - 40px);
  padding: 30px 20px;
  font-size: 11pt;
  color: rgba(0, 0, 0, 0.54);
  display: none;
}

.box-close {
  position: absolute;
  height: 64px;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

input:checked+.box {
  height: auto;
  margin: 16px 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.062), 0 6px 12px rgba(0, 0, 0, 0.068);
}

input:checked+.box .box-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

input:checked+.box .box-content,
input:checked+.box .box-close {
  display: inline-block;
}

.arrows section .box-title {
  padding-left: 44px;
  width: calc(100% - 64px);
}

.arrows section .box-title:before {
  position: absolute;
  display: block;
  content: "\203a";
  font-size: 18pt;
  left: 20px;
  top: -2px;
  transition: transform 0.15s ease-in-out;
  color: rgba(0, 0, 0, 0.54);
}

input:checked+section.box .box-title:before {
  transform: rotate(90deg);
}

/* =========================================================== */

#nav-icon1,
#nav-icon2,
#nav-icon3,
#nav-icon4 {
  width: 60px;
  height: 45px;
  position: relative;
  margin: 50px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span,
#nav-icon3 span,
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #d3531a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 18px;
}

#nav-icon3 span:nth-child(4) {
  top: 36px;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.aneps {
  color: grey;
  font-size: 11px;
  line-height: 14px;
  padding: 10px;
  border: solid 0.5px rgb(187, 187, 187);
  border-radius: 10px;
}

.circular {
  padding: 10px;
  margin: auto;
  border-radius: 100%;
  border: solid 1px #e6e6e6;
  width: 200px;
  height: 200px;
  overflow: hidden;
}

/* ================================================================ */

.slider-brands {
  /* background: white; */
  /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125); */
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 960px;
}

.slider-brands::before,
.slider-brands::after {
  background: linear-gradient(to right, #fafafa 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 50px;
  z-index: 2;
}

.slider-brands::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider-brands::before {
  left: 0;
  top: 0;
}

.slider-brands .slide-track {
  -webkit-animation: scroll 15s linear infinite;
  animation: scroll 15s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slider-brands .slide-brand {
  height: 100px;
  width: 250px;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

/* =============================================== */

/* QUARTO MODELO DE SLIDES [slide-004]*/

.slide {
  width: 100%;
  margin: 0 auto;
  display: grid;
}

.slides-itens {
  position: relative;
  grid-area: 1/1;
  border-radius: 0px;
  margin-top: 90px;
}

.slider-b {
  width: 100%;
  height: auto;
  grid-area: 1/1;
  z-index: 1;
  display: grid;
}

.slide_viewer {
  height: 600px;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
  width: 100%;
  left: 0;
}

.slide_group {
  height: 100%;
  position: relative;
  width: 100%;
}

.slide-m {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
}

.slide-m:first-child {
  display: block;
}

.slide_buttons {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 550px;
}

a.slide_btn {
  color: #474544;
  font-size: 42px;
  margin: 0 0.175em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slide_btn.active,
.slide_btn:hover {
  color: #e84c19;
  cursor: pointer;
}

.directional_nav {
  margin: 0 auto;
  position: relative;
  top: -350px;
}

.previous_btn {
  bottom: 0;
  left: 15px;
  margin: auto;
  position: absolute;
  top: 0;
}

.next_btn {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 15px;
  top: 0;
}

.previous_btn,
.next_btn {
  cursor: pointer;
  height: 65px;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: 65px;
  display: flex;
  justify-content: center;
}

.previous_btn:hover,
.next_btn:hover {
  opacity: 1;
}

@media (max-width: 1700px) {
  .slide img {
    display: block;
  }

  .slide_viewer {
    height: 500px;
  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -200px;
  }

  .slide_buttons {
    top: 450px;
  }
}

@media (max-width: 1550px) {
  .slide img {
    display: block;
  }

  .slide_viewer {
    height: 450px;
    margin-top: 10px;
  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -200px;
  }

  .slide_buttons {
    top: 350px;
  }
}

@media (max-width: 1400px) {
  .slide img {
    display: block;
  }

  .slide_viewer {
    height: 400px;
    margin-top: 10px;
  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -200px;
  }

  .slide_buttons {
    top: 350px;
  }
}

@media (max-width: 1130px) {
  .slide img {
    max-width: 120%;
    display: block;
    transform: translateX(-9%);

  }

  .slide_viewer {
    height: 400px;
    margin-top: 10px;
  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -200px;
  }

  .slide_buttons {
    top: 350px;
  }
}

@media (max-width: 1118px) {
  .slide img {
    max-width: 120%;
    display: block;
    transform: translateX(-9%);

  }

  .slide_viewer {
    height: 400px;
    margin-top: 70px;
  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -200px;
  }

  .slide_buttons {
    top: 350px;
  }
}

@media (max-width: 1064px) {
  .slide img {
    max-width: 120%;
    display: block;
    transform: translateX(-9%);

  }

  .slide_viewer {
    height: 400px;
    margin-top: 10px;
  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -200px;
  }

  .slide_buttons {
    top: 350px;
  }
}

@media (max-width: 950px) {
  .slide {
    width: 98vw;
  }

  .slider-b {
    width: 98vw;
  }

  .slide img {
    max-width: 130%;
    display: block;
    transform: translateX(-9%);

  }

  .slide_viewer {
    width: 98vw;
    height: 350px;
    margin-top: 10px;
  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -200px;
  }

  .slide_buttons {
    top: 300px;
  }
}

@media (max-width: 800px) {
  .slide {
    width: 98vw;
  }

  .slider-b {
    width: 98vw;
  }

  .slide img {
    max-width: 170%;
    display: block;
    transform: translateX(-20%);
  }

  .slide_viewer {
    width: 98vw;
    height: 400px;
    margin-top: 50px;
  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -200px;
  }

  .slide_buttons {
    top: 390px;
  }
}

@media (max-width: 650px) {
  .slide {
    width: 98vw;
  }

  .slider-b {
    width: 98vw;
  }

  .slide img {
    max-width: 170%;
    display: block;
  }

  .slide_viewer {
    width: 98vw;
    height: 350px;
    transform: translateX(3%);
  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -200px;
  }

  .slide_buttons {
    top: 350px;
  }
}

@media (max-width: 550px) {
  .slide {
    width: 98vw;
  }

  .slider-b {
    width: 98vw;
  }

  .slide img {
    max-width: 170%;
    display: block;
  }

  .slide_viewer {
    width: 98vw;
    height: 300px;
    transform: translateX(2%);
  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -150px;
  }

  .slide_buttons {
    top: 300px;
  }
}

@media (max-width: 500px) {
  .slide {
    width: 98vw;
  }

  .slider-b {
    width: 98vw;
  }

  .slide img {
    max-width: 170%;
    display: block;
  }

  .slide_viewer {
    width: 98vw;
    height: 250px;
    transform: translateX(1%);
  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -150px;
  }

  .slide_buttons {
    top: 250px;
  }
}

@media (max-width: 450px) {
  .slide {
    width: 98vw;
  }

  .slider-b {
    width: 98vw;
  }

  .slide img {
    max-width: 170%;
    display: block;
  }

  .slide_viewer {
    width: 98vw;
    height: 300px;
    transform: translateX(-0.2%);

  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -175px;
  }

  .slide_buttons {
    top: 300px;
  }
}

@media (max-width: 375px) {
  .slide {
    width: 98vw;
  }

  .slider-b {
    width: 98vw;
  }

  .slide img {
    /* max-width: 160%; */
    display: block;
    overflow: hidden;
  }

  .slide_viewer {
    width: 98vw;
    height: 300px;
    transform: translateX(-0.2%);

  }

  .directional_nav {
    margin: 0 auto;
    position: relative;
    top: -200px;
  }

  .slide_buttons {
    top: 250px;
  }
}

/* =================================================== */

.product-detail {
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.product-gamer-detail {
  position: relative;
  bottom: 100px;
}

/* =================================================== */

.text-area-cta {
  max-width: 90%;
  height: 65px;
  border-radius: 10px;
  background-color: white;
  border: solid 5px #f5f5f5;
  gap: 20px;
}

/* =================================================== */
/* MODAL STYLES */

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 99999;
  /* Sit on top */
  padding-top: 15px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100vw;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.7);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  border: 1px solid #888;
  max-width: 350px;
  border-radius: 10px;
}

/* The Close Button */
.sair,
.sairiPhone {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin: 15px 15px 0 0;
}

.sair:hover,
.sair:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.mapa-site {
  margin: 20px;
  list-style: none;
  box-sizing: border-box;
  cursor: pointer;
}

@media (max-width: 455px) {
  .mapa-site {
    margin: 15px 25%;
  }
}

/* ====================================================== */

.container {
  position: relative;
  height: auto;
  border-top: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
  display: flex;
}

.container [type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.seta-animar {
  color: white;
  display: flex;
  justify-content: center;
  animation: float 2s ease-in-out infinite;
}

@keyframes sudo {
  from {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  to {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
}

input[type="checkbox"]~ul {
  width: 95%;
  border-radius: 10px;
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s cubic-bezier(.44, .99, .48, 1);
}

/* CHECKED STATE STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

[type="checkbox"]:checked~ul {
  /**
   * the value of the `max-height` property specifies the transition speed
   * set a very big value (e.g. 9999px) to see the difference
   */

  max-height: 100%;
}

[type="checkbox"]:checked+label {
  top: 100%;

}

[type="checkbox"]:checked+label:before {
  content: 'Política de Privacidade';
  top: 12px;
  width: 100%;

}

[type="checkbox"]:checked+label:after {
  content: '⇡';

}

ul li:last-child {
  margin-bottom: 50px;
}

/* ========================================================= */

.box-color-bg-cta-livre {
  background-color: #f0f0f0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px;
  border-radius: 10px;
}

.detail-cta {
  max-width: 260px;
}

.detail-cta p {
  font-size: 11px;
}

.gamer-zone {
  background: rgb(7, 7, 7);

}

.flex-img-gamer {
  max-width: 100%;
  display: inline-flex;
  margin-top: -172px;
}

.gamer-spacer {
  height: 60px;
  background-color: transparent;
}

/* --------------------------------------- */

@media (max-width: 1920px) {
  .gamer-space {
    display: block;
  }

}

/* --------------------------------------- */

.flex-min-gamer {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.flex-min-gamer>div {
  flex: 1 100px;
  margin: 10px;
  /* NÃO PODE COLOCAR PADDING AQUI */
}

.flex-img-gamer-animar {
  display: block;
  position: fixed;
  opacity: .3;
}

.min-gamer-box-color-bg {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  background-color: #f8f8f8dc;
  border: solid 3px white;
  border-radius: 15px;
}

.img-cta-gamer {
  width: 100%;
  max-height: 365px;
  padding: 5px;
  margin: -100px 0px -70px 0px;
  align-items: center;
  /* background-color: #fafafa ; */
}

.detail-cta-gamer {
  max-width: 500px;
}

@media (max-width: 950px) {
  .flex-min-gamer>div {
    flex: 1 300px;
    margin: 20px;
    /* NÃO PODE COLOCAR PADDING AQUI */
  }

  .img-cta-gamer {
    margin: 0px 0px -70px 0px;

  }
}

.subtitle-cards-gamer {
  width: 100%;
  /* margin-top: -20px; */
  margin-left: 0px;
  margin-bottom: 0px;
  color: grey;
  /* font-size: 16px; */
  letter-spacing: 0.5px;
  line-height: 1.5rem;
}

.subtitle-minicards-gamer {
  width: 100%;
  margin-top: -20px;
  ;
  color: white;
  /* font-size: 16px; */
  letter-spacing: 0.5px;
  line-height: 1.5rem;
}

/*  =================================== */

/* NOVO MODELO DE POP-UP */

.popup-wrapper-vendas {
  display: none;
  background: rgba(0, 0, 0, .5);
  position: fixed;
  z-index: 100000;
  overflow: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.popup-vendas {
  text-align: center;
  width: 100%;
  max-width: 300px;
  margin: 10% auto;
  padding: 5px;
  background: white;
  position: relative;
  border-radius: 10px;
}

.popup-content-vendas {
  padding: 15px;
}

.popup-close {
  font-family: 'poppins';
  font-size: 25px;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  color: #aaaaaa;
  font-weight: bold;
}

.box-plans {
  border: solid 0.5px rgb(180, 180, 180);
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
}