@import url("https://fonts.googleapis.com/css2?family=Acme&family=Abril+Fatface&family=Bebas+Neue&family=Bree+Serif&family=Bungee&family=Fredoka:wght@300..700&family=Goldman:wght@400;700&family=Lilita+One&family=Permanent+Marker&family=Special+Gothic+Expanded+One&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap");

#sobre,
#projetos,
#contato,
#inicio {
  scroll-margin-top: 80px;
  position: relative;
  padding-top: 80px;
  margin-top: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Fredoka", sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  cursor: url("img/cursor.png"), auto;
  font-size: 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-family: "Goldman", sans-serif;
  font-size: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  cursor: url("img/cursor2.png"), auto;
}

/*Section Inicio*/
.inicio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  margin-top: 0;
  margin-bottom: 60px;
}

.info h1 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Bebas Neue", sans-serif;
  color: #ff9900;
  letter-spacing: 1px;
  font-style: italic;
  text-shadow: 2px 2px 4px #cc6600;
}

.subtitle {
  color: #aaa;
  margin-bottom: 10px;
}

.desc {
  color: #888;
  max-width: 400px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.perfil-img {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.perfil-img img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: 50% 73%;
  border: 2px solid #fcfcfc;
}
/*Fim da Section Inicio*/

/*Section Ferramentas*/
.ferramentas {
  padding: 40px 60px;
}

.ferramentas h3 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #aaa;
  font-size: 20px;
}

.logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  background-color: #1f1f1f;
  border: 1px solid #333;
  padding: 8px 10px;
  border-radius: 10px;
  color: #999;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo:hover {
  background-color: #ffc800;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 12px #ffc800;
}
/*Fim da Section Ferramentas*/

/*Section Sobre*/
.sobre {
  display: flex;
  gap: 40px;
  padding: 60px;
  background-color: #0f0f0f;
  color: #aaa;
  align-items: center;
  flex-wrap: wrap;
}

.sobre h2 {
  font-size: 30px;
  color: #ffc803;
  font-family: "Goldman", sans-serif;
}

.sobre p {
  color: #aaa;
  line-height: 1.6;
  max-width: 600px;
  text-align: justify;
  font-family: "Fredoka", sans-serif;
  font-size: 18px;
}

.sobre-img {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-left: 0;
  min-width: 280px;
}

.sobre-img img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 2px solid #fcfcfc;
}

.sobre-texto {
  flex: 2;
  font-family: "Fredoka", sans-serif;
  font-size: 20px;
  text-align: justify;
  min-width: 280px;
}
/*Fim da Section Sobre*/

/*Section Projetos*/
.projetos {
  padding: 60px;
  background-color: #0f0f0f;
}

.projetos h2 {
  font-size: 30px;
  color: #ffc803;
  font-family: "Goldman", sans-serif;
}

.projetos-lista {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.projeto-card {
  text-decoration: none;
  display: block;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  border-radius: 12px;
  cursor: url("img/cursor2.png"), auto;
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.projetos .projetos {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projetos .projetos img {
  width: 100%;
  max-width: 400px;
  height: 300px;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.projeto-card:hover .projetos {
  background-color: #292929;
  transform: scale(1.02);
}

.projetos .projetos h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 20px;
}

.projetos .projetos p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

.em-construcao {
  color: #ff9900;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 22px;
}
/*Fim da Section Projetos*/

/*Section Contato*/
.contato {
  text-align: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 5px;
  margin-bottom: 60px;
}

.contato h2 {
  font-size: 30px;
  color: #ffc803;
  font-family: "Goldman", sans-serif;
}

.contato a {
  text-align: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 5px;
  cursor: url("img/cursor2.png"), auto;
}

.contato p {
  color: #aaa;
  line-height: 1.6;
  max-width: 600px;
  text-align: justify;
  font-family: "Fredoka", sans-serif;
  font-size: 17px;
}

.contato i {
  font-size: 22px;
  margin: 10px;
  cursor: url("img/cursor2.png"), auto;
}
/*Fim da Section Contato*/

/*Footer*/
footer {
  background-color: #1a1a1a;
  text-align: center;
  padding: 20px 60px;
  font-size: 15px;
  font-family: "Vollkorn", serif;
}

footer p {
  color: rgb(122, 121, 121);
}
/*Fim Footer*/

/* WebKit */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #ffffff;
}
/* FIM */

/* ===== Responsividade ===== */

/* Dispositivos até 768px (celulares) */
@media (max-width: 768px) {
  header {
    padding: 15px 30px;
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    align-items: center;
    gap: 10px;
  }

  .inicio {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    text-align: center;
  }

  .info h1 {
    font-size: 36px;
  }

  .desc {
    max-width: 100%;
  }

  .perfil-img img {
    width: 180px;
    height: 180px;
  }

  .ferramentas {
    padding: 30px 20px;
  }

  .sobre {
    flex-direction: column;
    padding: 30px 20px;
  }

  .sobre-img img {
    width: 180px;
    height: 180px;
  }

  .sobre-texto {
    font-size: 18px;
    text-align: justify;
  }

  .projetos,
  .contato {
    padding: 30px 20px;
  }

  .projetos-lista {
    flex-direction: column;
    align-items: center;
  }

  .contato p {
    text-align: center;
  }

  footer {
    padding: 20px 20px;
  }

  .ferramentas {
    margin-bottom: 40px;
  }

  .sobre {
    margin-bottom: 40px;
  }

  .projetos {
    margin-bottom: 40px;
  }

  .contato {
    margin-bottom: 60px;
  }
}
/* FIM */

/* Tablets: 769px a 1024px */
@media (max-width: 1024px) {
  header {
    padding: 15px 40px;
  }

  .inicio {
    padding: 30px 40px;
    gap: 30px;
  }

  .info h1 {
    font-size: 42px;
  }

  .perfil-img img {
    width: 220px;
    height: 220px;
  }

  .ferramentas,
  .sobre,
  .projetos,
  .contato {
    padding: 40px;
  }

  .ferramentas {
    margin-bottom: 110px;
  }

  .sobre {
    margin-bottom: 60px;
  }

  .projetos {
    margin-bottom: 60px;
  }

  .contato {
    margin-bottom: 80px;
  }
}
/* FIM */

/* Telas grandes: monitores entre 1600px e 1920px (ex: 24" a 27") */
@media (min-width: 1600px) and (max-width: 1920px) {
  header {
    padding: 30px 140px;
    font-size: 22px;
  }

  .inicio {
    padding: 100px 140px;
    gap: 60px;
  }

  .info h1 {
    font-size: 55px;
    line-height: 1.2;
  }

  .info p {
    font-size: 20px;
  }

  .desc {
    font-size: 24px;
    max-width: 700px;
  }

  .perfil-img img {
    width: 250px;
    height: 250px;
    object-fit: cover;
  }

  .ferramentas,
  .sobre,
  .projetos,
  .contato {
    padding-left: 140px;
    padding-right: 140px;
  }

  .ferramentas {
    margin-top: 150px;
    padding-top: 60px;
    margin-bottom: 140px;
  }

  .sobre p {
    font-size: 20px;
  }

  .sobre {
    margin-bottom: 100px;
  }

  .projetos {
    margin-bottom: 100px;
  }

  .contato {
    margin-bottom: 120px;
  }

  footer {
    padding: 40px 140px;
    font-size: 16px;
  }
}
/* FIM */
