/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg-gradient: linear-gradient(135deg, #004e92 0%, #000428 100%);
            --btn-bg: #ffffff;
            --btn-text: #004e92;
            --accent: #FFD700; /* Amarelo Solar */
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--bg-gradient);
            color: white;
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }

        .container {
            width: 100%;
            max-width: 480px;
            padding: 50px 25px;
            text-align: center;
            position: relative;
        }

        /* Efeito de brilho solar no fundo */
        .container::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, rgba(0,0,0,0) 70%);
            z-index: -1;
        }

        .profile-img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            border: 4px solid rgba(255,255,255,0.2);
            object-fit: cover;
            margin-bottom: 20px;
            background: white;
            padding: 5px;
        }

        h1 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        p.bio {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 35px;
            font-weight: 400;
        }

        .links-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .link-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 20px;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            font-weight: 600;
            position: relative;
        }

        .link-btn i {
            position: absolute;
            left: 25px;
            font-size: 1.1rem;
            color: var(--accent);
        }

        .link-btn:hover {
            background-color: white;
            color: var(--btn-text);
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .link-btn:hover i {
            color: var(--btn-text);
        }

        /* Destaque para o botão principal */
        .link-btn.featured {
            background-color: var(--accent);
            color: #000;
            border: none;
            animation: pulse 2s infinite;
        }
        
        .link-btn.featured i { color: #000; }
        
        .link-btn.featured:hover {
            background-color: #ffed4a;
            color: #000;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
        }

        .social-icons {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 25px;
        }

        .social-icons a {
            color: white;
            font-size: 1.4rem;
            opacity: 0.7;
            transition: 0.3s;
        }

        .social-icons a:hover {
            opacity: 1;
            color: var(--accent);
        }

        footer {
            margin-top: 50px;
            font-size: 0.75rem;
            opacity: 0.5;
        }