@charset "UTF-8";
/* importações */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');
/* fim das importações */
/*
Pequenas Telas: até 768px
Celular: de 600px até 768px
Tablets: 768px até 992px
Desktop: de 992px até 1200px
Grandes Telas: acima de 1200px
*/

/* configurações gerais */
*::-webkit-scrollbar{
  width: 10px;
}
*::-webkit-scrollbar-track{
  width: 12px;
  background-color: #CCCCCC;
}
*::-webkit-scrollbar-thumb{
  background-color: #808080;
  border-radius: 10px;
}
html,
body {
  font-family: Montserrat, Arial;
  width: 100%;
  height: 100%;
  background:-webkit-gradient(linear, left top, right top, from(#101010), to(#CCCCCC));
}
.vizualizacao{
  height: 100vh;
  padding-top: 3rem;
  padding-right: 3rem;
  padding-left: 3rem;
}
/* fim das configurações gerais */
/* configurações do menu lateral */
#header{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: #101010;
  overflow-y: auto;
  width: 300px;
  transition: all ease-in-out 0.5s;
  padding: 0 15px;
  z-index: 9997;
}
#header .profile img{
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 3px solid #fff;
  border-radius: 20px;
}
#header .profile h1{
  font-size: 24px;
  margin: 0;
  padding: 0;
  padding-top: 1rem;
  text-align: center;
  color: #fff;
}
#header .profile .social-links a{
  font-size: 1rem;
  color: #fff;
  padding: 0.6rem;
  margin-right: 1rem;
  transition: 0.3s;
  text-decoration: none;
}
.social-links-email:hover{
  color:#eb4435;
}
.social-links-github:hover{
  color: #808080;
}
.social-links-linkedin:hover{
  color: #0b63c3;
}
.social-links-whatsapp:hover{
  color:#45d950;
}
.nav-menu{
  padding: 1.5rem;
}
.nav-menu a{
  display: flex;
  align-items: center;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
}
.nav-menu a i, 
.nav-menu a:focus i{
  font-size: 24px;
  padding-right: 0.8rem;
  color: #fff;
}
.nav-menu a:hover, 
.nav-menu .active,
.nav-menu a:hover i, 
.nav-menu .active i{
  text-decoration: none;
  color: #808080;
}
/* configurações do menu lateral */
/* configurações do main */
#main{
  margin-left: 300px;
}
/* configurações da section "inicio" */
section#inicio{
  background-image: url('img/foto_fundo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  width: 100%;
  height: 100vh;
}
.img-iago{
  border-radius: 10px;
}
.card-hobby{
  background-color: #808080;
}
section#inicio h2{
  font-size: 4rem;
  margin-right: 6rem;
}
section#inicio span#subtitle{
  margin-right: 2.5rem;
  font-size: 1.25rem;
}
section#inicio span#subtitle2{
  margin-right: 6.25rem;
  font-size: 1.25rem;
}
/* fim das configurações da section "inicio" */
/* configurações da section "sobre" */
.link-site{
  color: #808080;
}
.link-site:hover{
  transition: 0.5s;
  color: #6495ED;
}
/* fim das configurações da section "sobre" */
/* configurações da section "habilidades" */
.progress-bar{
  color: #fff;
  background-color: #000;
}
/* configurações da section "habilidades" */
/* configurações da section "currículo" */
section#formacoes h5{
  color: #000;
}
.cv .cv-title{
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
}
.cv .cv-item{
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #fff;
  position: relative;
}
.cv .cv-item h4{
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-bottom: 10px;
}
.cv .cv-item h5{
  background: #fff;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  border-radius: 10px;
}
.cv .cv-item::before{
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  background: #fff;
  border-radius: 50%;
}
/* fim das configurações da section "currículo" */
/* configurações da saction "portfolio" */
section#portfolio{
  height: 100vh;
  padding-right: 3rem;
  padding-left: 3rem;
  padding-bottom: 20rem;
}
.card{
  height: 100%;
  width: 100%;
}




  /* configurações do carrossel */
  
  /* fim das configurações do carrossel */



/* fim das configurações da saction "portfolio" */
/* configurações da section "contato" */
.botao{
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 10px;
}
.contato-cards{
  padding-top: 6rem;
}
.margem-top{
  margin-top: 3.5rem;
}
/* fim das configurações da section "contato" */
/*  fim das configurações do main */
/* configurações do ícone menu mobile */
i.menu-mobile{
  position: fixed;
  color: #fff;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  width: 45px;
  height: 45px;
  display: none;
  justify-content: center;
  align-items: center;
}
.menu-nav-active{
  overflow: hidden;
}
.menu-nav-active #header{
  left: 0;
}
  /* media querie para menu mobile */
  @media screen and (max-width: 1024px){
    #header {
      left: -300px;
    }
    i.menu-mobile{
      display: flex;
    }
    section#inicio h2{
      font-size: 3.5rem ;
    }
    section#inicio span#subtitle{
      margin-right: 2.5rem;
      font-size: 1.25rem;
    }
    section#inicio span#subtitle2{
      margin-right: 6.25rem;
      font-size: 1.25rem;
    }
    #main{
        margin-left: 0;
    }
  }
  @media screen and (max-width: 450px){
    section#header {
      left: -300px;
    }
    i.menu-mobile{
      display: flex;
    }
    section#inicio h2{
      font-size: 3.5rem ;
    }
    section#inicio span#subtitle{
      margin-right: 2.5rem;
      font-size: 1.25rem;
    }
    section#inicio span#subtitle2{
      margin-right: 6.25rem;
      font-size: 1.25rem;
    }
    section#main{
        margin-left: 0;
    }
    section#habilidades{
      height: 100vh;
      padding-top: 25rem;
    }
    section#formacoes{
        height: 100vh;
        padding-top: 35rem;
    }
    section#portfolio{
        height: 100vh;
        padding-top: 35rem;
    }
    section#contato{
        padding-top: 400rem;
    }
  }
  /* fim da media querie para menu mobile */
/* fim das configurações do ícone menu mobile */
/* configurações de animação */
[data-anime]{
  opacity: 0;
  transition: 1s;
}
[data-anime="down"]{
  transform: translate3d(0, -100%, 0);
}
[data-anime="up"]{
  transform: translate3d(0, 100%, 0);
}
[data-anime="left"]{
  transform: translate3d(-100%, 0, 0);
}
[data-anime="right"]{
  transform: translate3d(50px ,0 ,0);
}
[data-anime].animate{
  opacity: 1;
  transform: translate3d(0 ,0 ,0);
}
  /* media querie para animação/carrossel mobile */
  /*
  @media screen and (max-width: 1860px){
    .carousel-control-prev{
      margin-left: 0;
    }
    .carousel-control-next{
      margin-right: 0;
    }
    [data-anime="right"] {
      transform: translate3d(0, 100%, 0);
    }
  }
  */
  /* fim das configurações de animação */
/* configurações do footer */
#footer{
  padding: 15px;
  color: #fff;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background-color: rgb(16, 16, 16);
  transition: .3s;
}
  /* media querie para footer mobile */
  @media screen and (max-width: 1012px) {
    #footer{
      position: static;
      width: auto;
      padding: 20px 15px;
      background-color: -webkit-gradient(linear, left top, right top, from(#101010), to(#CCCCCC));
    }
  }
  /* fim da media querie para footer mobile */
/* fim das configurações do footer */

/* estilização do botão de download do currículo */
.botao-download{
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  padding: 15px;
  border-radius: 10px;
  background: none;
  border: 1px solid#fff;
  
}
.botao-download:hover{
  cursor: pointer;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 30px;
  padding: 15px;
  border-radius: 10px;
  background: none;
  border: 1px solid#000;
  transition-timing-function: ease;
  transition-duration: 0.5s;
}
/* fim da estilização do botão de download do currículo */

.carousel-indicators{
  margin-bottom: -35px;
}
#button-indicator{
  background-color: #fff;
}
.carousel-control-prev:hover{
  background-color: rgba( 255, 255, 255, 0.5);
}
.carousel-control-next:hover{
  background-color: rgba( 255, 255, 255, 0.5);
}