#profissao::after {
  content: "|";
  animation: piscar 1s infinite;
}

@keyframes piscar {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 1;}
}
.meunome{
  background: linear-gradient(
    90deg,
    #0d6efd 0%,
    #4dabff 50%,
    #0536e4 100%
  );
  background-size: 200%;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: brilhoNome 3s linear infinite;
}

@keyframes brilhoNome {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

#partedecima{
 font-family: Arial;
}
.textomeio{
  padding: 200px 0;
  text-align: center
}

section {
  padding: 100px 0;
}
.logo-img {
      width: 80px;
      height: 80px;
      
    }
footer {
  padding: 50px 0;
  text-align: center;
}
section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}



.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}

 /*<!-- Scroll suave -->*/ 
    html {
      scroll-behavior: smooth;
    }
 

    .btn:hover {
      background-color: #0d6efd;
      color: white;
    }

    /* Voltar ao topo */
    #btn-topo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      display: none;
    }
.show {
  opacity: 1;
  transform: translateY(0);
}

 .card{
  transition: all 0.3s ease;
}

.card:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

