* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 40px 16px;
}

.container {
    max-width: 420px;
    width: 100%;
    text-align: center;
}

/* FOTO PERFIL */
.perfil img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #bfbfbf;
    margin-bottom: 18px;
}

/* CREF */
.cref {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

/* NOME */
h1 {
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* CARD DE TEXTO */
.card {
    border: 1px solid #444;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #0d0d0d, #050505);
}

.card p {
    font-size: 14px;
    line-height: 1.7;
    color: #cfcfcf;
}

.card strong {
    color: #ffffff;
    font-weight: 600;
}

/* BOTÃO WHATSAPP (ELEGANTE) */
.btn-whatsapp {
    display: block;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 16px;
    margin-top: 10%;
    border-radius: 12px;
    border: 1px solid #bfbfbf;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #fff;
    color: #000;
}