/* ============================================================================
   ESTILOS - DAS HAUS LINK BIO
   Baseado no Manual de Identidade Visual Das Haus
============================================================================ */

:root {
    /* Paleta Oficial do Manual de Identidade Visual */
    --dh-dark: #141414;
    --dh-dark-light: #565656;
    --dh-gold: #B79347;
    --dh-gold-light: #DBC699;
    --dh-white: #F7F7F7;
    --dh-silver: #CACACA;
    --dh-navy: #162D46;
    
    /* Variáveis de Aplicação */
    --bg-color: var(--dh-dark);
    --surface-color: rgba(86, 86, 86, 0.15); /* Fundo dos botões (glassmorphism leve baseado na cor oficial #565656) */
    --text-main: var(--dh-white);
    --text-muted: var(--dh-silver);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    background-color: var(--bg-color);
    /* Um sutil glow dourado no fundo superior para remeter à elegância */
    background-image: radial-gradient(circle at 50% -10%, rgba(183, 147, 71, 0.15) 0%, transparent 60%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.5rem 1.5rem;
    overflow-x: hidden;
}

/* Animação de Entrada dos Elementos */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    width: 100%;
    max-width: 500px;
}

.profile-section {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeUp 0.8s ease-out forwards;
}

.logo-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--dh-gold), transparent, var(--dh-gold));
    position: relative;
    box-shadow: 0 4px 15px rgba(183, 147, 71, 0.2);
}

.logo-inner {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-svg {
    width: 60%;
    height: 60%;
    stroke: var(--dh-gold);
    fill: none;
    stroke-width: 1.5;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dh-gold);
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

p.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
    padding: 0 1rem;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1.3rem 1.5rem;
    background: var(--surface-color);
    border: 1px solid rgba(183, 147, 71, 0.25);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0; /* Para a animação do JS */
    animation: fadeUp 0.6s forwards;
}

/* Efeito de brilho ao passar o mouse */
.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183, 147, 71, 0.08), transparent);
    transition: all 0.5s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: var(--dh-gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(183, 147, 71, 0.15);
}

.link-card:hover::before {
    left: 100%;
}

.link-icon {
    width: 24px;
    height: 24px;
    margin-right: 1.2rem;
    color: var(--dh-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.1);
}

.link-title {
    font-weight: 400; /* Lato regular para botões mais elegantes */
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    flex-grow: 1;
}

.link-arrow {
    color: rgba(247, 247, 247, 0.3);
    transition: color 0.3s ease, transform 0.3s ease;
}

.link-card:hover .link-arrow {
    color: var(--dh-gold);
    transform: translateX(3px);
}

.footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--dh-dark-light);
}

.footer span {
    color: var(--dh-gold);
    font-weight: 700;
}
