@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

.mobile {
  display: none;
}

body {
  background-color: #141619;
  font-family: "Saira", sans-serif;
}

header {
  position: absolute;
}

header, footer {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  z-index: 2;
}

footer {
  height: -moz-max-content;
  height: max-content;
  box-sizing: border-box;
  padding: 0 40px;
  border-top: 1px solid #003680;
}

.headerCont, .footerCont {
  max-width: 1200px;
  width: 100%;
  display: flex;
  padding: 0 10px;
  box-sizing: content-box;
}

.footerCont {
  justify-content: space-between;
  padding: 10px 0;
}
.footerCont img {
  width: 32px;
  height: 32px;
  margin: auto 0;
}

.headerLogo {
  width: 50px;
  height: 50px;
  margin: auto 0;
}

.headerIcon {
  width: 140px;
  height: 39px;
  display: flex;
  justify-content: space-between;
  margin: auto 0;
}
.headerIcon svg {
  margin: auto;
}

.headerIcon a {
  text-decoration: none;
  transition: 0.2s;
  fill: #FFFFFF;
  display: flex;
}

.headerIcon a:hover {
  fill: #0053c5;
}

.headerText a {
  text-decoration: none;
  color: #FFFFFF;
}

.headerText a:hover {
  color: #1AC8ED;
}

.footerCont span {
  font-size: 15px;
  color: #FFFFFF;
  margin: auto;
  text-align: center;
}

.inicio {
  display: flex;
  height: 100vh;
  padding: 0 20px;
  background-image: url("../img/bg1.png");
  overflow: hidden;
}

.inicioVazio {
  width: 510px;
  height: 500px;
}

.inicioCont {
  max-width: 1200px;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
}
.inicioCont h1 {
  font-size: 2.2rem;
  color: #FFFFFF;
  line-height: 70px;
  margin: auto 0;
  animation-delay: 2s;
  text-align: center;
}
.inicioCont span {
  font-size: 2.2rem;
  animation: txtAni 1s ease-in forwards;
  text-align: center;
}
.inicioCont img {
  max-width: 400px;
  width: 100%;
  transform: rotateY(-30deg) rotateX(40deg) rotateZ(20deg);
  animation: imgAni 30s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes imgAni {
  0% {
    transform: rotateY(-30deg) rotateX(40deg) rotateZ(20deg);
  }
  50% {
    transform: rotateY(0deg) rotateX(45deg) rotateZ(20deg);
  }
  100% {
    transform: rotateY(-30deg) rotateX(40deg) rotateZ(20deg);
  }
}
@keyframes txtAni {
  0% {
    color: #FFFFFF;
  }
  100% {
    color: #0053C5;
  }
}
.habilidades {
  box-sizing: border-box;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 160px 20px;
}

.habCont {
  max-width: 1200px;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  opacity: 0;
}
.habCont h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
}

.sobre {
  max-width: 600px;
  width: 100%;
}
.sobre p {
  font-size: 17px;
  color: #FFFFFF;
  margin-top: 5px;
  line-height: 31px;
}
.sobre span {
  color: #0053C5;
}

.hab {
  max-width: 400px;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
}
.hab h2 {
  text-align: center;
}

.habIcon ul {
  list-style: none;
}
.habIcon h2 {
  margin: 0 auto;
}
.habIcon li {
  display: flex;
  justify-content: center;
  font-size: 40px;
  color: #FFFFFF;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.habIcon li svg {
  width: 50px;
  height: 50px;
  padding: 15px;
  border: 1px solid #003680;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  background-color: #121212;
  transition: 0.2s;
}
.habIcon li svg:hover {
  transform: scale(1.07);
}
.habIcon li svg::before {
  margin: auto 0;
}

.projetos {
  box-sizing: border-box;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  justify-content: center;
  padding: 160px 20px;
  background-color: #090A0C;
}
.projetos h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  text-align: center;
}

.projetosCont {
  max-width: 1500px;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  opacity: 0;
}
.projetosCont ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 20px;
  margin-top: 70px;
}

.cardPro {
  box-sizing: border-box;
  max-width: 450px;
  width: 100%;
  height: 300px;
  border: 1px solid #003680;
  background-color: rgba(0, 0, 0, 0.0823529412);
  padding: 15px;
  list-style: none;
  border-radius: 6px;
  transition: 0.2s;
}
.cardPro a {
  width: -moz-max-content;
  width: max-content;
  background-color: #0053C5;
  font-size: 16px;
  border-radius: 6px;
  color: #FFFFFF;
  text-decoration: none;
  padding: 5px 15px;
  cursor: pointer;
  margin-top: auto;
  transition: 0.2s;
}
.cardPro a:hover {
  background-color: #003680;
}

.cardPro:hover {
  border: 1px solid #f1f1f1;
  transform: scale(1.05);
}

.cardProCont {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cardProContName {
  display: flex;
  justify-content: space-between;
  cursor: default;
}
.cardProContName span {
  color: #FFFFFF;
  font-size: 1.65rem;
}
.cardProContName .cardPe {
  background-color: #0053C5;
}
.cardProContName p {
  padding: 5px 15px;
  height: -moz-max-content;
  height: max-content;
  justify-content: center;
  font-size: 13px;
  color: #ffffff;
  background-color: #5c21ff;
  border-radius: 6px;
  text-align: center;
}

.cardText {
  color: #B9B9B9;
  font-size: 15px;
  margin-top: 18px;
}

.cardProTec {
  width: 100%;
  display: flex;
  gap: 10px;
  padding-top: 12px;
}
.cardProTec i {
  font-size: 32px;
  color: #0053C5;
}

.c1 {
  background-image: url(../img/projeto1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c2 {
  background-image: url(../img/projeto10.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c3 {
  background-image: url(../img/projeto4.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c4 {
  background-image: url(../img/projeto5.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c5 {
  background-image: url(../img/projeto8.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c6 {
  background-image: url(../img/projeto9.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sobreIcon {
  margin-top: 15px;
}

@media screen and (max-width: 1030px) {
  .inicioVazio {
    display: none;
  }
  .inicioCont {
    margin: 0;
    margin-top: 120px;
  }
  .inicioCont h1 {
    text-align: center;
    margin: auto;
  }
  .inicioCont img {
    top: 280px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1060px) {
  .cardProContName span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 820px) {
  .header {
    display: none;
  }
  .sobreIcon {
    margin: auto;
  }
  .inicioCont {
    justify-content: center;
    margin-top: 60px;
    margin: auto;
  }
  .inicioCont h1 {
    text-align: center;
    font-size: 1.6rem;
    line-height: 50px;
  }
  .inicioCont span {
    font-size: 3rem;
  }
  .projetosCont ul {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 50px;
  }
  .projetosCont ul li {
    max-width: 100%;
  }
  .sitesCont h2, .sobre h2, .hab h2, .projetos h2 {
    font-size: 2.3rem;
  }
  .habilidades, .projetos {
    padding: 70px 20px;
  }
  .habCont {
    flex-direction: column;
    gap: 23px;
  }
  .habCont .sobre {
    display: flex;
    flex-direction: column;
    gap: 23px;
    margin: 0 auto;
  }
  .habCont .sobre h2 {
    text-align: center;
  }
  .habCont .sobre p {
    text-align: center;
    margin-top: 16px;
  }
  .habCont .hab {
    margin: 0 auto;
    margin-top: 26px;
  }
  footer {
    height: -moz-max-content;
    height: max-content;
  }
  footer .footerCont {
    padding: 20px 0;
    flex-direction: column;
    gap: 20px;
  }
  footer .footerCont img {
    margin: 0 auto;
  }
  footer .footerCont span {
    text-align: center;
    order: 3;
  }
  footer .footerCont .headerIcon {
    margin: 0 auto;
    order: 2;
  }
  .mobile {
    position: fixed;
    display: flex;
    box-shadow: 0 0 1em rgba(0, 82, 197, 0.431372549);
    border-bottom: 1px solid #0053C5;
  }
  .mobile .headerCont {
    display: relative;
    background-color: #141619;
    padding: 0;
  }
  .mobile .headerCont .btnHeader {
    position: absolute;
    top: 20px;
    width: 100%;
  }
  .mobile .headerCont .btnHeader i {
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    margin-left: 20px;
  }
  .mobile .headerCont .btnHeader .headerText {
    height: -moz-max-content;
    height: max-content;
  }
  .mobile .headerCont .btnHeader .btnHeaderCont {
    display: none;
    background-color: #141619;
    flex-direction: column;
    gap: 30px;
    margin-top: 29px;
    box-shadow: 0 18px 1em rgba(0, 82, 197, 0.2470588235);
    border-bottom: 1px solid #0053C5;
    border-top: 1px solid #0053C5;
    padding-bottom: 20px;
    padding-top: 35px;
  }
  .mobile .headerCont .btnHeader .btnHeaderCont .headerText {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    text-align: center;
  }
  .mobile .headerCont .btnHeader .btnHeaderCont .headerText ul {
    flex-direction: column;
    gap: 20px;
  }
  .mobile .headerCont .btnHeader .btnHeaderCont .headerIcon {
    margin: 0 auto;
  }
  .mobile img {
    margin: auto;
  }
}
.add {
  animation: anidiv 1s ease-in-out forwards;
  animation-delay: 0.6s;
}
.add div {
  transition: 1s ease-in-out;
}

@keyframes anidiv {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes cardGrid {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 280px) {
  .inicioCont h1 {
    margin-top: 50px;
  }
}/*# sourceMappingURL=style.css.map */