 body {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

div {
  display: inline-block;
}

.bigger {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  padding: 20px;
  text-transform: unset;
  color: white;
  display: inline-block;
  position: relative;
}

.text {
  max-width: 600px;
  width: 100%;
  line-height: 24px;
  text-align: left;
  color: #404040;
  padding: 20px;
}
.text.txt-center {
  text-align: center;
}
.text a {
  color: #0fe4d2;
}

.has-animation {
  position: relative;
}
.has-animation p, .has-animation img {
  opacity: 0;
}
.has-animation.animate-in p, .has-animation.animate-in img {
  animation: textHidden 0.1s 1.1s forwards;
}
.has-animation.animate-in:before, .has-animation.animate-in:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
}
.has-animation.animate-in:before {
  /*background-color: purple;*/
  /*background: url(../img/aviao.png) no-repeat;*/
  /*background-size: 50px;*/
}
.has-animation.animate-in:after {
  /*background-color: violet;*/
  background: url(../img/aviao.png) no-repeat;
  background-size: 50px;
  animation-delay: 1s;
}
.has-animation.animation-ltr.animate-in:before {
  animation: revealLTR 0.5s ease;
}
.has-animation.animation-ltr.animate-in:after {
  animation: revealLTR 2s .8s ease;
}
.has-animation.animation-rtl.animate-in:before {
  animation: revealRTL 0.5s ease;
}
.has-animation.animation-rtl.animate-in:after {
  animation: revealRTL 2s .8s ease;
}


@keyframes revealRTL {
  0% {
    width: 0;
    right: 0;
  }
  65% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}
@keyframes revealLTR {
  0% {
    width: 0;
    left: 0;
  }
  65% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes textHidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.button {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #bd9e6f;
  /*f72359*/
  padding: 1em 2em;
  border: none;
  color: white;
  font-size: 1.2em;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border-radius: 100px;
}
.button span {
  position: relative;
  pointer-events: none;
}
.button::before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #4405f7, transparent);
  /*4405f7*/
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease;
}
.button:hover::before {
  --size: 400px;
}

.img-fundo {
  background: url(../img/fundo2.jpg) no-repeat;
  background-size: 1920px;
  height: -webkit-fill-available;
}
h2 {
  color: white;
}
.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #5e27b642;
  background-clip: border-box;
  border: 1px solid rgb(189 158 111);
  border-radius: .25rem;
  height: 14em;
}
.img-logo {
  width: 15em;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
}