/* Paleta de Cores e Fontes - Design Feminino Sofisticado */
:root {
    --bg-page: #fdfaf5; /* Creme muito suave */
    --card-bg: #ffffff;
    --header-patt-bg: #f5eadd; /* Rosa-quartzo muito claro */
    --text-primary: #3d3d3d; /* Cinza escuro suave */
    --text-secondary: #707070; /* Cinza médio */
    --accent-color: #d4af37; /* Ouro envelhecido suave */
    --btn-bg: #fff1f3; /* Rosa-quartzo pastel */
    --btn-text: #6b4f5a; /* Marrom arroxeado suave */
    --hover-bg: #f8e1e5; /* Rosa um pouco mais intenso no hover */
    
    /* Fontes */
    --font-heading: 'Playfair Display', serif; /* Fonte elegante com serifa */
    --font-body: 'Poppins', sans-serif; /* Fonte moderna e limpa */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font-body);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.bio-container {
    background-color: var(--card-bg);
    max-width: 420px;
    width: 100%;
    border-radius: 25px;
    overflow: hidden; /* Garante que o header decorativo siga o border-radius */
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1); /* Sombra suave dourada */
    display: flex;
    flex-direction: column;
}

/* Cabeçalho Decorativo Sutil */
.bio-header {
    height: 100px;
    background-color: var(--header-patt-bg);
    /* Padrão decorativo sutil (floral/geométrico simples) */
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48ZyBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNkNGFmMzciIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTAgMGgyMHYyMEgwVjB6bTEwIDEwaDEwdjEwSDEwVjEwek0wIDEwaDEwdjEwSDBWMTB6bTEwIDBoMTBWMDBIMTB2MTB6Ii8+PC9nPjwvZz48L3N2Zz4=');
    background-size: 20px;
    position: relative;
}

.bio-content {
    padding: 0 30px 40px;
    text-align: center;
    margin-top: -50px; /* Eleva a foto sobre o header */
    position: relative;
    z-index: 1;
}

/* Perfil */
.profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.profile-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Divisor sutil */
.divider {
    width: 60px;
    height: 2px;
    background-color: var(--btn-bg);
    margin: 0 auto 25px;
    border-radius: 1px;
}

.profile-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Botões de Link Elegantes */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    text-decoration: none;
    padding: 16px 25px;
    border-radius: 50px; /* Botões arredondados */
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease-out;
    border: 1px solid transparent;
}

.link-btn:hover {
    background-color: var(--hover-bg);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px) scale(1.02);
}

/* Rodapé Sutil */
.footer {
    padding: 20px 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    font-weight: 300;
}