header {
  color: #fff;
  padding: 20px;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}

nav ul {
  list-style-type: none;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  
  text-decoration: none;
  font-size: 1rem;
 
}

/* Contato */
#contato input,
textarea {
  border: transparent;
  border-bottom: 3px solid #292626;
  border-radius: none;
  background-color: none;
}
#contato textarea {
  resize: none;
}
._adress {
  width: 100%;
  max-width: 100px;
}

#form-container .form-control {
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  background-color: transparent;
}
#form-container .form-control:focus {
  outline: none;
}
#form-container .form-control::placeholder {
  color: #fff;
}

.animation {
  font-size: 4.5rem;

  font-family: "Inter", sans-serif;
  color: #fff;
}
/* Seção Intro */
#btn-intro {
  border: 2px #fff solid;
  padding: 15px 0;
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  background-color: transparent;
}
#btn-intro:hover {
  border: 2px solid #00768c;
  transition: 2s;
}

/* SEÇÃO PROJETOS  */

#projetos {
  position: relative;
  margin-top: 5rem;
  padding: 5px;
}
.h1 {
  margin-bottom: 5em;
}
#content {
  margin-bottom: 10em;
}

._arrowhight {
  position: absolute;
  z-index: 2;
  left: 5px;
  top: 40%;
}
._arrowhight img {
  width: 30px;
}
._arrowleft {
  position: absolute;
  z-index: 2;
  right: 5px;
  top: 40%;
}
._arrowleft img {
  width: 30px;
}
.arrowDown {
  position: absolute;
  top: 112%;
  left: 48%;
  width: 100%;
  max-width: 50px;
  margin: auto;
  animation: quica 2s linear infinite;
  animation-direction: alternate;
  border-radius: 5px;
  transition: opacity 0.3s ease; /* Adicionando transição de opacidade */
}

p {
  font-size: 1rem;
}

footer {
  height: 100px;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 99;
}

footer p {
  color: #fff;
}

#myphoto {
  /* filter: contrast(0.7) brightness(1.0) saturate(1.4); */
  animation: normal chamada 4s;

  border-radius: 100%;
  border-bottom: 6px solid #00768c;
  border-left: 6px solid #00768c;
  overflow: hidden;
}

.icons-rede-sociais i {
  color: #fff;
  transition: ease 2.5s;
  font-size: 2rem;
  padding: 3px;
}

.icons-rede-sociais i:hover {
  color: #666666;
}

/* IMGEM DO LOGO */

.logo {
  width: 50px;
}

/* Animação h1 */

.animation {
  font-family: monospace;
  border-right: 4px solid;
  width: 20ch;
  white-space: nowrap;
  overflow: hidden;

  animation: typing 2s steps(12), blinking 0.5s infinite step-end alternate;
}
#bnt {
  width: 150px;
}

.up-arrow {
  position: relative;
}

.position-arrow-down {
  position: absolute;
  top: -40px; /* Ajuste a distância do topo conforme necessário */
  right: 40px; /* Ajuste a distância da direita conforme necessário */
  width: 100%;
  max-width: 50px;
  margin: auto;
  cursor: pointer;

  border-radius: 5px;
  animation: quica 2s linear infinite;
  animation-direction: alternate;
  transition: opacity 0.3s ease;
}
.position-arrow-down p {
  margin: 0;
  padding: 0;
  display: block;
}

/* My photo animação */
#myphoto {
  animation: quica 2s linear infinite;
  animation-direction: alternate;
}

/*----------- ANIMAÇOES--------------  */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes quica {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-30px);
  }
}
@keyframes chamada {
  from {
    opacity: 0;
  }
  to {
    opacity: 100%;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blinking {
  50% {
    border-color: transparent;
  }
}

@keyframes chamada {
  from {
    opacity: 0;
  }
  to {
    opacity: 100%;
  }
}
