*{margin: 0;
box-sizing: content-box;
}

header{background-color: rgb(241,184,181);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 10vh;
    
}


#menu-toggle {
      display: none;
      
    }

    /* Estiliza o botão hambúrguer */
    .menu-icon {
      position: fixed;
      top: 20px;
      right: 20px;
      background-color:#4F766A;
      padding: 10px;
      cursor: pointer;
      z-index: 1001;
    }

    .menu-icon span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 5px 0;
    }

    /* Menu lateral oculto por padrão */
    .side-menu {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100%;
      background-color: #222;
      color: white;
      transition: 0.3s;
      z-index: 1000;
    }

    /* Quando o checkbox estiver marcado, mostra o menu */
    #menu-toggle:checked + .menu-icon + .side-menu {
      left: 0;
    }

    .side-menu-content {
      background-color: #d0f0ee;
      margin: 20px;
      padding: 20px;
      border-radius: 8px;
      color: black;
    }

    .side-menu-content a {
      display: block;
      padding: 10px 0;
      color: black;
      text-decoration: none;
    }

    /* Botão de fechar (usa o label de novo) */
    .close-btn {
      font-size: 30px;
      font-weight: bold;
      cursor: pointer;
      display: inline-block;
      margin-bottom: 10px;
    }

    .menu-title {
      font-weight: bold;
      font-size: 1.5em;
    }

    .menu-footer {
      margin-top: 30px;
      font-size: 0.8em;
       width: 20vh;
    }
    
#exemplo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 40%;
}
#logo{ width: 12%;}



.links{ text-decoration: none;
color: #4F766A;
font-size: 20px;}

    .container {
      display: flex;
      align-items: center;
      padding: 20px;
    }

    .label {
      margin-right: 15px;
      font-weight: bold;
      color: #3c5d5c; /* verde escuro, como no "Suporte" */
    }

    .barra-pesquisa {
      width: 200px;
      height: 35px;
      background-color: #e2e2e2; /* cinza claro */
      border: none;
      border-radius: 20px; /* cantos bem arredondados */
      padding: 0 15px;
    }

    .size-6{
    height: 40px;
    color: #000000;
}

footer {
  background-color: #f1b8b5;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  font-size: 14px;
  position: relative;
  margin-top: 50px;
   width: 100%;
}

footer .social-icons {
  margin-right: 1vh;
}

footer .social-icons img {
  width: 10vh;
  margin-right: 1vh;
  cursor: pointer;
}

footer .mascotes {
  display: flex;
  gap: 2vh;
  margin-top: 1vh;
}

footer .mascotes img {
  width: 20vh;
}


.containernovo {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
}

.gallery {
  flex: 1;
  margin-right: 30px;
}

.main-image {
  width: 100%;
  border-radius: 10px;
}

.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbnails img {
  width: 30%;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.product-info {
  flex: 1;
}

.product-info h1 {
  color: #e60023;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 10px;
}

.discount {
  color: green;
  font-weight: bold;
  margin-left: 10px;
}

.title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.rating {
  margin: 10px 0;
  color: #444;
}

.add-to-cart {
  padding: 15px 25px;
  background: red;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.add-to-cart:hover {
  background: darkred;
}
