* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #d9a486;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 30px 20px;
    color: #4d3426;
}

.container {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #4f2f22;
}

.bio {
    font-size: 15px;
    margin-bottom: 22px;
    color: #5f4334;
    line-height: 1.6;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 35px;
}

.socials a {
    color: #6b4b39;
    font-size: 22px;
    transition: .3s;
}

.socials a:hover {
    transform: translateY(-3px);
    color: #3f2417;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #7b573f;
    color: #fff4e8;
    text-decoration: none;
    padding: 22px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 500;
    transition: .3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    font-size: 16px;
    font-weight: normal;
}

.link-button:hover {
    transform: scale(1.02);
    background: #6d4b35;
}

.link-button.btn-assesoria {
    background: #000000;
}
.link-button.btn-assesoria:hover {
    background: #6d4b35;
}

.link-button>span {
    font-weight: bold;
    margin-left: 4px;
    background: #000000;
    border-radius: 6px;
    padding: 0px 12px;
    display: inline-block;
}

.small {
    font-size: 18px;
    font-weight: 400;
}

@media(max-width:768px) {

    h1 {
        font-size: 28px;
    }

    .link-button {
        font-size: 16px;
        padding: 18px;
    }

    .small {
        font-size: 15px;
    }

    .bio {
        font-size: 13px;
    }
}