:root {
  --pearl: #f7f1e7;
  --pearl-2: #eee3d4;
  --green: #1f5f4a;
  --green-dark: #143f31;
  --ink: #1d2522;
  --muted: #5d665f;
  --white: #ffffff;
  --line: rgba(31, 95, 74, 0.16);
}

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

html {
  min-height: 100%;
  background: var(--pearl);
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--pearl);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 16px 12px;
  background: var(--pearl);
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center 0%, rgba(255, 255, 255, 0.85), transparent 36%),
    radial-gradient(circle at 50% 100%, rgba(31, 95, 74, 0.08), transparent 38%);
  pointer-events: none;
}

.card {
  width: min(100%, 560px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 18px 12px;
  text-align: center;
}

.photo-wrap {
  width: clamp(270px, 68vw, 390px);
  aspect-ratio: 1;
  display: grid;
  place-items: end center;
  margin-bottom: 18px;
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(31, 95, 74, 0.08)),
    var(--pearl-2);
  box-shadow: 0 18px 48px rgba(31, 45, 38, 0.16);
  overflow: hidden;
}

.photo-wrap img {
  width: 88%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.26));
}

.logo {
  width: min(390px, 92vw);
  height: auto;
  margin: 0 auto 14px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.role {
  margin-top: 6px;
  color: var(--green);
  font-size: clamp(0.95rem, 3.2vw, 1.3rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.accent {
  width: 62px;
  height: 4px;
  margin: 13px 0 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.links {
  width: min(100%, 440px);
  display: grid;
  gap: 11px;
}

.action {
  min-height: 72px;
  display: grid;
  grid-template-columns: 54px 1fr 22px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--white);
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 28px rgba(31, 45, 38, 0.14);
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.action:hover,
.action:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  border-color: rgba(255, 255, 255, 0.34);
  outline: none;
}

.whatsapp {
  background: linear-gradient(135deg, #269c58, #0e5d31);
}

.instagram {
  background: linear-gradient(135deg, #7027cf, #b72c74 52%, #d16822);
}

.site {
  background: linear-gradient(135deg, #276b54, #143f31);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.icon svg {
  width: 46px;
  height: 46px;
  fill: currentColor;
}

.text {
  display: grid;
  gap: 2px;
}

.text strong {
  font-size: clamp(1.35rem, 4.2vw, 1.85rem);
  line-height: 1;
  font-weight: 900;
}

.text small {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.84rem, 2.6vw, 1rem);
  line-height: 1.18;
}

.arrow {
  justify-self: end;
  font-family: Georgia, serif;
  font-size: 2.8rem;
  line-height: 0.8;
  font-weight: 300;
}

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

  .card {
    min-height: 100vh;
    padding: 10px 4px;
  }

  .photo-wrap {
    width: 275px;
    margin-bottom: 14px;
    border-width: 4px;
  }

  .logo {
    width: 330px;
    margin-bottom: 12px;
  }

  .accent {
    width: 52px;
    height: 4px;
    margin: 9px 0 10px;
  }

  .links {
    gap: 9px;
  }

  .action {
    min-height: 66px;
    grid-template-columns: 46px 1fr 18px;
    gap: 10px;
    padding: 10px 13px;
    border-radius: 14px;
  }

  .icon,
  .icon svg {
    width: 42px;
    height: 42px;
  }

  .arrow {
    font-size: 2.4rem;
  }
}

@media (max-width: 370px) {
  .photo-wrap {
    width: 235px;
  }

  .logo {
    width: 290px;
  }

  .role {
    font-size: 0.78rem;
  }

  .action {
    grid-template-columns: 40px 1fr 16px;
    min-height: 60px;
    padding: 9px 11px;
  }

  .icon,
  .icon svg {
    width: 36px;
    height: 36px;
  }

  .text strong {
    font-size: 1.2rem;
  }

  .text small {
    font-size: 0.78rem;
  }
}
