:root{
  --bg:#ffffff;
  --bg-2:#f5f7fa;
  --card:#ffffff;
  --card-hover:#f8fafc;
  --ink:#0d1620;
  --ink-soft:#3a4654;
  --ink-dim:#6b7785;
  --line:rgba(13,22,32,.10);

  --green:#25D366;
  --green-2:#1ebe5a;
  --green-soft:rgba(37,211,102,.12);

  --shadow:0 18px 44px rgba(13,22,32,.10);
  --shadow-soft:0 8px 22px rgba(13,22,32,.06);
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  min-height:100%;
  font-family:"Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(15,23,42,.04) 0%, rgba(15,23,42,0) 55%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  color:var(--ink);
}

.page{
  min-height:100dvh;
  display:grid;
  place-items:start center;
  padding:34px 16px 28px;
}

.page > *{
  width:100%;
  max-width:min(540px, 94vw);
}

.intro{
  text-align:center;
  margin-bottom:22px;
}

.logo-wrap{
  margin:0 0 14px;
  display:flex;
  justify-content:center;
}

.logo-img{
  max-width:200px;
  max-height:78px;
  height:auto;
  width:auto;
  display:block;
  object-fit:contain;
}

.profile-wrap{
  margin:0 0 18px;
  display:flex;
  justify-content:center;
}

.profile-photo{
  width:168px;
  height:168px;
  display:block;
  object-fit:cover;
  object-position:center;
  border-radius:50%;
  box-shadow:
    0 0 0 8px rgba(13,22,32,.03),
    0 18px 34px rgba(13,22,32,.12);
}

.identity h1{
  margin:0;
  font-size:28px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:-.03em;
  color:var(--ink);
}

.crm{
  margin:8px 0 16px;
  font-size:14px;
  font-weight:600;
  color:var(--ink-dim);
}

.highlights{
  display:grid;
  gap:8px;
}

.highlights p{
  margin:0;
  font-size:15px;
  line-height:1.5;
  color:var(--ink-soft);
  font-weight:600;
}

.links{
  display:grid;
  gap:12px;
}

.link-btn{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
  padding:16px 16px;
  border-radius:18px;
  background:var(--card);
  border:1px solid var(--line);
  color:var(--ink);
  text-decoration:none;
  box-shadow:var(--shadow-soft);
  transition:
    transform .16s ease,
    background-color .16s ease,
    border-color .16s ease,
    box-shadow .16s ease;
}

.link-btn:hover{
  transform:translateY(-1px);
  background:var(--card-hover);
  border-color:rgba(13,22,32,.16);
  box-shadow:var(--shadow);
}

.link-whatsapp{
  background:linear-gradient(180deg, rgba(37,211,102,.14) 0%, rgba(37,211,102,.08) 100%);
  border-color:rgba(37,211,102,.45);
  box-shadow:0 14px 34px rgba(37,211,102,.16);
}

.link-whatsapp:hover{
  background:linear-gradient(180deg, rgba(37,211,102,.20) 0%, rgba(37,211,102,.12) 100%);
  border-color:rgba(37,211,102,.62);
}

.ico{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(13,22,32,.05);
  border:1px solid rgba(13,22,32,.08);
  flex-shrink:0;
}

.ico svg{
  width:20px;
  height:20px;
  fill:var(--ink);
}

.link-whatsapp .ico{
  background:var(--green-soft);
  border-color:rgba(37,211,102,.36);
}

.link-whatsapp .ico svg{
  fill:var(--green);
}

.txt{
  display:flex;
  flex-direction:column;
  gap:3px;
  min-width:0;
  text-align:left;
}

.txt strong{
  font-size:15.5px;
  line-height:1.25;
  font-weight:700;
  color:var(--ink);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.txt em{
  font-style:normal;
  font-size:12.8px;
  color:var(--ink-dim);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.link-whatsapp .txt em{
  color:#1a7a3f;
}

.chev{
  font-size:22px;
  line-height:1;
  color:var(--ink-dim);
  opacity:.7;
}

a:focus-visible{
  outline:2px solid rgba(13,22,32,.55);
  outline-offset:2px;
  border-radius:16px;
}

@media (max-width: 520px){
  .page{
    padding:26px 14px 24px;
  }

  .logo-img{
    max-width:170px;
    max-height:66px;
  }

  .profile-photo{
    width:144px;
    height:144px;
  }

  .identity h1{
    font-size:23px;
  }

  .crm{
    font-size:13px;
    margin-bottom:14px;
  }

  .highlights p{
    font-size:13.5px;
  }

  .link-btn{
    gap:12px;
    padding:15px 14px;
  }

  .txt strong{
    font-size:14px;
  }

  .txt em{
    font-size:11.9px;
  }
}

@media (max-width: 390px){
  .identity h1{
    font-size:21px;
  }

  .txt strong{
    font-size:13.2px;
  }

  .txt em{
    font-size:11.4px;
  }
}