* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-self: center;
    max-height: 100vh;
    padding: 20px;
}


.card {
    background: #070707;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 10%, rgba(87, 75, 75, 1) 50%, rgba(0, 0, 0, 1) 90%);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(255, 255, 255);
    overflow: hidden;
    width: 300px;
    height: 670px;
    text-align: center;

}

.perfil-foto img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-top: 80px;
    object-fit: cover;
}

.info {
    padding: 20px;
}

.info .name {
    color: #f5f0f0;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.info .cargo {
    color: #f5f0f0;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info .descricao {
    color: #f5f0f0;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.social-icons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
}

.social-icons a img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

@media (max-width: 400px) {
    .card {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
  .card {
    width: 100%;
  }
}