.dev{
  min-height:100vh;
  display:grid;
  place-items:center;
  background: var(--bg);
}

.dev-card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius:18px;
   padding: 42px 36px; /* mais respiro */
  box-shadow: var(--shadow);
  text-align:center;
  max-width:420px;
}

.dev-card img{
  max-width:160px;
  margin-bottom:16px;
}

.dev-card h1{
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.dev-card p{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  color: var(--muted);
}


/* ===== SOCIAL ICONS (EM DESENVOLVIMENTO) ===== */
.dev-socials{
  margin-top: 28px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.dev-socials img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}



