@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
}

.cartao-de-perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position:relative
}
.cartao-de-perfil::before{
    content: "";
    position:absolute;
    top: 0;
    left: 0;
    height: 36%;
    width: 100%;
    border-radius: 24px 24px 0 0;
    background-color: #4070f4;
   
    /* card axul de fundo */
}

.imagem {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: #4070f4;
    padding: 3px;
    margin-bottom: 10px;
}


.imagem .perfil-img {
    z-index: 1;
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}

.cartao-de-perfil .text-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

.text-data .nome {
    font-size: 22px;
    font-weight: 500;
}

.text-data .trabalho {
    font-size: 15px;
    font-weight: 400;
}

.cartao-de-perfil .midia-botoes {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.social-networks  {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    margin: 0 8px;
    text-decoration: none;
}

#facebook {
    background-color: #4070f4;
}
#twitter {
    background-color: #1da1f2;
}
#instagram {
    background-color: #e3006c;
}
#linkedin {
    background-color: #4267b2;
}

.botoes {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.botoes .botao {

    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-radius: 24px;
    margin: 0 10px;
    padding: 8px 24px;
    background-color: #4070f4;
    cursor: pointer;
    transition: all 0, 3 ease;
}

.botoes .botao {
    background-color: #0e4bf1;
}

.cartao-de-perfil .analytics {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.analytics .data {
    display: flex;
    align-items: center;
    color: #333;
    padding: 0 20px;
    border-right: 2px solid #e7e7e7;
}

.data i {
    margin-right: 6px;
    font-size: 18px;
}

.data:last-child {
    border-right: none;
}