:root {
  --background: #FF53BD;
  --ink: #070707;
  --accent: #FF97D7;
  --logo-max: 305px;
}

* {
  box-sizing: border-box;
}

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

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

.landing {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(32px, 8vw, 128px);
  padding: clamp(32px, 8vw, 92px);
  padding-bottom: clamp(74px, 10vw, 112px);
}

.intro {
  width: min(30vw, var(--logo-max));
  min-width: 180px;
  align-self: start;
  margin-top: clamp(18px, 8vh, 88px);
}

.brand {
  display: block;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.services {
  max-width: 320px;
  margin: clamp(150px, 22vh, 230px) 0 0;
  padding: 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.45vw, 1.42rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  list-style: none;
}

.services li {
  display: flex;
  align-items: baseline;
  gap: 0.42em;
  white-space: nowrap;
}

.services li::before {
  content: "·";
  flex: 0 0 auto;
}

.services li + li {
  margin-top: 0.24em;
}

.headline {
  justify-self: center;
  width: min(100%, 700px);
  margin: 0;
  color: var(--ink);
  font-size: clamp(4rem, 6.2vw, 6.6rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0;
}

.headline > span {
  display: block;
}

.headline sup {
  display: inline-block;
  margin-left: 0.04em;
  font-size: 0.48em;
  line-height: 0;
  vertical-align: 0.18em;
}

.strike {
  position: relative;
  display: inline-block;
}

.strike::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  top: 52%;
  height: 0.105em;
  background: var(--accent);
  transform: translateY(-50%);
}

.socials {
  position: fixed;
  left: 50%;
  bottom: clamp(18px, 4vw, 32px);
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.social-link {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: #fff;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.86;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: #ffe1f3;
  opacity: 1;
  transform: translateY(-2px);
}

.social-link:focus-visible {
  outline: 2px solid #ffe1f3;
  outline-offset: 4px;
}

.social-link svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-link .whatsapp-icon {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 760px) {
  .landing {
    grid-template-columns: 1fr;
    align-content: space-between;
    gap: 32px;
    padding: 30px 24px 90px;
  }

  .intro {
    width: min(58vw, 235px);
    min-width: 154px;
    margin-top: 0;
  }

  .services {
    max-width: 280px;
    margin-top: 38px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .headline {
    justify-self: start;
    width: min(100%, 440px);
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .socials {
    bottom: 22px;
  }
}

@media (max-width: 390px) {
  .landing {
    padding-inline: 18px;
  }

  .headline {
    font-size: clamp(2.9rem, 13.6vw, 3.35rem);
  }
}
