:root {
  color-scheme: light only;
}

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

html,
body {
  background: #fff;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #111;
}

main {
  width: min(520px, 100%);
  text-align: center;
}

.label {
  margin-bottom: 12px;
  color: #666;
  font-size: 15px;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 650;
  line-height: 1.15;
  word-break: break-word;
}

.text {
  margin-bottom: 28px;
  color: #555;
  font-size: 17px;
  line-height: 1.5;
}

.phone {
  display: inline-block;
  margin-bottom: 28px;
  color: #111;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

.phone:hover {
  text-decoration: underline;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #111;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.btn:hover {
  background: #333;
}

.btn-whatsapp {
  border-color: #1f8f4a;
  background: #1f8f4a;
}

.btn-whatsapp:hover {
  background: #18753c;
}

@media (max-width: 420px) {
  .btn {
    width: 100%;
  }
}
