* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background: #000000; 
  background: -moz-linear-gradient(45deg,  #000000 0%,#A55C1B 100%); 
  background: -webkit-linear-gradient(45deg,  #000000 0%,#A55C1B 100%); 
  background: linear-gradient(45deg,  #000000 0%,#A55C1B 100%); 
  background-attachment: fixed;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}



a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.logo {
  width: 100px;
  margin-left: 15px;
}

nav {
  background-image: linear-gradient(to right , #211304, #693a10);
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  height: 8vh;
  z-index: 1;
}



.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  letter-spacing: 3px;
  margin-left: 32px;
  margin-right: 15px;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #fff;
  margin: 8px;
  transition: 0.3s;
}

@media (max-width: 999px) {
  body {
    overflow-x: hidden;
  }
  .nav-list {
    position: absolute;
    top: 08vh;
    right: 0;
    width: 100vw;
    height: 60vh;
    background: #000000c4;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform .5s ease-in;
  }
  .nav-list li {
    margin-left: 0;
    opacity: 0;
  }
  .mobile-menu {
    display: block;
    
  }


}

.nav-list.active {
  transform: translateX(0);
  position: fixed;
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}


.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.slideshow-container img{
  border-radius: 10px;
  margin-bottom: 5%;
  max-width: 1000px;
  
}

.slide {
  display: none;
}

.fade {
  animation-name: fade;
  animation-duration: 2.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media (max-width: 1189px) {
 .slide img {
    max-width: 80%;
    
  }


}

/*Site*/

.box1{
  background-color: #de9030;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 400px 400px 400px;
  justify-content: center;
}

.box1 div{
  display: flex;
  background-color: #ffffff;
  border-radius: 100%;
  width: 300px;
  height: 300px;
  justify-content: center;
  align-items:  center;

}

.celular{
  width: 150px;

}

    .carousel-container {
      width: 80%;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
    }
  
    .carousel {
      display: flex;
      transition: transform 0.5s ease;
    }
  
    .carousel-item {
      flex: 0 0 auto;
      width: 100%;
      padding: 10px;
      box-sizing: border-box;
    }
  
    .carousel-item img {
      width: 100%;
      height: auto;
    }
  
    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .carousel-nav button {
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 10px;
      cursor: pointer;
    }
  
    @media (max-width: 768px) {
      .carousel-item {
        width: 100%;
      }
    }


    .container {
      width: 100%;
      padding-left:20px;
      max-width: 980px;
      margin: 0 auto;
      overflow-x: hidden;
      
      
  }

  .carousel {
    
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      margin-top: 2%;
      margin-bottom: 2%;
  }

  .product {
      background-color: #A55C1B;
      flex: 0 0 auto;
      width: 300px;
      margin-right: 20px;
      padding: 20px;
      border-radius: 15px;
      margin-bottom: 10px;
  }

  .product img {
      max-width: 100%;
      height: auto;
  }

  .product h2 {
      font-size: 18px;
      margin-top: 10px;
      margin-bottom: 5px;
  }

  .product p {
      margin-bottom: 5px;
  }

  .product .price {
      font-weight: bold;
  }

  .product button {
      background-color: #4CAF50;
      border: none;
      color: white;
      padding: 10px 20px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      margin-top: 10px;
      cursor: pointer;
      border-radius: 5px;
  }

  .product button:hover {
      background-color: #45a049;
  }


  div .product img{
    width: 200px;
  }


  footer{
    background-color: #0000005b;
    color: #ffffff;
    padding: 30px;
    margin-top: 5%;

  }

/* Estilos para o footer */
footer {
  padding: 50px 0;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-info,
.footer-payment,
.footer-reputation {
  flex-basis: calc(100% / 3);
  margin-bottom: 20px;
}

.footer-payment ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-payment ul li {
  display: inline-block;
  margin-right: 10px;
}

.footer-payment ul li:last-child {
  margin-right: 0;
}

.footer-payment ul img{
  width: 60px;

}
.footer-payment ul li{
  list-style: none;  
}


@media (max-width: 600px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }

  .footer-info,
  .footer-payment,
  .footer-reputation {
      flex-basis: 100%;
      margin-bottom: 20px;
  }
}

  /*endereço*/
.bloco{
  
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 10px;
}

.endereco1{
  background-color: #211304;
  padding: 20px;
  border-radius: 10px;

}
input[type=text]{
  color: #fff;
  padding: 10px 50px 10px 5px;
  background-color: transparent;
  border-color: #ffffff;
  border-radius: 10px;
}

input[type=text]::placeholder{
  color: #fff;
  font-size: medium;
}

button[type=submit]{
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 70px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
}

button[type=submit]:hover{
  background-color: #4CAF50;
  cursor: pointer;
}
