@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;300;400&family=Orbitron:wght@500&display=swap');

*{
    font-family: 'Noto Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar-track {
   background-color: transparent;
}
::-webkit-scrollbar {
   width: 4px;
}
::-webkit-scrollbar-thumb {
   background: #ba8a4d;
   border-radius: 20px;
}
body{
    background-color: rgb(0, 0, 0);
    background-image: url('/Projeto-Individual-SENAC/img/estrelas.gif');
}
.fechaTag{
   display: flex;
   justify-content: end;
   align-items:baseline;
}
/* CARD COMPLETO */
.card{
    height: 100vh;
    padding-top: 80px;
    padding-inline: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
 }

 /* INICIO DO CABEÇALHO */
 header{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    background-color: rgb(255, 255, 255);
    height: 10vh;
    position: fixed;
    width: 100%;
    border-bottom: 3px solid #ba8a4d
 }
 header img{
    display: none;
 }
 .infos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
 }
 .infos a{
    color: #ba8a4d;
    font-weight: 400;
 }
 ul{
   list-style: none;
 }
 li{
   transition: .55s;
   padding-left: 4px;
   padding-bottom: 2px;
 }
 li:hover{
   box-shadow: -5px 5.2px 0px #f7d8af57;
   box-sizing: 20px;
   transform: translate(4.5px, -4px);
   background-color: rgba(249, 249, 249, 0.389);
   border-bottom: 1px solid rgba(0, 0, 0, 0.100);
   border-left: 1px solid rgba(0, 0, 0, 0.100);
   border-top: 1px solid rgba(0, 0, 0, 0.025);
   border-right: 1px solid rgba(0, 0, 0, 0.025);
 }

 
 /* FIM DO CABEÇALHO */

 /* INICIO DO CONTEUDO PRINCIPAL */
 main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
 }
 .fotoDePerfil{
    width: 220px;
    border-radius: 50%;
    border: 2px solid #ba8a4d;
    transition: 1s;
 }
 .fotoDePerfil:hover{
   border: 2px solid white;
   width: 250px;
   box-shadow: 0px 2px 500px 1px rgba(255, 255, 255, 0.663);
 }
 .description{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
 }
 .description h2{
    margin-top: 16px;
    font-size: 1.8rem;
    color: white;
 }
 .description p{
    font-size: .9rem;
    margin-bottom: 23px;
    font-weight:300;
    color: white;
 }
 .redesSociais{
    display: flex;
    gap: 32px;
 }
 .redesSociais img{
    width: 28px;
 }
 .redesSociais img:hover{
   border: 1px solid white;
   background-color: #ba8b4d78;
   border-radius: 50%;
   box-shadow: 0px 2px 500px 1px white;
 }
 /* FIM DO CONTEUDO PRINCIPAL */

 .seta{
    width: 64px;
    display: flex;
    margin: 0 auto;
 }

 /* INICIO SOBRE MIM, PROJETO E CONTATO */
 .sobre, .projeto, #card-formulario{
    padding-inline: 21px;
    padding-block: 16px;
 }
 .sobre h2, .projeto h2, #card-formulario h2{
    font-size: 1.8rem;
    color: #ba8a4d;
    margin-bottom: 12px;
 }
 .sobre p, .projeto p{
    font-weight: 300;
 }
 
 .card-projeto{
   display: flex; 
   justify-content: space-between;
   width: 100%;
 }
 .card-projeto a{
   width: 30%;
 }
 .box-projeto{
   width: 30%;
   height: 200px;
   background-color: rgb(169, 169, 169);
   background-image: url("../img/loading.gif");
   background-repeat: no-repeat;
   background-position: center;
   background-size: 80px;
   border-radius: 6px;
   padding: 6px;
   display: flex;
   align-items: flex-end;
   font-size: 1.3rem;
   font-family: 'Orbitron', sans-serif; 
 }
 #box1{
   background-image: url(../img/projeto-impulso.png);
   background-size: cover;
   transition: .5s;
   cursor: pointer;
   width: 100%;
 }
#box2{
   background-image: url(../img/pokeapi.png);
   background-size: cover;
   transition: .5s;
   cursor: pointer;
   width: 100%;
}
 .projeto p{
    color: white;
 }
 .formulario{
    width: 100%;
 }
 .sobre img{
    display: none;
 }
 #card-sobre, #card-formulario{
    background-color: rgb(255, 255, 255);
 }

 #name, #email, #msg{
    width: 100%;
    margin-bottom: 9px;
    background-color: rgba(128, 128, 128, 0.696);
    color: white;
    border: none;
    padding: 5px 0 5px 7px;
    border-radius: 3px;
    
 }
 ::-webkit-input-placeholder {
    color: white;
    margin-left: 4px;
 }
 #msg{
    height: 70px
 }
 .btn, .reset{
    width: 90px;
    height: 30px;
    font-size: 1rem;
    border: 1px solid gray;
    border-radius: 5px;
    transition: .2s;
 }

 .btn:hover{
   background-color: rgba(0, 182, 0, 0.411);
   cursor: pointer
 }
 .reset{
   width: 200px;
   margin-left: 14px
 }
 .reset:hover{
   background-color: rgba(255, 0, 0, 0.411);
   cursor:pointer
 }
 #card-formulario{
    display: flex;
    flex-direction: column;   
 }
 .formasDeContato div{
    display: flex;
    gap: 12px;
    margin-block: 16px;
 }
 /* FIM SOBRE MIM, PROJETO E CONTATO */

 @media (min-width: 700px){
    header{
        justify-content: space-between;
        padding-inline: 20px;
    }
    header img{
        display:block;
        color:#ba8a4d;
        margin-left: 30px;
    }
    .infos, section{
        font-size: 1.3rem;
    }
    .projeto p{
      font-size: 1.5rem;
   }
    .box-projeto{
      height: 400px;
    }
    .formulario{
        width: 100%;
     }
 }
 @media (min-width: 900px){
   
   main{
      margin-top: 100px;
   }
   .infos{
      gap: 4rem;
   }
   
   .sobre h2, .projeto h2, #card-formulario h2{
      font-size: 3rem;
      margin-bottom: 66px;
   }
   .sobre div{
        display: flex;
        justify-content: space-between;
    }
    .sobre div img{
        display: block;
        margin: auto;
    }
    .sobre div{
      display: flex;
      gap: 60px;
    }
    .card-projeto{
      gap: 12px;
      justify-content: space-around;
    }
    .box-projeto{
      font-size: 2rem;
      width: 375px;
      height: 667px;
      padding: 20px;
    }
    .card-projeto a{
      width: 375px;
    }
    .box-formulario{
      display: flex;
      flex-direction: row-reverse;
      justify-content: space-evenly;
      gap: 66px;
      align-items: center;
    }
    .nome-email{
      display: flex;
      gap: 16px;
    }
    #msg{
      height: 180px;
    }
    .formulario{
        width: 50%;
        border: 1px solid black;
        border-radius: 3px;
        padding: 20px;
        background-color: rgb(221, 221, 221);
     }
 }
