@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Poppins:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --cor-letra-texto-dark: #ebd8ff;
  --cor-letra-secundaria-dark: #a494fd;
  --cor-letra-terciaria-dark: #040318;
  --cor-fundo-box-dark: #10063f7e;
  --cor-sombras-dark: #12042e;
  --fonte-detalhe: "Poppins";
  --fonte-texto: "Inter";
  --cor-estrelas: #ffffff;
}

* {
  padding: 0;
  margin: 0;
  color: var(--cor-letra-texto-dark);
}

body {
  font-family: var(--fonte-texto);
  background-image: linear-gradient(to left bottom, #10063f, #12025d, #251086, #2e17a1, #4521a8, #512ca5, #6826c4, #811dc3, #8911b8, #a706a7, #a00185);
  transition: background-image 0.8s ease;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--cor-estrelas);
  border-radius: 50%;
  opacity: 0.1;
  animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.2);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
#stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

header, main, footer {
  position: relative;
  z-index: 1;
}

header {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
}
header nav {
  margin: 2% 2% 2% 0;
}
header nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
header nav ul li {
  display: flex;
  justify-content: left;
  width: 100px;
  padding: 10px;
  margin: 0 20px;
}
header nav ul li a {
  text-decoration: none;
  font-size: 1.3rem;
}
header nav ul li:hover {
  background-color: var(--cor-letra-secundaria-dark);
  border-radius: 5px;
}
header nav ul li:hover a {
  color: var(--cor-letra-terciaria-dark);
}
header .trilho {
  background-color: var(--cor-letra-secundaria-dark);
  width: 70px;
  height: 40px;
  margin: 0 30px;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
}
header .trilho .indicador {
  background-color: var(--cor-letra-texto-dark);
  width: 30px;
  height: 30px;
  margin: 5px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  transition: left 0.5s ease;
}
header .trilho.light .indicador {
  left: 30px;
}

main {
  align-items: center;
}
main #nome-pagina {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-top: 50px;
  width: 70%;
  margin: auto;
}
main #nome-pagina img {
  max-width: 250px;
}
main #nome-pagina #texto h1 {
  text-align: center;
  font-family: "Cinzel";
  max-width: 800px;
  font-size: 2rem;
  padding: 20px 0;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #b0a0fb, #74b6ff, #05c8ff, #00d6fb, #00e0df);
  background-size: 300% 100%;
  animation: degrade 10s linear infinite alternate;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes degrade {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@media (min-width: 480px) {
  main #nome-pagina #texto h1 {
    font-size: 3.4rem;
  }
}
@media (min-width: 1550px) {
  main #nome-pagina #texto h1 {
    font-size: 4.5rem;
  }
}
main #nome-pagina #texto h2 {
  font-size: 1.5rem;
  font-weight: 100;
  text-align: center;
}
main #nome-pagina #texto p {
  text-align: justify;
  margin: 0 10%;
}
main #inicio-pagina {
  background-image: url(/imagens/fundo/Detalhe\ fundo.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: color-burn 2%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main #inicio-pagina div {
  max-width: 1500px;
}
main #inicio-pagina div h3 {
  color: var(--cor-letra-secundaria-dark);
  font-size: 2rem;
  text-shadow: 1px 2px 3px var(--cor-sombras-dark);
  padding: 1rem 0 3rem;
  text-align: center;
  margin: 2rem 0;
}
main #inicio-pagina div p {
  text-align: justify;
  padding: 10px;
  margin: 0 5%;
}
main #sobre-mim {
  display: flex;
  align-items: center;
  flex-direction: column;
}
main #sobre-mim #texto-sobre-mim {
  max-width: 1500px;
  margin: 0 5%;
}
main #sobre-mim #texto-sobre-mim h3 {
  color: var(--cor-letra-secundaria-dark);
  font-size: 2rem;
  padding: 1rem 0 3rem;
  text-align: center;
  margin: 0 10%;
  text-shadow: 1px 2px 1px var(--cor-sombras-dark);
}
main #sobre-mim #texto-sobre-mim p {
  text-align: justify;
  padding: 10px;
}
main #sobre-mim #linhadotempo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 0;
  max-width: 600px;
  margin: 0 10%;
}
main #sobre-mim #linhadotempo .linhadotempo {
  display: flex;
  flex-direction: row;
  margin: 10px;
  justify-content: space-around;
}
main #sobre-mim #linhadotempo .linhadotempo .info-linhadotempo {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  text-align: left;
}
main #sobre-mim #linhadotempo .linhadotempo .info-linhadotempo h4 {
  color: var(--cor-letra-secundaria-dark);
  text-shadow: 1px 1px 3px var(--cor-sombras-dark);
}
main #sobre-mim #linhadotempo .linhadotempo .img-linhadotempo img {
  width: 100px;
  margin: 0 20px;
  gap: 20px;
}
main #formacoes-experiencia {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 5%;
}
main #formacoes-experiencia h3 {
  color: var(--cor-letra-secundaria-dark);
  font-size: 2rem;
  padding: 2rem 0 3rem 0;
  text-align: center;
  margin: 0 10%;
  width: 100%;
  text-shadow: 1px 1px 3px var(--cor-sombras-dark);
}
main #formacoes-experiencia p {
  padding: 5px;
  color: var(--cor-letra-texto-dark);
}
main #formacoes-experiencia #experiencias h4, main #formacoes-experiencia #educacao h4 {
  padding: 20px;
  text-align: center;
  font-size: 1.5rem;
  color: var(--cor-letra-secundaria-dark);
  text-shadow: 1px 1px 3px var(--cor-sombras-dark);
}
main #formacoes-experiencia #experiencias .experiencia {
  padding: 10px 20px;
  max-width: 600px;
}
main #formacoes-experiencia #experiencias .experiencia h5 {
  padding-left: 10px;
  font-size: 1.2rem;
  padding: 10px 0;
  text-shadow: 1px 1px 3px var(--cor-sombras-dark);
}
main #formacoes-experiencia #educacao #graduacao, main #formacoes-experiencia #educacao #cursos {
  padding: 10px 20px;
  max-width: 600px;
}
main #projetos {
  padding: 3% 0;
  margin: 0 5%;
}
main #projetos h3 {
  color: var(--cor-letra-secundaria-dark);
  font-size: 2rem;
  padding: 2rem 0 3rem;
  text-align: center;
  width: 100%;
  text-shadow: 1px 1px 3px var(--cor-sombras-dark);
}
main #projetos #card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
main #projetos #card .cards-projeto {
  display: flex;
  flex-direction: column;
  background-color: var(--cor-fundo-box-dark);
  border-radius: 5px;
  box-shadow: 2px 2px 10px var(--cor-sombras-dark);
  min-width: 100px;
  max-width: 300px;
  margin: 2px;
  margin-top: 40px;
}
main #projetos #card .cards-projeto .links-projetos {
  text-decoration: none;
}
main #projetos #card .cards-projeto .links-projetos img {
  width: 100%;
  border-radius: 5px;
}
main #projetos #card .cards-projeto .links-projetos h4 {
  text-align: center;
  padding: 2rem;
  color: var(--cor-letra-texto-dark);
}
main #contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2%;
  width: 100%;
}
main #contato h3 {
  color: var(--cor-letra-secundaria-dark);
  font-size: 2rem;
  padding: 3rem 0 3rem 0;
  text-align: center;
  width: 100%;
  text-shadow: 1px 1px 3px var(--cor-sombras-dark);
}
main #contato #form-contato {
  background-color: var(--cor-fundo-box-dark);
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px var(--cor-sombras-dark);
  width: 60%;
  margin: 2rem 0;
}
main #contato #form-contato label {
  color: var(--cor-letra-texto-dark);
  padding: 10px;
}
main #contato #form-contato input {
  height: 30px;
  border: none;
  border-radius: 5px;
  color: var(--cor-letra-terciaria-dark);
  padding: 2px;
}
main #contato #form-contato textarea {
  height: 100px;
  border: none;
  border-radius: 5px;
  color: var(--cor-letra-terciaria-dark);
  padding: 2px;
}
main #contato #form-contato button {
  margin: 5px 0;
  height: 30px;
  border: none;
  border-radius: 5px;
  background-color: var(--cor-letra-texto-dark);
  color: var(--cor-letra-terciaria-dark);
}
main #contato .contato-links {
  display: flex;
  justify-content: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  background-image: url("/imagens/fundo/astronautafundo.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 180px;
  width: 100%;
}
main #contato .contato-links .link_ {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  width: 200px;
  align-items: center;
  margin: 10px 30px;
  color: var(--cor-letra-secundaria-dark);
  text-shadow: 1px 1px 3px var(--cor-sombras-dark);
  font-size: 1.2rem;
}
main #contato .contato-links .link_ img {
  width: 60px;
  padding: 10px;
}
main #contato .contato-links .link_ img:hover {
  background-color: var(--cor-letra-secundaria-dark);
  border-radius: 50px;
}

p, h1, h2, h3, h4, a {
  transition: color 0.5s ease;
}

footer {
  width: 100%;
  text-align: center;
  margin: 2rem 0;
}/*# sourceMappingURL=style.css.map */