/* Import Google Fonts for Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Bold */
}

body {
    background: linear-gradient(135deg, #000000, #333333); /* Fundo escuro com degradê */
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 40px;
}

.container {
    width: 100%;
    max-width: 580px;
    text-align: center;
    padding: 20px;
}

.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

header p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #bbb;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-item {
    display: block;
    background: linear-gradient(45deg, #ffffff, #f0f0f0); /* Botões brancos com degradê */
    color: black;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease; /* Transição suave para hover */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Efeito de hover animado */
.link-item:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(45deg, #e0e0e0, #d0d0d0); /* Mudança no degradê no hover */
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3); /* Brilho branco no hover */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #f0f0f0;
    transform: scale(1.1);
}