/* 
  =======================================================================
  LINKS V1 - INFOPRODUTOR
  =======================================================================
*/

:root {
    --bg-body: #050505;
    --bg-card: #111111;
    --accent: #3b82f6;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    background-image: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 60px 30px;
    text-align: center;
    min-height: 100vh;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid var(--accent);
    padding: 3px;
    background: var(--bg-card);
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

p.bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background-color: var(--bg-card);
    color: var(--text-main);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.link-btn:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.link-btn.highlight {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.link-btn.highlight:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.link-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.socials {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--accent);
    transform: scale(1.1);
}

footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.5;
}
