/* Importa a fonte do Google (já está no HTML, mas é bom ter aqui também) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* ---- NOVO: EFEITO DE FUNDO SUTIL ---- */
body {
    /* Um gradiente radial escuro para dar profundidade */
    background: radial-gradient(circle, #333333 0%, #121212 100%);
    color: #f0f0f0; /* Branco um pouco mais suave */
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ---- ANIMAÇÃO DE ENTRADA ---- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    max-width: 400px;
    width: 100%;
    text-align: center;
    padding: 20px;
    /* Adiciona a animação de entrada ao container */
    animation: fadeIn 0.8s ease-in-out;
}

/* ---- NOVO: EFEITO NO LOGO ---- */
.profile-picture {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
    /* Sombra para destacar o logo do fundo */
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2), 0 0 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-picture:hover {
    transform: scale(1.05) rotate(5deg); /* Gira e aumenta um pouco */
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.3), 0 0 50px rgba(0, 0, 0, 0.6);
}

/* ---- NOVO: SOMBRA NO TEXTO ---- */
h1 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 28px;
    /* Sombra sutil para dar um efeito de "luz" */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.username {
    color: #b0b0b0;
    margin-top: 0;
    font-size: 16px;
    font-style: italic; /* Deixa o @usuário em itálico */
}

.bio {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}

/* ---- NOVO: ESTILO MELHORADO DOS BOTÕES ---- */
.link-button {
    display: flex; /* Alinha o ícone e o texto */
    align-items: center;
    justify-content: center;
    gap: 12px; /* Espaço entre o ícone e o texto */
    color: #ffffff;
    text-decoration: none;
    padding: 18px;
    margin: 16px 0;
    border-radius: 50px; /* Bordas totalmente arredondadas (estilo pílula) */
    font-weight: bold;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Sombra para profundidade */
    /* Transição suave para todos os efeitos */
    transition: all 0.3s ease-in-out;
}

.link-button:hover {
    transform: translateY(-3px); /* Efeito de "levantar" o botão */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); /* Sombra mais forte */
}

/* Feedback ao clicar no botão */
.link-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Cores específicas (mantidas, pois são boas) */
.whatsapp { background-color: #25D366; }
.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.maps { background-color: #4285F4; }

/* Ícones dentro dos botões */
.link-button i {
    font-size: 20px;
}

footer {
    margin-top: 40px;
    font-size: 12px;
    color: #666;
    letter-spacing: 1px; /* Espaçamento entre letras */
}