* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #EFE3D6;
  font-family: 'Inter', sans-serif;
  color: #3e3e2f;
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

/* CONTAINER */
.container {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

/* FOTO */
.avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;

  border: 3px solid white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* NOME */
.nome {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 5px;
}

/* PROFISSÃO */
.profissao {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 20px;
}

/* TEXTO */
.descricao {
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BOTÕES */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 20px;
  border-radius: 14px;

  background: rgba(255,255,255,0.7);

  text-decoration: none;
  color: #3e3e2f;

  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  background: white;
}

/* BOTÃO DE DESTAQUE */
.card.destaque {
  background-color: #974E2F;
  color: white;
}

/* RODAPÉ */
.footer {
  margin-top: 30px;
  font-size: 13px;
}

.endereco {
  display: block;
  margin-bottom: 10px;
  color: #3e3e2f;
  text-decoration: none;
}

.email {
  color: #3e3e2f;
  text-decoration: none;
}

/* BOTÃO WHATSAPP FIXO */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 55px;
  height: 55px;
  border-radius: 50%;

  background-color: #25D366;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 24px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.whatsapp:hover {
  transform: scale(1.1);
}