@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&display=swap");



@keyframes scrollIcons {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

:root {
  --cor0: #8227d6;
  --cor1: #a752f7;
  --purple: #681fad;
  --darkcyan: #1e829b;
  --cyan: #1f91ad;
  --dark: #3f3f3f;
  --light: #eeeeee;
  --lighter: #f5f5f5;
}

::-webkit-scrollbar {
  width: 0.8em;
}

::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border: 0.15em solid #fff;
  border-radius: 100vw;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--darkcyan);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--light);
  font-family: poppinsregular, "Gill Sans", "Gill Sans MT", Calibri,
    "Trebuchet MS", sans-serif;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
}

h1 {
  font-family: cinzelbold, poppinsbold, "Lucida Sans", "Lucida Sans Regular",
    "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif, Courier,
    monospace, "Arial Narrow", Arial, sans-serif;
}

li {
  display: inline-block;
}

a {
  text-decoration: none;
}

a:hover {
  transition: 0.3s all;
}

.container {
  margin: auto;
}

header {
  background-image: linear-gradient(to right, var(--purple), var(--cyan));
  box-shadow: 2px 2px 12px #3030305b;
  position: sticky;
  top: 0;
  z-index: 10;
}

header a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s all;
}

header a:hover {
  color: #eeeeee;
  font-size: 1.04em;
}

header li {
  margin-left: 20px;
}

.header-content {
  max-width: 1250px;
  margin: auto;
  height: 5em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
}

main {
  max-width: 1250px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  color: var(--dark);
  padding: 0 14px;
}

.bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #fdfdfdc9;
  padding: 32px;
  margin-top: 2em;
  border-radius: 12px;
  box-shadow: 2px 2px 12px #00000010;
}

#foto_de_perfil {
  border-radius: 300px;
  margin-bottom: 32px;
  box-shadow: 4px 4px 12px #0000001f;
}

.carousel-container {
  border-radius: 10px;
  max-width: 350px;
  margin-top: 14px;
  padding: 0 5px;
}

.carousel-track {
  overflow: hidden;
  border-radius: 18px;
}

.devicons {
  display: flex;
  width: fit-content;
  gap: 8px;
  align-items: center;
  animation: scrollIcons 20s linear infinite;
}

.devicons img {
  height: 50px;
  width: 50px;
  background-color: #fff;
  padding: 5px;
  margin: 5px auto;
  border-radius: 10px;
  box-shadow: 2px 2px 12px #00000010;
}

#content p {
  text-align: justify;
  text-indent: 1rem;
  line-height: 1.75em;
  margin-bottom: 10px;
}

#content a {
  color: var(--cyan);
}

#content a:hover {
  color: var(--darkcyan);
}

#content article:first-child {
  border: none;
}

article {
  text-align: left;
  padding: 32px;
  background-color: #fdfdfdc9;
  margin: 2em auto;
  border-radius: 12px;
  box-shadow: 2px 2px 12px #00000010;
}

article h2 {
  letter-spacing: 1px;
  margin-bottom: 20px;
}

article h3 {
  text-indent: 1rem;
}

.idioma {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}

#cursos ul {
  text-indent: 1rem;
}

#cursos li {
  display: list-item;
  list-style-position: inside;
  padding: 6px;
  margin: 4px;
}

#cursos li:hover {
  color: #34adcb;
  transition: 0.3s all;
}

#cursos a {
  color: var(--dark);
}

#cursos a:hover {
  color: #34adcb;
}

#cursos a:active {
  color: #2f9bb6;
}

.main-project-grid {
  display: grid;
  gap: 20px;
  margin: 30px auto;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.main-project-grid a {
  align-self: flex-end;
  color: white !important;
  background-color: var(--cyan);
  width: fit-content;
  padding: 4px 8px;
  border-radius: 8px;
}

.others-projects-grid {
  display: grid;
  gap: 10px;
  margin: 30px auto;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.projeto {
  background-color: #fff;
  padding: 16px;
  box-shadow: 2px 2px 12px #00000010;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.projeto:hover {
  transform: translateY(-5px);
}

.projeto img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 12px;
}

.projeto h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.projeto p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  height: 100%;
}

.projeto a {
  text-align: right;
}

.others-projects {
  padding: 8px;
  font-size: 0.8rem;
}

.others-projects h4 {
  height: 100%;
  text-align: center;
}

.redes_sociais {
  padding: 2px;
}

.redes_sociais div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: right;
  padding: 5px;
}

.redes_sociais a {
  display: flex;
  margin: 2px;
}

.redes_sociais img {
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.redes_sociais img:hover {
  transform: translateY(-3px);
}

footer {
  background-image: linear-gradient(to right, var(--purple), var(--cyan));
  color: white;
  text-align: center;
  font-size: 0.8em;
  font-family: poppinslight;
  padding: 4px;
}

footer a {
  color: #fff;
  font-family: poppinsmedium;
  text-decoration: none;
}

footer a:hover {
  color: #dedede;
}

@media (max-width: 768px) {
  header {
    font-size: 0.85em;
  }

  header h1 {
    font-size: 1.2rem;
  }

  body {
    background-image: none;
    background-color: var(--lighter);
  }

  .bio {
    background-color: var(--lighter);
    box-shadow: none;
    padding: 12px;
  }

  article {
    background-color: var(--lighter);
    box-shadow: none;
    padding: 12px;
  }
}