@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Momo+Signature&display=swap');

:root {
    /* O Fundo representa o Martelo de Ferro da Tinkaton: Um roxo grafite escuro e profundo */
    --bg-gradiente: linear-gradient(135deg, #18151e 0%, #241d33 50%, #151b22 100%);
    --cor-texto-principal: #ffffff;
    --cor-texto-secundario: #e3ddef; /* Tom de creme/branco suave do corpo dela */
    
    /* Os Tons de Rosa Vibrantes da Tinkaton */
    --rosa-tinkaton: #ff60b5;
    --rosa-escuro: #d93d92;
    --aquamarine-detalhe: #17f3ff; /* O brilho do elemento do martelo e olhos */
    
    /* Degradê para textos e efeitos */
    --gradiente-tinkaton: linear-gradient(90deg, #ff60b5 0%, #87d9ff 100%);
    --gradiente-borda-hover: linear-gradient(90deg, #ff60b5 0%, #17f3ff 100%);
    
    /* Botões: Corpo Rosa Escuro bem definido e profissional */
    --botao-bg: rgba(217, 61, 146, 0.15);
    --botao-borda: rgba(255, 96, 181, 0.4);
}

/* ─── CONFIGURAÇÕES GERAIS / RESET ─── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--bg-gradiente);
    background-attachment: fixed;
    color: var(--cor-texto-principal);
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

/* Container do Layout */
.layout-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40px 24px;
    gap: 40px;
}

/* ─── BLOCO DE PERFIL (TINKATON STYLE) ─── */
.perfil-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.perfil-conteudo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.titulo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    /* Título brilha no Rosa Chiclete da Tinkaton */
    background: var(--gradiente-tinkaton);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-family: "Momo Signature", cursive;
}

.descricao {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--cor-texto-secundario);
}

/* Redes Sociais */
.redes-container {
    display: flex;
    flex-direction: row; 
    gap: 18px;           
    align-items: center;
    justify-content: center;
}

.icone-rede {
    display: inline-block;
    width: 22px;        
    height: 22px;       
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.2s ease;
}

.icone-rede svg {
    width: 100%;
    height: 100%;
    /* Ícones no Rosa da Tinkaton */
    fill: var(--rosa-tinkaton); 
    display: block;     
}

/* Ao passar o mouse, o ícone brilha em Aquamarine (como os olhos dela ao atacar!) */
.icone-rede:hover {
    transform: scale(1.2) rotate(5deg); /* Um charminho extra no bounce */
    filter: drop-shadow(0 0 8px var(--aquamarine-detalhe));
}

.icone-rede:hover svg {
    fill: var(--aquamarine-detalhe);
}

/* ─── BLOCO DOS LINKS (DIREITA / CONTEÚDO) ─── */
.links-area {
    display: flex;
    flex-direction: column;
    gap: 32px; 
    width: 100%;
}

.categoria-bloco {
    display: flex;
    flex-direction: column;
    gap: 14px; 
}

/* Título da Categoria: O detalhe Aquamarine do Martelo */
.titulo-categoria {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 0.12em;    
    color: var(--aquamarine-detalhe); 
    text-shadow: 0 0 8px rgba(23, 243, 255, 0.2);
    padding-left: 8px;
}

.categoria-botoes {
    display: flex;
    flex-direction: column;
    gap: 14px; 
}

/* O Botão Pílula Profissional (Rosa Encorpado com Borda) */
.botao-pilula {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--botao-bg);
    border: 1px solid var(--botao-borda);
    border-radius: 50px;
    color: var(--cor-texto-principal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Efeito Hover - O Impacto do Martelo */
.botao-pilula:hover {
    color: #ffffff;
    background: rgba(217, 61, 146, 0.3); /* Rosa fica mais vivo e preenchido */
    
    /* Borda vira o degradê perfeito Rosa -> Aquamarine */
    border-color: transparent;
    background-image: linear-gradient(rgba(26, 21, 36, 0.9), rgba(26, 21, 36, 0.9)), var(--gradiente-borda-hover);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    
    transform: translateY(-3px);
    /* Sombra estilizada com o rosa da Tinkaton */
    box-shadow: 0 8px 20px rgba(255, 96, 181, 0.2);
}

/* ─── DESIGN RESPONSIVO PARA DESKTOP ─── */
@media (min-width: 1024px) {
    .layout-wrapper {
        flex-direction: row;
        max-width: 1050px;
        margin: 0 auto;
        padding: 100px 40px;
        gap: 10%; 
    }

    .perfil-sidebar {
        position: fixed; 
        width: 25%; 
        max-width: 280px;
        height: auto;
        gap: 28px; 
        text-align: center; 
    }

    .perfil-conteudo {
        align-items: center; 
    }

    .redes-container {
        justify-content: center; 
    }

    .links-area {
        margin-left: 35%; 
        width: 65%;
        max-width: 580px;
    }
}