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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
}

/*
 * The screen resolution is 1080x1920 (or 1920x1080),
 * so you should use 'vh' units to scale elements appropriately on any screen.
 * 
 * It's recommended to use the 'rule of three' to find the desired value.
 *
 * Example:
 * 
 * If the value you want is 14px, you should calculate:
 * 
 * 1920px is 100vh
 * 14px is x
 */

body {
  overflow: hidden;
  transform: rotate(90deg);
}

.container_ {
  width: 100vh;
  height: 100vw;
  display: flex;
  flex-direction: column;
}

.container_ .sponsors {
  display: flex;
  align-items: center;
  background-color: white;
  height: 9vh;
  padding: 0 1.1vh;
}

.container_ .sponsors > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container_ .sponsors > div img {
  max-height: 4vh;
  height: 100%;
  width: 20vh;
  object-fit: contain;
}

.container_ .sponsors > div.fina-moca img,
.container_ .sponsors > div.lemar img {
  height: calc(4vh + 0.878477vh);
  max-height: none;
}

.container_ .main-content {
  display: flex;
  flex-grow: 1;
}

.container_ .main-content .product {
  width: 100%;
  height: 100%;
  position: relative;

  display: flex;
  justify-content: end;
  align-items: start;
  flex-direction: column;
  padding-bottom: 10%;
  overflow: hidden;
  padding: 1.1vh;
}

.container_ .main-content .product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: scale(1.1);
  background-color: #bdbdbd;
}

.container_ .main-content .product h3 {
  font-size: 1.1vh;
  text-transform: uppercase;
  margin-bottom: 0.732064vh;
  padding: 1.1vh;
  border-radius: 0.732064vh;
  opacity: 0.8;
}

.container_ .main-content .product h2 {
  font-size: 1.46vh;
  padding: 1.1vh;
  text-transform: uppercase;
  border-radius: 0.732064vh;

  display: flex;
  justify-content: start;
  align-items: center;
  max-width: 85%;
  opacity: 0.8;
}

.container_ .main-content .product h2 {
  background-color: #000;
  color: white;
}

.container_ .main-content .product h3 {
  background-color: #000;
  color: white;
}

.transition {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: absolute;
}

.transition img {
  width: 50vw;
}

.zoom-animation {
  animation: zoom-animation 15s linear infinite alternate forwards;
}

.status {
  display: flex;
}

.status > div {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0.5vh 1px;
  opacity: 0.4;
}

.status > div.show {
  opacity: 1;
}

.status > div > p {
  font-weight: bold;
  color: white;
  margin: 0;
  font-size: 1.5vh;
}

.pagamento_aprovado {
  background-color: #24a028 !important;
}

.produtos_em_separacao {
  background-color: #fe509c !important;
}

.faturado {
  background-color: #6e4e19 !important;
}

.pronto_para_envio {
  background-color: #725bc2 !important;
}

@keyframes zoom-animation {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

body.normal {
  overflow-x: hidden;
  transform: rotate(0deg);
}

body.normal .container_ {
  width: 100vw;
  height: 100vh;
}
