/* Configurações Globais e Tema */
:root {
    --background-color: #1c1c1c;
    --text-color: #EAEAEA;
    --card-background: #1E1E1E;
    --card-border: #333333;
    --accent-color: #BB86FC;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

/* Container Principal */
.container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Cabeçalho com Logo e Nome */
header {
    margin-bottom: 30px;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    object-fit: cover; /* Garante que a imagem não fique distorcida */
    margin-bottom: 15px;
}

header h1 {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
}

/* Cartões de Link */
main {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaçamento entre os botões */
}

.link-card {
    background-color: var(--card-background);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1em;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.link-card:hover {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
    background-color: #2a2a2a;
    border-color: var(--accent-color);
}

.link-card svg {
    color: var(--text-color);
}

/* Rodapé */
footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #888;
}
