* {
  margin: 0;
}

body {
  box-sizing: border-box;
}

.dark {
  background-color: #020024;
  color: #FFF;
}

button:hover {
  transform: scale(1.05);
  transition: all 0.1s;
}

h2 {
  font-family: "MuseoModerno", cursive;
}

h3 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
}

p {
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

ul {
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

a:hover {
  transform: scale(1.05);
  transition: all 0.1s;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  position: fixed;
  background: #020024 linear-gradient(90deg, #020024 0%, #090979 35%, #5333ed 100%);
  z-index: 1000;
}
header nav {
  height: 80px;
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
}
header nav .btn-mobile {
  display: none;
  background-color: transparent;
  width: 40px;
}
header nav .btn-mobile img {
  width: 40px;
  height: 40px;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
header nav ul li:hover {
  transform: scale(1.05);
  transition: all 0.1s;
}
header nav a {
  text-decoration: none;
  color: white;
  font-size: larger;
  font-family: "MuseoModerno", cursive;
  font-weight: 700;
}
header nav button {
  width: 130px;
  height: 40px;
  border-radius: 10px;
  border: none;
  font-family: "MuseoModerno", cursive;
  font-size: medium;
  font-weight: 700;
  cursor: pointer;
}

main {
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
main .center {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  width: 85%;
  margin: 30px 0;
}
main .center .curriculum {
  border-radius: 30px;
  padding: 20px;
  width: 25%;
  min-height: 556px;
  height: 70vh;
  max-height: 1000px;
  min-width: 400px;
  display: flex;
  position: sticky;
  top: 15%;
  flex-direction: column;
  align-items: center;
  -webkit-box-shadow: 0px 0px 33px -9px rgba(0, 0, 0, 0.63);
  -moz-box-shadow: 0px 0px 33px -9px rgba(0, 0, 0, 0.63);
  box-shadow: 0px 0px 33px -9px rgba(0, 0, 0, 0.63);
}
main .center .curriculum .apresentation {
  align-self: flex-start;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: fit-content;
  margin-bottom: 15px;
}
main .center .curriculum .apresentation img {
  border: 2px solid #020024;
  border-radius: 50%;
  width: 150px;
  height: 150px;
}
main .center .curriculum .apresentation .apresentation-text {
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main .center .curriculum .apresentation .apresentation-text h2 {
  width: 240px;
  text-align: center;
  font-family: "MuseoModerno", cursive;
}
main .center .curriculum .apresentation .apresentation-text h3 {
  width: 230px;
  height: 30px;
  line-height: 30px;
  background: #020024 linear-gradient(90deg, #020024 0%, #090979 35%, #5333ed 100%);
  border-radius: 10px;
  text-align: center;
  color: #FFF;
  font-family: "Jost", sans-serif;
}
main .center .curriculum .apresentation .apresentation-text h4 {
  text-align: center;
  font-family: "Jost", sans-serif;
}
main .center .curriculum hr {
  width: 100%;
  border-top: 2px solid #020024;
  margin-bottom: 10px;
}
main .center .curriculum P {
  font-weight: 500;
}
main .center .curriculum .text-informations {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  padding-bottom: 15px;
}
main .center .curriculum .text-informations .habilities {
  text-align: center;
}
main .center .curriculum .text-informations .habilities a {
  color: #5333ed;
}
main .center .curriculum .text-informations .tecnologies {
  text-align: center;
}
main .center .curriculum .text-informations .studying {
  text-align: center;
}
main .center .curriculum .text-informations .hobbies {
  text-align: center;
  max-width: 350px;
}
main .center .projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 65%;
  height: 90%;
  text-align: center;
  margin-top: 70px;
}
main .center .projects h2 {
  font-size: xx-large;
  margin-bottom: 10px;
}
main .center .projects .itens {
  flex-direction: column;
  gap: 30px;
  align-items: center;
  display: flex;
}
main .center .projects .itens .item {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  width: 85%;
}
main .center .projects .itens .item img {
  width: 100%;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 33px -9px rgba(0, 0, 0, 0.63);
  -moz-box-shadow: 0px 0px 33px -9px rgba(0, 0, 0, 0.63);
  box-shadow: 0px 0px 33px -9px rgba(0, 0, 0, 0.63);
}
main .center .projects .itens .item .overlay {
  border-radius: 15px;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  transform: scale(0);
  transition: 0.3s ease;
}
main .center .projects .itens .item .overlay button {
  width: 150px;
  height: 50px;
  border-radius: 15px;
  border: none;
  -webkit-box-shadow: 0px 0px 33px -9px rgba(0, 0, 0, 0.63);
  -moz-box-shadow: 0px 0px 33px -9px rgba(0, 0, 0, 0.63);
  box-shadow: 0px 0px 33px -9px rgba(0, 0, 0, 0.63);
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: medium;
}
main .center .projects .itens .informations {
  max-width: 90%;
}
main .center .projects .item:hover .overlay {
  transform: scale(1);
}

main .center .dark-curriculum {
  background-color: #01000c;
  -webkit-box-shadow: 0px 0px 33px -9px rgba(136, 136, 136, 0.63);
  -moz-box-shadow: 0px 0px 33px -9px rgba(136, 136, 136, 0.63);
  box-shadow: 0px 0px 33px -9px rgba(136, 136, 136, 0.63);
}

@media (max-width: 1750px) {
  header {
    height: 70px;
  }
  header nav {
    height: 70px;
  }

  main .center {
    margin-top: 18px;
  }
}
@media (max-width: 1650px) {
  header nav {
    width: 90%;
  }

  main .center {
    width: 90%;
  }
}
@media (max-width: 1320px) {
  main .center {
    height: fit-content;
  }
  main .center .curriculum {
    min-width: 300px;
    height: 80vh;
  }
  main .center .curriculum .apresentation img {
    width: 125px;
    height: 125px;
  }
  main .center .curriculum .apresentation .apresentation-text h2 {
    font-size: 1.2em;
    width: 150px;
    line-height: 20px;
  }
  main .center .curriculum .apresentation .apresentation-text h3 {
    width: 150px;
    height: 44px;
    line-height: 22px;
  }
  main .center .projects .itens {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 15px;
  }
  main .center .projects .itens .informations {
    max-width: 90%;
  }
}
@media (max-width: 1110px) {
  main .center .projects {
    align-self: flex-start;
  }
  main .center .projects .itens .item {
    width: 450px;
  }
  main .center .projects .itens .item img {
    width: 450px;
  }
}
@media (max-width: 880px) {
  header #nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0px;
    height: 200px;
    z-index: 1000;
    background: #020024 linear-gradient(90deg, #020024 0%, #090979 35%, #5333ed 100%);
    justify-content: space-around;
    list-style: none;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header #nav.active ul li {
    padding-left: 7%;
  }
  header nav .btn-mobile {
    display: block;
    order: 1;
  }
  header nav .title {
    justify-self: center;
    order: 2;
  }
  header nav ul {
    justify-self: flex-start;
    order: 1;
    display: none;
  }
  header nav button {
    order: 3;
  }

  main {
    height: fit-content;
  }
  main .center {
    flex-direction: column;
    align-items: center;
  }
  main .center .curriculum {
    min-height: 80vh;
    min-width: 400px;
    margin-bottom: 10px;
    position: relative;
    margin-top: 80px;
  }
  main .center .curriculum .apresentation img {
    height: 150px;
    width: 150px;
  }
  main .center .curriculum .apresentation .apresentation-text {
    text-align: center;
  }
  main .center .curriculum .apresentation .apresentation-text h2 {
    font-size: 1.5em;
    width: 230px;
    line-height: 40px;
  }
  main .center .curriculum .apresentation .apresentation-text h3 {
    width: 230px;
    line-height: 30px;
    height: 30px;
  }
  main .center .projects {
    width: 90%;
    align-self: center;
  }
}
@media (max-width: 490px) {
  header {
    position: relative;
  }
  header nav {
    position: relative;
  }
  header nav button {
    width: 70px;
    line-height: 18px;
  }

  main .center {
    margin-top: 0;
  }
  main .center .curriculum {
    min-width: 300px;
    height: 80vh;
    min-height: 620px;
    margin-top: 20px;
  }
  main .center .curriculum .apresentation img {
    width: 125px;
    height: 125px;
  }
  main .center .curriculum .apresentation .apresentation-text h2 {
    font-size: 1.2em;
    width: 150px;
    line-height: 20px;
  }
  main .center .curriculum .apresentation .apresentation-text h3 {
    width: 150px;
    height: 44px;
    line-height: 22px;
  }
  main .center .projects .itens .item {
    max-width: 100%;
    width: auto;
  }
  main .center .projects .itens .item .overlay {
    flex-direction: column;
  }
  main .center .projects .itens .item img {
    max-width: 100%;
  }
}
@media (max-width: 350px) {
  header nav .btn-mobile img {
    width: 35px;
    height: 35px;
  }

  main .center .curriculum {
    min-width: 260px;
    height: 750px;
  }
  main .center .curriculum .apresentation {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 0;
  }
  main .center .curriculum .text-informations {
    justify-content: space-between;
  }
}

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