body {
  font-family: Arial, sans-serif;
  background-color: #201f1f;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100%;
}
nav {
  background-color: rgba(255, 145, 0, 0.664);
  opacity: 75%;
  width: 60%;
  margin: 35px auto;
  border-radius:  75px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  box-shadow: 0 4px 20px rgba(250, 250, 250, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
nav .logo {
  height: 50px; 
  display: inline-block;
  margin-right: 5px;
  margin: 0; 
  padding: 0; 
  
}
nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  flex-wrap: wrap; 
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  transition: background 0.3s, color 0.3s;
  border-radius: 8px;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: orange;
  color: white;
}

nav span{
  color: #1d1d1d;
  
}
.drop-submenu{
      position: relative;
    }
    .drop-submenu > .submenu{
      position: absolute;
      width: auto;
      background-color: black;
      padding: 0;
      text-align: left;
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      height: 0;
      overflow: hidden;
      transition: height .5s;
    }
    .drop-submenu.dropar > .submenu{
      height: 250px;
    }
    .drop-submenu > .submenu a{
      padding: 10px;
    }
.logo-container {
  display: flex;
  align-items: center;
  gap: 0; 
}
.seta {
    color: #fff;
    font-size: 12px;
  }
.logo {
  height: 50px;
  display: block; 
  margin: 0;
  padding: 0;
}

.texto-logo {
  font-size: 24px;
  font-weight: bold;
  color: #1d1d1d;
  margin: 0;
  padding: 0;
  line-height: 1; 
}
.insta-logo {
    font-size: 1.3rem; 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.gps-logo {
    font-size: 1.3rem; 
    color: #EA4335;
    display: inline-block;
}
.wpp-logo {
  font-size: 1.3rem;
  color: #01e675; 
  display: inline-block;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 300px));
  margin-top: 175px;
  max-width: 90%;
  justify-content: center;
  align-items: center;
  justify-items: center;
  padding: 20px;
  gap: 20px;
  column-gap: 20px;
  
}

.product h2{
  color: #f57c00;
}
.product {
  background-color: rgb(22, 22, 22);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 230px;
  padding: 15px;
  text-align: center;
  height: 92%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.product:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.product img {
  width: 100%;
  height: 265px;   
  border-radius: 5px;
  object-fit: cover;
}

.product h2 {
  font-size: 16px;
  
}
.caixa{
  color: cornsilk;
  display: inline-grid;
  gap: 10px;
  margin-top: 100px;
  padding: 20px;
  padding-right: 40px;
  padding-left: 40px;
  border-style: solid;
  border-width: 1px;
  border-color: dimgray;
  border-radius: 35px;
}
.filter-btn{
  border-radius: 10px;
  background-color: #f57c00;
  width: 100px;
  height: 35px;
  border: none;
  cursor: pointer;
  color: black;
}
.orcamento{
  position: fixed;
  bottom: 60px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #01e675;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.orcamento i {
  font-size: 24px;
  line-height: 1;
  vertical-align: middle;
}

.orcamento:hover{
  background-color: #ffffff;
  color: #029e3b;
  font-weight: 900;
  box-shadow: 2px 2px 20px #5fe690;
}
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer {
    background-color: #1d1d1d;
    padding: 20px 0; 
    text-align: center;
    width: 100%;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; 
  flex-wrap: wrap;
}

.footer-link {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  gap: 8px;
}

.footer-link:hover {
  color: #ff6600;
}

.footer-icon {
  width: 20px; 
  height: 20px;
}
.footer-copyright {
color: white;
font-size: 14px;
padding: 2%;
}

.filtros-mobile-menu{
  display: none;
}

.filtros-mobile {
  display: none;
}
footer{
  margin-top: auto;
  width: 100%;
}
.nome{
  text-decoration: none;
}
@media (max-width: 1024px){
  .drop-submenu > .submenu{
      position: relative;
    }
    .drop-submenu.active{
      height: auto;
    }
    .nav-list > .drop-submenu{
      display: flex;
      flex-direction: column;
    }
    .barra div{
      width: 32px;
      height: 2px;
      background-color: #ffffff;
      margin: 8px;
      right: 0;
      transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
      position: relative;
    }
    .barra.active .linha1{
      transform: rotate(+45deg) translate(7px, 7px);
    }
    .barra.active .linha2{
      opacity: 0;
    }
    .barra.active .linha3{
      transform: rotate(-45deg) translate(7px, -7px);
    }
    .nav-list li {
      min-width: 100%;
      border: 1px solid white; 
      text-align: center;
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .nav-list{
      background-color: rgb(0, 0, 0);
      position: absolute;
      display: grid;
      height: auto; 
      justify-items: stretch;
      align-items: start;
      row-gap: 0px;
      top: 7.5vh;
      right: 0;
      width: 50vw;
      height: auto;
      z-index: 9999;
      transform: translateX(150%);
      transition: transform 0.3s ease-in-out;
      margin: 0;
      padding: 0;
    }
    
  .nav-list.active{
    transform: translateX(0);
  }
  nav {
    width: 80%;
    padding: 10px 20px;
  }
  
  
  .product{
  background-color: rgb(22, 22, 22);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 230px;
  padding: 15px;
  text-align: center;
  transition: transform 0.2s;
  }
}
@media (max-width: 500px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }
  .footer-container .txt{
    font-size: 15px;
  }
  .product{
  background-color: rgb(22, 22, 22);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 60%;
  padding: 15px;
  text-align: center;
  transition: transform 0.2s;
  }
  .drop-submenu > .submenu{
      position: relative;
    }
    .drop-submenu.active{
      height: auto;
    }
    .nav-list > .drop-submenu{
      display: flex;
      flex-direction: column;
    }

}
  @media (min-width:1025px) and (max-width:1366px){
    .filtragem{
      display: none;
    }
    .product-list{
      display: grid;
      margin-right: auto;
      margin-left: auto;
      width: 859px;
    }
    .barra div{
    width: 32px;
    height: 2px;
    background-color: #ffffff;
    margin: 8px;
    right: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
      position: relative;
  }
  .nav-list li {
      min-width: 100%;
      border: 1px solid white; 
      text-align: center;
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .drop-submenu > .submenu{
      position: relative;
    }
    .drop-submenu.active{
      height: auto;
    }
    .nav-list > .drop-submenu{
      display: flex;
      flex-direction: column;
    }
  .nav-list{
      background-color: rgb(0, 0, 0);
      position: absolute;
      display: grid;
      height: auto; 
      justify-items: stretch;
      align-items: start;
      row-gap: 0px;
      top: 7.5vh;
      right: 0;
      width: 50vw;
      height: auto;
      z-index: 9999;
      transform: translateX(150%);
      transition: transform 0.3s ease-in-out;
      margin: 0;
      padding: 0;
    }
    .barra.active .linha1{
      transform: rotate(+45deg) translate(7px, 7px);
    }
    .barra.active .linha2{
      opacity: 0;
    }
    .barra.active .linha3{
      transform: rotate(-45deg) translate(7px, -7px);
    }
  .nav-list.active{
    transform: translateX(0);
  }
  nav {
    width: 60%;
    padding: 10px 20px;
  }
  .filtros-mobile-menu {
    position: absolute;
    top: 7.5vh;
    right: 0;
    min-width: 200px;
    min-height: 30vh;
    margin-top: 51px;
    margin-right: 22.5px;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: rgba(0, 0, 0, 0.644);
    z-index: 9998; 
    transform: translateX(-750%);
    transition: transform 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .filtros-mobile-menu.active {
    transform: translateX(-110%) ;
  }
  .filtros-mobile {
    display: block;
    position: absolute;
    right: 75px;
    color: white;
    font-size: 24px;
    z-index: 1000;
  }
  }
  html {
    scroll-behavior: smooth;
  }