@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::-moz-selection {
  background-color: #f52b2b;
  color: white;
}

*::selection {
  background-color: #f52b2b;
  color: white;
}

body {
  min-height: 100%;
  font-size: 16px;
  font-family: "Bebas Neue";
  overflow-x: hidden;
}

.scroll-box {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.wrapper {
  width: 400%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  background-color: #fff9ee;
}

.header {
  position: fixed;
  top: 0px;
  height: 9vh;
  width: 100vw;
  z-index: 20;
  display: flex;
  justify-content: end;
  background-color: rgba(255, 249, 238, 0);
  color: #1e2524;
  margin: 0;
  backface-visibility: hidden;
}

.header-recolor {
  color: white;
}

.Hbuttons {
  position: relative;
  margin-left: 8vw;
  margin-top: 1%;
  margin-right: 1vw;
  font-size: 5.4vh;
  float: left;
  transition: 0.3s;
  cursor: pointer;
  transform: translateX(-163%);
}

.Hbuttons::after {
  content: "";
  position: absolute;
  background-color: #f52b2b;
  width: 0%;
  height: 0.7vh;
  bottom: 0.7vh;
  border-radius: 2px;
  left: 0;
  transition: 0.4s;
}

.Hbuttons:hover::after {
  width: 100%;
}

.side-button {
  white-space: nowrap;
}

.logo {
  font-size: 13.6vh;
  position: fixed;
  z-index: 10;
  top: 50%;
  transform: translate3d(0, -70%, 0);
  left: 4rem;
  line-height: 0.9;
}

.line {
  background-color: red;
  height: 1.6vh;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.home-button-wrapper {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 70%;
  left: 4rem;
  z-index: 1;
}

.cta {
  display: flex;
  padding: 10px 45px;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 50px;
  color: white;
  background: #1e2524;
  transition: 1s;
  box-shadow: 6px 6px 0 black;
  transform: skewX(-15deg);
}

.cta:focus {
  outline: none;
}

.cta:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 0 #f52b2b;
}

.cta span:nth-child(2) {
  transition: 0.5s;
  margin-right: 0px;
}

.cta:hover span:nth-child(2) {
  transition: 0.5s;
  margin-right: 45px;
}

.cta span {
  transform: skewX(15deg);
}

span:nth-child(2) {
  width: 20px;
  margin-left: 30px;
  position: relative;
  top: 7%;
}

/**************SVG****************/
path.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

path.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta:hover path.three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }
  50% {
    fill: #f52b2b;
  }
  100% {
    fill: white;
  }
}
section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

section.movel::before {
  content: "";
  width: 1vw;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  height: 101%;
  position: absolute;
  top: -1%;
  left: 0;
}

.block {
  width: 55%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: translateX(-100%);
}

.cadeira1::before,
.cadeira1 .block {
  background-color: #5FBFF9;
}

.cadeira2::before,
.cadeira2 .block {
  background-color: #fcff31;
}

.cadeira3::before,
.cadeira3 .block {
  background-color: #30ff7f;
  border-bottom-left-radius: 3px;
}

.after-scroll {
  width: 100%;
  overflow-x: hidden;
  height: 330vh;
  position: relative;
  background-color: #e9e1d3;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.after-scroll .block {
  transform: translate(-0.7%, 0);
  z-index: 2;
}

.after-scroll::after {
  content: "";
  width: 2rem;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0px;
}

.after-scroll::after,
.after-scroll .block {
  background-color: #e9e1d3;
}

.caption {
  position: absolute;
  font-size: 1.8vh;
  bottom: 4rem;
  left: 4rem;
  width: 32em;
  font-weight: 400;
  color: #444;
  font-family: monospace;
  transform: translate(100%, 100%);
}

.movel img {
  position: relative;
  z-index: 10;
  height: 70vh;
  width: auto;
  transform: translate(0, -100%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}

.cadeira3 img {
  height: 60vh;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.huge-text {
  font-size: 30vh;
  width: 100%;
  text-align: center;
  color: #f52b2b;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(100%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.SteelVault {
  width: 20px;
  height: 20px;
}

.nickname {
  position: absolute;
  top: 13vh;
  right: 9.3rem;
  font-size: 5vh;
  text-align: right;
  transform: translateY(-200%);
}

.nickname span {
  display: block;
  font-size: 70%;
  color: white;
}

.quote {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  font-size: 4.9vh;
  width: 12em;
  text-align: right;
  transform: translateY(200%);
}

.quote::before,
.quote::after {
  content: "";
  color: white;
}

.absoluter {
  position: absolute;
  z-index: 30;
  height: 240%;
  width: calc(100% - 3em);
  left: 0;
  transform: translateY(5vh);
  pointer-events: none;
}

.buy-tittle {
  position: sticky;
  left: 0;
  top: -4vh;
  font-size: 6vh;
  color: #1e2524;
  transform: translateX(0%);
}

.buy-box {
  height: 200%;
  width: 100%;
  z-index: 10;
  position: relative;
  top: 20vh;
  display: flex;
  flex-direction: column;
  padding-left: 5%;
}

.item-line {
  width: 100%;
  display: flex;
  overflow-x: auto;
  min-height: 320px;
  height: 60vh;
  transform: translateY(0);
  margin-bottom: 2vh;
  position: relative;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.item-line::-webkit-scrollbar {
  display: none;
}

.line-title {
  position: relative;
  top: 0;
  font-size: 4.6vh;
}

.sub-line-title {
  width: 27vw;
  height: 0.13em;
  position: relative;
  top: 0;
  border: none;
  background-color: #1e2524;
  border-radius: 1px;
}

sup {
  font-size: 72%;
  font-weight: 400;
}

.item {
  width: 40vh;
  height: 48vh;
  min-height: 250px;
  min-width: 200px;
  position: relative;
  color: #1e2524;
  font-family: "montserrat";
  font-size: 2vh;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.7s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-right: 30px;
}

h3 {
  font-weight: 500;
}

.card-image {
  width: 100%;
  height: 70%;
  position: absolute;
  top: 0px;
  transition: 0.7s;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.card-desc {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 73%;
  font-weight: 600;
  padding: 0 0px;
  left: 10%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.5s;
}

.card-price {
  font-size: 4.6vh;
  font-weight: 500;
}

.greenMarker {
  color: #29ed74;
}

.card-desc a {
  border: 2px #1e2524 solid;
  color: #1e2524;
  padding: 10px;
  position: absolute;
  width: 70%;
  bottom: 1vh;
  left: 40%;
  transform: translateX(-50%);
  border-radius: 40px;
  text-align: center;
}

.card-desc a:hover {
  color: #1eff74;
}

.card-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.item-line.linha-aço img {
  filter: brightness(0.98);
}

.cards-box,
.desc-box {
  display: flex;
  flex-direction: column;
}

.cards-box {
  width: 30%;
  height: 100%;
  align-items: center;
}

.upBright {
  filter: brightness(1.3);
}

/*

buy-page

*/
.InfoPainel {
  background-color: #fff9ee;
  height: 60vh;
  width: 25vw;
  position: sticky;
  left: 61.1vw;
  top: 20vh;
  margin-top: 5vh;
  z-index: 10;
  color: #1e2524;
  display: flex;
  flex-direction: column;
  padding: 3%;
  padding-top: 2.4%;
}

.Infotittle {
  font-size: 3em;
}

.wraper {
  z-index: 50;
  width: 10vh;
  position: fixed;
  right: 10vh;
  top: -0.2vh;
}

.side-wrapper {
  width: 20vw;
  height: 100vh;
}

.side-wrapper {
  position: fixed;
  top: 0;
  /*left: -100%;*/
  right: -100%;
  height: 60%;
  width: 60vh;
  display: flex;
  flex-direction: column;
  background-color: #1e2524;
  transition: all 0.3s ease-in-out;
  border-bottom-right-radius: 0;
  font-family: "Bebas Neue";
  z-index: 10;
}

#active:checked ~ .side-wrapper {
  /*left: 0;*/
  right: 0;
}

.menu-btn {
  z-index: 11;
  position: relative;
  right: 20px;
  display: block;
  height: 10vh;
  width: 11vw;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.menu-btn span,
.menu-btn:before,
.menu-btn:after {
  content: "";
  position: absolute;
  top: 4vh;
  left: 20%;
  width: 6vmin;
  margin: 10px;
  border-bottom: 0.6vh solid #000;
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-btn:before {
  transform: translateY(-15px);
  transition: 0.3s;
}

.menu-btn:after {
  transform: translateY(15px);
  transition: 0.3s;
}

/* closing animation */
#active:checked + .menu-btn span {
  transform: scaleX(0);
}

#active:checked + .menu-btn:before {
  transform: rotate(45deg);
  border-color: #fff;
}

#active:checked + .menu-btn:after {
  transform: rotate(-45deg);
  border-color: #fff;
}

#active:checked + .menu-btn:hover:before {
  transform: rotate(45deg);
  border-color: #f52b2b;
}

#active:checked + .menu-btn:hover:after {
  transform: rotate(-45deg);
  border-color: #f52b2b;
}

.side-wrapper a {
  height: 10%;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background-color: #1eff74;
  z-index: -1;
}

.side-wrapper > .mobile-button {
  display: none;
}

.side-wrapper > a > span {
  color: white;
  background-color: red;
  position: relative;
  -webkit-background-clip: text;
          background-clip: text;
  white-space: nowrap;
}

.side-wrapper > a > span::before {
  transition: 0.65s;
  content: attr(data-text);
  -webkit-text-stroke: transparent 0.02em;
  position: absolute;
  color: transparent;
  background-color: red;
  width: 0%;
  -webkit-background-clip: text;
          background-clip: text;
  white-space: nowrap;
}

.side-wrapper a:hover > span::before {
  width: 101%;
}

.side-wrapper a {
  cursor: pointer;
  text-decoration: none;
  font-size: 5.3vh;
  font-weight: 500;
  height: 7vh;
  color: #fff;
  border-radius: 50px;
  position: relative;
  opacity: 0;
  transition: all 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #1e2524;
}

.side-wrapper a:after {
  position: absolute;
  content: "";
  background: #fff;
  /*background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);*/
  /*background: linear-gradient(375deg, #1cc7d0, #2ede98);*/
  width: 2vh;
  height: 120%;
  left: -26px;
  top: -10%;
  border-radius: 50px;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.side-wrapper a::before {
  position: absolute;
  content: "";
  /*background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);*/
  /*background: linear-gradient(375deg, #1cc7d0, #2ede98);*/
  z-index: -1;
  width: 40vh;
  height: 130%;
  left: -1vh;
  top: -15%;
  transition: transform 0.3s ease;
}

.side-wrapper a:hover:after {
  transform: scaleY(1);
}

input[type=checkbox] {
  display: none;
}

#active:checked ~ .side-wrapper a {
  opacity: 1;
}

.side-wrapper a {
  transition: opacity 1.2s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate(100px, 26px);
}

#active:checked ~ .side-wrapper a {
  transform: none;
  transition-timing-function: ease, cubic-bezier(0.1, 1.3, 0.3, 1);
  /* easeOutBackを緩めた感じ */
  transition-delay: 0.3s;
  transform: translate(50px, 26px);
}

@media screen and (max-width: 1040px) {
  .Hbuttons {
    display: none;
  }
  .wrapper {
    flex-direction: column;
  }
  .line {
    position: absolute;
    top: 0vh;
    left: 0;
    width: 1dvw;
    height: 100vh;
    transform: none;
  }
  .block {
    z-index: 0;
    right: 0;
    transform: translateX(100%);
  }
  .nickname {
    right: 1rem;
    font-size: 5vw;
    transform: translate(100%, 0%);
  }
  .movel img {
    height: 50vh;
    transform: translate(100%, 0%);
  }
  .huge-text {
    font-size: 25vw;
    transform: translate(-100%, 0%);
  }
  .caption {
    display: none;
  }
  .quote {
    font-size: 6vw;
    right: 14%;
    bottom: 8vh;
    text-align: center;
    transform: translate(0%, 0%);
  }
  .logo {
    font-size: 16vmin;
    left: 3rem;
  }
  .buy-tittle {
    font-size: 10vmin;
  }
  .header {
    display: block;
  }
  .menu-btn {
    right: -1em;
    top: -1vh;
    width: 12.4vmax;
  }
  .menu-btn span,
  .menu-btn:before,
  .menu-btn:after {
    content: "";
    position: absolute;
    top: 4vh;
    left: 20%;
    width: 6.4vmax;
    margin: 10px;
    border-bottom: 0.62vh solid #000;
  }
  .side-wrapper > .mobile-button {
    display: block;
  }
  .side-wrapper {
    height: 100%;
    width: 100%;
  }
  .side-wrapper a {
    font-size: 5vh;
    margin-bottom: 4vh;
    height: 5vh;
  }
  .home-button-wrapper {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 70%;
    left: 3rem;
    z-index: 1;
  }
  .cta span:nth-child(2) {
    transition: 0.5s;
    margin-bottom: 0px;
  }
  .cta:hover span:nth-child(2) {
    transition: 0.5s;
    margin-bottom: 5px;
    margin-right: 0px;
  }
  span {
    transform: skewX(-2deg);
  }
  span:nth-child(2) {
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 7%;
  }
  /**************SVG****************/
  .cta svg {
    transform: rotateZ(90deg) scale(1.4);
    width: 40px;
    height: 40px;
  }
  path.one {
    transition: 0.4s;
    transform: translateX(-30%);
  }
  path.two {
    transition: 0.5s;
    transform: translateX(0%);
  }
  path.three {
    transition: 0.5s;
    transform: translateX(30%);
  }
  .cta:hover path.three {
    animation: color_anim 1s infinite 0.2s;
    transform: translateX(0%);
  }
  .cta:hover path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
  }
  .cta:hover path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
  }
}/*# sourceMappingURL=style.css.map */