* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333333;
    background-color: #bbf7f0;
    line-height: 1.6;
}

.perfil-container {
    max-width: 800px;
    margin: 0 auto;
}

.perfil-capa {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.perfil-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #bbf7f0;
    margin: -75px auto 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
}

.perfil-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.perfil-nome {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 0 20px;
}

.perfil-descricao {
    padding: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.perfil-include {
    width: 100%;
    padding: 20px;
    background-color: #f5f5f5;
    border: 2px solid #dddddd;
    border-radius: 8px;
    margin-bottom: 30px;
}

.perfil-botoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn-social svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.perfil-endereco {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background-color: #f5f5f5;
    border-radius: 8px;
    max-width: 600px;
    margin: 30px auto;
}

@media (max-width: 768px) {
    .perfil-nome {
        font-size: 24px;
    }
    
    .perfil-botoes {
        gap: 10px;
    }
    
    .btn-social {
        width: 50px;
        height: 50px;
    }
    
    .btn-social svg {
        width: 25px;
        height: 25px;
    }
}
