/* link.css */

.links-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 140px 20px 60px; /* Espaço para a navbar */
    min-height: 100vh;
    background-image: radial-gradient(circle at 50% 0%, rgba(62, 142, 255, 0.15), transparent 50%);
}

.links-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, var(--accent-blue), transparent);
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-dark);
}

.profile-name {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.profile-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    min-height: 24px;
}

/* Ajuste no card de bio para página de links */
.links-bio-card {
    margin: 0 auto 40px !important;
    max-width: 450px !important;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 450px;
}

.link-item {
    background-color: white;
    color: black;
    padding: 18px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.link-item i {
    font-size: 20px;
}

.link-item:hover {
    transform: translateY(-3px);
    background-color: var(--bg-light);
    box-shadow: 0 10px 20px rgba(62, 142, 255, 0.2);
}

.links-footer {
    margin-top: 60px;
    text-align: center;
    opacity: 0.6;
}
