.perfil {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 0.5em;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

    border-radius: 7px;
    border: ridge;
    border-color: black;
    animation: mymove 5s infinite;

    color: white;
    font-family: inherit;
    text-align: center;
    font-size: 12px;
    width: 10em;
    padding: 0.4em;
    transition: all 0.4s;
    cursor: pointer;
    text-shadow: 0.1em 0.1em rgba(0, 0, 0, .3);

    background: #0CACF2;
    box-shadow: 0px 14px 56px -11px #1875FF;
}

.button img {
    height: 2em;
    border-radius: 50%;
}

   @keyframes mymove {
    50% {border-color: lightblue;}
  }
   
   .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.4s;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0.0em 0.1em 0.0em rgba(0, 0, 0, .3);
}
    .button:hover{
    transition-duration: .9s;
    transform: scale(1.1);
    background: linear-gradient(0.25turn, #0007DB, #0CACF2, #0007DB);
    text-shadow: 0.1em 0.1em rgba(0, 0, 0, 1.1);
    }

   .button span:after {
    content: '✅';
    position: absolute;
    opacity: 0;
    right: 0;
    bottom: -20px;
    transition: 0.7s;
   }
   
   .button:hover span {
    padding-right: 7.04px;
    transition-duration: .9s;
    transform: scale(0.9);
    text-shadow: 0.1em 0.1em rgba(0, 0, 0, 1.1);
   }
   
   .button:hover span:after {
    opacity: 4;
    bottom: 0;
   }

   .button:active {
    color: #0007DB;
}

   .buttons-perfis {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
    padding: 4rem;
   }

   .glow-on-hover {
    width: 100px;
    height: 50px;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0.1em 0.1em rgba(0, 0, 0, .2);
    background: #0007DB;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;

    font-size: 16px;
    font-weight: 500;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 200%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #0007DB;
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0007DB;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    25% { background-position: 200% 0; }
    50% { background-position: 0 0; }
}