/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg-color: #1a1a1a;
            --card-bg: #2d2d2d;
            --text-color: #f0f0f0;
            --accent-color: #c5a059; /* Dourado Madeira */
            --hover-color: #d4b06a;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            display: flex;
            justify-content: center;
            min-height: 100vh;
            background-image: url('../images/750b5f6837a06ad73dea43b89408bf3b.jpg');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }

        .container {
            width: 100%;
            max-width: 480px;
            padding: 40px 20px;
            text-align: center;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            min-height: 100vh;
            box-shadow: 0 0 50px rgba(0,0,0,0.5);
        }

        .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 3px solid var(--accent-color);
            object-fit: cover;
            margin-bottom: 20px;
            padding: 3px;
            background: transparent;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--accent-color);
        }

        p.bio {
            font-size: 0.95rem;
            color: #ccc;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .links-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .link-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px 25px;
            background-color: var(--card-bg);
            color: var(--text-color);
            text-decoration: none;
            border-radius: 8px;
            border: 1px solid #444;
            transition: all 0.3s ease;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .link-btn i {
            position: absolute;
            left: 25px;
            font-size: 1.2rem;
            color: var(--accent-color);
        }

        .link-btn:hover {
            background-color: var(--accent-color);
            color: #1a1a1a;
            border-color: var(--accent-color);
            transform: translateY(-2px);
        }

        .link-btn:hover i {
            color: #1a1a1a;
        }

        .social-icons {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-icons a {
            color: #ccc;
            font-size: 1.5rem;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: var(--accent-color);
            transform: scale(1.1);
        }

        footer {
            margin-top: 40px;
            font-size: 0.8rem;
            color: #666;
        }