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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}
button {
  font-family: "Poppins", sans-serif;
}

/* PARTE PRINCIPAL */

header {
  display: flex;
  width: 90vw;
  height: 10vh;
  margin: auto;
  align-items: center;
}

.div-logo,
.links {
  display: flex;
}

.logo-container {
  flex: 1;
}
.logo {
  font-weight: 400;
  margin: 5px;
}
nav {
  flex: 2;
}
.links {
  justify-content: flex-end;
  margin-right: -60px;
  list-style: none;
}

.link {
  color: #5f5f79;
  margin-right: 40px;
  font-size: 18px;
  text-decoration: none;
}

.inicio {
  display: flex;
  width: 90%;
  margin: auto;
  min-height: 80vh;
  align-items: center;
}
.introducao {
  flex: 1;
}
.intro-text h1 {
  font-size: 44px;
  font-weight: 500;
  background: linear-gradient(to right, #494964, #6f6f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-text h3 {
  font-size: 26px;
  margin-top: 2px;
  color: #5d5d6b;
}

.intro-text p {
  margin-top: 5px;
  font-size: 22px;
  color: #585772;
}

.cta {
  padding: 50px 0px 0px 0px;
}

.cta-select {
  border: 2px solid rgb(121, 108, 195);
  background: transparent;
  color: #6e6cc3;
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 10px;
}

.botaoMudar {
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: #6e6cc3;
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 16px;
  margin-left: 20px;
}

.cta-add {
  background: #6e6cc3;
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 16px;
  border: none;
  color: white;
  margin: 0px 0px 0px 30px;
  border-radius: 10px;
}

.cover {
  flex: 1;
  display: flex;
  justify-content: center;
  height: 60vh;
}

.mudanca {
  width: 320px;
  height: auto;
  filter: drop-shadow(0px 0px 15px #000);
  transition: 1s ease;
}

.cover img {
  height: 100%;
  filter: drop-shadow(0px 0px 15px #000);
  animation: drop 1s ease;
  transition: 1s ease;
}

.big-circle {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  opacity: 0.5;
  height: 70%;
}

.medium-circle {
  position: absolute;
  top: 30%;
  right: 30%;
  z-index: -1;
  height: 40%;
}

.small-circle {
  position: absolute;
  bottom: 0%;
  /* right: 20% se for 1920x1080 */
  right: 50%;
  z-index: -1;
  width: 20%;
}

.rx-select {
  margin-top: -100px;
  width: 15%;
  display: flex;
  justify-content: space-around;
  position: absolute;
  right: 20%;
}

@keyframes drop {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes mudanca {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

/* PARTE DOS BENEFICIOS */

#benef {
  margin-top: 50px;
  text-align: center;
  background: #fff;
}

#benef h1 {
  font-size: 1.5em;
  text-align: center;
  color: #5f5f79;
}

#beneficios {
  margin: auto;
  align-items: center;
  width: 90%;
  margin-top: 40px;
}

#benef .benef-container {
  margin-top: 50px;
  width: 350px;
  height: 200px;
  margin: auto;
  display: inline-table;
  grid-auto-columns: 3fr;
  color: #494964;
  margin-left: 10px;
}

.benef-container h2 {
  text-align: center;
  font-size: 26px;
  color: #333;
  width: 50%;
  margin: auto;
  border-bottom: 1px solid rgb(182, 182, 182);
}

.benef-container {
  margin-top: 50px;
  font-size: 15px;
  font-weight: 500;
  margin: 25px 0;
  padding: 15px;
  text-align: center;
  border-radius: 20px;
  transition: 1s;
  border: 2px solid rgba(121, 108, 195, 0.2);
}

.benef-container i {
  display: block;
  margin: auto;
  height: auto;
  color: #6e6cc3;
}

.benef-container:hover {
  border: 2px solid rgba(121, 108, 195);
}

/* Quem somos? */

.quem-somos {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

.quem-somos h1 {
  font-size: 1.5em;
  text-align: center;
  color: #5f5f79;
}

.quem-somos p {
  text-align: center;
  margin-top: 20px;
  color: #5d5d6b;
  font-size: 19.2px;
  margin-bottom: 50px;
}

/* FOOTER */

footer {
  background: #f1f1f1;
  width: 100%;
  margin-top: 100px;
  height: 200px;
  margin: auto;
  padding: 90px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(121, 108, 195, 0.3);
  color: #5d5d6b;
}

.coluna-esquerda,
.coluna-direita {
  margin-bottom: -80px;
}

.logo-footer {
  width: 100px;
}

.logo-footer h3 {
  flex: 1;
}

.redes-sociais {
  flex: 1;
  margin: 20px 0;
}

.redes-sociais a {
  font-size: 22px;
  text-decoration: none;
}

.redes-sociais a i {
  line-height: 50px;
  transition: 1s;
  color: #6e6cc3;
}

.redes-sociais i:hover {
  color: #5f5f79;
}

.borda {
  width: 140px;
  height: 4px;
  background: #6e6cc3;
}

.formulario {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.email {
  flex: 1;
  margin-top: 10px;
  padding: 15px 20px;
  padding-left: -20px;
  font-size: 16px;
  color: #5f5f79;
  background: #fff;
  border: 2px solid rgba(121, 108, 195, 0.2);
  font-weight: 700;
  border-radius: 30px;
  width: 400px;
}

.botaoContato {
  margin-left: 20px;
  margin-right: 10px;
  margin-top: 10px;
  background: #6e6cc3;
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 20px;
  border: none;
  color: white;
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 568px) {
  footer {
    justify-content: center;
    align-items: center;
  }
  .coluna-esquerda,
.coluna-direita {
 margin: 0 auto;
}
}/* CARDS DOS PRODUTOS */

#produtos {
  margin-top: 120px;
}

#catg {
  text-align: center;
  color: #5f5f79;
}
/* CARD 1 */

.container {
  position: relative;
  margin-top: 80px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.container2 {
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.card1, .card2, .card3, .card4, .card5, .card6 {
  margin-top: 20px;
}

/* ===============================================================================================================================================================================================================================================================================================================================================================================================================*/
/* CARD 1 */

.container .card1 {
  position: relative;
  width: 320px;
  height: 400px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.1);
   margin-left: 10px;
  margin-right: 10px;
  transition: 0.7s ease-in-out;
}

.container .card1:hover {
  border: 2px solid rgba(0, 0, 0, 0.356);
}

.container .card1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #11998e; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #38ef7d,
    #11998e
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #38ef7d,
    #11998e
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  clip-path: circle(300px at 80% -20%);
  transition: 0.5s ease-in-out;
}

.container .card1:after {
  content: "Mouse";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 7rem;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.15);
}

.container .card1 .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 100%;
  height: 220px;
  transition: 0.5s;
}

.container .card1 .imgBx:hover {
  top: 0%;
  transform: translateY(30%);
  rotate: -05deg;
}

.container .card1 .imgBx img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%) rotate(-25deg);
  width: 100%;
  filter: drop-shadow(0px 0px 15px #000);
}

.container .card1 .contentBx {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 10;
}

.container .card1:hover .contentBx {
  height: 210px;
}

.container .card1 .contentBx h2 {
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  padding: 20px 0px 200px 0px;
}

.container .card1 .contentBx h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0px 0px 0px 0px;
  background: linear-gradient(to left, #38ef7d, #11998e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .card1 .contentBx button {
  background: linear-gradient(to right, #38ef7d, #11998e);
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 20px;
  border: none;
  color: white;
  margin-top: 20px;
  border-radius: 40px;
  transition: all 0.2s ease-in-out;
}

.container .card1 .contentBx button a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.container .card1 .contentBx button:hover {
  transform: scale(1.1);
}

/* ===============================================================================================================================================================================================================================================================================================================================================================================================================*/
/* CARD 2 */

.container .card2 {
   margin-left: 10px;
  margin-right: 10px;
  position: relative;
  width: 320px;
  height: 400px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: 0.7s ease-in-out;
}

.container .card2:hover {
  border: 2px solid rgba(0, 0, 0, 0.356);
}

.container .card2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c33764; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #1d2671,
    #c33764
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #1d2671,
    #c33764
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  clip-path: circle(300px at 80% -20%);
  transition: 0.5s ease-in-out;
}

.container .card2:after {
  content: "Processador";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 7rem;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.151);
}

.container .card2 .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 100%;
  height: 100px;
  transition: 0.5s;
}

.container .card2 .imgBx:hover {
  top: 0%;
  transform: translateY(120%);
  rotate: -05deg;
}

.container .card2 .imgBx img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%) rotate(-05deg);
  width: 60%;
  filter: drop-shadow(0px 0px 15px #000);
}

.container .card2 .contentBx {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 10;
}

.container .card2:hover .contentBx {
  height: 210px;
}

.container .card2 .contentBx h2 {
  position: relative;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 1px;
  color: #fff;
  padding: 20px 0px 200px 0px;
}

.container .card2 .contentBx h1 {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0px 0px 0px 0px;
  background: linear-gradient(to left, #1d2671, #c33764);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .card2 .contentBx button {
  background: linear-gradient(to right, #1d2671, #c33764);
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 20px;
  border: none;
  color: #fff;
  margin-top: 20px;
  border-radius: 40px;
  transition: all 0.2s ease-in-out;
}

.container .card2 .contentBx button a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.container .card2 .contentBx button:hover {
  transform: scale(1.1);
}

/* ===============================================================================================================================================================================================================================================================================================================================================================================================================*/
/* CARD 3 */

.container .card3 {
   margin-left: 10px;
  margin-right: 10px;
  position: relative;
  width: 320px;
  height: 400px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.1);
   
  transition: 0.7s ease-in-out;
}

.container .card3:hover {
  border: 2px solid rgba(0, 0, 0, 0.356);
}

.container .card3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #434343,
    #000000
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #434343,
    #000000
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  clip-path: circle(300px at 80% -20%);
  transition: 0.5s ease-in-out;
}

.container .card3:after {
  content: "Monitor";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 7rem;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.151);
}

.container .card3 .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 100%;
  height: 100px;
  transition: 0.5s;
}

.container .card3 .imgBx:hover {
  top: 0%;
  transform: translateY(120%);
  rotate: -05deg;
}

.container .card3 .imgBx img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%) rotate(05deg);
  width: 60%;
  filter: drop-shadow(0px 0px 15px #000);
}

.container .card3 .contentBx {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 10;
}

.container .card3:hover .contentBx {
  height: 210px;
}

.container .card3 .contentBx h2 {
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  padding: 20px 0px 200px 0px;
}

.container .card3 .contentBx h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0px 0px 0px 0px;
  background: linear-gradient(to left, #434343, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .card3 .contentBx button {
  background: linear-gradient(to right, #434343, #000000);
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 20px;
  border: none;
  color: #fff;
  margin-top: 20px;
  border-radius: 40px;
  transition: all 0.2s ease-in-out;
}

.container .card3 .contentBx button a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.container .card3 .contentBx button:hover {
  transform: scale(1.1);
}

/* ===============================================================================================================================================================================================================================================================================================================================================================================================================*/
/* CARD 4 */

.container2 .card4 {
   margin-left: 10px;
  margin-right: 10px;
  position: relative;
  width: 320px;
  height: 400px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: 0.7s ease-in-out;
}

.container2 .card4:hover {
  border: 2px solid rgba(0, 0, 0, 0.356);
}

.container2 .card4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00c6ff; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #0072ff,
    #00c6ff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #0072ff,
    #00c6ff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  clip-path: circle(300px at 80% -20%);
  transition: 0.5s ease-in-out;
}

.container2 .card4:after {
  content: "Memoria RAM";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 7rem;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.151);
}

.container2 .card4 .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 100%;
  height: 100px;
  transition: 0.5s;
}

.container2 .card4 .imgBx:hover {
  top: 0%;
  transform: translateY(120%);
  rotate: -05deg;
}

.container2 .card4 .imgBx img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -75%) rotate(20deg);
  width: 100%;
  filter: drop-shadow(0px 0px 15px #000);
}

.container2 .card4 .contentBx {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 10;
}

.container2 .card4:hover .contentBx {
  height: 210px;
}

.container2 .card4 .contentBx h2 {
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  padding: 20px 0px 200px 0px;
}

.container2 .card4 .contentBx h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0px 0px 0px 0px;
  background: linear-gradient(to left, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container2 .card4 .contentBx button {
  background: linear-gradient(to right, #0072ff, #00c6ff);
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 20px;
  border: none;
  color: #fff;
  margin-top: 20px;
  border-radius: 40px;
  transition: all 0.2s ease-in-out;
}

.container2 .card4 .contentBx button a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.container2 .card4 .contentBx button:hover {
  transform: scale(1.1);
}

/* ===============================================================================================================================================================================================================================================================================================================================================================================================================*/
/* CARD 5 */

.container2 .card5 {
   margin-left: 10px;
  margin-right: 10px;
  position: relative;
  width: 320px;
  height: 400px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.1);
   
  transition: 0.7s ease-in-out;
}

.container2 .card5:hover {
  border: 2px solid rgba(0, 0, 0, 0.356);
}

.container2 .card5:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff512f; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #f09819,
    #ff512f
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #f09819,
    #ff512f
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  clip-path: circle(300px at 80% -20%);
  transition: 0.5s ease-in-out;
}

.container2 .card5:after {
  content: "Teclados";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 7rem;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.151);
}

.container2 .card5 .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 100%;
  height: 100px;
  transition: 0.5s;
}

.container2 .card5 .imgBx:hover {
  top: 0%;
  transform: translateY(120%);
  rotate: -05deg;
}

.container2 .card5 .imgBx img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -75%) rotate(-30deg);
  width: 80%;
  filter: drop-shadow(0px 0px 15px #000);
}

.container2 .card5 .contentBx {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 10;
}

.container2 .card5:hover .contentBx {
  height: 210px;
}

.container2 .card5 .contentBx h2 {
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  padding: 20px 0px 200px 0px;
}

.container2 .card5 .contentBx h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0px 0px 0px 0px;
  background: linear-gradient(to left, #f09819, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container2 .card5 .contentBx button {
  background: linear-gradient(to right, #f09819, #ff512f);
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 20px;
  border: none;
  color: #fff;
  margin-top: 20px;
  border-radius: 40px;
  transition: all 0.2s ease-in-out;
}

.container2 .card5 .contentBx button a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.container2 .card5 .contentBx button:hover {
  transform: scale(1.1);
}

/* ===============================================================================================================================================================================================================================================================================================================================================================================================================*/
/* CARD 6 */

.container2 .card6 {
   margin-left: 10px;
  margin-right: 10px;
  position: relative;
  width: 320px;
  height: 400px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: 0.7s ease-in-out;
}

.container2 .card6:hover {
  border: 2px solid rgba(0, 0, 0, 0.356);
}

.container2 .card6:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4c4f3; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #fc67fa,
    #f4c4f3
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #fc67fa,
    #f4c4f3
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  clip-path: circle(300px at 80% -20%);
  transition: 0.5s ease-in-out;
}

.container2 .card6:after {
  content: "Computadores";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 7rem;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.151);
}

.container2 .card6 .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 100%;
  height: 100px;
  transition: 0.5s;
}

.container2 .card6 .imgBx:hover {
  top: 0%;
  transform: translateY(120%);
  rotate: -05deg;
}

.container2 .card6 .imgBx img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -75%) rotate(0deg);
  width: 60%;
  filter: drop-shadow(0px 0px 15px #000);
}

.container2 .card6 .contentBx {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 10;
}

.container2 .card6:hover .contentBx {
  height: 210px;
}

.container2 .card6 .contentBx h2 {
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  padding: 20px 0px 200px 0px;
  text-align: center;
}

.container2 .card6 .contentBx h1 {
  margin-top: 10px;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0px 0px 0px 0px;
  background: linear-gradient(to left, #fc67fa, #f4c4f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container2 .card6 .contentBx button {
  background: linear-gradient(to right, #fc67fa, #f4c4f3);
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 20px;
  border: none;
  color: #fff;
  margin-top: 20px;
  border-radius: 40px;
  transition: all 0.2s ease-in-out;
}

.container2 .card6 .contentBx button a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.container2 .card6 .contentBx button:hover {
  transform: scale(1.1);
}
#catalogo {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

#catalogo > h1 {
  font-size: 1.5em;
  text-align: center;
  color: #5f5f79;
}

.produtos {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center
}

.produto {
  width: 270px;
  height: 370px;
  margin-left: 10px;
  background: #fff;
  border: 2px solid rgba(121, 108, 195, 0.2);
  border-radius: 20px;
  transition: 1s;
}

.produto:hover {
  border: 2px solid rgba(121, 108, 195);
  transform: translateY(-20px);
}

.produto .imagemProduto {
  height: 170px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(121, 108, 195, 0.2);
  z-index: -5;
}

.produto .imagemProduto img {
  display: block;
  width: 90%;
  margin: 20px auto 0;
}

.detalhes {
  position: absolute;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
  margin-left: 32px;
  justify-content: center;
  text-align: center;
  height: auto;
}

.detalhes h1 {
  margin: 0;
  padding: 0;
  font-size: 30px;
  width: 100%;
  height: auto;
  color: #5d5d6b;
}

.detalhes .preco {
  font-size: 20px;
  color: #6e6cc3;
  margin: auto;
}

.detalhes button {
  border: 2px solid rgb(121, 108, 195);
  background: transparent;
  color: #6e6cc3;
  width: 150px;
  height: 50px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 1s;
  margin: auto;
}

.detalhes button:hover {
  background: #6e6cc3;
  color: white;
  border: 2px solid rgb(121, 108, 195);
}

.coracao {
  position: absolute;
  top: -180px;
  left: 190px;
  color: #5d5d6b;
  z-index: 3;
  cursor: pointer;
}

.inv {
  opacity: 0;
}

.i7 {
  width: 180px;
  margin-left: 40px;
}

.detalhes .i7 {
  margin-left: 20px;
}

.ram {
  width: 200px;
  margin-left: 30px;
}

#vid {
  width: 200px;
  margin-left: 35px;
}

#kumara {
  transform: translateY(-40px);
}

.checked {
  color: #6e6cc3;
  animation: checado 0.5s ease-out;
}

@keyframes checado {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.loader {
    width: 100%;
    height: 100vh;
    background: white;
    position: fixed;
    z-index: 20000;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0;
    margin: 0;
    transition: 1s ease;
}
.loader-ball {
    width: 50px;
    height: 50px;
    background: white;
    border: 4px solid;
    color: rgba(121, 108, 195);
    border-radius: 50%;
    border-top-color: transparent;
    animation: loader 1.2s linear;
}

@keyframes loader {
    to {
        transform: rotate(360deg);
    }
}