@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* --- Reset Básico e Estilos Globais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #D1CAB7;
    color: #6F6855;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* --- Container Principal --- */
.container {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

/* --- Cabeçalho e Informações de Perfil --- */
header {
    margin-bottom: 20px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #6F6855;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

header p {
    font-size: 1rem;
    font-weight: 400;
}

/* --- Ícones de Redes Sociais --- */
.social-icons {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons a {
    color: #6F6855;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

/* --- Botões de Links --- */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    background-color: #ABA58D;
    border: 2px solid #6F6855;
    border-radius: 30px;
    padding: 15px;
    text-decoration: none;
    color: #6F6855;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

/* --- Rodapé --- */
footer{
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.8;
}

footer p a{
    color: #6F6855;
    text-decoration: none;
}