#linktree-profile {
    background-color: var(--nc-bg-1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 450px;
    box-sizing: border-box;
    color: var(--nc-tx-1);

    margin: 0 auto 2rem auto;
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--nc-lk-1);
}

#linktree-profile h1 {
    font-size: 2.25rem;
    margin-bottom: 10px;
    color: var(--nc-tx-1);
    border-bottom: none;
    padding-bottom: 0;
}

.profile-description {
    font-size: 1.03rem;
    color: var(--nc-tx-2);
    margin-bottom: 30px;
    text-indent: 0;
}

#link-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    background-color: var(--nc-bg-2);
    color: var(--nc-tx-1);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.15em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--nc-bg-3);
    justify-content: flex-start;
    position: relative;
}

.link-button:hover {
    background-color: var(--nc-bg-3);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.link-button img {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    z-index: 1;
}

.link-button span {
    flex-grow: 1;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsividade */
@media (max-width: 500px) {
    #linktree-profile {
        margin: 15px auto;
        padding: 20px;
    }

    .link-button {
        padding: 15px 20px;
        font-size: 1em;
    }

    .link-button img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .link-button span {
        padding-left: 15px;
        padding-right: 15px;
    }
}