:root {
    --primary-color: #004aad; /* Azul para destaque */
    --secondary-color: #6c757d; /* Cinza para texto secundário */
    --background-color: #f8f9fa; /* Fundo claro */
    --card-background: #ffffff; /* Fundo dos cards de link */
    --border-color: #e9ecef; /* Cor da borda */
    --text-color: #343a40; /* Cor principal do texto */
    --link-hover-color: #0056b3; /* Cor do link ao passar o mouse */
    --shadow-light: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center; /* Alinha no topo para melhor visualização em telas grandes */
    min-height: 100vh;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 500px;
    min-height:80vh;
    background-color: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 8px 16px var(--shadow-light);
    padding: 30px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-section {
    margin-bottom: 30px;
    
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 8px var(--shadow-light);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.profile-pic img{
    width: 75%;
    /* height: 100%; */
    /* border-radius: 50%; */
}


.profile-section h1 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.profile-section p {
    font-size: 1.1em;
    color: var(--secondary-color);
    margin-top: 0;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ajusta para ícone à direita */
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px var(--shadow-light);
}

.link-item:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px var(--shadow-light);
}

.link-item:hover .link-icon {
    filter: brightness(0) invert(1); /* Inverte a cor do ícone ao passar o mouse */
}

.link-text {
    flex-grow: 1; /* Permite que o texto ocupe o espaço restante */
    text-align: left;
}

.link-icon {
    width: 24px;
    height: 24px;
    margin-left: 15px; /* Espaçamento entre texto e ícone */
    vertical-align: middle;
    transition: filter 0.3s ease;
}

.footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: var(--secondary-color);
    
}

/* Responsividade */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 20px;
    }

    .profile-pic {
        width: 100px;
        height: 100px;
    }

    .profile-section h1 {
        font-size: 1.8em;
    }

    .profile-section p {
        font-size: 1em;
    }

    .link-item {
        padding: 12px 15px;
        font-size: 1em;
    }

    .link-icon {
        width: 20px;
        height: 20px;
    }
}