@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #0d0d0d;
  --charcoal: #171717;
  --graphite: #2a2a2a;
  --silver: #bdbdbd;
  --white: #f7f7f7;
  --muted: rgba(247, 247, 247, .7);
  --line: rgba(247, 247, 247, .18);
  --shadow: 0 28px 82px rgba(0, 0, 0, .58);
}

* { box-sizing: border-box; }

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

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 0, rgba(255, 255, 255, .12), transparent 19rem),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, .08), transparent 22rem),
    linear-gradient(145deg, #050505 0, #141414 48%, #000 100%),
    repeating-linear-gradient(96deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 8px);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  z-index: -2;
  opacity: .13;
  background: repeating-linear-gradient(14deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 12px);
  mix-blend-mode: screen;
}

body::after {
  z-index: -1;
  opacity: .55;
  background:
    linear-gradient(100deg, transparent 0 17%, rgba(255, 255, 255, .08) 28%, transparent 43%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 28%, rgba(0, 0, 0, .58));
}

a { color: inherit; }

.page-shell {
  width: 100%;
  max-width: 462px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.profile {
  display: grid;
  justify-items: center;
  text-align: center;
}

.portrait {
  width: 110px;
  aspect-ratio: 1;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(247, 247, 247, .34);
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #b9b9b9 44%, #333);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .58), inset 0 1px 1px rgba(255, 255, 255, .7);
}

.portrait img {
  width: 100%;
  height: 100%;
  display: block;
  border: 2px solid rgba(5, 5, 5, .96);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.handle {
  margin: 11px 0 4px;
  color: rgba(247, 247, 247, .74);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 2.65rem;
  font-weight: 600;
  line-height: .94;
  text-wrap: balance;
}

.role {
  margin: 8px 0 0;
  color: rgba(247, 247, 247, .88);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.credential {
  margin: 5px 0 0;
  color: rgba(247, 247, 247, .74);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.positioning {
  max-width: 21rem;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.link-stack {
  display: grid;
  gap: 14px;
  margin-top: -6px;
}

.link-banner {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 178px;
  aspect-ratio: 1482 / 653;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  isolation: isolate;
  background: linear-gradient(112deg, rgba(5, 5, 5, .98) 0 43%, rgba(55, 55, 55, .72) 75%, rgba(0, 0, 0, .94) 100%);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}

.link-banner::before,
.link-banner::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.link-banner::before {
  display: none;
}

.link-banner::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96) 0 50%, rgba(0, 0, 0, .28) 72%, rgba(0, 0, 0, .78) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .48), transparent 58%);
}

.old-frame::before,
.old-frame::after {
  display: none;
}

.link-banner:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.link-banner:hover {
  border-color: rgba(247, 247, 247, .42);
  box-shadow: 0 34px 94px rgba(0, 0, 0, .64);
  transform: translateY(-2px);
}

.link-banner img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(0) contrast(1.08);
}

.old-frame img {
  left: 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.media-left:not(.old-frame) img {
  left: 0;
  right: auto;
  width: 72%;
  object-position: center 62%;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 52%, rgba(0, 0, 0, .78) 66%, rgba(0, 0, 0, .28) 82%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 52%, rgba(0, 0, 0, .78) 66%, rgba(0, 0, 0, .28) 82%, transparent 100%);
}

.media-right:not(.old-frame) img {
  right: 0;
  left: auto;
  width: 72%;
  object-position: center 62%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .28) 18%, rgba(0, 0, 0, .78) 34%, #000 48%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .28) 18%, rgba(0, 0, 0, .78) 34%, #000 48%, #000 100%);
}

.consultas img {
  width: 100%;
  object-position: 48% 78%;
}

.mentoria img {
  object-position: 50% 58%;
}

.sala-secreta img {
  object-position: 48% 62%;
}

.site img {
  object-position: 50% 56%;
}

.localizacao img {
  object-position: 52% 62%;
}

.link-banner.consultas img {
  left: -18%;
  width: 90%;
  object-position: 50% 78%;
}

.media-left:not(.old-frame)::after {
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .05) 0%,
      rgba(0, 0, 0, .08) 24%,
      rgba(0, 0, 0, .18) 39%,
      rgba(0, 0, 0, .42) 52%,
      rgba(0, 0, 0, .72) 66%,
      rgba(0, 0, 0, .94) 82%,
      rgba(0, 0, 0, .99) 100%),
    radial-gradient(ellipse at 24% 50%, rgba(255, 255, 255, .08), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, .46), transparent 66%);
}

.media-right:not(.old-frame)::after {
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .99) 0%,
      rgba(0, 0, 0, .94) 18%,
      rgba(0, 0, 0, .72) 34%,
      rgba(0, 0, 0, .42) 48%,
      rgba(0, 0, 0, .18) 61%,
      rgba(0, 0, 0, .08) 76%,
      rgba(0, 0, 0, .05) 100%),
    radial-gradient(ellipse at 76% 50%, rgba(255, 255, 255, .08), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, .46), transparent 66%);
}

.banner-copy {
  position: relative;
  z-index: 2;
  width: 70%;
  min-height: 178px;
  padding: 15px 56px 15px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-baked .banner-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.media-left:not(.old-frame) .banner-copy {
  margin-left: auto;
  width: 50%;
  padding-left: 18px;
  padding-right: 28px;
}

.media-right:not(.old-frame) .banner-copy {
  margin-right: auto;
  width: 50%;
  padding-right: 26px;
}

.kicker {
  color: rgba(247, 247, 247, .62);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.link-banner strong {
  margin-top: 5px;
  color: var(--white);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.03;
  text-wrap: balance;
}

.support {
  width: min(100%, 15.5rem);
  margin-top: 7px;
  color: rgba(247, 247, 247, .74);
  font-size: .76rem;
  font-weight: 500;
  line-height: 1.35;
}

.arrow {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 247, 247, .26);
  border-radius: 50%;
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(10px);
}

.arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.consultas,
.mentoria,
.sala-secreta,
.site,
.localizacao {
  background: linear-gradient(112deg, rgba(5, 5, 5, .98) 0 42%, rgba(48, 48, 48, .7) 74%, rgba(0, 0, 0, .94) 100%);
}

.statement {
  padding-top: 2px;
  border-top: 1px solid rgba(247, 247, 247, .14);
}

.statement p {
  margin: 0;
  color: rgba(247, 247, 247, .78);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.35;
  text-align: center;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(247, 247, 247, .62);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 365px) {
  .page-shell { padding-inline: 14px; }
  h1 { font-size: 2.35rem; }
  .link-banner {
    min-height: 0;
  }
  .banner-copy {
    width: 73%;
    padding-right: 42px;
    min-height: 158px;
  }
  .media-left:not(.old-frame) .banner-copy,
  .media-right:not(.old-frame) .banner-copy {
    padding-left: 22px;
    padding-right: 38px;
  }
  .support { display: none; }
}

@media (min-width: 760px) {
  .page-shell {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  h1 { font-size: 3rem; }
}
