.box-repositorio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px 24px;
  border-radius: 40px 20px 120px 40px;
  background-color: #F4F6FF;
  cursor: pointer;
  box-shadow: 0px 0px 2px 0px #00000040;

  div {
      width: 50%;
  }
}

.repositorio-texto {
  font-family: Rawline;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #000;
  text-align: center;
  
}

.botao-nossos-cursos {
  background-color: #153CFE;
  border: 2px solid #FECE00;
  border-radius: 30px;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;

  p {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
    color: #fff;
  }
}

.botao-nossos-cursos:hover {
  background: #00CF00;
  box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.1), inset 0 -2px 3px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.8);
  transform: translateY(-3px);
}


.botao-acesso-training {
  .icon-acesso, .icon-acesso-user {
    box-shadow: 0px 0px 4px 0px #00000033;
    padding: 16px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    margin-left: 12px;
    transition: all 0.3s ease-in-out;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon-acesso:hover {
    background: #00CF00;
    box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.1), inset 0 -2px 3px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.8);
    transform: translateY(-3px);
  }

  .icon-acesso:first-child {
    margin-left: 0;
  }

  .botao-acesso {
    background-color: #fff;
    box-shadow: none;
    transform: none;
  }

  .icon-acesso {
    position: relative;
    z-index: 9999;
    .nav-link:focus, .nav-link:hover {
      outline: none!important;
    }

    .dropdown-menu {
      text-align: center;
      border-radius: 16px;
      text-transform: none;
      inset: 0px auto auto -60px!important;
      margin: 10px 0 0 0!important;
    }

    .dropdown-menu li a{
      text-transform: none;

      font-size: 14px;
      line-height: 100%;
      letter-spacing: 0%;
      color: #324798;
      z-index: 9;
    }
  }
  
}

.titulo-banner {
  color: #153CFE;
  margin-left: 12px;
}

.titulo-banner strong{
  font-weight: 800;
}

.vr-bar {
  height: 200px;
   position: relative;
  z-index: 1;
}

.vr-hero {
  margin: 0 30px;
  background-color: #324798;
  height: 150px;
  width: 1px;
  z-index: 1;
   position: relative;
}

@media (max-width: 1399.98px) {
  .header-home::after {
    top: 110px;
  }
}

@media (max-width: 1199.98px) {
  .header-home::after {
    top: 150px;
  }
}

@media (max-width: 991.98px) {
  .vr-bar {
    rotate: calc(90deg);
    height: 50px;
  }

  .vr-hero {
    height: 200px;
  }

  .header-home::after {
    top: 350px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .bg-home-logo {
    height: auto;
    text-align: center;
    padding: 40px 0;
  }
}

@media (max-width: 767.98px) {
  .header-home::after {
    top: 400px;
  }
}

@media (max-width: 575.98px) {
  .header-home::after {
    top: 430px;
  }
}

@media (max-width: 429.98px) {
  .header-home::after {
    top: 450px;
  }
}

.dark-mode {
  .botao-nossos-cursos{
    background-color: var(--background-color-light);
    color: var(--text-color-dark);
  }

  .botao-nossos-cursos p {
    color: var(--text-color-light);
  }
}