:root {
    /* PALETA OFICIAL "DIGITAL SOFT" */
    --white: #ffffff;           /* Fundo da página */
    --lavender: #b5b9f1;        /* COR DOS BOTÕES (Prioridade) */
    --cream-nude: #f6e8dd;      /* Fundo do Card (Nude suave) */
    --black: #1a1a1a;           /* Textos e Contraste */
    --peach-hover: #ffd6c4;     /* Cor ao passar o mouse (Pêssego) */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
    background-color: var(--cream-nude); /* O Card é Nude */
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0,0,0,0.05); /* Sombra leve para destacar do branco */
    position: relative;
}

/* --- HEADER --- */
.header {
    position: relative;
    height: 240px;
    margin-bottom: 50px;
}

.header-bg {
    height: 180px;
    /* Mantive a foto de fundo com um filtro leve para harmonizar */
    background: linear-gradient(to bottom, rgba(26,26,26,0.2), rgba(26,26,26,0.5)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=500') center/cover;
}

.profile-container {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid var(--white); /* Borda branca para destacar do Nude */
    box-shadow: 0 5px 15px rgba(181, 185, 241, 0.4); /* Sombra suave no tom lavanda */
    object-fit: cover;
}

/* --- TEXTOS --- */
.content {
    padding: 0 25px;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--black);
}

.subtitle {
    color: #888BC0; /* Uma variação um pouco mais escura do lavanda para leitura */
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.description {
    font-size: 0.95rem;
    color: #4a4a4a; /* Cinza escuro para facilitar a leitura no fundo nude */
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
}

/* --- BOTÕES LAVANDA --- */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 30px;
}

.link-button {
    background-color: var(--lavender); /* Botão Lavanda da paleta */
    color: var(--white); /* Texto Branco para ficar "soft" */
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 8px; /* Borda mais arredondada combina com o estilo soft */
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-transform: uppercase;
    
    /* Sombra suave para o botão "flutuar" */
    box-shadow: 0 4px 10px rgba(181, 185, 241, 0.4); 
    text-shadow: 0 1px 2px rgba(0,0,0,0.1); /* Sombra leve no texto para leitura */
}

.link-button:hover {
    background-color: var(--peach-hover); /* Vira Pêssego ao passar o mouse! */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 214, 196, 0.5);
}

/* --- SOCIAL --- */
.social-icons {
    margin: 20px 0 40px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons i {
    font-size: 1.6rem;
    color: var(--black);
    transition: all 0.3s ease;
}

.social-icons i:hover {
    color: var(--lavender); /* Ícone fica lavanda no hover */
    transform: scale(1.1);
}

footer p {
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 20px;
}