/* Define a paleta de cores para fácil reutilização */
:root {
    --color-background: #F8E9E9; /* Tom de rosa para o fundo do site */
    --color-button: #F5C5B4;
    --color-text-dark: #8B602A;
    --color-off-white: #F0EEE6;
    --color-card-background: #F0EEE6; /* Cor do cartão central */
}

/* Reset básico e estilo geral do corpo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-background); /* Fundo rosa aplicado aqui */
    color: var(--color-text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Wrapper para o cartão principal */
.main-card-wrapper {
    background-color: var(--color-card-background);
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    max-width: 550px;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container principal da BIO */
.bio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Estilo da foto de perfil */
.profile-picture {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--color-off-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

/* Estilo do logo com efeito de hover */
.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}
.logo:hover {
    opacity: 0.75;
}

/* Estilo do slogan */
.slogan {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 450px;
}

/* Container dos botões de link */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Estilo dos botões */
.link-button {
    background-color: var(--color-button);
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.link-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* Rodapé DENTRO do cartão */
footer {
    margin-top: 35px;
    font-size: 0.88rem;
    color: var(--color-text-dark);
    opacity: 0.8;
}

/* Ajustes para telas menores (Responsividade) */
@media (max-width: 480px) {
    .main-card-wrapper {
        padding: 30px 20px;
        width: 95%;
    }

    .profile-picture {
        width: 140px;
        height: 140px;
    }

    .logo {
        max-width: 180px;
    }

    .slogan {
        font-size: 0.95rem;
    }

    .link-button {
        font-size: 0.95rem;
        width: 100%;
    }

    footer {
        margin-top: 30px;
        font-size: 0.8rem;
    }
}