/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif; /* Fonte moderna */
    background-color: #0a0a0a; /* Fundo quase preto, mais suave */
    color: #ffffff;
    line-height: 1.6;
}

/* O contêiner principal */
.container {
    max-width: 480px; /* Largura ideal para mobile/bio */
    margin: 0 auto;
    background-color: #111; /* Fundo do cartão levemente mais claro que o body */
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    position: relative;
}

/* Banner no topo */
.banner {
    width: 100%;
    height: 150px;
    /* Gradiente moderno e elegante (Roxo escuro para preto) */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    /* Se quiser uma cor sólida, use background: #333; */
    border-bottom: 1px solid #333;
}

/* Container para centralizar a foto e fazer o overlap */
.perfil-container {
    display: flex;
    justify-content: center;
    margin-top: -75px; /* Puxa a foto para cima do banner (metade da altura da foto) */
    padding-bottom: 10px;
}

/* A Foto de Perfil Redonda */
.foto-perfil {
    width: 250px;
    height: 250px;
    border-radius: 50%; /* Torna redonda */
    object-fit: cover; /* Garante que a imagem não distorça */
    border: 5px solid #111; /* Borda da cor do fundo para separar do banner */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Sombra para destaque */
    background-color: #111;
}

/* Área de conteúdo (Texto e Links) */
.conteudo {
    padding: 20px 25px;
    text-align: center;
}

/* Título */
h1 {
    font-size: 1.1rem; /* Tamanho equilibrado */
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Parágrafo */
p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.link-item img {
    width: 100%;
    height: auto;
    border-radius: 12px; /* Bordas mais arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: block; /* Remove espaços extras abaixo da imagem */
}

/* Efeito Hover nos Links */
.link-item:hover {
    transform: translateY(-3px); /* Sobe levemente */
    filter: brightness(1.1); /* Fica levemente mais brilhante */
}

/* Rodapé */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.copyright {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 0;
}