
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #070707;
}

.site-preview {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.site-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #070707;
}

.site-whatsapp {
  position: fixed;
  z-index: 10000;
  right: 26px;
  bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(15, 77, 42, 0.34);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.site-whatsapp:hover,
.site-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 77, 42, 0.42);
  outline: 3px solid rgba(37, 211, 102, 0.25);
  outline-offset: 3px;
}

.site-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .site-whatsapp {
    right: 18px;
    bottom: max(18px, calc(env(safe-area-inset-bottom) + 14px));
    width: 54px;
    height: 54px;
  }

  .site-whatsapp svg {
    width: 29px;
    height: 29px;
  }
}
