   /* --- Estilo geral --- */
        body {
            margin: 0;
            font-family: 'Garamond', 'Times New Roman', serif;
            background: #fdf9f7; /* tom creme claro */
            color: #5a4c43;      /* castanho suave */
            text-align: center;
        }

        /* --- Container central --- */
        .container {
            max-width: 700px;
            margin: 80px auto;
            padding: 40px;
            background: #fffaf8; /* bege rosado muito suave */
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }

        /* --- Links --- */
        a {
            color: #c78b8b; /* rosa velho */
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        a:hover {
            color: #a66f6f;
        }

        /* --- Imagem com efeito hover --- */
        .profile-img {
            width: 200px;
            height: auto;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .profile-img:hover {
            transform: scale(1.05); /* ligeiro zoom */
            box-shadow: 0 6px 20px rgba(0,0,0,0.15); /* brilho suave */
        }

        /* --- Texto --- */
        h1 {
            margin-top: 0;
            font-size: 2.4rem;
            color: #8b6b61;
            letter-spacing: 1px;
        }

        .subinfo {
            margin: 10px 0 30px;
            font-size: 1.1rem;
            color: #7a6a62;
        }

        .section {
            margin: 20px 0;
        }