@import url("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&family=Rubik:ital,wght@0,300..900;1,300..900&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap");

html {
  scroll-behavior: smooth;
}
/* BODY */

body {
  overflow-x: hidden;
  overflow-y: scroll;
  display: flex;
  font-family: Poppins;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: rgb(22, 22, 22);
  flex-direction: column;
  /* CODIGOS PARA BACKGROUND */
  background-image: url("https://raw.githubusercontent.com/LuannEliseu/SantosDaSilva/main/src/images/fundo-parede16x.png?raw=true");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* ANIMAÇÕES */

@keyframes pulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes voltabotao {
  0% {
    box-shadow: 0px 0px 0px rgba(8, 8, 8, 0);
  }
  25% {
    box-shadow: 0px 0px 30px rgba(255, 0, 0, 0.384);
  }
  50% {
    box-shadow: 0px 0px 30px rgba(255, 0, 0, 0.384);
  }
  75% {
    box-shadow: 0px 0px 30px rgba(255, 0, 0, 0.384);
  }
  100% {
    box-shadow: 0px 0px 0px rgba(8, 8, 8, 0);
  }
}

/* UMA TAG PARA USAR EM ALGUMAS PALAVRAS */

.bold {
  font-weight: bold;
}

/* HEADER E INICIO DA PAGINA

Parte de cima do site, onde é responsável por toda topbar

*/

#absoluto-inicio {
  display: flex;
  height: 100vh;
  width: 100%;
  inset: 0;
  box-shadow:
    inset 0 0 40px rgba(255, 0, 0, 0.4),
    inset 0 0 80px rgba(255, 0, 0, 0.2);
  animation: pulse 4s ease-in-out infinite;
  /* pointer-events: none; -- comando perigoso*/
}

#headerbar {
  display: flex;
  background-color: rgb(0, 0, 0);
  width: 100%;
  color: #b9b9b9;
  position: fixed;
  height: 8vh;
  top: 0;
  z-index: 1000;
  gap: 300px;
  /* height: 8vh; */
  /* justify-content: center; */
  /* justify-items: center; */
}

#bartop-mid {
  width: 100%;
  align-self: center;
  display: flex;
  justify-content: space-around;
}

/* Nome */

#equilibrarnome {
  display: flex;
  align-content: center;
  text-justify: center;
  align-items: center;
  transform: scale(1);
  transition:
    transform 0.6s ease-in-out,
    text-shadow 0.6s ease-in-out;
}

#equilibrarnome:hover {
  transform: scale(1.2);
  text-shadow: 2px 2px 20px rgb(2, 2, 2);
}

#iconfoto {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

#iconmaior {
  width: 1vw;
  height: 1vh;
}

#iconmenor {
  padding-left: 2vh;
  width: 1vw;
  height: 1vh;
}

#nome {
  display: flex;
}

#nomeluann {
  padding-left: 1vw;
  color: rgb(71, 4, 4);
  font-size: 150%;
}

#nomedev {
  padding-top: 0.4vw;
  padding-left: -10%;
  color: #b9b9b9;
}

/* OPCOES TOP BAR */

#navitens {
  align-items: center;
  padding-top: 0.4%;
}

#navitens a {
  font-size: 80%;
  padding-left: 1vw;
}
#itensdonav:checked,
#itensdonav:link,
#itensdonav:visited,
#itensdonav:hover,
#itensdonav:active,
#itensdonav:focus {
  color: #b9b9b9;
  text-decoration: none;
}

/* COINTAINER APRESENTACAO */

#cointainer-apresentacao {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bannermid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#divnomeapresentacao {
  display: flex;
  align-self: center;
  height: 60px;
}

#nomeapresentacao {
  font-size: 60px;
  color: white;
  align-self: center;
  text-align: center;
  text-shadow: 1px 1px 5px rgba(112, 3, 3, 0);
}

#gradienttext {
  background-image: linear-gradient(
    to bottom,
    rgb(43, 2, 2),
    rgb(153, 7, 7),
    rgb(71, 4, 4)
  );
  background-clip: text;
  -webkit-background-clip: text;
  /* Adicionado: */
  -webkit-text-fill-color: transparent;
}

#divcargo {
  display: flex;
  align-content: flex-end;
  text-justify: auto;
  align-items: flex-end;
  height: 50px;
}

#cargo {
  color: white;
  font-size: 90%;
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px 5px rgba(112, 3, 3, 0);
}

#divlocalizacao {
  display: flex;
  height: 50px;
}

#localizacao {
  font-size: 70%;
  font-weight: normal;
  color: rgb(255, 255, 255);
  width: 100%;
  text-align: center;
}

#localizacao span {
  color: rgba(255, 255, 255, 0.363);
}

#divbotoes {
  display: flex;
  justify-content: center;
  gap: 30px;
}

#botaocontato {
  width: 200px;
  height: 50px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(to bottom, rgb(73, 0, 0));
  color: white;
  transition:
    transform 0.6s ease-in-out,
    box-shadow 0.6s ease-in-out,
    text-shadow 0.6s ease-in-out;
  box-shadow: 0px 0px 0px rgba(8, 8, 8, 0);
  outline: none;
  transform: scale(1);
  text-shadow: 2px 2px 20px rgba(20, 20, 20, 0.87);
  text-align: center;
  align-items: center;
  align-content: center;
  text-decoration: none;
  font-size: 80%;
  font-weight: bold;
}

#botaocontato:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 30px rgba(255, 0, 0, 0.384);
  text-shadow: 2px 2px 20px rgb(250, 246, 246);
}

#botaocv {
  width: 200px;
  height: 50px;
  border: none;
  border-radius: 5px;
  background-image: linear-gradient(to bottom, rgb(73, 0, 0));
  color: white;
  text-shadow: 1px 1px 20px black;
  transition:
    transform 0.6s ease-in-out,
    box-shadow 0.6s ease-in-out,
    text-shadow 0.6s ease-in-out;
}

#botaocv:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 30px rgba(255, 0, 0, 0.384);
  text-shadow: 2px 2px 20px rgb(250, 246, 246);
}

#botaosaiba {
  width: 200px;
  height: 50px;
  border: none;
  border-radius: 5px;
  background-image: linear-gradient(to bottom, rgb(73, 0, 0));
  color: white;
  text-shadow: 1px 1px 20px black;
  text-align: center;
  align-items: center;
  align-content: center;
  text-decoration: none;
  font-size: 80%;
  font-weight: bold;
  transition:
    transform 0.6s ease-in-out,
    box-shadow 0.6s ease-in-out,
    text-shadow 0.6s ease-in-out;
}

#botaosaiba:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 30px rgba(255, 0, 0, 0.384);
  text-shadow: 2px 2px 20px rgb(250, 246, 246);
}

#divsocial {
  display: flex;
  justify-content: center;
  gap: 10px;
}

#divsocial button {
  transition: transform 0.6s ease-in-out;
}

#divsocial button:hover {
  transform: scale(1.2);
}

#github {
  background-image: url("https://raw.githubusercontent.com/LuannEliseu/SantosDaSilva/main/src/images/github.png?raw=true");
  background-color: rgba(3, 3, 3, 0);
  border: none;
  color: rgba(0, 0, 0, 0);
  background-size: cover;
  width: 50px;
  height: 50px;
}

#linkedin {
  background-image: url("https://raw.githubusercontent.com/LuannEliseu/SantosDaSilva/main/src/images/linkedin.png?raw=true");
  background-color: rgba(3, 3, 3, 0);
  border: none;
  color: rgba(0, 0, 0, 0);
  background-size: cover;
  width: 50px;
  height: 50px;
}

#ig {
  background-image: url("https://raw.githubusercontent.com/LuannEliseu/SantosDaSilva/main/src/images/instagram.png?raw=true");
  background-color: rgba(3, 3, 3, 0);
  border: none;
  color: rgba(0, 0, 0, 0);
  background-size: cover;
  width: 50px;
  height: 50px;
}

#email {
  background-image: url("https://raw.githubusercontent.com/LuannEliseu/SantosDaSilva/main/src/images/email1.png?raw=true");
  background-color: rgba(3, 3, 3, 0);
  border: none;
  color: rgba(0, 0, 0, 0);
  background-size: cover;
  width: 46px;
  height: 46px;
}

/* A PARTIR DA PARTE DO SOBREMIM */

#absoluto-sobremim {
  width: 100%;
  height: 60vh;
  background-color: #d32f2f00;
  background-image: linear-gradient(
    rgb(8, 4, 5),
    rgb(28, 1, 3),
    /* rgb(50, 2, 8),
    rgb(50, 2, 8),       rgb(28, 1, 3),
    rgb(50, 2, 8), */
    rgb(28, 1, 3),
    rgb(8, 4, 5)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#cointainer-sobre {
  width: 75%;
  height: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

#titulo-sobre {
  text-align: center;
  color: rgb(243, 243, 245);
}

#titulo-principal h1 {
  font-size: 250%;
}

#sub-titulo span {
  font-size: 80%;
  opacity: 50%;
}

#conteudo-sobre {
  display: flex;
  height: 100%;
}

#parte-sobre {
  width: 100%;
}

#sobre-text p {
  color: rgba(255, 255, 255, 0.484);
  font-size: small;
}

#container-mid-sobre-right {
  width: 75%;
  height: 75%;
  display: flex;
  flex-direction: row;
}

#border {
  width: 90%;
  height: 75%;
  border: 3px solid rgba(48, 2, 2, 0.98);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  background-color: rgb(0, 0, 0);
  color: white;
}

#b1 {
  width: 100%;
  height: 40%;
}

#b1 h1 {
  font-size: 25px;
  text-align: center;
}

#b2 {
  width: 100%;
  height: 40%;
}

#b3 {
  width: 100%;
  height: 20%;
}

/* PARTE DE FORMACAO */

#absoluto-habilidades {
  width: 100%;
  height: 60vh;
  background-image: url("/src/images/fundo-parede16x.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#container-habilidades {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 80%;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#parte-cima-habilidades {
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 20px;
  flex-direction: column;
}

#bar-titulo-s {
  color: white;
  font-size: 18px;
}

#titulo-habi {
  text-align: center;
}

#parte-baixo-habilidades {
  width: 100%;
  height: 70%;
  justify-content: center;
  align-items: center;
  align-content: center;
  display: flex;
  gap: 30px;
}

#formacao {
  display: flex;
  /* border: 3px solid rgb(72, 2, 1); */
  border-radius: 5px;
  width: 175px;
  height: 125px;
  flex-direction: column;
  transition: transform 0.6s ease-in-out;
}

#formacao:hover {
  transform: scale(1.2);
}

#cima-forma {
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  justify-items: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70%;
}
#cima-forma img {
  width: 100px;
  height: 60px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px red;
}

#baixo-forma {
  width: 100%;
  height: 30%;
}

#baixo-forma p {
  font-size: 10px;
  color: white;
  text-align: center;
}

/* PARTE DE PORTIFOLIO */

#absoluto-portifolio {
  width: 100%;
  height: 60vh;

  background-image: linear-gradient(
    rgb(8, 4, 5),
    rgb(28, 1, 3),
    rgb(28, 1, 3),
    rgb(8, 4, 5)
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#container-portifolio {
  display: flex;
  flex-direction: column;
  width: 800px;
  height: 80%;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#sites-forma {
  display: flex;
  /* border: 3px solid rgb(72, 2, 1); */
  border-radius: 5px;
  width: 300px;
  height: 250px;
  flex-direction: column;
  transition: transform 0.6s ease-in-out;
}

#sites-forma:hover {
  transform: scale(1.2);
}

#cima-forma-port {
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  justify-items: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60%;
}
#cima-forma-port img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 10px red;
}

#baixo-forma-port {
  width: 100%;
  height: 40%;
}

#baixo-forma-port p {
  font-size: 10px;
  color: white;
  text-align: center;
}

/* PARTE DE CONTATO */

#absoluto-contato {
  width: 100%;
  height: 110vh;
  background-image: url("/src/images/fundo-parede16x.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#container-contato {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 80%;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 0px;
}

#formulario-absolute {
  width: 500px;
  height: 600px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;

  background-image: linear-gradient(
    rgb(8, 4, 5),
    rgb(28, 1, 3),
    rgb(28, 1, 3),
    rgb(8, 4, 5)
  );

  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
  padding: 10px 0;
}

#parte-baixo-forms {
  width: 100%;
  height: 70%;
  justify-content: center;
  align-items: center;
  align-content: center;
  display: flex;
  gap: 30px;
}

#formulario-meio {
  display: flex;
  width: 420px;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

#formulario-meio h3 {
  font-weight: 500;
  color: #ff4d4d;
}

/* Labels */
#label-form,
#desc-form {
  font-size: 14px;
  opacity: 0.8;
}

/* Inputs */
.meia-form {
  width: 90%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;

  background-color: rgba(255, 255, 255, 0.08);
  color: white;

  transition: 0.2s;
}

.meia-form:focus {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 5px rgba(255, 80, 80, 0.7);
}

/* Campo mensagem maior */
input.meia-form:last-of-type {
  height: 80px;
}

/* Botão */
button {
  padding: 12px;
  border: none;
  border-radius: 8px;

  background: linear-gradient(45deg, #ff2a2a, #b30000);
  color: white;
  font-weight: bold;

  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.03);
  background: linear-gradient(45deg, #ff3c3c, #d40000);
}

#footer {
  height: 3vh;
  inset: 0;
  width: 100%;
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
  color: #cfcfcf;
  font-size: 14px;
}

#footer-container {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 200px;
}

#footer-left {
  font-weight: 500;
  color: #ffffff;
}

#footer-right {
  opacity: 0.7;
}

/* responsividade para celular */

@media screen and (max-width: 480px) {
  * {
    max-width: 100vw;
    flex-wrap: wrap;
  }

  /* INICIO PAGINA INICIAL */

  #absoluto-inicio {
    height: 900px;
  }

  #nomeapresentacao {
    font-size: 300%;
  }

  #headerbar {
    height: 100px;
  }

  #bannermid {
    height: 700px;
    gap: 50px;
  }

  #bartop-mid {
    height: 50px;
  }

  /* PAGINA SOBRE MIM */

  #absoluto-sobremim {
    height: 1000px;
  }
  #conteudo-sobre {
    height: 500px;
  }
  #parte-sobre {
    height: 500px;
  }

  /* PAGINA HABILIDADES */

  #absoluto-habilidades {
    height: 900px;
  }

  /* PAGINA PORTIFOLIO */

  #absoluto-portifolio {
    height: 900px;
  }

  /* PAGINA */

  #absoluto-contato {
    height: 1000px;
  }

  #container-contato {
    width: 90%;
    display: flex;
    flex-direction: column;
  }

  #formulario-absolute {
    width: 400px;
    height: 600px;
  }

  /* Campo mensagem maior */
  input#meia-form:last-of-type {
    height: 20px;
  }

  .meia-form {
    width: 80%;
  }

  #footer-container {
    width: 100%;
    padding: 0px;
  }
}

@media screen and (max-height: 600px) {
  #absoluto-contato {
    height: 1000px;
  }
}

/* DEBUGS BORDERS PARA MODELAR SITE
          ORDEM DE CRIACAO          */

:root {
  --valor-debug: 0px;
}

.glow {
  border: var(--valor-debug) solid pink;
}

#headerbar {
  border: var(--valor-debug) solid red;
}

#bartop-mid {
  border: var(--valor-debug) solid green;
}

#navitens {
  border: var(--valor-debug) solid blue;
}

#cointainer-apresentacao {
  border: var(--valor-debug) solid rgb(82, 2, 2);
}

#bannermid {
  border: var(--valor-debug) solid green;
}

#divnomeapresentacao {
  border: var(--valor-debug) solid yellow;
}

#nomeapresentacao {
  border: var(--valor-debug) solid red;
}

#divcargo {
  border: var(--valor-debug) solid rgb(0, 255, 34);
}

#cargo {
  border: var(--valor-debug) solid rgb(55, 0, 255);
}

#divlocalizacao {
  border: var(--valor-debug) solid rgb(55, 0, 255);
}

#localizacao {
  border: var(--valor-debug) solid rgb(0, 255, 34);
}

#absoluto-sobremim {
  border: var(--valor-debug) solid rgb(38, 0, 255);
}

#divbotoes {
  border: var(--valor-debug) solid darkgreen;
}

#divsocial {
  border: var(--valor-debug) solid maroon;
}

#absoluto-sobremim {
  border: var(--valor-debug) solid maroon;
}

#cointainer-sobre {
  border: var(--valor-debug) solid darkgreen;
}

#titulo-sobre {
  border: var(--valor-debug) solid rgb(38, 0, 255);
}

#conteudo-sobre {
  border: var(--valor-debug) solid red;
}

#parte-sobre {
  border: var(--valor-debug) solid pink;
}

#sobre-text {
  border: var(--valor-debug) solid rgb(161, 36, 1);
}

#absoluto-habilidades {
  border: var(--valor-debug) solid pink;
}

#container-habilidades {
  border: var(--valor-debug) solid green;
}

#parte-cima-habilidades {
  border: var(--valor-debug) solid blue;
}

#parte-baixo-habilidades {
  border: var(--valor-debug) solid yellow;
}

#formulario-absolute {
  border: var(--valor-debug) solid rgb(0, 255, 200);
}

#formulario-meio {
  border: var(--valor-debug) solid red;
}
