* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { background: #f4f6f9; }

header {
  background: #0f63a8;
  color: white;
  padding: 15px 40px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { font-size: 22px; font-weight: 700; }

.search input {
  padding: 8px 12px;
  width: 300px;
  border-radius: 4px;
  border: none;
}

nav {
  background: #0b3d88;
  padding: 10px 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.container {
  display: flex;
  padding: 30px 40px;
  gap: 30px;
}

.sidebar {
  width: 260px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.sidebar h3 { font-size: 18px; margin-bottom: 20px; font-weight: 700; }

.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

.category-item:hover { background: #f0f7f8; }

.category-item.active {
  background: #0f6ba8;
  color: white;
  font-weight: 600;
}

.category-name { display: flex; align-items: center; gap: 8px; }

.category-count {
  background: #e9ecef;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 12px;
}

.category-item.active .category-count {
  background: white;
  color: #0f9ca8;
}

.products { flex: 1; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

.card h4 { font-size: 15px; margin-bottom: 6px; }

.description {
  font-size: 11px;
  color: #555;
  margin-bottom: 10px;
  flex-grow: 1;
  word-break: break-word;
  overflow-wrap: break-word;
}

button {
  margin-top: auto;
  padding: 10px;
  background: #1ebe5d;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.hero {
  background: linear-gradient(120deg, #0f63a8, #0b3d88);
  color: white;
  padding: 60px 40px;
  text-align: center;
}

.hero h1 { font-size: 36px; margin-bottom: 15px; }

.hero p { font-size: 16px; margin-bottom: 25px; }

.hero button {
  padding: 12px 20px;
  margin-right: 10px;
  border: none;
  border-radius: 6px;
  background: #1ebe5d;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.btn-whatsapp {
  padding: 12px 20px;
  background: #25d366;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.benefits {
  display: flex;
  justify-content: space-around;
  padding: 40px;
  background: #ffffff;
  text-align: center;
  gap: 20px;
}

.footer {
  background-color: #0f63a8;
  color: #fff;
  margin-top: 40px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  margin-bottom: 20px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer-section a:hover {
  color: #fff;
}

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

.footer-section li {
  margin-bottom: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background-color: #0f63a8;
  font-size: 13px;
  color: #aaa;
}



.benefit { max-width: 250px; }

.benefit h3 { margin: 10px 0; }

@media(max-width: 900px){
  .benefits { flex-direction: column; align-items: center; }
  .container { flex-direction: column; }
  .sidebar { width: 100%; }
  .search input { width: 100%; margin-top: 10px; }
}