@media screen and (max-width: 765px) {

    body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        margin: 0 !important;
        padding: 0 !important;
    }
    .container {
        width: 100vw;
        min-height: 100vh;
        max-width: none;
        margin: 0;
        border-radius: 0;
        padding: 20px;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .conteudo {
        width: 98%;
        align-items: center;
        text-align: center;
    }
    
    .link-icon {
        width: 50px;
        height: 50px;
    }
    .link-button {
        font-size: 1em;
        padding: 8px;
    }
    .profile-img {
        width: 100px;
        height: 100px;
    }

        .profile-header h1 {
        font-size: 1.5em; /* Título menor */
    }
    .profile-header h2 {
        font-size: 1.1em;   /* Subtítulo menor */
    }
    .footer-info p {
        font-size: 0.8em;
    }

    /* Estilo para telas pequenas: texto ao lado da imagem */

    .link-button span {
        position: static;
        flex: 1;
        font-size: 1em;
        text-align: center;
        padding: 15px;
        width: auto;
        pointer-events: auto;
    }

}