body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #F9F8F4; /* Bege da marca */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    color: #4a3c36; /* Marrom escuro */
}

.container {
    background-color: #F9F8F4;
    width: 100%;
    max-width: 400px;
    padding: 10px 20px;
    text-align: center;
    position: relative;
}

.container > * {
    position: relative; 
    z-index: 1;
}

header {
    margin-bottom: 35px;
}

/* FOTO DE PERFIL */
.profile-pic-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #eee; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    overflow: hidden; 
    /* Borda dupla fina para dar ar sofisticado */
    box-shadow: 0 0 0 3px #f3e8e5, 0 0 0 4px #4a3c36;
}

.profile-pic-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTOS */
.username {
    font-size: 1.4em;
    font-weight: 700;
    color: #4a3c36;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.description {
    font-size: 0.9em;
    color: #6b5b54; 
    line-height: 1.5;
    padding: 0 10px; 
    margin-bottom: 20px;
}

/* ÍCONES SOCIAIS (Topo) */
.social-links-above {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.social-icon {
    font-size: 1.3em;
    color: #4a3c36;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ESTRUTURA DOS BOTÕES */
main {
    display: flex;
    flex-direction: column;
    gap: 16px; 
    margin-bottom: 30px;
}

.link-button {
    display: flex;
    justify-content: center; /* Centraliza o bloco inteiro */
    align-items: center; /* Centraliza verticalmente */
    gap: 8px; /* <--- O AJUSTE PRINCIPAL: Mantém ícone e texto próximos */
    
    background-color: transparent; 
    border: 1px solid #4a3c36; 
    border-radius: 50px; 
    padding: 16px 20px;
    
    text-decoration: none;
    color: #4a3c36;
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 0.5px; 
    text-transform: uppercase; 
    transition: all 0.3s ease;
}

.link-button:hover {
    background-color: #eaddd9; 
    transform: translateY(-2px);
}

.link-button span {
    text-align: center;
    flex: 0 0 auto; /* Garante que o texto não estique demais */
}

/* CLASSE DO ÍCONE DO WHATSAPP (Lado Direito) */
.button-icon-right {
    font-size: 1.3em; /* Tamanho ajustado para equilíbrio */
    margin: 0; /* Margem zerada para o gap controlar a distância */
    margin-bottom: 2px; /* Ajuste fino de alinhamento vertical */
}

/* CLASSE ESPECIAL PARA O BOTÃO PRINCIPAL (BLACK FRIDAY) */
.link-button.primary {
    background-color: #4a3c36; 
    color: #f3e8e5; 
    border: 1px solid #4a3c36;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(74, 60, 54, 0.2); 
}

.link-button.primary:hover {
    background-color: #362b26; 
    color: #fff;
}