/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg-color: #f0f7f4;
            --primary: #5D9C59;
            --secondary: #F48FB1;
            --text: #444;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-color);
            color: var(--text);
            display: flex;
            justify-content: center;
            min-height: 100vh;
            background-image: radial-gradient(#e1efdf 1px, transparent 1px);
            background-size: 20px 20px;
        }

        .container {
            width: 100%;
            max-width: 480px;
            padding: 50px 25px;
            text-align: center;
            background: rgba(255,255,255,0.8);
            backdrop-filter: blur(5px);
            min-height: 100vh;
        }

        .profile-img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 4px solid white;
            box-shadow: 0 5px 15px rgba(93, 156, 89, 0.2);
        }

        h1 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 5px;
            font-weight: 600;
        }

        p.bio {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 35px;
            line-height: 1.4;
        }

        .links-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .link-btn {
            display: flex;
            align-items: center;
            justify-content: center; /* Centralizado */
            padding: 18px 25px;
            background-color: white;
            color: var(--text);
            text-decoration: none;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }

        .link-btn i {
            position: absolute;
            left: 20px;
            font-size: 1.2rem;
            color: var(--primary);
        }

        .link-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(93, 156, 89, 0.15);
            color: var(--primary);
        }

        /* Botão de destaque */
        .link-btn.highlight {
            background-color: var(--primary);
            color: white;
        }
        
        .link-btn.highlight i { color: white; }
        
        .link-btn.highlight:hover {
            background-color: #4a8546;
            color: white;
        }

        .social-icons {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            transition: 0.3s;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            text-decoration: none;
        }

        .social-icons a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        footer {
            margin-top: 50px;
            font-size: 0.8rem;
            color: #888;
        }