* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #56CCF2, #2F80ED); /* Gradiente de azul */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.profile-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 350px;
}

.profile-header {
    margin-bottom: 20px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    background-color: #f0f0f0;
    padding: 10px;
}

h1 {
    font-size: 30px;
    color: #333;
    margin-bottom: 10px;
}

p {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

.profile-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-link {
    display: flex;
    align-items: center; /* Alinha o ícone e o texto verticalmente */
    justify-content: flex-start; /* Coloca o conteúdo à esquerda */
    padding: 12px;
    text-decoration: none;
    background-color: #4c9f70;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s;
    gap: 10px;
    width: 100%; /* Garante que os links ocupem toda a largura disponível */
}

.profile-link:hover {
    background-color: #3d7a56;
}

.profile-link i {
    font-size: 20px;
    margin-right: 10px; /* Adiciona um espaço entre o ícone e o texto */
}

.profile-link span {
    flex: 1; /* Faz o texto ocupar o espaço restante */
    text-align: center; /* Alinha o texto ao centro */
}
