.simform {
  position: relative;
  margin: 0 auto;
  max-width: 860px;
  width: 100%;
  text-align: left;
  font-size: 2.5em;
}

.simform .submit {
  display: none;
}

/* Question list style */

.simform ol {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
}

.simform ol:before {
  content: '';
  background-color: rgba(140,140,140,0.1);
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.35em;
}

.questions li {
  z-index: 100;
  position: relative;
  visibility: hidden;
  height: 0;
  -webkit-transition: visibility 0s 0.4s, height 0s 0.4s;
  transition: visibility 0s 0.4s, height 0s 0.4s;
}

.questions li.current, .no-js .questions li {
  visibility: visible;
  height: auto;
  -webkit-transition: none;
  transition: none;
}

/* Labels */

.questions li > span {
  display: block;
  overflow: hidden;
}

.questions li > span label {
  display: block;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.questions li.current > span label, .no-js .questions li > span label {
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.show-next .questions li.current > span label {
  -webkit-animation: moveUpFromDown 0.4s both;
  animation: moveUpFromDown 0.4s both;
}

@keyframes moveUpFromDown {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Input field */

.questions input {
  display: block;
  margin: 0.3em 0 0 0;
  padding: 0.5em 1em 0.6em 0.7em;
  width: calc(100% - 2em);
  border: none;
  background: transparent;
  color: rgb(249 121 0);
  font-weight: 200;
  font-size: 1em;
  line-height: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.questions .current input, .no-js .questions input {
  opacity: 1;
}

.questions input:focus, .simform button:focus {
  outline: none;
}

.next {
  font-size: 20px;
  position: absolute;
  right: 0;
  bottom: 2.15em;
  display: block;
  padding: 0;
  width: 2em;
  height: 2em;
  border: none;
  background: none;
  color: #fa7900;
  text-align: center;
  opacity: 0;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
  pointer-events: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.next:hover {
  color: rgb(214,104,1);
}

.next::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "\e600";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: 'icomoon';
  line-height: 2;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.next.show {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  pointer-events: auto;
}

/* Progress bar */

.simform .progress {
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 0.10em;
  border-radius: 0 0 10px 10px;
  background: rgb(250,121,0);
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}

.simform .progress::before {
  position: absolute;
  top: auto;
  width: 100%;
  height: inherit;
  background: rgba(0,0,0,0.05);
  border-radius: 0 0 10px 10px !important;
  content: '';
}

/* Number indicator */

.simform .number {
  position: absolute;
  right: 0;
  overflow: hidden;
  margin: 0.4em 0;
  width: 3em;
  font-weight: 700;
  font-size: 0.4em;
  color: gray;
}

.simform .number:after {
  position: absolute;
  left: 50%;
  content: '/';
  opacity: 0.4;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.simform .number span {
  float: right;
  width: 40%;
  text-align: center;
}

.simform .number .number-current {
  float: left;
  color: #fa7900;
}

.simform .number-next {
  position: absolute;
  left: 0;
}

.simform.show-next .number-current {
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.simform.show-next .number-next {
  -webkit-animation: moveUpFromDown 0.4s both;
  animation: moveUpFromDown 0.4s both;
}

/* Error and final message */

.simform .error-message, .simform .final-message {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.simform .error-message {
  padding: 0.4em 3.5em 0 0;
  width: 100%;
  color: rgb(202 211 222);
  font-weight: 300;
  font-style: italic;
  font-size: 0.4em;
  letter-spacing: .5px;
}

.final-message {
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #00805a;
  text-align: left;
  padding: 0;
}

.error-message.show, .final-message.show {
  visibility: visible;
  opacity: 1;
}

.final-message.show {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

/* Final hiding of form / showing message */

.simform-inner.hide {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s, visibility 0s 0.3s;
}

/* No JS Fallback */

.no-js .simform {
  font-size: 1.75em;
}

.no-js .questions li {
  padding: 0 0 2em;
}

.no-js .simform .submit {
  display: block;
  float: right;
  padding: 10px 20px;
  border: none;
  background: rgba(0,0,0,0.3);
  color: rgba(0,0,0,0.4);
}

.no-js .simform .controls {
  display: none;
}

/* Remove IE clear cross */

input[type=text]::-ms-clear {
  display: none;
}

/* Adjust form for smaller screens */

@media screen and (max-width: 44.75em) {
  .simform {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 33.5625em) {
  .simform {
    font-size: 1.2em;
  }
}

.questions label {
  font-weight: 500;
  font-size: 40px;
  color: #cecece;
}

#navTop {
  display: none;
  opacity: 0;
  background-color: #ffffff;
  transition: 1s !important;
  top: 3px;
}

.color-aboutus {
  color: #cfcfcf;
}

.funcionarioNome {
  font-size: 40px !important;
  color: white;
}

.btn-circle {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
}

footer a:hover {
  color: #a9a9a9 !important;
  font-weight: 300;
  letter-spacing: .5px;
  text-decoration: none;
  cursor: pointer !important;
}

footer a {
  font-size: 20px;
  color: #898989 !important;
  font-weight: 300;
  letter-spacing: .5px;
  text-decoration: none;
  margin: 30px;
}

@media (min-width: 576px) {
  footer a {
    font-size: 1rem;
    margin: 0 0 10px;
    text-decoration: none;
  }
}

.h-subtitle {
  font-family: monospace;
  font-size: 30px;
}

.text-blue-2 {
  color: rgb(64,103,135) !important;
}

#header {
  background-image: url('../../../assets/img/bgs/bg0.jpg');
}

#gestao-patrimonio {
  background-color: #021623;
  background-image: url('../../../assets/img/bgs/bg6.jpg');
  padding-top: 100px;
  filter: brightness(100%) contrast(105%) saturate(67%);
}

#investimentos-alternativos {
  background-color: #021624;
  background-image: url('../../../assets/img/bgs/bg9.jpg');
  padding-top: 100px;
  filter: hue-rotate(360deg) saturate(59%);
}

#equipe {
  background-image: url('../../../assets/img/bgs/bg-n1.jpg');
}

#header h3 {
  max-width: 85%;
  letter-spacing: 1px;
  color: rgb(221,221,221);
}

#ecta h2 {
  font-size: 50px;
  font-family: monospace;
}

#gestao-patrimonio h2 {
  z-index: 1;
  font-size: 34px;
  color: rgb(64,103,135);
  font-family: monospace;
}

#gestao-patrimonio img {
  opacity: 0.52;
  width: 100%;
}

#investimentos-alternativos h2 {
  z-index: 1;
  font-size: 29px;
  color: rgb(32,60,88);
  font-family: monospace;
}

#investimentos-alternativos img {
  opacity: 0.49;
  width: 100%;
}

#equipe h2 {
  color: rgb(224,224,224) !important;
  font-size: 2.5rem;
  font-size: 50px;
  font-family: monospace;
}

#equipe p {
  color: rgb(193,190,191);
}

#contato {
  min-height: auto;
  padding: 200px 0;
}

#contato h2 {
  font-size: 20px;
  color: #e0e0e0;
}

#footer {
  padding: 100px 0;
  margin-top: -6px;
}

#header-equipe {
  height: 350px;
  background-image: url("../../../assets/img/bgs/bg-n1.jpg");
}

@media (min-width: 576px) {
  .title-documentos {
    margin-top: 82px !important;
  }
}

#footer h3 {
  font-size: 20px;
}

