* {
  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: #5840BA;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
}
@media (max-width: 769px) {
  .header {
    padding: 1em 2em;
  }
}
@media (max-width: 550px) {
  .header {
    padding: 1em;
  }
}
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 30px;
  position: relative;
}
.header-nav-logo {
  display: flex;
  align-items: center;
}
.header-nav-logo h1 {
  font-size: 25px;
}
@media (max-width: 550px) {
  .header-nav-logo h1 {
    display: none;
  }
}
.header-nav-logo img {
  margin-right: 10px;
  height: 38px;
  width: 38px;
}
.header-nav .menu-mobile {
  display: none;
}
@media (max-width: 960px) {
  .header-nav .menu-mobile {
    display: block;
  }
}
.header-nav .menu-mobile ion-icon {
  color: #fff;
  font-size: 65px;
}
.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 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 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
}
@media (max-width: 960px) {
  .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: 60px;
    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;
    }
  }
}
@media (max-width: 960px) {
  .header-nav ul li {
    line-height: 1.3;
    padding-bottom: 23px;
    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 li a {
  display: flex;
  align-items: center;
}
.header-nav ul li a:hover {
  color: #5840BA;
}
.header-nav ul li a img {
  margin-right: 10px;
  width: 1.4em;
  height: 1.4em;
}
.header-nav ul li .cursos {
  position: relative;
}
.header-nav ul li .cursos__lista {
  display: flex;
  flex-direction: column;
}
.header-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.header-sign a:hover {
  color: #5840BA;
}
.header-sign a:last-of-type p {
  border-left: 1px solid #fff;
  padding-left: 10px;
}
.header-sign a:last-of-type p:hover {
  border-color: #5840BA;
}

.main {
  text-align: center;
  line-height: 40px;
  margin-bottom: 100px;
}
.main-title {
  margin: 70px 20px;
  font-size: 45px;
}
.main .main-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 100px;
  margin: 0 20px;
}
.main .main-cards-card {
  background-color: #fff;
  max-width: 30em;
  width: 100%;
  height: 15em;
  border-radius: 10px;
  filter: drop-shadow(3px 3px 5px #5840BA);
  padding: 0.5em;
  position: relative;
  overflow: hidden;
  display: flex;
}
@media (max-width: 550px) {
  .main .main-cards-card {
    flex-direction: column;
    max-width: 30em;
    height: 30em;
  }
}
.main .main-cards-card-img {
  width: 45%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 550px) {
  .main .main-cards-card-img {
    width: unset;
  }
}
@media (max-width: 550px) {
  .main .main-cards-card-img {
    max-width: 30em;
    height: 60%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.main .main-cards-card .card-text {
  text-align: start;
  padding-left: 1em;
}
@media (max-width: 550px) {
  .main .main-cards-card .card-text {
    text-align: center;
    padding-left: 0;
  }
}
.main .main-cards-card .card-text-title {
  color: #5840BA;
  font-weight: 500;
  font-size: 1.8em;
}
.main .main-cards-card .card-text-level {
  font-size: 30px;
}
.main .main-cards-card .card-text-level[class~=easy] {
  color: #1BB13C;
}
.main .main-cards-card .card-text-level[class~=intermediary] {
  color: #C6A707;
}
.main .main-cards-card .card-text-level[class~=hard] {
  color: #B11B1B;
}
.main .main-cards-card .card-text-code {
  color: #5840BA;
  font-size: 25px;
}
.main .main-cards-card .card-text-btn {
  display: inline-block;
  margin: 10px;
  background-color: #5840BA;
  padding: 0.1em 2em;
  border-radius: 10px;
  transition: all 0.4s;
  font-size: 1.2em;
}
.main .main-cards-card .card-text-btn:hover {
  background-color: #544881;
}
@media (max-width: 550px) {
  .main .main-cards-card .card-text-btn {
    padding: 0.8em 4em;
  }
}

.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;
}

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