:root {
  --paper: #f5efe5;
  --paper-strong: #ede1d1;
  --green: #1e604a;
  --green-dark: #123f31;
  --ink: #17221d;
  --muted: #606b64;
  --white: #ffffff;
  --line: rgba(30, 96, 74, 0.16);
}

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

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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(245, 239, 229, 0.76)),
    var(--paper);
}

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

svg {
  display: block;
}

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

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center 0%, rgba(255, 255, 255, 0.86), transparent 35%),
    linear-gradient(135deg, transparent 0 45%, rgba(30, 96, 74, 0.06) 45% 55%, transparent 55%);
  pointer-events: none;
}

.card {
  width: min(100%, 560px);
  min-height: calc(100vh - 32px);
  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(210px, 55vw, 318px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: var(--paper-strong);
  box-shadow: 0 18px 48px rgba(31, 45, 38, 0.16);
  overflow: hidden;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  max-width: 520px;
  margin-top: 3px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 8.4vw, 4.1rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
}

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

.summary {
  max-width: 390px;
  margin: 7px auto 15px;
  color: var(--muted);
  font-size: clamp(0.9rem, 2.8vw, 1rem);
  font-weight: 700;
  line-height: 1.35;
}

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

.action {
  min-height: 70px;
  display: grid;
  grid-template-columns: 52px 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: 44px;
  height: 44px;
  fill: currentColor;
}

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

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

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

.arrow {
  justify-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 0.8;
  font-weight: 300;
}

.brand-footer {
  width: min(100%, 440px);
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(30, 96, 74, 0.14);
}

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

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

  .card {
    min-height: calc(100vh - 16px);
    padding: 10px 4px;
  }

  .photo-wrap {
    width: min(225px, 62vw);
    margin-bottom: 13px;
    border-width: 4px;
  }

  .summary {
    margin-bottom: 12px;
  }

  .links {
    gap: 9px;
  }

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

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

  .brand-footer {
    margin-top: 18px;
    padding-top: 14px;
  }

  .logo {
    width: 205px;
  }

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

@media (max-width: 370px) {
  h1 {
    font-size: 2.22rem;
  }

  .role {
    font-size: 0.78rem;
  }

  .summary {
    font-size: 0.78rem;
  }

  .action {
    grid-template-columns: 38px 1fr 16px;
    min-height: 59px;
    padding: 9px 10px;
  }

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

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

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

  .logo {
    width: 185px;
  }
}
