:root {
    --bg-color: #f4f7f6;
    --text-color: #333;
    --primary-color: #6c7a89;
    --card-bg: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

header .profile-pic {
    width: 200px;
    height: 300px;
    --border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 1px solid var(--primary-color);
}

header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
}

header p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 25px;
}

main h2,
.secondary-links h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 20px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
}

.link-button i {
    margin-right: 12px;
    font-size: 1.4rem;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Cores específicas dos botões */
.spotify {
    background-color: #1DB954;
    color: white;
}

.insta {
    background-color: #7b27b3;
    color: white;
}

.apple-music {
    background-color: #FA57C1;
    color: white;
}

.deezer {
    background-color: #323232;
    color: white;
}

.youtube {
    background-color: #FF0000;
    color: white;
}

.amazon-music {
    background-color: #00A8E1;
    color: white;
}

.audiomack {
    background-color: #FFAA00;
    color: white;
}

/* Nova cor para o Audiomack */
.ebook {
    background-color: #1DB954;
    color: white;
}

.secondary-links {
    margin-top: 30px;
}

footer {
    margin-top: 30px;
}

footer a {
    color: var(--primary-color);
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #333;
}