@font-face {
  font-family: "Roboto Variable";
  src: local("Roboto Flex"), local("RobotoVariable");
  font-weight: 100 1000;
  font-stretch: 25% 151%;
  font-style: normal;
}

:root {
  --font: "Roboto Variable", "Roboto Flex", Roboto, "Helvetica Neue", Helvetica, sans-serif;
  --bg: #fcf5eb;
  --ink: #111b21;
  --muted: #54656f;
  --border: #d1d1cd;
  --green: #26d367;
  --green-deep: #1fbe5a;
  --link: #008069;
  --disabled: #d8dcde;
  --disabled-ink: #8696a0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}

body {
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
}

.brand-mark {
  width: 28px;
  height: 28px;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #25D366;
  letter-spacing: -0.03em;
}

.x1y4xi8 {
  color: #25D366;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.card + .card {
  margin-top: 16px;
}

.download {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 18px 24px;
}

.devices svg {
  display: block;
  width: 86px;
  height: 54px;
}

.download-copy h2 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.download-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 10px 24px;
  border-radius: 24px;
  background: #25D366;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid black;
}

.btn-download:hover {
  background: var(--green-deep);
  color: #fff;
  text-decoration: none;
}

.scan {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  padding: 36px 40px 28px;
}

.scan-left h1 {
  margin: 0 0 22px;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #111B21;
  font-size: 18px;
}

.steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 26px;
  bottom: -16px;
  width: 1px;
  background: #000;
}

.step-num {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1.3px solid #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  color: #000;
  background: #fff;
  position: relative;
  z-index: 1;
}

.step-num-2 {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-mini {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: -2px;
}

.help {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.help span {
  border-bottom: 2px solid #1DAA61;
}

.help:hover {
  text-decoration: none;
  color: #1DAA61;
}

.stay {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 52px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.stay-logged-in {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stay input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tick {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #1DAA61;
  position: relative;
  flex: 0 0 18px;
}

.tick::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.stay input:not(:checked) + .tick {
  background: #fff;
  border: 1.5px solid #8696a0;
}

.stay input:not(:checked) + .tick::after {
  display: none;
}

.info {
  width: 15px;
  height: 15px;
  border: 1.2px solid #8696a0;
  border-radius: 50%;
  color: #8696a0;
  font-size: 10px;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scan-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-box {
  width: 248px;
  height: 248px;
  background: #fff;
}

.qr-box img,
.qr-box canvas {
  width: 248px;
  height: 248px;
  display: block;
  object-fit: contain;
  background: #fff;
}

.qr-box img[hidden],
.qr-box canvas[hidden] {
  display: none;
}

.phone-link {
  display: flex;
  align-items: center;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
}

.whatsappIcon {
  border-radius: 6px;
}
.phone-link:hover {
  color: #1DAA61;
  text-decoration: none;
}

.phone-link span {
  border-bottom: 2px solid #1DAA61;
}
.create {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 28px;
  padding: 26px 32px;
}

.create-copy h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.create-copy p {
  margin: 0;
  max-width: 440px;
  color: #3b4a54;
  font-size: 14.5px;
}

.create-copy a {
  text-decoration: underline;
}

.create-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone {
  position: relative;
  display: flex;
  align-items: center;
  height: 52px;
  padding: 0 12px;
  border: 1.4px solid #c5c9cc;
  border-radius: 12px;
  background: #fff;
}

.phone.open {
  border-color: var(--link);
}

.phone:focus-within {
  border-color: var(--link);
}

.float {
  position: absolute;
  left: 12px;
  top: -8px;
  padding: 0 5px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
}

.cc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 10px;
  padding: 0 10px 0 0;
  border: 0;
  border-right: 1px solid #d1d7db;
  background: transparent;
  font: inherit;
  font-weight: 500;
  color: inherit;
  cursor: pointer;
}

.cc svg {
  flex-shrink: 0;
}

.flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  display: block;
}

.cc-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  background: #fff;
  border: 1px solid #d1d7db;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(17, 27, 33, 0.16);
  overflow: hidden;
}

.cc-menu[hidden] {
  display: none;
}

.cc-menu input[type="search"] {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid #e9edef;
  font: inherit;
  outline: 0;
}

.cc-menu ul {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 240px;
  overflow-y: auto;
}

.cc-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 14.5px;
}

.cc-menu li:hover,
.cc-menu li.active {
  background: #f0f2f5;
}

.cc-menu .cc-name {
  flex: 1;
}

.cc-menu .cc-dial {
  color: var(--muted);
}

.phone input[type="tel"] {
  flex: 1;
  border: 0;
  outline: 0;
  font: inherit;
  background: transparent;
}

.btn-start {
  height: 46px;
  border: 0;
  border-radius: 24px;
  background: var(--disabled);
  color: var(--disabled-ink);
  font: inherit;
  font-weight: 700;
}

.btn-start:not(:disabled) {
  background: #25D366;
  color: #000;
  cursor: pointer;
  border: 1px solid #000;

}

.foot {
  padding-top: 28px;
  text-align: center;
  color: #6b7c85;
  font-size: 13px;
}

.foot p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 10px;
}

.foot a {
  color: #6b7c85;
}

@media (max-width: 800px) {
  .download,
  .scan,
  .create {
    grid-template-columns: 1fr;
  }

  .stay {
    margin-top: 24px;
  }
}
