* {
  font-family: 'Montserrat', sans-serif;
}

.container-sm {
  padding-left: 0;
  padding-right: 0;
}

.navbar{
  padding: 0;
  height: 72px;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

.navbar-nav{
  align-items: center;
}

.navbar-brand {
  margin-left: 60px;
  font-weight: bold;
}

@media (max-width: 768px){
  .navbar-brand {
    margin-left: 0px;
  }
}

.navbar-collapse {
  flex-grow: 0;
  align-items: unset;
  justify-content: center;
  animation-name: transicao-dropdown;
  animation-duration: 0.5s;
}

@media (max-width: 768px){
  .navbar-collapse {
    border-top: 1px solid whitesmoke;
    display: flex;
    flex-direction: row;
    background-color: white;
  }
}

@keyframes transicao-dropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.navbar-brand > span {
  color: #4847b5;
}

.navbar-brand > span > b {
  color: #2C3E50;
}

.navitem:nth-child(1){
  margin-right: 10px;
}

.dropdown-menu {
  animation-name: transicao-dropdown;
  animation-duration: 1s;
}

@keyframes transicao-dropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.dropdown-menu > li {
  padding-top: 10px;
}

.container-fluid {
  height: 100%;
  padding: 0;
  align-items: unset !important;
}

.nav-item {
  align-items: center;
}

#link-produtos {
  margin-right: 18px;
}

#link-planos-precos {
  margin-right: 18px;
}

#link-planos-precos-mobile {
  margin: 20px 0px 10px 0px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #1d1f21 !important;
}

.nav-link.disabled {
  color: #7d7d7d !important;
}

.nav-link > i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-link > i {
  transform: rotate(0deg);
  animation-name: rotacao-seta1;
  animation-duration: 0.3s;
}

@keyframes rotacao-seta1 {
  0% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.nav-link.show > i {
  transform: rotate(180deg);
  animation-name: rotacao-seta;
  animation-duration: 0.3s;
}

@keyframes rotacao-seta {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

.navbar-light .navbar-toggler {
  justify-content: center;
  align-items: center;
  transition: 1s;
  border: none;
}

#btn-cadastro {
  font-weight: bold;
  width: 168px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white !important;
  background-color: #4847b5;
}

#btn-login {
  width: 92px;
  height: 72px;
  color: #4847B5 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background-color: #D3D2F7;
}

#btn-cadastro-mobile {
  width: 168px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white !important;
  background-color: #4847b5;
  margin-top: 40px;
}

#btn-login-mobile {
  width: 168px;
  height: 40px;
  color: #4847B5;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D3D2F7;
  margin: 10px 0 40px 0; 
}

h1 {
  color: #494d52;
  font-weight: 400;
  font: 96px;
}

h1 > span {
  font-weight: 600;
  color: #4847b5;
}

h2 {
  color: #494d52;
  font: 160px;
}