.price span {
	position:relative;
}
.price span:before {
	content: '';
  width:100%;
  height:100%;
  position:absolute;
	border-bottom:3px solid #f00;
  left:0;
  bottom:15px;
  transform: rotate(20deg)
}
.price span:after {
	content: '';
  width:100%;
  height:100%;
  position:absolute;
	border-bottom:3px solid #f00;
  left:0;
  bottom:15px;
  transform: rotate(-20deg)
}
#price {
	position: relative
}
#price:after {
	content: '';
  width:100%;
  height:100%;
  position:absolute;
	border-bottom:3px solid #f00;
  left:0;
  bottom:15px;
  transform: rotate(-20deg);
}
#price:before {
	content: '';
  width:100%;
  height:100%;
  position:absolute;
	border-bottom:3px solid #f00;
  left:0;
  bottom:15px;
  transform: rotate(20deg)
}
</style>
    <style>
.animated-button {
  background: linear-gradient(-30deg, #0b1b3d 50%, #08142b 50%);
  border-radius:3px;
  padding: 20px 40px;
  margin: 0px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4e0f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.animated-button::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8592ad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}
.animated-button:hover::before {
  opacity: 0.2;
}
.animated-button span {
  position: absolute;
}
.animated-button span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#e9e500));
  background: linear-gradient(to left, rgba(8, 20, 43, 0), #e9e500);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}
@-webkit-keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.animated-button span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#e9e500));
  background: linear-gradient(to top, rgba(8, 20, 43, 0), #e9e500);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}
@-webkit-keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.animated-button span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#a30000));
  background: linear-gradient(to right, rgba(8, 20, 43, 0), #a30000);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}
@-webkit-keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.animated-button span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#a30000));
  background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #a30000);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}
@-webkit-keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.animated-button1 {
  background: #007ae4;
  font-weight:700;
  border-radius:3px;
  margin: 0px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #fff;
  font-size: 26px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 66px #007ae49e;
          box-shadow: 0 20px 66px #007ae49e;
}
.animated-button1::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad8585;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}
.animated-button1:hover::before {
  opacity: 0.2;
}
.animated-button1 span {
  position: absolute;
}
.animated-button1 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#e9e500));
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #e9e500);
  -webkit-animation: 3s animateTop linear infinite;
          animation: 3s animateTop linear infinite;
}
@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.animated-button1 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#e9e500));
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #e9e500);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}
@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.animated-button1 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#e9e500));
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #e9e500);
  -webkit-animation: 3s animateBottom linear infinite;
          animation: 3s animateBottom linear infinite;
}
@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.animated-button1 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to #e9e500));
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #e9e500);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}
@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.button {
width: 100%;
}
.pbutton {
width:100%;
text-align:center;
font-size:14px;
font-weight:300;
margin-top:10px;
margin-bottom:0px;
}
.w-basic-heading--styledAs-h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}

.w-basic-heading--styledAs-h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}

.w-basic-heading--styledAs-h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}

.w-basic-heading--styledAs-h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}

.w-basic-heading--styledAs-h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}

.w-basic-heading--styledAs-h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}

.infowrapper {
  position: relative;
  z-index: 5;
  margin-top: 60px;
}

.infowrapper.b {
  width: 850px;
}

.text-block-39 {
  color: rgba(255, 255, 255, 0.28);
}

.text-block-39.none {
  display: none;
}

.text-block-40 {
  display: block;
  margin-top: 0px;
  text-transform: uppercase;
}

.form-block {
  margin-top: 40px;
}

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

.container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1140px;
  max-width: 100vw;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container.hero {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.container.footer {
  width: 540px;
  border-top-style: none;
}

.gdpr {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.arrow-cta {
  position: relative;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0.6;
}

.text-block-74 {
  position: relative;
  font-family: Exo, sans-serif;
  font-size: 30px;
  line-height: 1.3em;
}

.bold-text-13 {
  color: #00fedf;
}

.section {
  position: relative;
  max-height: none;
  padding-top: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: linear-gradient(225deg, rgba(69, 104, 90, 0.16) 28%, #0d3424), url('../images/bg.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, fixed;
}

.button.animated-button1 {
  max-width: 500px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: rgba(0, 122, 228, 0.34);
  box-shadow: 0 10px 66px 0 rgba(163, 0, 0, 0.45), inset 1px 1px 10px 1px #a30000;
  -webkit-filter: brightness(110%) saturate(120%);
  filter: brightness(110%) saturate(120%);
}

.button.animated-button1.full-width {
  position: relative;
  z-index: 1000;
  max-width: none;
  margin-top: 20px;
  background-color: #5c0000;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
}

.button.animated-button1.full-width._3 {
  display: block;
  width: 100%;
  background-color: #ffae00;
  box-shadow: 0 10px 45px 0 rgba(238, 131, 16, 0.3), inset 1px 1px 10px 1px #ee6110;
  -webkit-filter: none;
  filter: none;
}

.lottie-animation {
  width: 100%;
  height: 130px;
}

.promessa {
  margin-top: 10px;
}

.heading-4 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Bitter, serif;
  font-size: 45px;
  line-height: 1.3em;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.input-field {
  height: 50px;
  border-radius: 3px;
  color: #171717;
  font-size: 18px;
  line-height: 1.4em;
}

.input-field::-webkit-input-placeholder {
  color: hsla(0, 0%, 54.7%, 0.5);
}

.input-field:-ms-input-placeholder {
  color: hsla(0, 0%, 54.7%, 0.5);
}

.input-field::-ms-input-placeholder {
  color: hsla(0, 0%, 54.7%, 0.5);
}

.input-field::placeholder {
  color: hsla(0, 0%, 54.7%, 0.5);
}

.input-field.atual {
  margin-bottom: 15px;
}

.input-field.atual::-webkit-input-placeholder {
  color: #868484;
}

.input-field.atual:-ms-input-placeholder {
  color: #868484;
}

.input-field.atual::-ms-input-placeholder {
  color: #868484;
}

.input-field.atual::placeholder {
  color: #868484;
}

.greenhighlight {
  font-family: Barlow, sans-serif;
  color: #00ffe1;
  font-weight: 700;
  text-shadow: 0 0 6px rgba(16, 238, 116, 0.59);
}

.image-20 {
  margin-right: 20px;
}

.paragraph-4 {
  margin-bottom: 24px;
  font-family: Barlow, sans-serif;
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 26px;
  line-height: 1.5em;
  font-weight: 400;
  text-transform: none;
}

.data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Barlow, sans-serif;
  color: #10ee74;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2px;
}

.barwrapper-2 {
  position: relative;
  z-index: 10000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid rgba(3, 170, 78, 0.24);
  border-bottom: 1px solid rgba(3, 170, 78, 0.24);
  background-color: #141414;
  box-shadow: 0 0 30px 1px rgba(16, 238, 175, 0.1);
  text-align: center;
}

.div-block {
  -webkit-perspective: 980px;
  perspective: 980px;
  -webkit-perspective-origin: 50% 50%;
  perspective-origin: 50% 50%;
  -webkit-transform: perspective(784px);
  transform: perspective(784px);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  color: #f2f2f2;
  font-size: 22px;
  letter-spacing: 4.4px;
}

.eventbar--text {
  font-family: Barlow, sans-serif;
  font-size: 25px;
  line-height: 1.2em;
  text-transform: uppercase;
}

.div-block-7 {
  display: -ms-grid;
  display: grid;
  width: 800px;
  margin: 100px auto;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}

.div-block-257 {
  margin-right: auto;
  margin-left: auto;
}

.container-8 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 960px;
  margin-top: -32px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.text-block-5 {
  margin-top: 30px;
  font-family: Barlow, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
}

.heading-18 {
  font-family: Exo, sans-serif;
  text-align: left;
}

.section-18 {
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #007255;
  background-color: #141514;
}

.section-18.about {
  border-bottom-style: none;
}

.text-block-75 {
  margin-right: auto;
  margin-bottom: 3px;
  margin-left: auto;
  color: #00e8ad;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.title4 {
  color: #00ffbe;
  font-weight: 700;
  text-transform: uppercase;
}

.div-block-284 {
  display: -ms-grid;
  display: grid;
  margin-right: auto;
  margin-left: auto;
  grid-auto-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.div-block-285 {
  width: 420px;
  padding-bottom: 10px;
}

.title-3 {
  font-family: Barlow, sans-serif;
  font-size: 29px;
  line-height: 1.3em;
  font-weight: 400;
}

.paragraph-9 {
  margin-top: 20px;
  font-family: Barlow, sans-serif;
  font-size: 17px;
  line-height: 1.4em;
}

.image-21 {
  display: block;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid #f1c22d;
  -webkit-filter: saturate(120%);
  filter: saturate(120%);
  text-align: center;
}

.footer {
  position: relative;
  margin-top: 0px;
  padding-top: 20px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(3, 170, 78, 0.55);
  background-color: #202020;
}

.logo-footer {
  width: 200px;
}

.text-block-7 {
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  color: hsla(0, 0%, 100%, 0.25);
  font-size: 14px;
  text-align: center;
}

.footerlink {
  color: hsla(0, 0%, 100%, 0.25);
}

.body {
  color: #fff;
}

.text-span {
  padding-right: 5px;
  padding-left: 5px;
  color: #fff;
  font-weight: 500;
  width: 100%;
  text-align: center;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  display: block;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1280px) {
  .button.animated-button1.full-width {
    max-width: 1140px;
  }
}

@media screen and (min-width: 1920px) {
  .section {
    background-position: 0px 0px, 50% 0%;
  }

  .button.animated-button1.full-width._3 {
    box-shadow: 0 10px 45px 0 rgba(255, 197, 81, 0.43), inset 1px 1px 10px 1px #ca901c;
  }

  .img-logo {
    margin-top: 26px;
    margin-bottom: -29px;
  }
}

@media screen and (max-width: 991px) {
  .infowrapper.b {
    width: auto;
  }

  .container {
    width: auto;
  }

  .arrow-cta {
    opacity: 0.25;
  }

  .section {
    height: auto;
    padding-right: 20px;
    padding-bottom: 60px;
    padding-left: 20px;
    background-image: linear-gradient(54deg, #001d11, rgba(0, 54, 25, 0.44)), url('../images/bg.jpg');
    background-position: 0px 0px, 79% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
    background-attachment: scroll, fixed;
  }

  .button.animated-button1.full-width {
    width: 100%;
  }

  .barwrapper-2 {
    width: 100%;
  }

  .div-block {
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
  }

  .eventbar--text {
    line-height: 1.3em;
  }

  .div-block-7 {
    width: auto;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .container-8 {
    width: auto;
  }

  .section-18 {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .div-block-284 {
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
    grid-column-gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .infowrapper {
    width: 420px;
  }

  .infowrapper.b {
    width: auto;
  }

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

  .section {
    padding-top: 20px;
    background-position: 0px 0px, 81% 0%;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
  }

  .button.animated-button1.w--current {
    max-width: 100%;
  }

  .heading-4 {
    font-size: 30px;
  }

  .input-field.atual {
    margin-bottom: 0px;
  }

  .paragraph-4 {
    width: auto;
    font-size: 22px;
  }

  .eventbar--text {
    font-size: 22px;
  }

  .div-block-7 {
    display: block;
    grid-column-gap: 20px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

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

  .section-18 {
    padding-top: 74px;
  }

  .para-voce {
    margin-bottom: 48px;
  }

  .div-block-284 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .div-block-285 {
    width: auto;
  }
}

@media screen and (max-width: 479px) {
  .infowrapper {
    width: auto;
    margin-top: 40px;
  }

  .infowrapper.b {
    margin-top: 11px;
  }

  .logo {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .text-block-39 {
    font-size: 12px;
  }

  .text-block-39.none {
    display: none;
  }

  .text-block-40 {
    line-height: 1.1em;
  }

  .formwrapper {
    display: block;
    margin-bottom: 10px;
    grid-row-gap: 5px;
  }

  .container {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .container.footer {
    width: 100%;
  }

  .arrow-cta {
    opacity: 0.6;
  }

  .text-block-74 {
    position: relative;
    font-size: 23px;
    font-weight: 700;
  }

  .section {
    max-height: none;
    padding: 20px 10px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), linear-gradient(225deg, rgba(16, 238, 205, 0.15), rgba(3, 2, 0, 0.88)), url('../images/bg.jpg');
    background-position: 0px 0px, 0px 0px, 50% 50%;
    background-size: auto, auto, cover;
    background-repeat: repeat, repeat, no-repeat;
    background-attachment: scroll, scroll, fixed;
  }

  .button.animated-button1 {
    position: relative;
  }

  .button.animated-button1.full-width {
    padding: 20px 10px;
    font-size: 24px;
    line-height: 1.3em;
    font-weight: 600;
  }

  .button.animated-button1.full-width._3 {
    margin-top: 25px;
    font-size: 20px;
  }

  .img-logo {
    max-width: 50%;
  }

  .lottie-animation.none {
    display: none;
  }

  .heading-4 {
    font-size: 34px;
    line-height: 1.1em;
  }

  .input-field.atual {
    margin-bottom: 21px;
  }

  .paragraph-4 {
    font-size: 20px;
    line-height: 1.2em;
  }

  .barwrapper-2 {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 10px;
  }

  .eventbar--text {
    font-size: 22px;
  }

  .div-block-7 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .container-8 {
    width: 100%;
    margin-top: -5px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .heading-18 {
    line-height: 1.3em;
  }

  .section-18 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .text-block-75 {
    line-height: 1.5em;
    text-align: center;
  }

  .para-voce {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer {
    padding-right: 10px;
    padding-left: 10px;
  }

  .text-span {

  }
}

#w-node-_10dfcb25-3847-6a37-ff2e-7bdbb98b0948-bb710324 {
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-_10dfcb25-3847-6a37-ff2e-7bdbb98b094a-bb710324 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media screen and (max-width: 767px) {
  #w-node-_10dfcb25-3847-6a37-ff2e-7bdbb98b0948-bb710324 {
    -ms-grid-column-align: center;
    justify-self: center;
  }
}

