* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f4f6f8;
  color: #0f172a;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.vw-header { background: #fff; }

.vw-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.vw-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  cursor: pointer;
  color: #001e50;
  font-weight: 600;
}

.vw-menu-btn svg path { fill: #001e50; }

.vw-logo img { height: 44px; }

.vw-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vw-action, .vw-cart {
  background: none;
  border: none;
  cursor: pointer;
  color: #001e50;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vw-cart { position: relative; }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #001e50;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
}

.vw-divider { height: 2px; background: #001e50; }

.vw-search { padding: 16px 0; }

.vw-search input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

/* HERO */
.hero {
  position: relative;
  height: 70vh;
  background-image: url('./images/img-001.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 80, 0.65);
}

/* CATEGORIAS */
.categorias-scroll {
  background: #fff;
  padding: 40px 0;
}

.categorias-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.categoria-item {
  flex: 0 0 240px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}

.categoria-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.categoria-item span {
  display: block;
  padding: 14px;
  font-weight: 600;
  color: #001e50;
}

/* INSTITUCIONAL */
.institucional {
  background: #ffffff;
  padding: 80px 0;
}

.institucional-content { max-width: 920px; }

.institucional h2 {
  font-size: 28px;
  color: #000e26;
  margin-bottom: 20px;
}

.institucional p {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
}

/* VANTAGENS */
.vantagens {
  background: #f8fafc;
  padding: 80px 0;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.vantagem {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
}

/* FOOTER */
.footer {
  background: #001e50;
  color: #fff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 12px;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 16px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
}
