
/* Estilos Globais */
body {
margin: 0;
padding: 0;
font-family: 'Cambria', 'Cochin', 'Georgia', 'Times', 'Times New Roman', serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
}

main {
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
max-width: 90%; /* Responsivo em telas maiores */
margin: 2rem auto;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Perfil */
.profile {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 2rem;
}

.profile__foto {
width: 150px;
height: 150px;
border-radius: 50%;
padding: 7px;
box-sizing: border-box;
background: linear-gradient(#f6b73c, #4d9f0c);
margin-bottom: 1rem;
}

.profile__foto img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
display: block;
}

.profile__texto {
text-align: center;
}

.profile__texto h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}

.profile__texto p {
font-size: 1rem;
color: #666;
}

/* Lista de Links Sociais */
.social__list {
list-style-type: none;
padding: 0;
width: 100%;
}

.social__list li {
margin-bottom: 1rem;
}

.social__link {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
text-decoration: none;
color: #333;
border: 1px solid #ddd;
padding: 1rem;
border-radius: 6px;
transition: background-color 0.3s ease;
}

.social__link:hover {
background-color: #eee;
}

.social__icon {
width: 30px;
height: 30px;
}

/* Responsividade */
@media (min-width: 768px) {
main {
max-width: 600px;
}

.profile__foto {
    width: 180px;
    height: 180px;
}

.profile__texto h1 {
    font-size: 3rem;
}

.social__icon {
    width: 35px;
    height: 35px;
}
}

@media (min-width: 1024px) {
main {
padding: 3rem;
}

.social__link {
    padding: 1.2rem;
}

.social__icon {
    width: 40px;
    height: 40px;
}
}