:root {
  --navy: #072030;
  --gold: #D4AF37;
  --white: #F2EAD8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--navy);
  font-family: 'Cinzel', serif;
  color: var(--white);
}

/* CARD PRINCIPAL */
.card {
  position: relative;
  width: 360px;
  max-width: 100%;
  padding: 32px 24px 30px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

/* textura de fundo */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(225deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

/* LOGO TOPO – CÍRCULO COM BALANÇA */
.logo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 165px;
  margin: 0 auto 10px;
}

.balanca {
  width: 96%;
  height: auto;
}

/* NOME EM 3 LINHAS */
.name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin-bottom: 18px;
}

/* LINHA DOURADA */
.divider {
  width: 70%;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 18px;
}

/* CARGO + OAB */
.title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}

.oab {
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
}

/* ÍCONES DE CONTATO */
.icons-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 24px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.2s ease;
}

.icon-btn:hover {
  background: rgba(212,175,55,0.16);
  transform: translateY(-1px) scale(1.04);
}

.icon {
  width: 50px;
  height: 50px;
}

/* DICA – TOQUE NOS ÍCONES */
.hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.15em;
}

.hint-text {
  color: var(--white);
}

.hand {
  width: 46px;
  height: 40px;
}

.wm-svg {
  width: 85%;
  height: 85%;
}

/* RESPONSIVO (MOBILE) */
@media (max-width: 400px) {
  .card {
    width: 320px;
    padding: 26px 18px 24px;
  }

  .name {
    font-size: 22px;
  }

  .logo-circle {
    width: 170px;
    height: 170px;
  }

  .balanca {
    width: 95%;
  }
}
