:root {
  --bg: #f7efe6;
  --bg-soft: #fff8f1;
  --brown: #4a2511;
  --brown-2: #6b3418;
  --gold: #f2b24c;
  --gold-2: #ffd78a;
  --red: #cf2e2e;
  --green: #177245;
  --text: #2d1b12;
  --muted: #72594b;
  --card: rgba(255,255,255,0.88);
  --line: rgba(74,37,17,0.10);
  --shadow: 0 18px 45px rgba(74, 37, 17, 0.12);
  --shadow-soft: 0 10px 24px rgba(74,37,17,0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242,178,76,0.14), transparent 30%),
    linear-gradient(180deg, #fffaf4 0%, var(--bg) 100%);
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.top-strip {
  background: linear-gradient(90deg, var(--brown), var(--brown-2));
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.navbar-premium-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 18px 0;
  position: relative;
  z-index: 100;
}

.navbar-premium {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-soft);
  border-radius: 22px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 100;
}

.brand-premium {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(242,178,76,0.24);
  flex-shrink: 0;
  overflow: hidden;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.brand-text strong {
  display: block;
  color: var(--brown);
  font-size: 16px;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.nav-actions-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-btn-premium {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  background: rgba(74,37,17,0.08);
  color: var(--brown);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  padding: 34px 18px 40px;
  background:
    linear-gradient(135deg, rgba(74,37,17,0.97), rgba(107,52,24,0.93)),
    linear-gradient(120deg, #6b3418, #4a2511);
  color: white;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  box-shadow: var(--shadow);
   padding-bottom:60px; /* espaço pra sobreposição não cortar */
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.22;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  right: -80px;
  top: -100px;
}

.hero::after {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #fff, transparent 72%);
  left: -70px;
  bottom: -110px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  font-weight: 900;
  max-width: 700px;
}

.hero p {
  max-width: 620px;
  margin: 16px 0 22px;
  color: rgba(255,255,255,0.90);
  line-height: 1.7;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  border: none;
  border-radius: 16px;
  padding: 16px 22px;
  min-height: 54px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(180deg, #ea4141, var(--red));
  color: #fff;
  box-shadow: 0 14px 28px rgba(207,46,46,0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat {
  min-width: 145px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}

.stat strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.88);
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,178,76,0.55), transparent 70%);
  filter: blur(12px);
  animation: pulse 2.8s infinite ease-in-out;
}

.mock-mascot {
  position: relative;
  z-index: 2;
  width: min(95%, 390px);
  aspect-ratio: 1 / 1.05;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 24px 44px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(9px);
  animation: floaty 3s infinite ease-in-out;
}

.mock-mascot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mascot-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
}

.mascot-overlay strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 6px;
}

.mascot-overlay span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

.search-wrap{
  margin-top:24px;
  background:var(--card);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--shadow-soft);
  border-radius:22px;
  padding:14px;
}

.search-input{
  width:100%;
  min-height:54px;
  border-radius:16px;
  border:1px solid rgba(74,37,17,.10);
  background:rgba(255,255,255,.92);
  padding:14px 16px;
  font:inherit;
  color:var(--text);
  outline:none;
}

#area_busca{
  display:none;
  margin-top:14px;
}


.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 18px 120px;
}

.feature-bar{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;

  margin-top:-40px; /* 🔥 faz subir sobre o banner */
  position:relative;
  z-index:5;
}

.feature-card{
  background:#fff;
  border-radius:16px;
  padding:14px 18px;

  min-width:180px;
  max-width:220px;

  text-align:center;

  box-shadow:0 10px 25px rgba(0,0,0,0.08); /* sombra leve premium */
  transition:.25s ease;
}

/* efeito hover estilo iFood */
.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 35px rgba(0,0,0,0.12);
}

.feature-card strong{
  display:block;
  font-size:14px;
  color:#4a2511;
  margin-bottom:4px;
}

.feature-card span{
  font-size:12px;
  color:#777;
}
.section {
  margin-top: 34px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: var(--brown);
}

.section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.combos,
.products,
.category-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.combos {
  grid-template-columns: repeat(3, 1fr);
}

.products {
  grid-template-columns: repeat(4, 1fr);
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.combo-card,
.product-card,
.category-card,
.support-box {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border-radius: 26px;
  overflow: hidden;
}

.combo-cover,
.product-image {
  position: relative;
  overflow: hidden;
}

.combo-cover {
  height: 235px;
}

.product-image {
  height: 220px;
}

.combo-cover img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.combo-cover::after,
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.50));
}

.product-image::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.22));
}

.combo-label,
.save-label,
.product-tag {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  padding: 8px 11px;
}

.combo-label,
.product-tag {
  left: 14px;
  top: 14px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--brown);
}

.save-label {
  right: 14px;
  top: 14px;
  background: var(--red);
  color: #fff;
}

.combo-cover-text {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.combo-cover-text strong {
  display: block;
  font-size: 30px;
  line-height: 0.96;
  color: #fff;
  font-weight: 900;
  margin-bottom: 8px;
}

.combo-cover-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}

.combo-body,
.product-body,
.category-body,
.support-body {
  padding: 16px;
}

.combo-items {
  background: rgba(255,255,255,0.82);
  border: 1px dashed rgba(74,37,17,0.14);
  border-radius: 16px;
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.price-block small {
  display: block;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-block strong,
.product-footer strong {
  color: var(--red);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.full-btn,
.mini-btn,
.category-btn,
.support-btn {
  border: none;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: .18s ease;
  min-height: 48px;
  font-family: inherit;
}

.full-btn:hover,
.mini-btn:hover,
.category-btn:hover,
.support-btn:hover { transform: translateY(-2px); }

.full-btn {
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(180deg, #ea4141, var(--red));
  color: white;
  box-shadow: 0 14px 28px rgba(207,46,46,0.22);
  font-size: 13px;
}

.product-body h3,
.category-body h3,
.support-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: var(--brown);
}

.product-body p,
.category-body p,
.support-body p {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
  min-height: 44px;
  line-height: 1.55;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mini-btn {
  padding: 12px 16px;
  background: rgba(74,37,17,0.08);
  color: var(--brown);
  font-size: 12px;
}

.category-card {
  text-align: center;
}

.category-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  margin: 18px auto 0;
  font-size: 34px;
  box-shadow: 0 12px 24px rgba(242,178,76,0.2);
}

.category-btn {
  width: 100%;
  padding: 14px 16px;
  background: var(--brown);
  color: #fff;
  font-size: 13px;
}

.promo-row {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 8fr;
  gap: 18px;
}

.promo-box {
  background: linear-gradient(135deg, #fff5e4, #ffe8c8);
  border: 1px solid rgba(242,178,76,0.25);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.promo-box strong {
  display: block;
  color: var(--brown);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 900;
}

.promo-box span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.promo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.support-box {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 0;
  overflow: hidden;
}

.support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.support-btn {
  background: linear-gradient(180deg, #24c162, var(--green));
  color: #fff;
  padding: 14px 16px;
  width: 100%;
}

.footer-space {
  height: 40px;
}

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 1100px) {
  .hero-inner,
  .promo-row,
  .support-box { grid-template-columns: 1fr; }

  .feature-bar { grid-template-columns: repeat(2, 1fr); }
  .combos { grid-template-columns: repeat(2, 1fr); }
  .products,
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 320px; }
}

@media (max-width: 640px) {
  .feature-bar,
  .combos,
  .products,
  .category-grid { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero h1 { font-size: clamp(30px, 10vw, 46px); }
  .section-head h2 { font-size: 24px; }

  .product-image { height: 210px; }

  .nav-actions-premium {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .nav-btn-premium {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* ========= SACOLA NOVA ========= */

.bag-nav-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin-left:4px;
}

.bag-btn-premium{
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  min-height:44px !important;
  border:none !important;
  border-radius:13px !important;
  background:linear-gradient(180deg, #f7d36a, #f2b24c) !important;
  color:#4a2511 !important;
  box-shadow:0 8px 18px rgba(242,178,76,.20) !important;
  display:grid !important;
  place-items:center !important;
  position:relative !important;
  cursor:pointer !important;
  transition:.2s ease !important;
  padding:0 !important;
  overflow:visible !important;
}

.bag-btn-premium:hover{
  transform:translateY(-2px);
}

.bag-emoji{
  font-size:17px;
  line-height:1;
}

.bag-counter{
  position:absolute;
  top:-4px;
  right:-4px;
  min-width:18px;
  height:18px;
  border-radius:999px;
  background:#cf2e2e;
  color:#fff;
  font-size:9px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 4px;
  box-shadow:0 4px 10px rgba(207,46,46,.20);
}

.bag-overlay{
  position:fixed !important;
  inset:0 !important;
  background:rgba(0,0,0,.28) !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transition:.22s ease !important;
  z-index:9998 !important;
}

.bag-overlay.active{
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
}

/* ===== JANELA DA SACOLA NO FINAL DA PÁGINA ===== */

.bag-drawer-page{
  display:none;
  width:100%;
  max-width:520px;
  margin:40px auto 0 auto;
  background:#fffaf4;
  border:1px solid rgba(74,37,17,.08);
  border-radius:22px;
  box-shadow:0 18px 38px rgba(0,0,0,.12);
  overflow:hidden;
}

.bag-drawer-page.active{
  display:flex;
  flex-direction:column;
}

.bag-drawer-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid rgba(74,37,17,.08);
  background:linear-gradient(90deg, #4a2511, #6b3418);
  color:#fff;
}

.bag-drawer-header strong{
  font-size:18px;
  font-weight:900;
}

.bag-close-btn{
  width:34px;
  height:34px;
  border:none;
  border-radius:10px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
}

.bag-drawer-body{
  max-height:280px;
  overflow-y:auto;
  overflow-x:hidden;
  padding:12px;
  background:#fffaf4;
  scrollbar-width:thin;
  scrollbar-color:#c9a77a #f7efe6;
}

.bag-drawer-body::-webkit-scrollbar{
  width:8px;
}

.bag-drawer-body::-webkit-scrollbar-track{
  background:#f7efe6;
  border-radius:999px;
}

.bag-drawer-body::-webkit-scrollbar-thumb{
  background:#c9a77a;
  border-radius:999px;
}

.bag-items-list{
  list-style:none;
  padding:0;
  margin:0;
}

.bag-items-list li{
  margin-bottom:10px;
}

.bag-item-card{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid rgba(74,37,17,.08);
  border-radius:16px;
  padding:10px;
  box-shadow:0 6px 14px rgba(74,37,17,.05);
}

.bag-item-image{
  width:54px;
  height:54px;
  border-radius:12px;
  overflow:hidden;
  flex-shrink:0;
  background:#f6eee5;
}

.bag-item-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bag-item-content{
  flex:1;
  min-width:0;
}

.bag-item-title{
  display:block;
  color:#4a2511;
  font-size:13px;
  font-weight:900;
  line-height:1.3;
  margin-bottom:4px;
  word-break:break-word;
}

.bag-item-meta{
  font-size:11px;
  color:#72594b;
  line-height:1.4;
  word-break:break-word;
}

.bag-item-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
  flex-shrink:0;
}

.bag-item-price{
  font-size:12px;
  font-weight:900;
  color:#177245;
  white-space:nowrap;
}

.bag-remove-btn{
  border:none;
  background:rgba(207,46,46,.12);
  color:#cf2e2e;
  width:28px;
  height:28px;
  border-radius:8px;
  cursor:pointer;
  font-size:14px;
  display:grid;
  place-items:center;
}

.bag-drawer-footer{
  padding:14px 16px;
  border-top:1px solid rgba(74,37,17,.08);
  background:#fff;
}

.bag-subtotal-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
  color:#4a2511;
  font-size:14px;
}

.bag-subtotal-row strong{
  font-size:17px;
  font-weight:900;
}

.bag-checkout-btn{
  width:100%;
  min-height:46px;
  border-radius:12px;
  background:linear-gradient(180deg, #ea4141, #cf2e2e);
  color:#fff !important;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 10px 20px rgba(207,46,46,.18);
  font-size:13px;
}

.bag-empty{
  text-align:center;
  color:#72594b;
  font-size:13px;
  padding:24px 10px;
}

@media (max-width: 640px){
  .bag-drawer-page{
    max-width:100%;
    margin-top:30px;
  }

  .bag-drawer-body{
    max-height:240px;
  }
}

/* ===== TAGS DINÂMICAS DAS MAIS PEDIDAS ===== */

.product-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:8px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.2px;
  box-shadow:0 8px 18px rgba(0,0,0,.10);
  animation:tagFloat 2.8s ease-in-out infinite;
}

/* cores por tag */
.tag-best{
  background:linear-gradient(180deg, #ff6b35, #cf2e2e);
  color:#fff;
  animation:tagPulse 1.6s ease-in-out infinite;
}

.tag-premium{
  background:linear-gradient(180deg, #2d2d2d, #111);
  color:#ffd78a;
}

.tag-doce{
  background:linear-gradient(180deg, #ff8fab, #ff5d8f);
  color:#fff;
}

.tag-queridinha{
  background:linear-gradient(180deg, #ffd166, #f2b24c);
  color:#4a2511;
}

.tag-promocao{
  background:linear-gradient(180deg, #ef4444, #cf2e2e);
  color:#fff;
}

.tag-top{
  background:linear-gradient(180deg, #60a5fa, #2563eb);
  color:#fff;
}

.tag-especial{
  background:linear-gradient(180deg, #34d399, #059669);
  color:#fff;
}

.tag-imperdivel{
  background:linear-gradient(180deg, #c084fc, #7c3aed);
  color:#fff;
}

.tag-default{
  background:linear-gradient(180deg, var(--gold-2), var(--gold));
  color:var(--brown);
}

/* animações */
@keyframes tagFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-2px); }
}

@keyframes tagPulse{
  0%,100%{
    transform:scale(1);
    box-shadow:0 8px 18px rgba(207,46,46,.18);
  }
  50%{
    transform:scale(1.05);
    box-shadow:0 12px 24px rgba(207,46,46,.28);
  }
}

/* ===== FOOTER PREMIUM COMPLETO ===== */

.footer-premium{
  background:linear-gradient(180deg, #4a2511, #2b1409);
  color:#fff;
  margin-top:60px;
  padding-top:40px;
}

.footer-container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px 30px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
}

.footer-col h3{
  font-size:20px;
  margin-bottom:10px;
}

.footer-col h4{
  font-size:16px;
  margin-bottom:10px;
}

.footer-col p{
  font-size:13px;
  color:#ddd;
  line-height:1.6;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col ul li{
  font-size:13px;
  color:#ddd;
  margin-bottom:6px;
  line-height:1.5;
}

.footer-social{
  display:flex;
  gap:12px;
  margin-top:16px;
}

.footer-social a{
  width:42px;
  height:42px;
  border-radius:12px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  transition:.2s ease;
}

.footer-social a:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.16);
}

.footer-map{
  margin-top:14px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.footer-map iframe{
  width:100%;
  height:160px;
  border:0;
  display:block;
}

.trust-badge{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:14px;
  box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.trust-stars{
  font-size:18px;
  margin-bottom:6px;
}

.trust-text{
  font-size:13px;
  color:#f3e3cc;
  line-height:1.5;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.1);
  padding:15px;
  font-size:12px;
  color:#ccc;
}

/* RESPONSIVO */
@media (max-width: 900px){
  .footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 520px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer-map iframe{
    height:180px;
  }
}

.footer-map-btn{
  display:block;
  margin-top:10px;
  padding:10px;
  text-align:center;
  background:#cf2e2e;
  color:#fff;
  border-radius:10px;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  transition:.2s;
}

.footer-map-btn:hover{
  background:#a92323;
  transform:translateY(-2px);
}

/* ===== SACOLA POPUP PEQUENA ===== */

.bag-nav-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin-left:4px;
}

.bag-btn-premium{
  width:42px !important;
  height:42px !important;
  min-width:42px !important;
  min-height:42px !important;
  border:none !important;
  border-radius:12px !important;
  background:linear-gradient(180deg, #f7d36a, #f2b24c) !important;
  color:#4a2511 !important;
  box-shadow:0 8px 18px rgba(242,178,76,.20) !important;
  display:grid !important;
  place-items:center !important;
  position:relative !important;
  cursor:pointer !important;
  transition:.2s ease !important;
  padding:0 !important;
  overflow:visible !important;
}

.bag-btn-premium:hover{
  transform:translateY(-2px);
}

.bag-emoji{
  font-size:16px;
  line-height:1;
}

.bag-counter{
  position:absolute;
  top:-4px;
  right:-4px;
  min-width:18px;
  height:18px;
  border-radius:999px;
  background:#cf2e2e;
  color:#fff;
  font-size:9px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 4px;
  box-shadow:0 4px 10px rgba(207,46,46,.20);
}

.bag-popup{
  position:absolute;
  top:56px;
  right:0;
  width:320px;
  background:#fffaf4;
  border:1px solid rgba(74,37,17,.08);
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
  overflow:hidden;
  z-index:9999;

  opacity:0;
  visibility:hidden;
  transform:translateY(-8px);
  pointer-events:none;
  transition:.20s ease;
}

.bag-popup.active{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}

.bag-popup-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  background:linear-gradient(90deg, #4a2511, #6b3418);
  color:#fff;
}

.bag-popup-header strong{
  font-size:16px;
  font-weight:900;
}

.bag-close-btn{
  width:30px;
  height:30px;
  border:none;
  border-radius:10px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
}

.bag-popup-body{
  max-height:260px;
  overflow-y:auto;
  overflow-x:hidden;
  padding:10px;
  background:#fffaf4;
  scrollbar-width:thin;
  scrollbar-color:#c9a77a #f7efe6;
}

.bag-popup-body::-webkit-scrollbar{
  width:7px;
}

.bag-popup-body::-webkit-scrollbar-track{
  background:#f7efe6;
  border-radius:999px;
}

.bag-popup-body::-webkit-scrollbar-thumb{
  background:#c9a77a;
  border-radius:999px;
}

.bag-items-list{
  list-style:none;
  padding:0;
  margin:0;
}

.bag-items-list li{
  margin-bottom:10px;
}

.bag-item-card{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid rgba(74,37,17,.08);
  border-radius:14px;
  padding:10px;
  box-shadow:0 6px 14px rgba(74,37,17,.05);
}

.bag-item-image{
  width:48px;
  height:48px;
  border-radius:10px;
  overflow:hidden;
  flex-shrink:0;
  background:#f6eee5;
}

.bag-item-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bag-item-content{
  flex:1;
  min-width:0;
}

.bag-item-title{
  display:block;
  color:#4a2511;
  font-size:12px;
  font-weight:900;
  line-height:1.3;
  margin-bottom:4px;
  word-break:break-word;
}

.bag-item-meta{
  font-size:11px;
  color:#72594b;
  line-height:1.4;
  word-break:break-word;
}

.bag-item-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
  flex-shrink:0;
}

.bag-item-price{
  font-size:12px;
  font-weight:900;
  color:#177245;
  white-space:nowrap;
}

.bag-remove-btn{
  border:none;
  background:rgba(207,46,46,.12);
  color:#cf2e2e;
  width:26px;
  height:26px;
  border-radius:8px;
  cursor:pointer;
  font-size:13px;
  display:grid;
  place-items:center;
}

.bag-popup-footer{
  padding:12px 14px 14px;
  border-top:1px solid rgba(74,37,17,.08);
  background:#fff;
}

.bag-subtotal-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
  color:#4a2511;
  font-size:13px;
}

.bag-subtotal-row strong{
  font-size:16px;
  font-weight:900;
}

.bag-checkout-btn{
  width:100%;
  min-height:42px;
  border-radius:12px;
  background:linear-gradient(180deg, #ea4141, #cf2e2e);
  color:#fff !important;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 10px 20px rgba(207,46,46,.18);
  font-size:13px;
}

.bag-empty{
  text-align:center;
  color:#72594b;
  font-size:13px;
  padding:18px 10px;
}

@media (max-width: 640px){
  .bag-popup{
    width:290px;
    right:-10px;
  }
}

/* ===== INSTALAR APP PREMIUM ===== */

.install-app-box{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(380px, calc(100vw - 24px));
  display: none;
  align-items: center;
  gap: 14px;
  padding: 16px 16px 16px 12px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(74,37,17,.98), rgba(107,52,24,.96));
  color: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.08);
  z-index: 99999;
  overflow: hidden;
}

.install-app-box.show{
  display: flex;
  animation: installFloatIn .45s ease;
}

.install-app-box::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-40px;
  top:-40px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(242,178,76,.28), transparent 70%);
  pointer-events:none;
}

.install-close-btn{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.install-close-btn:hover{
  background: rgba(255,255,255,.18);
}

.install-mascot{
  width: 92px;
  min-width: 92px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  position: relative;
  z-index: 1;
}

.install-mascot img{
  width: 100%;
  height: auto;
  display:block;
  animation: mascotBounceInstall 2.8s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
}

.install-content{
  position: relative;
  z-index: 1;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.install-content strong{
  display:block;
  font-size:18px;
  line-height:1.1;
  font-weight:900;
}

.install-content span{
  display:block;
  font-size:13px;
  line-height:1.55;
  color: rgba(255,255,255,.88);
}

.install-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:4px;
}

.install-main-btn,
.install-later-btn{
  border:none;
  min-height:40px;
  padding:0 14px;
  border-radius:12px;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}

.install-main-btn:hover,
.install-later-btn:hover{
  transform: translateY(-2px);
}

.install-main-btn{
  background: linear-gradient(180deg, #f7d36a, #f2b24c);
  color:#4a2511;
  box-shadow: 0 10px 20px rgba(242,178,76,.18);
}

.install-later-btn{
  background: rgba(255,255,255,.10);
  color:#fff;
}

@keyframes installFloatIn{
  from{
    opacity:0;
    transform: translateY(18px) scale(.96);
  }
  to{
    opacity:1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mascotBounceInstall{
  0%,100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-6px);
  }
}

@media (max-width: 640px){
  .install-app-box{
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 12px;
    padding: 14px 14px 14px 10px;
    gap: 10px;
  }

  .install-mascot{
    width: 76px;
    min-width: 76px;
  }

  .install-content strong{
    font-size:16px;
  }

  .install-content span{
    font-size:12px;
  }
}

/* ===== AJUSTES MOBILE DA HOME ===== */

@media (max-width: 768px) {

  .navbar-premium-wrap{
    padding: 12px 12px 0;
  }

  .navbar-premium{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px;
    border-radius: 24px;
  }

  .brand-premium{
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  .brand-badge{
    width: 64px;
    height: 64px;
    border-radius: 18px;
    flex-shrink: 0;
  }

  .brand-badge img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
  }

  .brand-text{
    min-width: 0;
  }

  .brand-text strong{
    font-size: 18px;
    line-height: 1.05;
    display: block;
    word-break: break-word;
  }

  .brand-text span{
    font-size: 12px;
    line-height: 1.3;
    margin-top: 4px;
    display: block;
  }

  .nav-actions-premium{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    align-items: center;
    margin-left: 0;
  }

  .nav-btn-premium{
    width: 100%;
    min-width: 0;
    padding: 10px 8px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bag-nav-wrap{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .bag-btn-premium{
    margin: 0 auto;
  }

  .hero{
    margin-top: 12px;
    padding: 26px 14px 34px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }

  .hero-inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero h1{
    font-size: clamp(32px, 10vw, 54px);
    line-height: .98;
  }

  .hero p{
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn{
    width: 100%;
  }

  .hero-stats{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat{
    min-width: 0;
  }

  .mascote-box,
  .hero-visual{
    display: flex;
    justify-content: center;
    align-items: end;
    min-height: auto;
    margin-top: 10px;
  }

  .mascote-box img,
  .hero-visual img,
  .mock-mascot img{
    max-width: 260px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* cards abaixo do banner lado a lado */
  .feature-bar{
    margin-top: 18px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding-top: 0 !important;
  }

  .feature-card{
    min-width: 0 !important;
    max-width: none !important;
    padding: 14px 10px !important;
    border-radius: 18px !important;
  }

  .feature-card strong{
    font-size: 13px !important;
    line-height: 1.25;
    display: block;
  }

  .feature-card span{
    font-size: 11px !important;
    line-height: 1.45;
    display: block;
    margin-top: 6px;
  }

  .search-wrap{
    margin-top: 16px;
  }

  .combos,
  .products,
  .category-grid{
    grid-template-columns: 1fr !important;
  }

  .combo-cover,
  .product-image{
    height: 210px;
  }
}

@media (max-width: 420px) {

  .brand-premium{
    grid-template-columns: 58px 1fr;
    gap: 10px;
  }

  .brand-badge{
    width: 58px;
    height: 58px;
  }

  .brand-text strong{
    font-size: 16px;
  }

  .brand-text span{
    font-size: 11px;
  }

  .nav-actions-premium{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .nav-btn-premium{
    font-size: 11px;
    padding: 9px 6px;
    min-height: 42px;
  }

  .hero h1{
    font-size: clamp(28px, 9.6vw, 44px);
  }

  .feature-bar{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .feature-card{
    padding: 12px 8px !important;
  }

  .feature-card strong{
    font-size: 12px !important;
  }

  .feature-card span{
    font-size: 10.5px !important;
  }
}

/* ===== HOME MOBILE: CATEGORIAS LADO A LADO ===== */
@media (max-width: 768px){

  .category-grid{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    align-items: stretch !important;
  }

  .category-card{
    min-width: 0 !important;
    width: 100% !important;
    padding: 18px 12px !important;
    border-radius: 22px !important;
  }

  .category-icon{
    width: 86px !important;
    height: 86px !important;
    margin: 0 auto 14px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .category-icon img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 22px !important;
  }

  .category-body h3{
    font-size: 16px !important;
    line-height: 1.15 !important;
    text-align: center !important;
    margin-bottom: 8px !important;
  }

  .category-body p{
    font-size: 12px !important;
    line-height: 1.45 !important;
    text-align: center !important;
    margin-bottom: 12px !important;
  }

  .category-body small{
    display: block !important;
    margin-top: 4px !important;
  }

  .category-btn{
    width: 100% !important;
    min-height: 44px !important;
    font-size: 12px !important;
    border-radius: 14px !important;
    padding: 10px 8px !important;
  }
}

@media (max-width: 430px){
  .category-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .category-card{
    padding: 14px 10px !important;
  }

  .category-icon{
    width: 74px !important;
    height: 74px !important;
    margin-bottom: 12px !important;
  }

  .category-body h3{
    font-size: 15px !important;
  }

  .category-body p{
    font-size: 11px !important;
  }

  .category-btn{
    font-size: 11px !important;
    min-height: 40px !important;
  }
}