    :root {
        --bg: #0f172a;
        --card: #111827;
        --primary: #22c55e;
        --text: #e5e7eb;
        --muted: #9ca3af;
        --border: #1f2937;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
    }

    .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    header {
        text-align: center;
        margin-bottom: 40px;
    }

    header img {
        width: 120px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    nav {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin: 20px 0;
    }

    nav a {
        color: #22c55e;
        text-decoration: none;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    p.subtitle {
        color: var(--muted);
        font-size: 1.1rem;
    }

    .logo-perfil {
        width: 250px;
        /* Ajuste o valor conforme necessário */
        height: auto;
        border-radius: 12px;
        /* Opcional: arredonda levemente as bordas */
    }

    .card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 24px;
        margin-bottom: 24px;
    }

    .card h2 {
        margin-bottom: 12px;
        font-size: 1.5rem;
    }

    .card p {
        color: var(--muted);
    }

    .actions {
        margin-top: 16px;
    }

    .btn {
        display: inline-block;
        padding: 10px 16px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        margin-right: 10px;
        transition: 0.2s;
    }

    .btn-primary {
        background: var(--primary);
        color: #022c22;
    }

    .btn-primary:hover {
        opacity: 0.85;
    }

    .btn-outline {
        border: 1px solid var(--border);
        color: var(--text);
    }

    .btn-outline:hover {
        background: #1f2937;
    }

    footer {
        text-align: center;
        margin-top: 40px;
        color: var(--muted);
        font-size: 0.9rem;
    }

    code {
        background: #020617;
        padding: 4px 6px;
        border-radius: 6px;
        font-size: 0.9rem;
    }