body {
  margin: 0;
  font-family: system-ui, sans-serif;
}

.web-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
}

.web-btn-login,
.web-btn-menu {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-weight: 600;
}

.web-hero {
  padding: 32px 16px;
  background: #f5f5f5;
}

.web-seccion {
  padding: 16px;
}

.web-categoria {
  padding: 16px;
}

.web-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.web-card {
  min-width: 160px;
}

.web-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.web-footer {
  text-align: center;
  padding: 16px;
  color: #666;
}

.web-hero {
  position: relative;
  padding: 80px 16px;
  text-align: center;
  color: #fff;

  background-image: url('/uploads/web/hero.png');
  background-size: cover;
  background-position: center;
}

/* overlay oscuro para legibilidad */
.web-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.web-hero > * {
  position: relative;
  z-index: 1;
}
