body{
    font-family: Poppins, sans-serif;
    color: white;
    background: linear-gradient(0deg, 47%,  100%);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;

    background: linear-gradient(-45deg,  var(--cor-principal),var(--cor-secundaria), var(--cor-principal),var(--cor-secundaria));
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}


.perfil{
    display: flex!important;
    flex-direction: column!important;
}
.perfil img{
    width: 80%;
    
}
.perfil .imagem{
    height: 100px;
    width: 100px;
    border-radius: 100px;
    overflow: hidden;
    align-self: center;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.titulo{
    font-size: 30px;
}

.button{
    height: 60px;
    padding: 10px;
    width: 450px;
    max-width: 90%;
    border-radius: 25px;
    border: unset;
    background-color: white;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: rgb(15, 15, 15);
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.icon-link {  
    display: inline-flex;
    color: #000;
    transition: .5s linear;
    position: relative;
    z-index: 1;
    margin: auto;
  }
  
  .icon-link:hover {
    color: #fff;
  }
  
  .icon-link i {
    margin: auto;    
  }
  
  .icon-link::before {  
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    border-radius: 25px;
    z-index: -1;
    transform: scale(0);
    transition: 0.3s cubic-bezier(.95, .32, .37, 1.21);
}
    
  .icon-link:hover::before {  
    transform: scale(1);
  }
  
  .linkedin a:hover:before { 
    background: #00a8c5; 
  }
  
  .site a:hover:before { 
    background: #00c5b1; 
  }
  
  .whatsapp a:hover:before { 
    background: #00c53e; 
  }
  
  .instagram a:hover:before { 
    background: #c5003b; 
  }
  
  .facebook a:hover:before { 
    background: #0069c5; 
  }
  .tik-tok a:hover:before { 
    background: #c5005c; 
  }

  .desenvolvido a{
    text-decoration: none;
    color: white;
  }
  .desenvolvido a:hover{
    color: var(--cor-principal);
    transition: 0.3s;
  }
