* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  font-weight: inherit;
  font-family: inherit;
  font-style: inherit;
}

a {
  text-decoration: none;
  color: white;
  transition: all 0.4s;
}

li {
  list-style-type: none;
}

abbr {
  text-decoration: none;
}

strong {
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}
html body {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-family: "Robot", sans-serif;
}
html body strong {
  color: #3A2883;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0px;
  position: relative;
}
.footer-names {
  margin-top: 5px;
}
.footer img {
  height: 30px;
  width: 30px;
  position: absolute;
  right: 30px;
  bottom: 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
}
@media (max-width: 850px) {
  .header {
    padding: 1em;
  }
}
@media (max-width: 550px) {
  .header {
    padding: 1em;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  width: 60%;
  gap: 30px;
}
@media (max-width: 850px) {
  .header-nav {
    justify-content: space-between;
    width: 100%;
  }
}
.header-nav-logo {
  display: flex;
  align-items: center;
}
.header-nav-logo h1 {
  font-size: 23px;
}
.header-nav-logo img {
  margin-right: 10px;
  height: 38px;
  width: 38px;
}
.header-nav .menu-mobile {
  display: none;
}
@media (max-width: 850px) {
  .header-nav .menu-mobile {
    display: block;
  }
}
.header-nav .menu-mobile ion-icon {
  color: #fff;
  font-size: 65px;
  position: relative;
  z-index: 1;
}
.header-nav .menu-mobile ion-icon:nth-child(1) {
  animation: descendoTexto 0.2s linear;
}
@keyframes descendoTexto {
  0% {
    opacity: 0;
    display: none;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
@keyframes winner {
  0% {
    opacity: 0;
    display: none;
    transform: translateX(-45deg);
  }
  100% {
    opacity: 1;
    display: block;
    transform: translateX(45deg);
  }
}
.header-nav .menu-mobile ion-icon.active:nth-child(1) {
  display: none;
}
.header-nav .menu-mobile ion-icon.active:nth-child(2) {
  display: block;
}
.header-nav .menu-mobile ion-icon:nth-child(2) {
  display: none;
  animation: descendoTexto 1s ease-in;
}
@keyframes descendoTexto {
  0% {
    opacity: 0;
    display: none;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
@keyframes winner {
  0% {
    opacity: 0;
    display: none;
    transform: translateX(-45deg);
  }
  100% {
    opacity: 1;
    display: block;
    transform: translateX(45deg);
  }
}
.header-nav ul {
  display: flex;
  gap: 30px;
}
@media (max-width: 850px) {
  .header-nav ul {
    display: none;
  }
  .header-nav ul.active {
    display: block;
    width: 35vh;
    height: 45vh;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    background-color: #191919;
    border: 1px solid #fff;
    padding: 2.5em;
    top: 80px;
    right: 0;
    z-index: 1;
    animation: descendo 1s linear;
  }
  @keyframes descendo {
    0% {
      -webkit-height: 0;
      height: 0;
      width: 0;
      opacity: 0;
    }
    30% {
      width: 35vh;
    }
    45% {
      -webkit-height: 45vh;
      height: 45vh;
      opacity: 1;
    }
  }
}
.header-nav ul .mobile {
  display: none;
}
@media (max-width: 850px) {
  .header-nav ul .mobile {
    display: block;
  }
}
.header-nav ul li a {
  display: flex;
  align-items: center;
  font-size: 20px;
}
@media (max-width: 850px) {
  .header-nav ul li a {
    margin-bottom: 10px;
  }
}
.header-nav ul li a ion-icon {
  font-size: 25px;
  padding-right: 7px;
}
.header-nav ul li a:hover {
  color: #3A2883;
}
.header-nav ul li a img {
  margin-right: 10px;
  width: 1.4em;
  height: 1.4em;
}
.header-sign {
  display: flex;
  gap: 10px;
  padding-right: 20px;
}
@media (max-width: 850px) {
  .header-sign {
    display: none;
  }
  .header-sign.active {
    display: block;
  }
}
.header-sign a {
  font-size: 20px;
  display: flex;
}
.header-sign a ion-icon {
  font-size: 25px;
  padding-right: 5px;
}
.header-sign a:hover {
  color: #3A2883;
}
.header-sign a a:last-of-type p {
  border-left: 1px solid #fff;
  padding-left: 10px;
}
.header-sign a a:last-of-type p:hover {
  border-color: #3A2883;
}

#asideCadastro {
  height: unset;
}

.aside {
  background-color: #383B3E;
  min-width: 25%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: fixed;
  transition: all 1s ease-in;
  z-index: 1;
}
.aside .title-container {
  flex: 1;
  display: flex;
  align-items: center;
}
@keyframes menuCurso {
  from {
    display: none;
    opacity: 0;
    right: -25%;
  }
  to {
    display: flex;
    opacity: 1;
    right: 0;
  }
}
@media (max-width: 850px) {
  .aside {
    display: none;
    min-width: 50%;
    right: 0;
    z-index: 1;
    animation: menuCurso 0.5s linear;
  }
}
@media (max-width: 550px) {
  .aside {
    min-width: 300px;
  }
}
.aside.active {
  display: block;
}
.aside-title {
  font-size: 52px;
  padding: 0 0.5em;
}
@media (max-width: 960px) {
  .aside-title {
    font-size: 45px;
  }
}
.aside-lista {
  width: 100%;
  transition: all 1s linear;
}
@media (max-width: 850px) {
  .aside-lista {
    z-index: 1;
    animation: descendo 0.7s linear;
  }
  @keyframes descendo {
    0% {
      -webkit-height: 0;
      height: 0;
      width: 0;
      opacity: 0;
    }
    30% {
      width: 35vh;
    }
    45% {
      -webkit-height: 45vh;
      height: 45vh;
      opacity: 1;
    }
  }
}
.aside-lista-item {
  font-size: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  animation: descendoTexto 0.7s linear;
}
@keyframes descendoTexto {
  0% {
    opacity: 0;
    display: none;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
@keyframes winner {
  0% {
    opacity: 0;
    display: none;
    transform: translateX(-45deg);
  }
  100% {
    opacity: 1;
    display: block;
    transform: translateX(45deg);
  }
}
.aside-lista-item-link {
  display: block;
  padding: 1em;
}
.aside-lista-item-link:hover {
  background-color: #777;
}

.aula-ativa {
  background-color: #3A2883;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.aula-ativa:hover {
  background-color: purple;
}

.body-content #mainCadastro {
  height: unset;
}
.body-content .main {
  max-width: 75%;
  width: 100%;
  height: 100vh;
  position: relative;
  left: 25%;
  padding: 1em;
}
@media (max-width: 960px) {
  .body-content .main {
    height: unset;
  }
}
@media (max-width: 850px) {
  .body-content .main {
    max-width: 100%;
    position: static;
    margin-bottom: 40px;
    height: unset;
    padding: 0px;
  }
}
@media (max-width: 550px) {
  .body-content .main {
    padding: 0;
  }
}
.body-content .main-title {
  font-size: 2rem;
  padding: 1em 0;
  line-height: 1.2;
  font-weight: bold;
}
.body-content .main .title {
  padding: 1em;
}
.body-content .main .first-section {
  padding: 0 2.8em;
  animation: descendoTexto 0.5s linear;
}
@keyframes descendoTexto {
  0% {
    opacity: 0;
    display: none;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
@keyframes winner {
  0% {
    opacity: 0;
    display: none;
    transform: translateX(-45deg);
  }
  100% {
    opacity: 1;
    display: block;
    transform: translateX(45deg);
  }
}
@media (max-width: 550px) {
  .body-content .main .first-section {
    padding: 1em;
  }
}
.body-content .main .first-section table, .body-content .main .first-section td, .body-content .main .first-section th {
  border: 1px solid #171717;
  padding: 0.8em;
  background-color: #f3f3f3;
  color: #000;
  border-radius: 10px;
}
.body-content .main .first-section table {
  width: 100%;
  border-collapse: collapse;
}
.body-content .main .first-section .hipperlink {
  float: right;
  padding-left: 16px;
  border-radius: 10px;
}
@media (max-width: 550px) {
  .body-content .main .first-section .hipperlink {
    width: 100%;
    padding-left: 0;
  }
}
.body-content .main .first-section .img-curso {
  max-width: 700px;
  width: 100%;
  border-radius: 10px;
}
.body-content .main .first-section .lista-curso {
  padding: 0 1em;
  margin-bottom: 20px;
}
.body-content .main .first-section .lista-curso-item {
  list-style-type: disc;
  list-style-position: inside;
  font-size: 1.1em;
  line-height: 1.6;
  color: silver;
}
.body-content .main .first-section .lista-curso2 {
  padding: 0 1em;
  margin-bottom: 30px;
}
.body-content .main .first-section .lista-curso2-item {
  list-style-type: decimal;
  list-style-position: inside;
  font-size: 1.1em;
  line-height: 1.6;
  color: silver;
}
.body-content .main .first-section .maior {
  font-size: 1.9em;
}
.body-content .main .first-section .iframe-codepen {
  max-width: 700px;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px solid;
  margin: 1em 0;
  padding: 1em;
}
.body-content .main .first-section .purple {
  color: #3A2883;
  display: inline-block;
}
.body-content .main .first-section-subtitle {
  font-size: 2em;
  margin: 1em 0;
  line-height: 1.2;
  font-weight: bold;
}
.body-content .main .first-section-cite {
  background-color: rgba(85, 82, 82, 0.3);
  padding: 1em;
  border-left: 5px solid #3A2883;
  padding-left: 10px;
  margin: 2em 0;
}
.body-content .main .first-section-text {
  margin: 1em 0;
  line-height: 2em;
  font-size: 18px;
  color: silver;
}

/*# sourceMappingURL=Curso.css.map */
