
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #222;
}
header {
  background: #002244;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
header .logo {
  font-size: 1.8em;
  font-weight: bold;
}
nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}
.banner img {
  width: 100%;
  height: auto;
}
h2 {
  text-align: center;
  margin-top: 30px;
  color: #002244;
}
.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 20px;
}
.item {
  background: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 0 10px #ccc;
}
.item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.precio {
  font-weight: bold;
  color: #0066cc;
}
button {
  background: #0066cc;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  background: #002244;
  color: white;
  text-align: center;
  padding: 20px;
}
footer a {
  color: #99ccff;
  text-decoration: none;
}
.buscador {
  text-align: center;
  padding: 20px;
  background-color: #1e1e1e; /* Cambialo si querés combinarlo con tu header */
}

.buscador input {
  width: 90%;
  max-width: 500px;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  object-fit: contain;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
}