*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:    #1a7a4a;
  --green-dk: #145f39;
  --green-lt: #e8f5ee;
  --gold:     #f5a623;
  --gold-lt:  #fff8ed;
  --navy:     #0d1b2a;
  --navy-lt:  #1e3a5f;
  --gray:     #6b7280;
  --gray-lt:  #f3f4f6;
  --border:   #e5e7eb;
  --white:    #ffffff;
  --text:     #111827;
  --red:      #dc2626;
  --radius:   10px;
  --shadow:   0 2px 12px rgba(0,0,0,.08);
  --shadow-h: 0 6px 24px rgba(0,0,0,.14);
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── ANNOUNCE ── */
.announce {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
}
.announce a { color: var(--white); text-decoration: underline; margin-left: 8px; }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 44px; width: auto; }

.search-wrap { flex: 1; max-width: 560px; margin: 0 auto; position: relative; }
.search-wrap input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 44px;
  border: 2px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.search-wrap input:focus { border-color: var(--green); }
.search-wrap .icon-search {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
}

.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.header-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border-radius: var(--radius);
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  transition: background .15s, color .15s;
}
.header-btn:hover { background: var(--gray-lt); color: var(--text); }

.cart-btn {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.cart-btn:hover { background: var(--green-dk); }
.cart-count {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ── NAV ── */
nav { background: var(--navy); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-inner a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 4px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-inner a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-inner a.active { color: var(--gold); background: rgba(255,255,255,.07); }
.nav-sep { margin-left: auto; }
.nav-track { color: rgba(255,255,255,.6) !important; font-size: 13px !important; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-lt);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  font-size: 13px;
  color: var(--gray);
}
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SECTION COMMON ── */
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.section-title { font-size: 26px; font-weight: 800; color: var(--navy); }
.section-sub { font-size: 14px; color: var(--gray); margin-top: 4px; }
.see-all { font-size: 14px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px; }
.see-all:hover { text-decoration: underline; }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.tab {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--gray);
  background: var(--white);
  transition: all .2s;
}
.tab:hover { border-color: var(--green); color: var(--green); }
.tab.active { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }

.product-img {
  position: relative;
  background: var(--gray-lt);
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-img img { transform: scale(1.04); }

.badge-pix {
  position: absolute; top: 10px; left: 10px;
  background: var(--green); color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 4px 8px; border-radius: 6px; z-index: 1;
}
.badge-new {
  position: absolute; top: 10px; right: 10px;
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 4px 8px; border-radius: 6px; z-index: 1;
}
.badge-full {
  position: absolute; bottom: 10px; right: 10px;
  background: var(--navy); color: var(--white);
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 6px; z-index: 1;
}

.product-info { padding: 14px; }
.product-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--green); margin-bottom: 6px; }
.product-name {
  font-size: 14px; font-weight: 700; color: var(--text);
  line-height: 1.35; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-prices { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.price-old { font-size: 12px; color: var(--gray); text-decoration: line-through; }
.price-new { font-size: 20px; font-weight: 800; color: var(--navy); }
.price-pix { font-size: 11px; color: var(--green); font-weight: 600; background: var(--green-lt); padding: 2px 6px; border-radius: 4px; }
.price-pix-wrap { margin-bottom: 12px; }

.btn-buy {
  width: 100%; padding: 11px;
  background: var(--green); color: var(--white);
  border-radius: var(--radius); font-size: 14px; font-weight: 700;
  transition: background .2s;
}
.btn-buy:hover { background: var(--green-dk); }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy); padding: 36px 24px; }
.trust-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 14px; color: var(--white); }
.trust-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.trust-sub { font-size: 12px; color: rgba(255,255,255,.55); }

/* ── NEWSLETTER ── */
.newsletter { padding: 56px 24px; background: var(--gray-lt); text-align: center; }
.newsletter h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.newsletter p { font-size: 15px; color: var(--gray); margin-bottom: 28px; }
.nl-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.nl-form input {
  flex: 1; height: 48px; padding: 0 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s;
}
.nl-form input:focus { border-color: var(--green); }
.nl-form button {
  height: 48px; padding: 0 24px;
  background: var(--green); color: var(--white);
  border-radius: var(--radius); font-size: 14px; font-weight: 700; transition: background .2s;
}
.nl-form button:hover { background: var(--green-dk); }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 56px 24px 0; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 40px; width: auto; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-contact { margin-top: 20px; font-size: 13px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { color: rgba(255,255,255,.6); display: flex; align-items: flex-start; gap: 6px; }
.footer-contact a:hover { color: var(--white); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: var(--white); }
.footer-badges { display: flex; gap: 10px; align-items: center; }
.footer-badge { background: rgba(255,255,255,.08); border-radius: 6px; padding: 5px 12px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.7); display:inline-flex; align-items:center; gap:5px; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  background: #25d366; color: var(--white);
  width: 56px; height: 56px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 200; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .search-wrap { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
