:root {
    --fundo-principal: #e0d5de;
    --gradiente-inicial: #E9B3FB;
    --destaque-principal: #9929EA;
    --destaque-secundario: #CC66DA;
    --titulo: #3D365C;
}

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

html {
    font-size: 16px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--fundo-principal);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, var(--gradiente-inicial), var(--fundo-principal));
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
}

.perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.perfil h1 {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--titulo);
}

.perfil p {
    margin-top: 0.5rem;
    font-size: 0.6rem;
    font-weight: lighter;
    color: #3D365C;
}

.foto-perfil {
    width: 30vh;
    max-width: 150px;
    height: 30vh;
    max-height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--destaque-principal);
}

.ulLinks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.liLinks {
    background-color: var(--destaque-principal);
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    transition: background-color .3s ease;
}

.liLinks:hover {
    background-color: var(--destaque-secundario);
}

.aLinks {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: var(--fundo-principal);
    font-size: 0.8rem;
    padding: 10px 0;
    transition: color .3s ease;
}

.aLinks i {
    position: absolute;
    left: 10px;
    font-size: 16px;
}

.aLinks:hover {
    color: white;
}

@media (min-width: 768px) {
    .container {
        width: 80%;
        max-width: 500px;
        padding: 30px;
    }

    .perfil h1 {
        font-size: 1.2rem;
    }

    .perfil p {
        font-size: 0.8rem;
    }

    .foto-perfil {
        max-width: 180px;
        max-height: 180px;
    }

    .liLinks {
        max-width: 300px;
    }

    .aLinks {
        font-size: 1rem;
        padding: 12px 0;
    }

    .aLinks i {
        font-size: 20px;
        left: 15px;
    }
}

@media (min-width: 1024px) {
    .container {
        width: 60%;
        max-width: 600px;
        padding: 40px;
    }

    .perfil h1 {
        font-size: 1.5rem;
    }

    .perfil p {
        font-size: 1rem;
    }

    .foto-perfil {
        max-width: 200px;
        max-height: 200px;
    }

    .liLinks {
        max-width: 400px;
    }

    .aLinks {
        font-size: 1.2rem;
        padding: 15px 0;
    }

    .aLinks i {
        font-size: 24px;
        left: 20px;
    }
}