/* Estilos Gerais */
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #ffffff;
    color: #000000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Container Principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Seção de Perfil */
.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

h1 {
    margin-top: 20px;
    font-size: 2.5em;
    font-weight: bold;
}

/* Links Sociais */
.social-links {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #e6e6e6;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: #000;
    transition: fill 0.3s ease;
}

.social-links a:hover svg {
    fill: #10a37f; /* Cor de destaque */
}

/* Responsividade */
@media (max-width: 600px) {
    .profile-photo {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 2em;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links svg {
        width: 20px;
        height: 20px;
    }
}
