/* 
  =======================================================================
  PROFESSIONAL HTML TEMPLATE
  =======================================================================
  Licença: Uso Comercial (Agência/Freelancer)
  Author: Envato User
  Site: #
  
  Licensed under Envato Elements Terms. 
  You are free to use this template for your commercial or personal projects.
  =======================================================================
*/

:root {
    --bg-color: #111111;
    --card-bg: #1a1a1a;
    --primary: #d4af37; /* Gold */
    --text: #f4f4f4;
    --text-muted: #888888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-color);
    color: var(--text);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1503951914875-452162b7f304?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 60px 30px;
    text-align: center;
    background: rgba(26, 26, 26, 0.95);
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.profile-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    padding: 3px;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

p.bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background-color: transparent;
    color: var(--text);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
}

.link-btn i {
    font-size: 1.1rem;
}

.link-btn:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.link-btn.gold {
    background-color: var(--primary);
    color: var(--bg-color);
    border-color: var(--primary);
    font-weight: 700;
}

.link-btn.gold:hover {
    background-color: #b39024;
    border-color: #b39024;
    color: #fff;
}

.social-icons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
