/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg-color: #f9f9f9;
            --primary: #1e2a4a; /* Azul Marinho */
            --gold: #c5a059;
            --text: #333;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--bg-color);
            color: var(--text);
            display: flex;
            justify-content: center;
            min-height: 100vh;
            background-image: url('../images/020c795e10a55e0d2410d5451b759c4d.png'); /* Textura sutil */
        }

        .container {
            width: 100%;
            max-width: 480px;
            padding: 60px 30px;
            text-align: center;
            background: white;
            min-height: 100vh;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
        }

        .profile-img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 25px;
            border: 1px solid #eee;
            padding: 5px;
        }

        h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        p.bio {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .links-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .link-btn {
            display: block;
            padding: 18px 20px;
            background-color: white;
            color: var(--primary);
            text-decoration: none;
            border: 1px solid var(--primary);
            transition: all 0.3s ease;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
        }

        /* Estilo elegante de botão */
        .link-btn::after {
            content: '';
            position: absolute;
            width: 0;
            height: 100%;
            top: 0;
            left: 0;
            background-color: var(--primary);
            transition: 0.3s;
            z-index: -1;
        }

        .link-btn:hover {
            color: white;
            z-index: 1;
        }

        .link-btn:hover::after {
            width: 100%;
        }

        .link-btn.gold {
            background-color: var(--gold);
            border-color: var(--gold);
            color: white;
        }
        
        .link-btn.gold:hover {
            background-color: #b08d4b;
            border-color: #b08d4b;
        }
        
        .link-btn.gold::after { display: none; }

        .social-icons {
            margin-top: 50px;
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .social-icons a {
            color: var(--primary);
            font-size: 1.3rem;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: var(--gold);
        }

        footer {
            margin-top: 60px;
            font-size: 0.7rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 2px;
        }