@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto:wght@100;300;400;700&family=Ubuntu&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto;
}

html {
  scroll-behavior: smooth;
}

header {
  min-height: 70px;
}
header .nav-bar {
  background-color: #8005fb;
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  position: fixed;
}
header .nav-bar .logo img {
  max-height: 30px;
}
header .nav-bar .nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
header .nav-bar .nav-menu .nav-item {
  list-style: none;
}
header .nav-bar .nav-menu .nav-item .nav-link {
  color: #fff;
  text-decoration: none;
  transition: 0.5s ease;
}
header .nav-bar .nav-menu .nav-item .nav-link:hover {
  color: #383838;
}
header .nav-bar .mobile-menu {
  display: none;
  cursor: pointer;
}
header .nav-bar .mobile-menu .bar {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  margin: 5px auto;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

main .sobre, main .skills, main .projetos {
  padding: 20px 34px;
}
main .sobre {
  display: flex;
  justify-content: center;
  align-items: center;
}
main .sobre .text-sobre {
  width: 70%;
  text-align: center;
  padding: 30px;
}
main .sobre .text-sobre h1 {
  font-size: 2rem;
}
main .sobre .text-sobre h1 span {
  font-size: 2.5rem;
  color: #8005fb;
}
main .sobre .text-sobre h2, main .sobre .text-sobre p {
  margin-top: 20px;
}
main .sobre .text-sobre h2 {
  font-size: 1.2rem;
}
main .sobre .ft-sobre {
  display: flex;
  width: 30%;
  justify-content: center;
}
main .sobre .ft-sobre img {
  width: 100%;
  border-radius: 10px;
}
main .skills {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  background-color: rgba(128, 5, 251, 0.2039215686);
}
main .skills .logo-skills {
  display: flex;
  justify-content: center;
  width: 50%;
}
main .skills .logo-skills ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
main .skills .logo-skills ul li img {
  max-height: 50px;
}
main .skills .text-skills {
  width: 50%;
}
main .skills .text-skills p {
  margin-top: 15px;
}
main .projetos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
main .projetos .card-projeto {
  display: block;
  text-align: center;
  border: solid 2px #8005fb;
  padding: 0 0 15px 0;
  text-decoration: none;
  justify-content: center;
  width: 30%;
}
main .projetos .card-projeto .ft-projeto {
  position: relative;
  z-index: -1;
  width: 100%;
}
main .projetos .card-projeto .title-projeto {
  margin-top: 15px;
  color: #383838;
}
main .projetos .card-projeto p {
  font-size: 12px;
  margin-top: 15px;
}
main .projetos .card-projeto ul {
  margin-top: 15px;
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 10px;
}
main .projetos .card-projeto ul li img {
  max-height: 30px;
}
main .projetos .card-projeto:hover {
  background-color: rgba(128, 5, 251, 0.2039215686);
}
main .projetos .card-projeto:hover .title-projeto, main .projetos .card-projeto:hover p {
  color: #8005fb;
}

footer {
  background-color: rgba(128, 5, 251, 0.2039215686);
  padding: 20px 34px;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .social {
  display: flex;
  list-style: none;
  gap: 20px;
}
footer .social li a img {
  max-height: 50px;
}

@media (max-width: 768px) {
  header .nav-bar .mobile-menu {
    display: block;
  }
  header .nav-bar .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    background-color: #8005fb;
    flex-direction: column;
    width: 100%;
    transition: 0.5s;
  }
  header .nav-bar .nav-menu .nav-item {
    margin: 16px 0;
  }
  header .nav-bar .active {
    left: 0;
  }
  header .nav-bar .active .bar:nth-child(2) {
    opacity: 0;
  }
  header .nav-bar .active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  header .nav-bar .active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  main .sobre .text-sobre h1 {
    font-size: 1.5rem;
  }
  main .sobre .text-sobre h1 span {
    font-size: 1.6rem;
  }
  main .sobre .text-sobre h2 {
    font-size: 1rem;
  }
  main .sobre .text-sobre p {
    font-size: 13px;
  }
  main .skills p {
    font-size: 13px;
  }
  main .projetos .card-projeto .title-projeto {
    font-size: 1rem;
  }
}
@media (max-width: 668px) {
  main .sobre {
    display: block;
  }
  main .sobre .text-sobre, main .sobre .ft-sobre {
    width: 100%;
  }
  main .sobre .text-sobre h1, main .sobre .ft-sobre h1 {
    font-size: 1.2rem;
  }
  main .sobre .text-sobre img, main .sobre .ft-sobre img {
    max-width: 50%;
  }
  main .skills {
    display: block;
  }
  main .skills .logo-skills, main .skills .text-skills {
    width: 100%;
  }
  main .skills .logo-skills ul, main .skills .text-skills ul {
    justify-content: center;
  }
  main .skills .logo-skills ul li img, main .skills .text-skills ul li img {
    max-height: 38px;
  }
  main .projetos .card-projeto {
    width: 40%;
  }
  main .projetos .card-projeto .title-projeto {
    font-size: 1rem;
  }
  main .projetos .card-projeto p {
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */