*{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;
}



  .carrossel-container {
    width: 70vw;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: 30px
    ;
  }

  .carrossel {
    display: flex;
    gap: 20px;
    animation: scroll 10s linear infinite;
    width: 80%;
  }

  .carrossel img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
    flex-shrink: 0;
  }

  .imagem-wrapper {
    position: relative;
    width: 200px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
  }

  .imagem-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .carrossel:hover img {
    transform: scale(0.8);
    opacity: 0.5;
  }

  .imagem-wrapper:hover img {
    transform: scale(1.2);
    opacity: 1;
    z-index: 1;
  }

  .carrossel img:hover {
    transform: scale(1.2);
    opacity: 1;
    z-index: 1;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-220px); /* 200px width + 20px gap */
    }
  }

  .descricao {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 0;
  }

.titulo-recomendacoes, .titulo-plushies {
margin-left: 10vh;
  font-size: 32px;
  color: #4F766A;
  margin-top: 60px;
  margin-bottom: 30px;
}

.recomendacoes,
.plushies {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 40px;
}

.produto {
  width: 50vh;
  text-align: center;
}

.produto img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.descricao-produto {
  font-size:3vh;
  font-weight: bold;
  color: #000000;
  margin-top: 10px;
}

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;
}