* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

header nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.btn-vendas {
  background: linear-gradient(45deg, orange, red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  margin-top: 10px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;

}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  border-radius: 3px;







}

@media (max-width: 768px) {
  header nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-vendas {
    width: 100%;
    text-align: center;
  }

  .show-menu {
    display: flex !important;
  }
}

.banner {
  padding: 40px 20px;
  background: #f9f9f9;
}

.banner-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.banner-text {
  max-width: 400px;
}

.banner h1 {
  color: #5f2c82;
  margin-bottom: 10px;
}

.banner p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.banner button {
  background: #5f2c82;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.wrap-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrap {
  position: relative;
  width: 60vmin;
  height: 60vmin;
  margin: 0 auto;
  transform: scale(0.9);
  transition: transform 0.5s, opacity 0.5s;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.wrap a {
  position: absolute;
  width: 47.5%;
  height: 47.5%;
  overflow: hidden;
  background: #585247;
}

.wrap a div {
  height: 100%;
  background-size: cover;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.wrap a:hover div {
  opacity: 1;
}

.wrap a:nth-child(1) {
  border-radius: 40vmin 0 0 0;
  left: 0;
  top: 0;
}
.wrap a:nth-child(1) div {
  background-image: url('img/yoytube.jpeg');
}

.wrap a:nth-child(2) {
  border-radius: 0 40vmin 0 0;
  left: 52.5%;
  top: 0;
}
.wrap a:nth-child(2) div {
  background-image: url('img/shopee.jpeg');
}

.wrap a:nth-child(3) {
  border-radius: 0 0 0 40vmin;
  left: 0;
  top: 52.5%;
}
.wrap a:nth-child(3) div {
  background-image: url('img/Mercado.jpg');
}

.wrap a:nth-child(4) {
  border-radius: 0 0 40vmin 0;
  left: 52.5%;
  top: 52.5%;
}
.wrap a:nth-child(4) div {
  background-image: url('img/amazon.png');
}

.wrap a:nth-child(5) {
  width: 55%;
  height: 55%;
  left: 22.5%;
  top: 22.5%;
  border-radius: 50vmin;
  box-shadow: 0 0 0 5vmin #E3DFD2;
}
.wrap a:nth-child(5) div {
  background-image: url('img/carrinho.jpg');
}

footer {
  background: #5f2c82;
  color: #fff;
  text-align: center;
  padding: 10px;
}

footer .buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

footer .buttons a {
  background: #fff;
  color: #5f2c82;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

footer .buttons a.whatsapp {
  background: #25d366;
  color: #fff;
}

@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
  }

  .wrap {
    width: 80vmin;
    height: 80vmin;
  }

  .banner-text {
    text-align: center;
  }
}
