@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  letter-spacing: 0.7px;
  scroll-behavior: smooth;
}
/* Página */
body{
  font-family: "Roboto", sans-serif;
}
p{
  font-size: 14.5px;
}
h2{
  font-size: 1.5rem;
}
h3{
  font-size: 1.7rem;
  color: #232323;
  margin-top: 2rem;
  font-weight: normal;
}
h4{
  font-size: 1.1rem;
}
h5{
  font-size: 1.4rem;
  color: orangered;
}
input{
  width: 35px;
  text-align: center;
  background-color: #e7e7e7;
  border: 0;
}
details{
  cursor: pointer;
  border: 1px solid orangered; 
  width: 80%; 
  margin: 7px auto 5px;
  padding: 4px 0 5px;
}
details p{
  color: orangered; 
  margin-bottom: 9px;
}
details div{
  width: auto; 
  background: white; 
  font-size: 13.5px;
  position: absolute;
  margin-top: 10px;
  box-shadow: 5px 5px 10px #232323;
  border: 1px solid darkolivegreen;
  z-index: 1;
  margin-left: -1.5rem;
}
details ul {
  list-style: none; 
  text-align: left;
}
details ul li {
  margin-bottom: 8.7px;
}
details span{
  color: brown;
}
details #zero-b{
  margin-bottom: 0;
}
/* Navegação */
nav{
  background: #f5f5f5;
}
.navbar{
  display: flex;
  margin: auto;
  max-width: 1200px;
  height: 52px;
  align-items: center;
  padding: 1rem;
  justify-content: space-between;
}
.navbar a{
  color: #232323;
}
/* Logo */
.logo a{
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
}
.logo strong{
  color: orangered;
}
/* menu */
.menu{
  display: flex;
  justify-content: space-between;
  position: relative;
  right: 6%;
}
.menu a{
  font-size: 1rem;
  text-transform: uppercase;
  margin-right: 1.5rem;
  margin-left: 1.1rem;
}
.menu a:hover{
  color: orangered;
  transition: all 0.5s;
}
/* Carrinho */
#cart{
  position: fixed;
  right: 6.4%;
  top: 10.6px;
  cursor: pointer;
  background: white;
  padding: 5px 7px;
  color: #5c5c5c;
  border: 1px solid orangered;
  z-index: 1000;
}
#cart-two{
  position: absolute;
  right: -20.5%;
  top: -6px;
  cursor: pointer;
  background: white;
  padding: 5px 7px;
  color: #5c5c5c;
  border: 1px solid orangered;
  z-index: 1000;
}
#cart span {
  font-weight: bold;
  background-color: orangered;
  border-radius: 15%;
  display: none;
}
/* Button do paypal */
#cart-buttons{
  display: none;
  text-align: center;
  margin: 1.5rem 0;
  color: yellowgreen;
}
#cart-buttons h5{
  font-size: 15px;
  font-weight: normal;
  font-family: Orbitron, sans-serif;
  color: yellowgreen;
}
#cart-buttons button{
  font-size: 15.5px;
  cursor: pointer;
}
#cart-buttons i{
  font-size: 1.2rem;
}
#cart-count{
  color: white;
  position: absolute;
  padding: 2px 5px;
  top: 0;
  margin-left: -5px;
  border-radius: 50%;
}
/* Modal Carrinho */
#cart-modal {
  position: fixed;
  top: 0;
  left: -549px;
  width: 508px;
  height: 100vh;
  background-color: #232323;
  box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  overflow-y: auto;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
  color: #e7e7e7;
  font-weight: normal;
}
#cart-modal.open {
  left: 0;
}
#cart-modal h2 {
  margin-top: 0;
  margin-bottom: 12px;
}
#cart-modal img {
  width: 100px;
  height: 87px;
  margin-bottom: 10px;
}
#cart-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 30px;
  color: #e7e7e7;
}
#cart-modal .cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
#cart-modal .cart-item img {
  width: 60px;
  margin-right: 10px;
}
#cart-modal .cart-item-details {
  flex: 1;
}
#cart-modal .cart-item-remove {
  cursor: pointer;
  color: brown;
  font-size: 21px;
  background-color: #e7e7e7;
  padding: 0 2px;
  font-weight: bolder;
}
#cart-modal .total {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}
/* Slider */
.slide h1{
  font-size: 2.8rem;
  text-align: center;
  text-transform: uppercase;
  padding: 1rem;
  text-shadow: 5px 5px 10px #000034;
  margin-top: -4.1rem;
  letter-spacing: 1.5px;
}
/* Categorias */
.categorias{
  max-width: 1190px;
  width: 100%;
  margin: auto;
  background: #f0f0f0;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
}
.titulo{
  max-width: 1190px;
  width: 100%;
  margin: auto;
  text-align: center;
  background: #f0f0f0;
  padding: 1rem 1rem 0;
  text-transform: uppercase;
  font-family: "Orbitron", sans-serif;
  color: #232323;
  text-shadow: 1px 1px 3px orangered;
}
.ms{
  margin: auto;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
#ms img{
  width: 57%;
  height: 320px;
  box-shadow: none;
}
#cb img{
  width: 91%;
  height: 290px;
  box-shadow: 1px 1px 5px #232323;
  margin-bottom: 9px;
}
.product {
  text-align: center;
  display: flex;
  margin: auto;
  margin-bottom: 2rem;
}
.produtos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}
.itens {
  width: 100%;
  height: auto;
  padding: 20px 0 0;
}
.itens div {
  padding: 7px 8px;
  color: #1c1c1c;
  text-align: center;
}
.itens img {
  width: 87%;
  height: 250px;
  box-shadow: 1px 1px 5px #003333;
  transition: ease-in 0.7s;
  cursor: pointer;
}
.itens h4, p, h5 {
  margin-bottom: 6px;
}
.itens h4{
  margin-top: 7px;
}
.itens .temp a{
  text-transform: uppercase;
  font-size: 1rem;
  color: brown;
  font-weight: bolder;
  background: white;
  padding: 6.2px 7px;
  border-radius: 5px;
  box-shadow: 1px 1px 3px #232323;
  transition: all 0.5s;
  width: 100vh;
}
.temp-descont{
  text-transform: uppercase;
  font-size: 1rem;
  color: brown!important;
  font-weight: bolder;
  margin-bottom: -5px;
}
.itens .temp a:hover{
  background: orangered;
  color: white;
}
.itens button {
  font-size: 12px;
  color: white;
  background-color: #003333;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.itens button:hover {
  background-color: #002333;
}
#cart-items button{
  width: 17px;
  font-size: 15px;
  margin: 0;
  background: grey;
  color: white;
  border: 0;
  border: 1px solid orangered;
}
#buy-now {
  width: 87%;
  display: none;
  cursor: pointer;
  background-color: orangered;
  color: #f5f5f5;
  font-size: 1rem;
  border: 0;
  padding: 10px;
}
#buy-now i {
  font-size: 17px;
}
/* Estilos do PIX QR Code */
.pix-container {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 1px solid orangered;
  display: none;
}
.pix-header {
  text-align: center;
  margin-bottom: 20px;
}
.pix-header h3 {
  color: #232323;
  margin: 0 0 8px 0;
  font-size: 1.3rem;
}
.pix-header p {
  color: #645;
  margin: 0;
  font-size: 14px;
}
.pix-loading {
  text-align: center;
  padding: 40px 0;
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e7e7e7;
  border-top: 4px solid brown;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.qr-code-section {
  text-align: center;
  margin: 20px 0 15px;
}
.qr-code-image {
  width: 280px;
  height: 100px;
  border: 2px solid #232323;
  border-radius: 8px;
  background: white;
  padding: 7px;
}
img#qr-code-image {
  width: 127px;
  height: 125px;
}
.pix-details {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border: 1px solid #ddd;
}
.pix-value {
  text-align: center;
  font-size: 1.2rem;
  color: brown;
  margin-bottom: 10px;
}
.pix-beneficiario p {
  margin: 5px 0;
  font-size: 13px;
  color: #555;
}
.pix-code-section {
  margin: 15px 0;
}
.pix-code-section label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #232323;
  font-size: 14px;
}
.pix-code-container {
  position: relative;
}
.pix-code-textarea {
  width: 100%;
  height: 80px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: monospace;
  font-size: 11px;
  background: #f9f9f9;
  resize: none;
  box-sizing: border-box;
}
.copy-button {
  position: absolute;
  top: 5px;
  right: 5px;
  background: brown;
  color: white;
  border: none;
  padding: 5px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 11px;
  transition: background-color 0.3s;
}
.copy-button:hover {
  background: #8B4513;
}
.pix-instructions {
  background: #232323;
  color: #e7e7e7;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}
.pix-instructions h4 {
  margin: 0 0 10px 0;
  color: orangered;
  font-size: 1rem;
}
.pix-instructions ol {
  margin: 0;
  padding-left: 20px;
}

.pix-instructions li {
  margin: 5px 0;
  font-size: 13px;
  line-height: 1.4;
}
/* Imagem modal */
.image-modal{
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.image-modal-content{
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease;
}
.image-modal-content img{
  width: 100%;
  height: 87vh;
  border-radius: 8px;
}
.close-modal{
  position: absolute;
  top: -10px;
  right: -10px;
  background: brown;
  border-radius: 50%;
  padding: 5px 12px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 0 10px #000;
  color: #fff;
}
@keyframes zoomIn{
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* Footer */
.logo-menu-footer i{
  color: #91ff60;
  font-size: 1.2rem;
}
.logo-menu-footer p{
  text-align: center;
  margin-top: 10px;
}
.logo-menu-footer a {
  font-size: 1.2rem;
  color: #e7e7e7;
  text-decoration: none;
  font-family: Orbitron;
  font-weight: normal;
}
.logo-menu-footer strong {
  color: orangered;
  font-family: Orbitron;
}
footer {
  background-color: #232323;
  height: auto;
  color: #e7e7e7;
  display: flex;
  align-items: center;
  padding: 1.3rem 1rem;
}
.zap-contact{
  display: flex;
  justify-content: center;
}
.zap-contact a{
  font-family: Roboto, sans-serif;
  font-size: 15px;
  margin-left: 5px;
  color: #ddd;
}
.Pgto{
  margin: 10px 5px 5px;
}
.Pgto i{
  font-size: 1.6rem;
  color: #28b5a7;
  margin-right: 5px;
}
.Pgto small{
  color: darkkhaki;
  font-size: 15px;
}
.Pgto p{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 7px 5px 10px;
  color: #ddd;
  font-family: Orbitron, sans-serif;
  font-size: 0.8rem;
}
.Pgto .fa-cc-paypal{
  color: #006fb8;
  border-radius: 10%;
  padding: -10px;
  font-size: 1.9rem;
}
.polit{
  margin: .8rem 0 0;
}
.polit a{
  color: #a5a5a5; 
  font-size: 13px;
  text-decoration: none;
  transition: 0.6s;
}
.polit a:hover{
  color: orange;
}
.credits{
  font-size: 0.8rem;
  color: #a7a7a7;
  background: linear-gradient(orangered, #232323);
  background-image: url(../img/slide-two.jpg);
  background-size: cover;
  background-position: bottom;
  line-height: 1.5rem;
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px #000;
}
.bg-fc{
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 2px 0;
}
#contact{
  max-width: 1100px;
  margin: auto;
  padding: 2px 10px;
}
.footer {
  display: flex;
  max-width: 1120px;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.copy {
  color: #a5a5a5;
  font-size: 13px;
  text-align: center;
}
.copy img{
  width: 155px;
  height: 41px;
  border-radius: 10%;
}
.publi-p, .publi{
  display: none;
}
.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 19px;
  z-index: 1000;
  width: 50.8px;
  height: 50px;
  background-color: #439164;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.whatsapp-fixo:hover {
  transform: scale(1.1);
}
.whatsapp-fixo img {
  width: 32px;
  height: 32px;
}
/* Media screen */
@media(max-width: 1280px){
  #cart{
    right: 1.5rem;
  }
}
@media(max-width: 960px){
  .produtos {
    grid-template-columns: repeat(3, 1fr);
  }
  .afily{
    display: none;
  }
  .menu a{
    margin-right: 2.5rem;
  }
  .bn-desk{
    display: none;
  }
  .wbz{
    display: none;
  }
  .itens img{
    width: 91%;
  }
  #ms img{
    width: 57%;
    height: 280px;
    box-shadow: none;
  }
  #cb img{
    width: 100%;
    box-shadow: 1px 1px 5px #232323;
  }
}
@media(max-width: 640px){
  .produtos {
    grid-template-columns: repeat(2, 1fr);
  }
  .itens img{
    height: 30vh;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .social {
    margin: 10px 0;
  }
  .copy {
    text-align: center;
  }
  #contact{
    text-align: center;
    padding: 0;
  }
  .slide h1{
    font-size: 2.3rem;
  }
   #ms img{
    height: 210px;
    box-shadow: none;
  }
  #cb img{
    box-shadow: 1px 1px 5px #232323;
  }
}
@media(max-width: 540px){
  #cart-modal{
    width: 100%;
    height: 100vh;
    z-index: 1000;
  }
  .image-modal-content img{
    height: 50vh;
  }
  .menu a{
    margin-right: 2.7rem;
  }
  .wbz{
    display: none;
  }
}
@media(max-width: 460px){
  .slide h1{
    font-size: 2rem;
  }
  .itens img{
    height: 27vh;
    width: 94%;
  }
  #cart-modal {
    left: -500px;
    width: 100%;
  }
}
