/*.text-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
    transition: color .2s ease;
}

.text-logo:hover {
    color: #4ea8ff;
}*/



.text-logo {
    position: relative;
    text-decoration: none;
    color: var(--text-color);
}

.text-logo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--text-hover-color);
    transition: width .3s ease;
}

.text-logo:hover::after {
    width: 100%;
}


/*.text-logo {
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;

    background: linear-gradient(90deg, #4ea8ff, #7b5cff);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}*/