:root {
  color-scheme: dark;
  --page-bg: #070707;
  --focus: #ffd11a;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.site {
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #070707;
}

.poster {
  position: relative;
  width: min(100%, 941px);
  line-height: 0;
  background: #050505;
  overflow: hidden;
}

.poster__image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 999px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
  outline: none;
}

/* Coordenadas em porcentagem para manter os botões alinhados em qualquer tela. */
.hotspot--whatsapp {
  left: 17.9%;
  top: 43.1%;
  width: 64.4%;
  height: 8.8%;
}

.hotspot--instagram {
  left: 17.9%;
  top: 53.6%;
  width: 64.4%;
  height: 8.9%;
}

.hotspot--ifood {
  left: 17.9%;
  top: 64.4%;
  width: 64.4%;
  height: 8.9%;
}

.hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: box-shadow .16s ease, background .16s ease, transform .08s ease;
}

.hotspot:hover::after {
  background: rgba(255, 187, 0, .045);
  box-shadow: inset 0 0 0 3px rgba(255, 210, 0, .22), 0 0 22px rgba(255, 150, 0, .18);
}

.hotspot:active::after,
.hotspot.is-pressed::after {
  transform: scale(.985);
  background: rgba(255, 187, 0, .08);
}

.hotspot:focus-visible::after {
  box-shadow: inset 0 0 0 4px var(--focus), 0 0 0 4px rgba(0, 0, 0, .7);
}

@media (min-width: 942px) {
  body {
    background:
      radial-gradient(circle at 50% 20%, #2a1800 0, #090909 36%, #030303 75%);
  }

  .poster {
    box-shadow: 0 0 48px rgba(0, 0, 0, .75);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hotspot::after {
    transition: none;
  }
}
