/*
=-=-=-= CONFIGURAÇÕES GERAIS =-=-=-=
*/

.wrapper {
  position: relative;
  overflow-x: hidden;
  font-family: "Poppins-regular", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --black: #25292C;
  --black2: #7D7D7D;
  --primary: #0077B6;
  --secudary: #032958;
  --blue1: #2EAADC;
  --blue2: #B8EEFF;
  --gray: #EEEEEE;
  --white: #ffffff;
  --thin: "Poppins-Thin", Tahoma, Geneva, Verdana, sans-serif;
  --regular: "Poppins-regular", Tahoma, Geneva, Verdana, sans-serif;
  --semiBold: "Poppins-semiBold", Tahoma, Geneva, Verdana, sans-serif;
  --medium: "Poppins-medium", Tahoma, Geneva, Verdana, sans-serif;
  --bold: "Poppins-bold", Tahoma, Geneva, Verdana, sans-serif;
}

/*
=-=-=-= DEFINIÇÕES GLOBAIS=-=-=-=
*/

.center-text {
  text-align: center;
}

.vertical-center {
  display: flex;
  align-items: center
}

.end-text {
  text-align: end;
}

.align-itens-center {
  display: flex;
  align-items: center;
}

.align-itens-center-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.letter-primary {
  color: var(--primary);
  font-family: var(--bold);
}

/*
=-=-=-= BUTTONS =-=-=-=
*/

a.secundary-button {
  display: inline-block;
  font-family: var(--regular);
  background: var(--secudary);
  color: var(--white);
  text-decoration: none;
  padding: 5px 22px;
  border-radius: 15px;
  margin: 0;
}

.big {
  font-size: 20px;
}

.small {
  font-size: 10px;
}
/*
=-=-=-= NAVBAR =-=-=-=
*/

nav {
  font-family: var(--bold);
  display: flex;
  position: fixed;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  background: var(--white);
  box-shadow: 0 0 15px #00000005;
  height: 10vh;
  z-index: 9999999;
}

.logo {
  width: 150px;
}

nav a {
  color: var(--black);
  text-decoration: none;
  transition: 0.3s;
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
}

header nav ul.nav-list {
  padding: 0;
}

.nav-list.navegation a {
  position: relative;
  transition: ease-out 0.3s;
}

.nav-list.navegation a.option:hover {
  color: var(--primary);
}

.nav-list.navegation a.option:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  top: 25px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-list.navegation a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-list .login-buttom {
  font-family: var(--semiBold);
  padding: 0.5em 1em;
  margin-left: 7em;
  border: 1px solid var(--black);
  border-radius: 15px;
}

.nav-list a.login-buttom:hover {
  color: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: 0 0 10px #ffffff69;
}

.nav-list a.register-buttom:hover {
  box-shadow: 0 0 10px #ffffff69;
}

.nav-list li {
  letter-spacing: 1px;
  margin-left: 32px;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: var(--black);
  margin: 8px 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .nav-list {
    position: absolute;
    top: 10vh;
    right: 0;
    width: 100vw;
    height: 90vh;
    background: var(--secudary);
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    z-index: 99999;
    overflow: unset;
  }

  nav a {
    color: var(--white);
  }

  .nav-list.navegation a.option:hover {
    color: var(--white);
  }

  .nav-list li {
    margin-left: 0;
    opacity: 0;
  }
  .mobile-menu {
    display: block;
  }
}

.nav-list.active {
  transform: translateX(0);
  position: fixed;
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

/*
=-=-=-= INDEX PAGE =-=-=-=
*/

#section-index-presentation {
  align-items: center;
  margin: 8em 0 3em 0;
}

#section-index-presentation h1 {
  font-family: var(--medium);
  font-size: 40px;
}

#section-index-presentation h5 {
  font-family: var(--regular);
  font-size: 20px;
  margin-bottom: 1.4em;
}

#section-index-presentation img {
  max-width: 550px;
}

#section-index-sub-presentation {
  align-items: center;
  margin-top: 6em;
}

#section-index-sub-presentation h2 {
  color: var(--black);
  font-family: var(--medium);
}

#section-index-sub-presentation h2 span {
  color: var(--primary);
}

#section-index-sub-presentation .item-presentation {
  margin-top: 3em;
}

#section-index-sub-presentation .item-presentation .icon {
  display: flex;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 5px;
  margin-bottom: 1em;
}

#section-index-sub-presentation .item-presentation .icon svg {
  width: 35px;
}

#section-index-sub-presentation .item-presentation h5 {
  font-family: var(--medium);
}

#section-index-sub-presentation .item-presentation p {
  font-family: var(--thin);
  color: var(--black2);
}

#section-index-service {
  background: var(--gray);
  padding: 0.1em 0 0.1em 0;
}

#section-index-service .item {
  align-items: center;
  margin: 2em 0 2em 0;
  padding: 0.1em 0 0.1em 0;
}

#section-index-service img {
  width: 400px;
}

#section-index-service h2 {
  font-family: var(--medium);
  font-size: 30px;
  margin-bottom: 0.8em;
}

#section-index-service h2 span {
  color: var(--primary);
}

#section-index-service p {
  font-family: var(--regular);
  font-size: 18px;
  margin-bottom: 1.6em;
}

#section-index-service a {
  margin-top: 1.6em;
}

#section-index-saas {
  padding: 4em 0;
  text-align: center;
  background-color: var(--gray);
}

#section-index-saas h5 {
  font-family: var(--semiBold);
  font-size: 30px;
}

#section-index-saas h5 span {
  font-family: var(--bold);
  font-size: 35px;
}

#section-index-saas img {
  padding: 4em 0;
  width: 80%;
}

#section-index-saas h6 {
  font-family: var(--regular);
  font-size: 30px;
}

#section-index-feature-trail {
  text-align: center;
}

#section-index-feature-trail .center-text {
  margin-bottom: 80px;
}

.start {
  position: relative;
}
.start-block {
  position: relative;
  padding-bottom: 4em;
}
.start-block:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: url(/src/assets/img/svg/line.svg) no-repeat;
}
.start-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -9px);
  transform: translate(-50%, -9px);
  z-index: 10;
}
.start-block:nth-child(1)::after {
  background: url(/src/assets/img/svg/stage-1.svg) no-repeat;
}
.start-block:nth-child(2)::after {
  background: url(/src/assets/img/svg/stage-2.svg) no-repeat;
}
.start-block:nth-child(3)::after {
  background: url(/src/assets/img/svg/stage-3.svg) no-repeat;
}
.start-block:nth-child(4)::after {
  background: url(/src/assets/img/svg/stage-4.svg) no-repeat;
}
.start-block:nth-child(5)::after {
  background: url(/src/assets/img/svg/stage-5.svg) no-repeat;
}
.start-block:nth-child(6)::after {
  background: url(/src/assets/img/svg/stage-6.svg) no-repeat;
}
.start-block:nth-child(7)::after {
  background: url(/src/assets/img/svg/stage-7.svg) no-repeat;
}
.start:nth-child(2) {
  border-bottom: 1px solid #dadada;
}
.start-content::after {
  content: "";
  position: absolute;
  top: 0;
  width: 85px;
  height: 3px;
  background: var(--primary);
}
.start-block:nth-child(odd) .start-content::after {
  left: 50%;
  -webkit-transform: translate(-100%, 13px);
  transform: translate(-100%, 13px);
}
.start-block:nth-child(even) .start-content::after {
  right: 50%;
  -webkit-transform: translate(100%, 13px);
  transform: translate(100%, 13px);
}

.left-column,
.right-column {
  max-width: 40%;
  position: relative;
}

.left-column {
  margin-right: auto;
  text-align: right;
}

.left-column h2 {
  text-align: right;
}

.left-column div {
  position: absolute;
  bottom: -95px;
  right: 0;
  z-index: 10;
}

.right-column {
  margin-left: auto;
  text-align: left;
}

.right-column div {
  position: absolute;
  bottom: -95px;
  left: 0;
  z-index: 10;
}
.start h2 {
  margin: 0 0 20px;
  font-size: 137.5%;
  font-weight: 400;
  line-height: 1.6;
  color: #13161f;
}
.start p {
  margin: 0;
  font-size: 125%;
  line-height: 1.7;
  color: #4d5060;
}
.start a {
  margin-bottom: 2em;
}
.title-section {
  margin-top: 4em;
}
.title-section h6 {
  font-family: var(--bold);
  font-size: 35px;
}

.title-section a {
  font-family: var(--bold);
  color: var(--primary);
  text-decoration: none;
  font-size: 20px;
}

#section-index-lets-start {
  padding-top: 2em;
}

#section-index-lets-start h5{
  font-family: var(--bold);
  font-size: 30px;
}

#section-index-lets-start h6{
  font-family: var(--bold);
  font-size: 20px;
}

#section-index-lets-start p{
  font-family: var(--regular);
  font-size: 16px;
}

#section-index-lets-start .icon {
  display: flex;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 5px;
  margin-bottom: 1em;
}

#section-index-lets-start .icon svg {
width: 35px;
}

#section-index-form {
  padding: 2em 0;
  background: var(--secudary);
}

#section-index-form h2 {
  font-family: var(--bold);
  color: var(--white);
  font-size: 40px;
}

#section-index-form .btn {
  background: var(--primary);
  color: var(--white);
}

#section-index-form label {
  color: var(--white);
  font-family: var(--thin);
}

footer {
  background: var(--gray);
  display: flex;
  justify-content: center;
  text-align: center;
}

footer img{
  width: 250px;
}

footer p{
  font-family: var(--regular);
  color: var(--black2);
  font-size: 15px;
  margin-top: 25px;
}

#footer-content {
  padding: 2em 0;
}

#footer_copy p
{
    text-align: left;
    color: var(--black);
    font-size: 14px;
    margin: 0;
}

#footer_copy a
{
    color: var(--black);
    transition: 0.2s;
}

#footer_copy a:hover
{
    color: var(--secudary);
    transition: 0.2s;
}

#footer_copy
{
    padding-top: 1em;
    border-top: 1px solid var(--black);
}

#footer_copy a span 
{
    width: 40px;
    height: 20px;
}

/*Styles specific to mobiles*/
@media handheld,
  only screen and (max-width: 110em),
  only screen and (max-device-width: 110em) {
  main .divider a {
    margin-top: -50px;
  }
}

@media handheld,
  only screen and (max-width: 86.5em),
  only screen and (max-device-width: 86.5em) {
  main .divider a {
    margin-top: -60px;
  }
}

@media handheld,
  only screen and (max-width: 79.5em),
  only screen and (max-device-width: 79.5em) {
  main .divider a {
    margin-top: -70px;
  }
}

@media handheld,
  only screen and (max-width: 72.5em),
  only screen and (max-device-width: 72.5em) {
  main .divider a {
    margin-top: -80px;
  }
}

@media handheld,
  only screen and (max-width: 67.5em),
  only screen and (max-device-width: 67.5em) {
  main .divider a {
    margin-top: -70px;
  }

  header .divider img {
    width: 90px;
  }
}
@media handheld,
  only screen and (max-width: 60em),
  only screen and (max-device-width: 60em) {
  main .divider a {
    margin-top: -50px;
  }

  main .divider img {
    width: 70px;
  }
  .start {
    padding-bottom: 145px;
  }
  .starttitle {
    margin: 60px 0 30px;
  }
  .start-content::after {
    width: 45px;
  }
  .left-column,
  .right-column {
    max-width: 41%;
  }
  .right-column div,
  .left-column div {
    bottom: -87px;
  }
  .start-content div div a,
  .start-content div div a:link {
    padding: 15px 20px;
  }
}

@media handheld,
  only screen and (max-width: 48em),
  only screen and (max-device-width: 48em) {
  main .divider a {
    margin-top: -65px;
  }

  main .divider img {
    width: 70px;
  }
  .start {
    padding: 0 0 50px 15px;
  }
  .start h2 {
    margin-bottom: 10px;
    font-size: 125%;
  }
  .start p {
    margin-bottom: 25px;
    font-size: 112.5%;
  }
  .start-content::after {
    display: none;
  }
  .start-block {
    padding-left: 30px;
  }
  .start-block:not(:last-child) {
    padding-bottom: 50px;
  }
  .start-block:not(:last-child)::before {
    left: 0;
  }
  .start .start-block::after {
    left: 0;
    width: 40px;
    height: 40px;
    background-size: 40px;
    -webkit-transform: translate(-50%, -4px);
    transform: translate(-50%, -4px);
  }
  .left-column,
  .right-column {
    max-width: 100%;
  }
  .left-column div,
  .right-column div {
    position: static;
  }
  .left-column,
  .left-column h2 {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  #section-index-service img{
    width: 300px;
  }
  #section-index-service .desktop{
    display: none;
  }
  .img-integ {
    text-align: start;
    padding: 0;
    margin-top: -1em;
  }
  .img-integ .desktop {
    display: none;
  }
  .img-integ .mobile {
    width: 200px;
  }
  #section-index-saas .desktop{
    display: none;
  }
  #section-index-sub-presentation .items .item-presentation {
    text-align: center;
  }
  #section-index-sub-presentation .items .item-presentation .icon{
    width: 100%;
    text-align: center;
  }
  .map {
    display: flex;
    justify-content: center;
  }
  #section-index-presentation a.red-button {
    display: flex;
    text-align: center;
    justify-content: center;
  }
  #section-index-presentation h1 {
    text-align: center;
    line-height: 70px;
  }

  #section-index-presentation img {
    width: 300px;
    margin: 50px 0;
  }
  #banner-pix img {
    width: 300px;
  }
  #banner-boleto img {
    width: 300px;
  }
  .call-to-plataform .align-itens-center-end {
    justify-content: start;
    margin: 20px 0 20px 0;
  }
  .call-to-plataform .align-itens-center-end a {
    font-size: 20px;
  }
  .button-arrow::after {
    top: 14px;
  }
  .nav-list .login-buttom {
    border: 1px solid var(--white);
    margin-left: 0;
  }
  .header-footer {
    display: flex;
    justify-content: center;
    margin: 50px 0 20px 0;
  }
  .header-footer-content {
    text-align: center;
  }
  footer .divider img.arrow {
    width: 60px;
  }
  #footer_copy p{
    font-size: 0.5em;
}
}

@media (min-width: 576px) and (max-width: 767.98px) {
  #section-index-service .desktop{
    display: none;
  }
  .img-integ {
    text-align: start;
    padding: 0;
    margin-top: -1em;
  }
  .img-integ .desktop {
    display: none;
  }
  .img-integ .mobile {
    width: 200px;
  }
  #section-index-saas .desktop{
    display: none;
  }
  #section-index-sub-presentation .items .item-presentation {
    text-align: center;
  }
  #section-index-sub-presentation .items .item-presentation .icon{
    width: 100%;
    text-align: center;
  }
  #section-index-presentation a.red-button {
    display: flex;
    text-align: center;
    justify-content: center;
  }
  #section-index-presentation h1 {
    text-align: center;
    line-height: 70px;
  }
  #section-index-presentation img {
    margin: 30px 0;
  }
  .call-to-plataform .align-itens-center-end {
    justify-content: start;
    margin: 20px 0 20px 0;
  }
  .question-box {
    margin: 0 0;
  }
  .nav-list .login-buttom {
    border: 1px solid var(--white);
    margin-left: 0;
  }
  .header-footer {
    display: flex;
    justify-content: center;
    margin: 50px 0 15px 0;
  }
  .header-footer-content {
    text-align: center;
  }
  footer .divider img.arrow {
    width: 80px;
  }
  #footer_copy p{
    font-size: 0.6em;
}
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #section-index-service .desktop{
    display: none;
  }
  .img-integ .mobile {
    display: none;
  }
  #section-index-saas .mobile{
    display: none;
  }
  #section-index-sub-presentation .items .item-presentation {
    text-align: center;
  }
  #section-index-sub-presentation .items .item-presentation .icon{
    width: 100%;
    text-align: center;
  }
  #section-index-presentation img {
    margin: 30px 0;
  }
  .call-to-plataform .align-itens-center-end {
    justify-content: start;
    margin: 20px 0 20px 0;
  }
  .question-box {
    margin: 0 50px;
  }
  .nav-list .login-buttom {
    border: 1px solid var(--white);
    margin-left: 0;
  }
  .header-footer {
    display: flex;
    justify-content: center;
    margin: 50px 0 15px 0;
  }
  .header-footer-content {
    text-align: center;
  }
  #footer_copy p{
    font-size: 0.6em;
}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #section-index-service .mockup-vertical{
    width: 300px;
  }
  #section-index-service .desktop{
    display: none;
  }
  .img-integ .mobile {
    display: none;
  }
  #section-index-saas .mobile{
    display: none;
  }
  #section-index-service img {
    width: 300px;
  }
  #section-index-sub-presentation .items .item-presentation {
    text-align: center;
  }
  #section-index-sub-presentation .items .item-presentation .icon{
    width: 100%;
    text-align: center;
  }
  .question-box {
    margin: 0 150px;
  }
  .nav-list .login-buttom {
    border: 1px solid var(--white);
    margin-left: 0;
  }
  .header-footer {
    display: flex;
    justify-content: center;
    margin: 50px 0 15px 0;
  }
  .header-footer-content {
    text-align: center;
  }
  #footer_copy p{
    font-size: 0.6em;
}
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  #section-index-service .mobile{
    display: none;
  }
  .img-integ .mobile {
    display: none;
  }
  #section-index-saas .mobile{
    display: none;
  }
  .mockup-box a {
    font-size: 20px;
    width: 300px;
  }
  .nav-list .login-buttom {
    margin-left: 2em;
  }
}

@media (min-width: 1300px) {
  #section-index-service .mobile{
    display: none;
  }
  #section-index-saas .mobile{
    display: none;
  }
  .img-integ .mobile {
    display: none;
  }
  .mockup-box a {
    font-size: 20px;
    width: 300px;
  }
}
