:root {
  --black: #000;
  --white: #fff;
  --red: #e50a19;
  --purple: #78187e;
  --green: #70b32f;
  --yellow: #fc9225;
  --orange: #ef571d;
  --blue: #0F6CBB;
  --new-blue: #15508d;
  --gray: #707070;
  --content-width: 1200px;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scroll-padding: 100px 0 0 0;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #f0f0f0;

}

/* 
@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
} */

/* Scrollbar - Início
/* ******************************************** */

::-webkit-scrollbar {
  width: 8px;
  height: 0;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 20px;
}

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.2);
  visibility: hidden;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

::-webkit-resizer {
  background-color: transparent;
}

/* Scrollbar - Fim
/* ******************************************** */

/**********************************************
                    NAVBAR
*/


.header {
  position: absolute;
  width: 100%;
  z-index: 400;
}


/*****************************
      NAVBAR
 */

.navbar {
  position: fixed;
  width: 100%;
  height: 65px;
  background-color: #f0f0f0;
}


.navbar__wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.navbar__left,
.navbar__right {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar__left {
  justify-content: flex-start;
}

.title__logo {
  font-size: 18px;
  font-weight: 600;
  margin-left: 8px;
}

.navbar__right {
  justify-content: flex-end;
}

.navbar__logo {
  height: 25px;
  margin-left: 10px;
}

.navbar__logo svg {
  height: 100%;
}

.navbar__menu-icon {
  display: block;
  width: 35px;
  flex-shrink: 0;
  padding: 0;
  margin-right: 20px;
}

.navbar__menu-icon svg {
  fill: var(--blue);
}

.navbar__menu {
  display: none;
}

@media (max-width: 375px) {
  .navbar__logo svg {
    width: 145px;
  }
}

@media only screen and (min-width: 1200px) {

  .navbar {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    background-color: #fff;
    box-shadow: 0px 3px 6px #00000029;
    height: 93px;
    top: 0;
    z-index: var(--header);
  }

  .navbar__wrapper {
    padding: 3rem 0;
  }

  .navbar__left {
    display: flex;
    flex-flow: row nowrap;
  }

  .navbar__logo {
    height: 30px;
  }

  .navbar__menu {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .navbar__menu .menu {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }

  .navbar__menu {
    list-style-type: none;
  }

  .navbar__menu-icon {
    display: none;
  }

  .navbar__menu li:not(:last-child){
    margin-right: 45px;
  }

  .navbar__menu a {
    position: relative;
    color: var(--black);
    text-decoration: none;
    display: flex;
    font-size: 16px;
    transition: all .4s ease;
  }

  .menu .caret::after {
    content: '';
    width: 7px;
    height: 7px;
    display: inline-block;
    border: solid 1px #000;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(135deg);
    position: relative;
    top: 5px;
    left: 6px;
  }

  /* .navbar__menu a:first-child:hover::after {
    transform: rotate(-45deg);
    transition: all .4s ease;
  } */

  .navbar__menu a::before {
    content: '';
    width: 100%;
    height: .15rem;
    background-color: #000;
    bottom: 10px;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all .4s ease;
  } 
  
  .navbar__menu .menu a:hover::before {
    content: '';
    width: 100%;
    height: .15rem;
    background-color: #000;
    bottom: -10px;
    left: 0;
    opacity: 1;
    position: absolute;
  }
  
  .navbar__menu svg {
    width: 20px;
    fill: var(--white);
    cursor: pointer;
  }

}

.navbar__menu a::before {
  opacity: 0;
} 

.navbar__menu .sub__menu {
  position: absolute;
  top: 5px;
  left: -103px;
  padding: 10px 36px;
  border-radius: 15px;
  box-shadow: 0px 3px 6px #00000029;
  background-color: var(--white);
}

.navbar__menu .sub-menu a:hover::before {
  opacity: 0;
}

.sub-menu {
  display: none;
  flex-flow: column;
  position: absolute;
  top:55px;
  left: -80px;
  padding: 10px 30px 20px 30px; 
  border-radius: 15px;
  box-shadow: 0px 3px 6px #00000029;
  background-color: var(--white); 
}

.sub-menu li {
  position: relative;
  margin-right: 0 !important;
  margin-bottom: 3px;
  margin-left: 10px;
}

.sub-menu li a:hover {
  color: var(--new-blue);
  text-decoration: underline;
}

.sub-menu li::before {
  content: '\2022';
  display: inline-block;
  font-size: 3rem;
  margin-right: .5rem;
  line-height: 1rem;
  position: relative;
  top: 25px;
  left: -15px;
  color: var(--new-blue);
}

.caret {
  width: 7px;
  margin-top: 3px;
  margin-left: 5px;
}

/******************************
      navbar - fim
 */


/* mobile-sidebar-overlay - início
/* *********************************** */

.mobile-sidebar-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 400;
}

/* mobile-sidebar-overlay - fim
/* *********************************** */


/* mobile-sidebar - início
/* *********************************** */

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 275px;
  background-color: #fff;
  z-index: 400;
  transform: translateY(-100%);
}

.mobile-sidebar__wrapper {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.mobile-sidebar__header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  padding: 0 15px;
  width: calc(100% - 30px);
  background-color: var(--white);
  z-index: 100;
}

.mobile-sidebar__header p {
  margin: 0;
  color: var(--blue);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.mobile-sidebar__close {
  height: 22px;
  width: 22px;
  margin-right: -20px;
}

.mobile-sidebar__close svg {
  fill: var(--new-blue);
}

.mobile-sidebar .mobile-sidebar__menu {
  padding: 0 20px;
  width: 100%;
  margin: 0;
  margin-top: 60px;
  margin-bottom: 20px;
  list-style-type: none;
}

.mobile-sidebar__menu--caret {
  position: relative;
}

.mobile-sidebar__menu .caret {
  width: 7px;
  position: absolute;
  right: 39%;
  top: 19px;
}

.mobile-sidebar li {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  padding: 12px 0px;
}

.mobile-sidebar a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  color: #0C0C0C;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.mobile-sidebar li:not(:last-child):after {
  content: '';
    width: 100%;
    height: .15rem;
    background-color: #0f6bbb88;
    bottom: 0;
    left: 0;
    opacity: 1;
    position: absolute;
} 

.mobile-sidebar .navbar-subpanel-title {
  display: none;
}

.mobile-sidebar .submenu {
  display: none;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 5px;
  list-style-type: none;
}

.mobile-sidebar .submenu a {
  padding: 0;
  width: 100%;
  color: var(--blue);
  font-size: 15px;
  font-weight: 300;
  text-align: center;
}

.mobile-sidebar .submenu li:not(:last-child):after {
  content: '';
    width: 100%;
    height: .15rem;
    background-color: #93959788;
    bottom: 0;
    left: 0;
    opacity: 1;
    position: absolute;
}

.mobile-sidebar .submenu li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  font-weight: 500;
  text-align: center;
  padding: 10px 0 !important;
  font-size: 10px;

}
.mobile-sidebar .sub-menu a {
  padding: 10px 0;
  width: 100%;
  color: #626262;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.mobile-sidebar .sub-menu li:not(:nth-last-child(2)) a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #D1D1D6;
}

.mobile-sidebar .mobile-sidebar__actions-menu {
  height: auto;
  margin-top: 50px;
  margin-bottom: 75px;
}

.mobile-sidebar__actions-menu a {
  font-weight: 400;
}

.mobile-sidebar__menu-icon {
  height: 22px;
  margin-right: 15px;
}

.mobile-sidebar__menu-icon svg {
  max-width: 24px;
}

.mobile-sidebar__cart--with-items .mobile-sidebar__menu-icon {
  margin-right: 0;
}

.mobile-sidebar__cart-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-top: -15px;
  margin-left: -6px;
  margin-right: 6px;
  border-radius: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  background-color: #DD9B92;
  transition: all 160ms ease;
  z-index: 10;
}


/* mobile-sidebar - fim
/* *********************************** */


/* mobile-navbar - início
/* *********************************** */

.mobile-navbar {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100px;
  background-color: #fff;
}

.mobile-navbar::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #D1D1D6;
}

.mobile-navbar__left,
.mobile-navbar__center,
.mobile-navbar__right {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 100%;
}

.mobile-navbar__left {
  margin-left: 20px;
}

.title__logo {
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
}

.mobile-navbar__right {
  margin-right: 20px;
}

.mobile-navbar__left,
.mobile-navbar__right {
  z-index: 100;
}

.mobile-navbar__center {
  justify-content: center;
  position: absolute;
  left: 0;
  width: 100%;
}

.mobile-navbar__logo {
  height: 55px;
}

.mobile-navbar__menu {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.mobile-navbar__menu a {
  display: block;
}

.mobile-navbar__menu li:not(:last-child) {
  margin-right: 20px;
}

.mobile-navbar__menu button {
  height: 25px;
}

.menu-button span:nth-child(2):after, .menu-button span:nth-child(2)::before, .menu-button span {
  background-color: var(--primary-color);
}

.mobile-navbar__sidebar svg {
  height: 30px;
}

.mobile-navbar__cart--with-items a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 4px 0 6px;
  text-decoration: none;
}

.mobile-navbar__cart-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-top: -15px;
  margin-left: -6px;
  border-radius: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  background-color: #DD9B92;
  transition: all 160ms ease;
  z-index: 10;
}

@media only screen and (min-width: 996px) {
  .mobile-navbar {
    display: none;
  }

  .mobile-sidebar__wrapper {
    overflow-y: none;
  }
  
}

/* mobile-navbar - fim
/* *********************************** */


/**********************************************
                    HERO
*/

.hero {
  position: relative;
  width: 100%;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6334908963585435) 74%,
    rgba(0, 0, 0, 0.8855917366946778) 100%
  );
}

.hero__banner {
  width: 100%;
  height: 268px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}

.hero__content {
  position: absolute;
  left: 0;
  top: 128px;
  color: #fff;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.hero__titles {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  justify-content: center;
  color: var(--white);
  margin-right: 0px;
  width: calc(100% - 65px);
}

.hero__title {
  font-size: 20px;
  letter-spacing: 0.6px;
  line-height: 36px;
  margin-bottom: 1rem;
  max-width: 54.5rem;
  text-align: center;
  text-shadow: 1px 1px #000;
}

.hero__title .hero__title--center {
  width: 100%;
  text-align: center;
}


.hero__subtitle {
  font-size: 20pxpx;
  letter-spacing: 0.6px;
  line-height: 30px;
  margin-top: 2rem;
  max-width: 54.5rem;
  text-align: right;
  text-shadow: 1px 1px #000;
}

@media only screen and (min-width: 1200px) {

  .hero {
    position: relative;
    width: 100%;
  }

  .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(
      160deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6334908963585435) 74%,
      rgba(0, 0, 0, 0.8855917366946778) 100%
    );
  }

  .hero__banner {
    width: 100%;
    height: 345px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    object-fit: cover;
  }

  .hero__content {
    position: absolute;
    left: 0;
    top: 91px;
    color: #fff;
    z-index: 2;
    width: 100%;
    height: 254px;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .hero__titles {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    color: var(--white);
    width: 1110px;
  }

  .hero__title {
    font-size: 30px;
    letter-spacing: 0.6px;
    line-height: 42px;
    margin-bottom: 1rem;
    max-width: 54.5rem;
    text-align: right;
    margin-right: 120px;
    text-shadow: 1px 1px #000;
  }

  .hero__title.hero__title--center {
    width: 100%;
    max-width: 100% !important;
    text-align: center !important;
    margin-right: 0;
  }


  .hero__subtitle {
    font-size: 25px;
    letter-spacing: 0.6px;
    line-height: 30px;
    margin-top: 2rem;
    max-width: 54.5rem;
    text-align: right;
    text-shadow: 1px 1px #000;
  }
  
}

/**********************************************
                    HOME
*/


.content__home {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 0
}

.content__home .title__home {
  text-align: center;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 500;
}

.cards {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 60px;
}

.card {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 30px 15px 20px;
  width: 265px;
  height: 348px;
  border-radius: 10px;
  box-shadow: 0px 0px 27px #00000026;
  border: solid 1px #fff;
  background-color: var(--white);
}

.card:not(:last-child) {
  margin-right: 0;
  margin-bottom: 20px;
}
.card:hover {
  border: 1px solid #DEDEDE;
}

.card__top {
  width: 100%;
}

.card__title-img {
  max-width: 240px;
}

.card__title-img img {
  width: 100%;
}

.card__description {
  margin: 20px 0;
  font-size: 16px;
}

.card__btns {
  width: 100%;
}

.inativo {
  pointer-events: none;
  opacity: 0.2;
}

.card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  width: 100%;
  min-height: 48px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 15px;
  color: var(--white);
}

.card__btn--yellow {
  background-color: var(--yellow);
}
/*
.card__btn--mkt-2:hover {
  color: var(--yellow);
  background-color: var(--white);
  border: 1px solid var(--yellow);
  transition: all .4s ease;
}*/

 .card__btn--yellow:hover {
  color: var(--yellow);
  background-color: var(--white);
  border: 1px solid var(--yellow);
  transition: all .4s ease;
} 

.card__btn--red {
  background-color: var(--red);
}
/* 
.card__btn--red:hover {
  color: var(--red);
  background-color: var(--white);
  border: 1px solid var(--red);
  transition: all .4s ease;
} */

.card__btn--purple {
  background-color: var(--purple);
}

/* .card__btn--purple:hover {
  color: var(--purple);
  background-color: var(--white);
  border: 1px solid var(--purple);
  transition: all .4s ease;
} */

.card__btn--orange {
  background-color: var(--orange);
}

/* .card__btn--orange:hover {
  color: var(--orange);
  background-color: var(--white);
  border: 1px solid var(--orange);
  transition: all .4s ease;
} */

.card__btn--green {
  background-color: var(--green);
}
 
.card__btn--cash-1:hover {
  color: var(--green);
  background-color: var(--white);
  border: 1px solid var(--green);
  transition: all .4s ease;
} 

/*.card__btn--green:hover {
  color: var(--green);
  background-color: var(--white);
  border: 1px solid var(--green);
  transition: all .4s ease;
} */

@media only screen and (min-width: 1200px) {

  .content__home {
    padding: 80px 0 60px 0;
  }
  
  .content__home .title__home {
    font-size: 26px;
    padding: 0 10px;
  }
  
  .cards {
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 60px;
  }
  
  .card {
    width: 224px;
    height: 314px;
  }
  
  .card:not(:last-child) {
    margin-right: 20px;
    margin-bottom: 0;
  }

  .card__title-img {
    max-width: 190px;
  }
  
}
/**********************************************
                    SECTION 
*/


.section {
  width: 100%;
}

.section--documentacao {
  position: relative;
  width: 100%;
}

.section__wrapper {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0 auto;
}

.title {
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 40px;
}

@media only screen and (min-width: 1200px) {

  .section {
    width: 100%;
  }
  
  .section--documentacao {
    position: relative;
    width: 100%;
  }
  
  .section__wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
  }
  
  .title {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 40px;
  }

}

/********************************
    MENU LATERAL */

.section__sidebarmenu {
  display: none;
  position: absolute;
  min-width: 320px;
  margin-right: 30px;
  margin-top: 60px;
  box-shadow: 0px 0px 5px rgba();
  border: 1px solid #dedede;
  border-radius: 15px;
  padding: 3.2rem 2.7rem;
  background-color: #fff;
  max-height: calc(100vh - 130px);
  overflow-y: scroll;
  max-width: 342px;
  align-self: flex-start;
}

.section__sidebarmenu.fixed {
  position: fixed;
  top: 78px;
  margin-top: 0;
}

.section__title {
  font-weight: 600;
  text-align: center;
  font-size: 22px;
}

.section__sidebarmenu h2 {
  position: relative;
  margin-bottom: 25px;
  color: var(--new-blue);
}

.section__sidebarmenu h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2.7rem;
  width: 6px;
  height: 100%;
  background-color: var(--new-blue);
}

.section__sidebarmenu .title {
  color: var(--new-blue);
}

.section__sidebarmenu .introducao__itens li,
.section__sidebarmenu .metodos__itens li {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--gray);
}

@media only screen and (min-width: 1200px) {
  
  .section__sidebarmenu {
    display: block;
    position: sticky;
    top: 110px;
    min-width: 320px;
    margin-right: 30px;
    margin-top: 60px;
    box-shadow: 0px 0px 5px rgba();
    border: 1px solid #dedede;
    border-radius: 15px;
    padding: 3.2rem 2.7rem;
    background-color: #fff;
    max-height: calc(100vh - 130px);
    overflow-y: scroll;
    max-width: 342px;
    align-self: flex-start;
  }

  .section__sidebarmenu.fixed {
    position: fixed;
    top: 78px;
    margin-top: 30px;
  }

  .section__title {
    font-weight: 600;
    text-align: center;
    font-size: 22px;
  }

  .section__sidebarmenu h2 {
    position: relative;
    margin-bottom: 25px;
    color: var(--new-blue);
  }

  .section__sidebarmenu h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2.7rem;
    width: 6px;
    height: 100%;
    background-color: var(--new-blue);
  }

  .section__sidebarmenu .title {
    color: var(--new-blue);
  }

  .section__sidebarmenu .introducao__itens li,
  .section__sidebarmenu .metodos__itens li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--gray);
  } 

  .section__sidebarmenu .introducao__itens li:hover,
  .section__sidebarmenu .metodos__itens li:hover {
    color: var(--new-blue);
  }
}

/***********************************************
                 CONTENT
*/


.content {
  justify-content: center;
  width: calc(100% - 20px);
  margin: 0 10px;
  margin-top: 40px;
  padding: 10px 10px;
  border: 1px solid #dedede;
  border-radius: 15px;
  background-color: #fff;
  display: block;
}

.content__bloco {
  margin-bottom: 40px;
}

.content h2 {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
}

.content h3 {
  margin: 10px 0 5px 0;
  font-size: 16px;
  font-weight: 700;
  color: #0a90c3d6;
}

.content p {
  font-size: 11px;
  line-height: 23px;
  color: var(--gray);
  word-break: break-all;
}

.content p.red {
  color: var(--red);
  font-weight: 500;
}

.content ul li {
  font-size: 11px;
  line-height: 23px;
  color: var(--gray);
}

.content .content__title {
  color: var(--new-blue);
}

.content .content__bloco--metodos .content__cod {
  background-color: rgb(46, 45, 56);
}

.content__bloco--metodos .content__subtitle {
  margin: 15px 0 10px 0;
}

.content code {
  white-space: pre-wrap;
  color: var(--new-blue);
  font-size: 8px;
  letter-spacing: normal;
  font-family: 'Arial', sans-serif;
  padding: 0 0.5em;
  word-break: break-word;
  border-radius: 4px;
  margin-left: 10px;
}

.content pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-all;
  margin: 30px 0;
  padding: 0;
  background-color: #f3f7fa;
}


@media only screen and (min-width: 1200px) {
  .content {
    display: block;
    justify-content: flex-end;
    width: calc(100% - 340px);
    margin-top: 60px;
    padding: 3.2rem 3.7rem;
    border: 1px solid #dedede;
    border-radius: 15px;
    background-color: #fff;
  }
  
  .content__bloco {
    margin-bottom: 40px;
  }
  
  .content h2 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
  }
  
  .content h3 {
    margin: 20px 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    color: #0a90c3d6;
  }
  
  .content p {
    font-size: 14px;
    line-height: 25px;
    color: var(--gray);
    word-break: normal;
  }

  .content ul {
    margin-top: 15px;
  }
  
  .content ul li {
    font-size: 14px;
    line-height: 25px;
    color: var(--gray);
    list-style-type: circle;
  }
  
  .content .content__title {
    color: var(--new-blue);
  }
  
  .content .content__bloco--metodos .content__cod {
    background-color: rgb(46, 45, 56);
  }
  
  .content__bloco--metodos .content__subtitle {
    margin: 15px 0 10px 0;
  }
  
  .content code {
    white-space: pre-wrap;
    color: var(--new-blue);
    font-size: 13px;
    letter-spacing: 0.025rem;
    letter-spacing: normal;
    font-family: 'Arial', sans-serif;
    padding: 0 0.5em;
    word-break: break-word;
    border-radius: 4px;
    margin-left: 10px;
  }
  
  .content pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-all;
    margin: 30px 0;
    padding: 0 10px;
    background-color: #f3f7fa;
  }
  
}

/**********************************************
                    SECTION-SUPORTE
*/

.section__suporte {
  margin-top: 0px;
}

.suporte {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.suporte__texts {
  width: 100%;
  padding: 0 20px;
  margin-top: 60px;
}

.suporte__texts .title {
  font-size: 30px;
  text-align: left;
  margin-bottom: 15px;
}

.suporte__texts .subtitle {
  font-weight: 500;
  text-align: left;
  font-size: 14px;
}

.form {
  width: calc(100% - 40px);
  margin-top: 60px;
}

.form__row {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  margin-bottom: 0px;
}

.form__coll {
  display: flex;
  width: 100%;
  flex-flow: column nowrap;
  margin-bottom: 30px;
}

.form__row div:not(:last-child) {
  margin-right: 0px;
}

.form label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
}

.form input,
.form textarea {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 57px #00000026;
  display: block;
  width: 100%;
  padding: 25px;
  border: 0;
  color: #747474;
  font-size: 14px;
}

.form input:focus,
.form textarea:focus {
  box-shadow: 0px 0px 10px 5px #00000026;
}

.form textarea {
  min-height: 110px;
}

.form__line {
  width: 100%;
  margin-bottom: 30px;
}

.form__line .politicas {
  font-weight: 500;
  margin-bottom: 30px;
}

.form__line .politicas__link {
  color: var(--blue);
}

.form__line .checkbox {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.form__line .checkbox:focus {
  box-shadow: none;
}

.form__line .form__row {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.btn__blue {
  font-size: 20px;
  padding: 13px 46px;
  border-radius: 40px;
  background-color: var(--blue);
  color: var(--white);
  margin-bottom: 30px;
}

.form__obrig {
  margin-bottom: 60px;
}

.link {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 500;
}

@media only screen and (min-width: 1000px) {
  .section__suporte {
    margin-top: 130px;
  }
    
  .suporte__texts {
    width: 980px;
    padding: 0;
    margin-top: 0px;
  }
  
  .suporte__texts .title {
    font-size: 40px;
    margin-bottom: 25px;
  }
  
  .suporte__texts .subtitle {
    font-size: 16px;
    line-height: 30px;
  }
  
  .form {
    width: 980px;
  }
  
  .form__row {
    flex-flow: row nowrap;
    margin-bottom: 30px;
  }
  
  .form__coll {
    width: 50%;
    margin-bottom: 0;
  }
  
  .form__row div:not(:last-child) {
    margin-right: 25px;
  }
  
  
  .form textarea {
    min-height: 120px;
  }

  
  .form__obrig {
    margin-bottom: 60px;
  }
  
}
/**********************************************
                    FOOTER
*/
  
.footer {
  padding:0;
  margin-top: 30px;
  background: transparent linear-gradient(353deg, #1CD8E9 0%, #2532DE 100%) 0% 0% no-repeat padding-box;
}


.footer__background {
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  background-size: cover;
}

.footer__wrapper {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  position: relative;
  width: calc(100% - 40px);
  height: 100%;
  margin: 0 auto;
}

.footer__logo {
  margin-top: 36px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.footer__logo svg {
  width: 140px;
}

.footer__logo p {
  font-size: 16px;
  margin-left: 6px;
  color: var(--white);
}

.footer__sub-menu {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.footer__sub-menu::after {
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  bottom: -20px;
  width: 100%;
  height: 1px;
  background-color: #fff;

}

.footer__submenu--col:not(:last-child) {
  margin-right: 0;
  margin-bottom: 40px;
}

.footer__submenu--col .title {
  margin-top: 0 !important;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--white);
}

.footer__submenu--col li {
  margin-bottom: 8px;
  list-style-type: disc;
  color: var(--white);
}

.footer__submenu--col li a {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__submenu--col.links p {
  margin-bottom: 10px;
  margin-top: 0 !important;
}

.footer__submenu--col.apis .title  {
  margin-bottom: 20px;
}

.footer__bar {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 30px;
}

.footer__bar p {
  margin-left: 0;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

.footer__logo--bar {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.footer__logo--bar svg {
  width: 140px;
}

.footer__logo--bar p {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-left: 5px;
}

@media only screen and (min-width: 1200px) {
  
  .footer {
    padding: 5.7rem 0 0;
    position: relative;
    background: transparent;
  }

  .footer__background {
    display: block;
    top: 40px;
    max-height: 330px;
  }

  .footer__wrapper {
    width: 100%;
    max-width: var(--content-width);
  }

  .footer__logo svg {
    width: 220px;
    height: 28px;
  }

  .footer__logo p {
    font-size: 18px;
    margin-left: 8px;
  }

  .footer__sub-menu {
    flex-flow: row nowrap;
    align-items: flex-start;
  }


  .footer__submenu--col:not(:last-child) {
    margin-right: 60px;
    margin-bottom: 0;
  }

  .footer__submenu--col .title {
    text-align: left;
  }

  .footer__bar {
    flex-flow: row nowrap;
    margin-top: 40px;
    margin-bottom: 0;
  }

  .footer__bar p {
    margin-left: 80px;
    margin-bottom: 0;
    text-align: left;
  }
  
  .footer__logo--bar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

    .footer__logo--bar p {
      margin-left: 5px;
    }

}




/***********************************************
        TABLE
*/

table {
  border-collapse: collapse;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.table td {
  font-size: 14px;
  line-height: 25px;
  color: var(--gray);
  word-break: normal;
}

.table th,
.table td {
  min-width: 80px;
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table thead {
  background-color: #f3f7fa;
}

.table thead p {
  color: var(--new-blue);
}

.table .title {
  color: #0a90c3d6;
  font-weight: 600;
}

.table .decoration {
  background-color: #f3f7fa;
}

.table .decoration td p {
  color: var(--new-blue);
  font-weight: 600;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table tbody strong {
  color: #0a90c3d6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}
