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

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background-color: #f7f3f0;
  background-image: url("assets/images/bg-pagina-temporaria.png");
  background-repeat: repeat;
  background-size: 850px auto;
  color: #3a3032;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  gap: 1.2rem;
}

.logo {
  width: clamp(105px, 24vw, 196px);
  height: auto;
}

.video-box {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-box--desktop {
  display: block;
  width: 90%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
}

.video-box--mobile {
  display: none;
}

.soon {
  font-weight: 500;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6b5c60;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  body {
    background-size: 700px auto;
  }

  .page {
    min-height: 100dvh;
    min-height: 100svh;
    padding: 0.9rem 0.75rem;
    gap: 0.6rem;
  }

  .logo {
    width: clamp(95px, 24vw, 130px);
  }

  .video-box--desktop {
    display: none;
  }

  .video-box--mobile {
    display: block;
    width: min(92vw, calc(76svh * 9 / 16));
    max-width: 440px;
    max-height: 76svh;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
  }
}
