/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg-color: #f4f6f8;
            --card-bg: #ffffff;
            --text-color: #333333;
            --accent-color: #005f73; /* Azul Petróleo */
            --hover-color: #0a9396;
            --text-muted: #666;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            display: flex;
            justify-content: center;
            min-height: 100vh;
            background-image: url('../images/b14cb31742bec14008da26205828d40a.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.85);
            z-index: -1;
        }

        .container {
            width: 100%;
            max-width: 480px;
            padding: 60px 20px;
            text-align: center;
            position: relative;
        }

        .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid var(--accent-color);
            object-fit: cover;
            margin-bottom: 20px;
            padding: 3px;
            background: var(--card-bg);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--accent-color);
            font-weight: 700;
        }

        p.bio {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 35px;
            line-height: 1.5;
            max-width: 90%;
            margin-left: auto;
            margin-right: auto;
        }

        .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(--accent-color);
            text-decoration: none;
            border-radius: 50px; /* Pill shape */
            border: 2px solid transparent;
            transition: all 0.3s ease;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            position: relative;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .link-btn i {
            position: absolute;
            left: 25px;
            font-size: 1.3rem;
        }

        .link-btn:hover {
            background-color: var(--accent-color);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,95,115,0.2);
        }

        .link-btn:hover i {
            color: #fff;
        }

        .social-icons {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-link {
            color: var(--accent-color);
            font-size: 1.5rem;
            transition: 0.3s;
        }

        .social-link:hover {
            color: var(--hover-color);
            transform: scale(1.1);
        }

        footer {
            margin-top: 40px;
            font-size: 0.8rem;
            color: var(--text-muted);
            opacity: 0.8;
        }