:root {
  --page-white: #ffffff;
  --content-width: 72rem;
  --logo-width: 22.75rem;
  --page-gutter: clamp(1.25rem, 5vw, 4rem);
  --page-top: clamp(2rem, 8vh, 6rem);
  --logo-products-gap: 8lh;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  background-color: var(--page-white);
  background-image: url("fundo_site_bravex.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.kravex {
  display: flex;
  width: min(100%, var(--content-width));
  min-height: 100svh;
  margin-inline: auto;
  padding: var(--page-top) var(--page-gutter) clamp(2rem, 8vh, 6rem);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.kravex__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1;
}

.kravex__logo {
  display: block;
  width: min(100%, var(--logo-width));
  height: auto;
  margin-inline: auto;
}

.kravex__products {
  display: block;
  width: 50%;
  height: auto;
  margin-top: var(--logo-products-gap);
}

@media (max-width: 40rem) {
  :root {
    --logo-width: 17rem;
    --page-top: 2rem;
  }
}
