/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
  scroll-behavior:smooth;
}

html,
body{
  width:100%;
  overflow-x:hidden;
}

body{
  background:#0b1220;
  color:white;
}

/* IMAGES */
img{
  max-width:100%;
  display:block;
}

/* NAVBAR */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 6%;
  background:#08111f;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
  font-size:22px;
  font-weight:bold;
  color:#ff9900;
}

.logo i{
  margin-right:8px;
}

.navbar nav{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.navbar a{
  color:white;
  text-decoration:none;
  transition:0.3s;
  font-size:15px;
}

.navbar a:hover{
  color:#ff9900;
}

.contact{
  background:linear-gradient(135deg,#ff9900,#ff6600);
  padding:10px 18px;
  border-radius:30px;
  font-weight:bold;
}

/* HERO */
.hero{
  position:relative;
  min-height:55vh;
  display:flex;
  align-items:center;
  padding:50px 6%;
  overflow:hidden;

  background:
  linear-gradient(
    rgba(5,10,20,0.80),
    rgba(5,10,20,0.85)
  ),
  url("https://images.pexels.com/photos/356056/pexels-photo-356056.jpeg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:650px;
}

.badge{
  display:inline-block;
  background:rgba(255,153,0,0.15);
  color:#ffb84d;
  border:1px solid rgba(255,153,0,0.4);
  padding:10px 18px;
  border-radius:50px;
  margin-bottom:18px;
  font-size:14px;
  font-weight:bold;
}

.hero h1{
  font-size:52px;
  line-height:1.1;
  margin-bottom:18px;
}

.hero p{
  font-size:17px;
  color:#d7d7d7;
  line-height:1.7;
  margin-bottom:28px;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:linear-gradient(135deg,#ff9900,#ff6600);
  color:white;
  padding:14px 26px;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
  box-shadow:0 10px 25px rgba(255,153,0,0.25);
}

.hero-btn:hover{
  transform:translateY(-3px);
}

/* FILTERS */
.filters{
  padding:50px 6% 20px;
}

.searchbar{
  width:100%;
  padding:16px 20px;
  border-radius:50px;
  border:none;
  outline:none;
  background:#121b2e;
  color:white;
  font-size:15px;
  margin-bottom:20px;
}

.searchbar::placeholder{
  color:#aaa;
}

.buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.buttons button{
  padding:10px 20px;
  border:none;
  border-radius:30px;
  background:#151f34;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.buttons button:hover{
  background:#1d2b47;
}

.buttons .active{
  background:linear-gradient(135deg,#ff9900,#ff6600);
}

/* PRODUCTS */
.products{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  padding:20px 6% 70px;
  width:100%;
}

/* CARD */
.card{
  background:#121b2e;
  border-radius:18px;
  overflow:hidden;
  transition:0.3s;
  border:1px solid rgba(255,255,255,0.05);
  width:100%;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 30px rgba(0,0,0,0.35);
}

.card img{
  width:100%;
  height:180px;
  object-fit:contain;
  background:white;
  padding:12px;
}

.card-content{
  padding:15px;
}

.card h3{
  font-size:15px;
  margin-bottom:10px;
  min-height:42px;
  line-height:1.4;
}

.price{
  color:#ff9900;
  font-size:18px;
  font-weight:bold;
  margin-bottom:12px;
}

/* WHATSAPP */
.whatsapp{
  display:block;
  width:100%;
  text-align:center;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:white;
  padding:10px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.whatsapp:hover{
  transform:scale(1.03);
}

/* FOOTER */
footer{
  background:#060b14;
  padding:60px 6%;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.footer-grid h3,
.footer-grid h4{
  margin-bottom:15px;
  color:#ff9900;
}

.footer-grid p{
  color:#c7c7c7;
  line-height:1.7;
}

.footer-grid a{
  display:block;
  color:#d7d7d7;
  text-decoration:none;
  margin:10px 0;
  transition:0.3s;
}

.footer-grid a:hover{
  color:#ff9900;
  transform:translateX(5px);
}

/* FLOATING WHATSAPP */
.floating-wa{
  position:fixed;
  bottom:20px;
  right:20px;
  width:65px;
  height:65px;
  border-radius:50%;
  background:#25D366;
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:28px;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.35);
  z-index:999;
  transition:0.3s;
}

.floating-wa:hover{
  transform:scale(1.1);
}

/* LARGE TABLETS */
@media(max-width:1200px){

  .products{
    grid-template-columns:repeat(4,1fr);
  }

}

/* TABLETS */
@media(max-width:992px){

  .products{
    grid-template-columns:repeat(3,1fr);
  }

  .hero h1{
    font-size:42px;
  }

}

/* SMALL TABLETS */
@media(max-width:768px){

  .navbar{
    flex-direction:column;
    gap:15px;
    text-align:center;
  }

  .navbar nav{
    justify-content:center;
  }

  .hero{
    min-height:auto;
    justify-content:center;
    text-align:center;
    padding:60px 5%;
  }

  .hero-content{
    max-width:100%;
  }

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:15px;
  }

  .hero-btn{
    width:100%;
  }

  .filters{
    padding:30px 5%;
  }

  .buttons{
    justify-content:center;
  }

  .products{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding:20px 5% 60px;
  }

  .card img{
    height:150px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

}

/* MOBILE */
@media(max-width:500px){

  .products{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:26px;
    line-height:1.3;
  }

  .hero p{
    font-size:14px;
  }

  .card{
    width:100%;
  }

  .searchbar{
    font-size:14px;
  }

  .floating-wa{
    width:58px;
    height:58px;
    font-size:24px;
  }

}
