@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap";
:root {
  --fontype-Poppins: Poppins, sans-serif;
  --fontype-Sora: Sora, sans-serif;
}
* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #FAF9F6;
  color: #1c1c1c;
  line-height: 1.5;
  transition: 0.1s ease-in;
}


header {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #bfbfba;
  background-color: #FAF9F6;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 16px;
  transition: 0.1s ease-in;
}



header h5 {
  font-family: var(--fontype-Sora);
  font-size: 1.5em;
  color: #333;
}
#checkbox {
  display: none;
}



header a {
  font-size: 1em;
  height: fit-content;
  align-self: center;
  font-family: var(--fontype-Poppins);
  text-decoration: none;
  box-sizing: border-box;
  background-color: transparent;
  color: #bfbfba;
  transition: 0.1s ease-in;
  border-radius: 5px;
  padding: 0 5px;
}


header a:hover {
  background-color: #6565ff09;
}

main {
  padding: 20px;
  height: fit-content;
  max-width: 100vw;
  box-sizing: border-box;
}

.mainTitle {
  font-family: var(--fontype-Poppins);
  font-size: 2.675rem;
  line-height: 1.2;
}

.sectionSobre {
  font-family: var(--fontype-Sora);
  font-size: 1.2em;
  word-wrap: break-word;
  box-sizing: border-box;
  padding: 20px;
  margin: 24px 0 64px;
}

.sectionPrincipios {
  padding: 20px;
  box-sizing: border-box;
  font-family: var(--fontype-Sora);
}

.sectionPrincipios ul {
  list-style: none;
  font-weight: 600;
  font-size: 1.4em;
  margin: 10px 0;
}

.sectionPrincipios h1 {
  font-weight: 600;
  line-height: 30px;
  font-size: 2em;
}


.sectionHabilidades {
  background-color: #bfbfba;
  border-radius: 30px;
  padding: 20px;
  box-sizing: border-box; 
  font-family: var(--fontype-Sora);
}

.sectionHabilidades ul {
  list-style: none;
  font-weight: 600;
  font-size: 1.4em;
  margin: 10px 0;
}

.sectionHabilidades ul a {
  text-decoration: none;
  color: #1c1c1c;
}





.customList  {
    list-style: none;
    font-weight: 600;
    font-size: 1.4em;
    margin: 10px 0;
}






.sectionHabilidades h1 {
  font-weight: 600;
  line-height: 30px;
  font-size: 2em;
}

@keyframes minhaAnimacao {
  0% {width: 0px; height: 0px;}
  50% {width: 60px; height: 70px;}
  100% {width: 520px; height: 240px;}
}

.containerSkills {

  animation-name: minhaAnimacao;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  transition: transform 2s ease-in-out;

  border-radius: 12px;
}

/* .sectionCarreira {
  margin: 20px 0;
  font-family: var(--fontype-Sora);
  padding: 20px;
  box-sizing: border-box;
}
.sectionCarreira ul {
  list-style: none;
}
.carreiraTitulo {
  font-size: 2em;
}
.sectionCarreira ul li {
  margin: 30px 0;
  font-size: 1.2em;
}
.sectionCarreira ul li h2 {
  font-size: 1.5em;
  font-weight: 600;
} */

.emConstrucao {
  font-size: 1em;
  font-family: var(--fontype-Sora);
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.emConstrucao p {
  text-align: center;
}
footer {
  max-width: 100vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  font-family: var(--fontype-Sora);
  font-size: 0.88em;
  border-top: 1px solid #bfbfba;
  transition: 0.1s ease-in;
}
.socialMediaInfo {
  text-align: center;
}
footer ul {
  list-style: none;
  display: flex;
}
footer ul li {
  padding: 0.859em;
}
.socialMedia img {
  max-width: 20px;
}
.socialMedia a {
  color: #00000099;
  width: 100%;
  display: flex;
  text-decoration: none;
  padding: 2px;
  justify-content: space-between;
}
.tecnologias {
  width: 100%;
  display: flex;
  justify-content: center;
}
.tecnologias a {
  text-decoration: none;
  color: #00000099;
}
@media (min-width: 768px) {
  .mainTitle {
    font-size: 3.2rem;
  }
}
@media (min-width: 1080px) {
  .mainTitle {
    font-size: 5.2rem;
  }
}
