* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lexend", sans-serif;
  text-decoration: none;
}

.header-section {
  height: 100vh;
  background-image: url(../img/banner.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.header-section header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 92px;
}

.header-section nav {
  display: flex;
  gap: 40px;
}

.header-section nav a {
  color: #efefef;
  font-size: 18px;
}

.btns {
  display: flex;
  gap: 16px;
}

.btns a {
  padding: 11px 16px;
  border-radius: 8px;
  background-color: #3B44F6;
  color: #ffffff;
}

.btns a:last-child {
  background-color: transparent;
  border: 3px solid #ffffff;
}

#hero {
  margin-top: 114px;
  margin-left: 95px;
  color: #ffffff;
}

#hero h1 {
  font-size: 48px;
  margin-bottom: 26px;
}

#hero p {
  width: 417px;
  font-size: 24px;
}

#hero a {
  display: inline-block;
  background-color: #3B44F6;
  color: #ffffff;
  border-radius: 8px;
  padding: 16px 32px;
  margin-top: 64px;
}

#why-bigode-store {
  max-width: 915px;
  margin: 0 auto;
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  text-align: center;
}

#why-bigode-store h2 {
  font-size: 36px;
  color: #181818;
  margin-bottom: 16px;
}

#why-bigode-store .title p {
  font-size: 18px;
  color: #323232;
  width: 473px;
}

#why-bigode-store .cards {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#why-bigode-store .card {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}

#why-bigode-store .card img {
  width: 94px;
}

#why-bigode-store .card p {
  width: 202px;
}

/* GENRES */

.games-genres-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0;
}

.games-genres-section .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.games-genres-section h2 {
  font-size: 36px;
  color: #181818;
}

.games-genres-section .title a {
  color: #3b44f6;
  font-size: 18px;
  font-weight: 600;
}

.games-genres-section .cards {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.games-genres-section .game {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.games-genres-section .game p {
  color: #f5f4f9;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.games-genres-section .card-1 {
  background-image: url("../img/bg-strategy.svg");
}

.games-genres-section .card-2 {
  background-image: url("../img/bg-fps.svg");
}

.games-genres-section .card-3 {
  background-image: url("../img/bg-rpg.svg");
}

.games-genres-section .card-4 {
  background-image: url("../img/bg-puzzle.svg");
}

.games-genres-section .card-5 {
  background-image: url("../img/bg-roleplay.svg");
}

.games-genres-section .card-6 {
  background-image: url("../img/bg-sports.svg");
}

/* CARDS DE JOGOS */

.best-seller-section,
.popular-games-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0;
}

.best-seller-section .title,
.popular-games-section .title {
  margin-bottom: 32px;
}

.popular-games-section .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.best-seller-section h2,
.popular-games-section h2 {
  font-size: 36px;
  color: #181818;
}

.popular-games-section .title a {
  color: #3b44f6;
  font-size: 18px;
  font-weight: 600;
}

.cards-best-seller,
.popular-games-section .section-1,
.popular-games-section .section-2 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.popular-games-section .cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.game-item {
  width: 280px;
  padding: 16px 24px;
  border-radius: 8px;
  border: 0.3px solid #d1d1d1;
  background: #fff;
  box-shadow: 0px 8px 10px rgba(164, 164, 164, 0.07);
}

.game-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.game-item h2 {
  font-size: 20px;
  font-weight: 500;
  color: #181818;
}

.name-price {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.price > p {
  color: #3b44f6;
  font-size: 16px;
  font-weight: 500;
}

.promo {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  background: #f5f4f9;
  border: 0.5px solid #f0f0f0;
}

.discount {
  padding: 3px;
  border-radius: 4px;
  background: rgba(252, 50, 111, 0.2);
}

.discount p {
  color: #fc326f;
  font-size: 12px;
  font-weight: 500;
}

.promo > p {
  color: #7d7d7d;
  font-size: 14px;
  text-decoration: line-through;
}

.price-free {
  width: 127px;
  padding: 4px 0;
  border-radius: 4px;
  background-color: #d8dafd;
  display: flex;
  justify-content: center;
}

.price-free p {
  color: #3b44f6;
  font-size: 16px;
  font-weight: 500;
}

/* COMING SOON */

.coming-soon-section {
  width: 100%;
  background: #0e0e0e;
  padding: 70px 0;
}

.coming-soon-section .title,
.coming-soon-section .comsoon-content {
  max-width: 1200px;
  margin: 0 auto;
}

.coming-soon-section .title {
  color: #f5f4f9;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 32px;
}

.comsoon-content {
  display: flex;
  gap: 16px;
}

.left-content,
.right-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.left-content {
  flex: 1.4;
}

.right-content {
  flex: 1;
}

.comsoon-game {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  padding: 0 0 40px 36px;
}

.left-content .comsoon-game {
  height: 400px;
}

.right-content .comsoon-game {
  height: 262px;
}

.comsoon-game h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  width: 342px;
  text-shadow: 0px 4px 5px #000;
}

.right-content .comsoon-game h2 {
  width: 217px;
  font-size: 24px;
}

.comsoon-game .button {
  width: fit-content;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid #f5f4f9;
}

.comsoon-game .button a {
  color: #f5f4f9;
  font-size: 15px;
  font-weight: 600;
}

.left-content .game-1 {
  background-image: url("../img/comsoon-bg-cod.svg");
}

.left-content .game-2 {
  background-image: url("../img/comsoon-bg-nba.svg");
}

.right-content .game-1 {
  background-image: url("../img/comsoon-bg-fifa.svg");
}

.right-content .game-2 {
  background-image: url("../img/comsoon-bg-resident.svg");
}

.right-content .game-3 {
  background-image: url("../img/comsoon-bg-alien.svg");
}


.user-review-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 120px;
  display: flex;
  flex-direction: column;
  gap: 51px;
  align-items: center;
}

.user-review-section .title {
  text-align: center;
}

.user-review-section .title h2 {
  font-size: 36px;
  color: #181818;
  margin-bottom: 16px;
}

.user-review-section .title h3 {
  width: 473px;
  font-size: 18px;
  font-weight: 400;
  color: #323232;
}

.review-item {
  width: 986px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review {
  width: 297px;
  height: 296px;
  padding: 32px 24px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 8px 10px rgba(164, 164, 164, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.review.principal {
  width: 338px;
  height: 333px;
}

.review > img {
  width: 90px;
  height: 90px;
}

.review .desc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.review .desc h2 {
  font-size: 20px;
  color: #181818;
}

.review .desc img {
  width: 108px;
  height: 23px;
}

.review .desc p {
  font-size: 14px;
  text-align: center;
  color: #323232;
}

/* FOOTER */

footer {
  width: 100%;
  background: #0e0e0e;
  padding: 50px 0 22px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 65px;
  display: flex;
  justify-content: space-between;
}

.footer-content > img {
  width: 192px;
  height: 51px;
}

footer h2 {
  color: #f5f4f9;
  font-size: 18px;
  margin-bottom: 24px;
}

footer a {
  color: #a0a0a0;
  font-size: 16px;
}

footer .menu div,
footer .resources div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 36px;
  height: 36px;
}

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 22px;
}

.copyright p {
  color: #a0a0a0;
  font-size: 15px;
}