:root {
  color-scheme: dark;
  background: #020b16;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, #102d4d 0%, transparent 48%),
    #020b16;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.portal {
  width: 100vw;
  height: 100svh;
  display: grid;
  place-items: center;
}

.screen {
  position: relative;
  width: min(100vw, calc(100svh * 16 / 9));
  height: min(100svh, calc(100vw * 9 / 16));
  overflow: hidden;
  background: #03101f;
  box-shadow: 0 24px 90px rgba(0, 0, 0, .45);
}

.screen[hidden] {
  display: none;
}

.screen > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: transparent;
  cursor: pointer;
  text-decoration: none;
}

.hotspot span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hotspot:hover,
.hotspot:focus-visible {
  outline: 3px solid rgba(255, 116, 23, .9);
  outline-offset: 3px;
  background: rgba(255, 116, 23, .08);
}

.enter {
  left: 8.3%;
  top: 62.1%;
  width: 22.4%;
  height: 8.7%;
}

.brand-home {
  left: 2.5%;
  top: 1.7%;
  width: 12%;
  height: 6%;
}

.atendimento {
  left: 29.8%;
  top: 48.7%;
  width: 13.7%;
  height: 5.1%;
}

.estoque {
  left: 63.8%;
  top: 48.7%;
  width: 13.1%;
  height: 5.1%;
}

@media (max-aspect-ratio: 4/5) {
  body {
    overflow: auto;
  }

  .portal {
    min-width: 760px;
    min-height: 428px;
    overflow: auto;
  }

  .screen {
    width: 760px;
    height: 428px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
