* { box-sizing: border-box; }
html, body { height: 100%; }
html, body { overflow-y: hidden; }

body {
  margin: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.glass {
  width: 75vw;
  max-height: 80vh;
  filter: drop-shadow(0 18px 40px rgba(111, 15, 26, 0.25));
}

@media (min-width: 768px) {
  .glass {
    width: 50vw;
  }
}

.logo {
  width: min(420px, 72vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.legal {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(245, 240, 235, 0.7);
  font: 12px/1.2 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  letter-spacing: 0.02em;
  width: min(920px, calc(100vw - 24px));
}

.razao-social {
  margin-bottom: 4px;
}


