:root {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  
  --border: #e2e8f0;
  --border-active: #0284c7;
  
  --green: #16a34a;
  --green-bg: #dcfce7;
  
  --fire-orange: #f97316;
  --fire-red: #ef4444;
  --fire-bg: #ffedd5;
  
  --font-main: 'Outfit', sans-serif;
  --font-sub: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px -5px rgba(2, 132, 199, 0.08);
  --shadow-lg: 0 20px 30px -10px rgba(0,0,0,0.12);
  
  /* PALETA DE SOMBRAS NEON GLOW */
  --neon-glow: 0 0 15px rgba(2, 132, 199, 0.18), 0 0 30px rgba(2, 132, 199, 0.08);
  --neon-glow-active: 0 0 20px rgba(2, 132, 199, 0.4), 0 0 40px rgba(2, 132, 199, 0.2);
  --neon-green-glow: 0 0 18px rgba(22, 163, 74, 0.35);
  
  --marquee-height: 33px;
  --header-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

/* Trava de scroll quando modal/carrinho estiver aberto */
body.no-scroll {
  overflow: hidden !important;
  touch-action: none;
}

body {
  background-color: var(--bg-main);
  color: var(--text-body);
  padding-top: calc(var(--marquee-height) + var(--header-height) + 12px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   MARQUEE CONTÍNUO CORRIGIDO (SEM TEXTO DUPLICADO OU CORTE)
   ========================================================================== */
.top-marquee-bar {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  height: var(--marquee-height);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  will-change: transform;
}

.marquee-track span {
  display: inline-block;
  padding: 0 24px;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header Moderno */
.main-header {
  position: fixed; 
  top: var(--marquee-height); 
  left: 0; 
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 20px;
  width: 100%;
}

.brand-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.brand-text h2 { font-size: 24px; font-weight: 800; color: var(--primary); line-height: 1; }
.brand-text span { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--text-muted); }

.search-bar { flex: 1; max-width: 580px; position: relative; }
.search-bar input {
  width: 100%; padding: 12px 48px 12px 20px; border-radius: 99px;
  border: 1px solid var(--border); background: var(--bg-main);
  font-size: 14px; outline: none; transition: all 0.2s ease;
}
.search-bar input:focus { border-color: var(--primary); background: #fff; box-shadow: var(--neon-glow); }
.search-btn { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center; }

.cart-btn-header {
  background: var(--primary-light); border: 1px solid rgba(2, 132, 199, 0.3);
  padding: 8px 18px; border-radius: 99px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: all 0.25s ease;
  box-shadow: var(--neon-glow);
}
.cart-btn-header:hover, .cart-btn-header:active { background: var(--primary); color: #fff; box-shadow: var(--neon-glow-active); }
.cart-btn-header:hover .cart-title, .cart-btn-header:hover .cart-subtotal, .cart-btn-header:hover svg,
.cart-btn-header:active .cart-title, .cart-btn-header:active .cart-subtotal, .cart-btn-header:active svg { color: #fff; }

.cart-icon-wrapper { position: relative; color: var(--primary); display: flex; align-items: center; }
.cart-icon-wrapper .badge { position: absolute; top: -8px; right: -10px; background: var(--green); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 99px; }
.cart-label { display: flex; flex-direction: column; text-align: left; }
.cart-title { font-size: 10px; font-weight: 700; color: var(--text-muted); transition: color 0.2s ease; }
.cart-subtotal { font-size: 14px; font-weight: 800; color: var(--primary); transition: color 0.2s ease; }

/* Banners Principais Topo */
.banner-carousel-wrapper {
  position: relative; max-width: 1280px; margin: 16px auto 40px auto;
  height: 400px; border-radius: 24px; overflow: hidden; 
  box-shadow: var(--neon-glow); background: #fff;
  border: 1px solid rgba(2, 132, 199, 0.25);
}
.banner-slider { width: 100%; height: 100%; position: relative; }
.banner-item { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; display: block; }
.banner-item.active { opacity: 1; }
.banner-item img { width: 100%; height: 100%; object-fit: cover; }

.carousel-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.3s ease; }
.dot.active { background: var(--primary); width: 24px; border-radius: 99px; box-shadow: 0 0 10px var(--primary); }

/* ==========================================================================
   PAINEL DE DESTAQUES (AJUSTADO PARA DESKTOP E MOBILE)
   ========================================================================== */
.featured-section {
  margin: 40px 0;
  position: relative;
  width: 100%;
}

.section-title-wrapper { margin-bottom: 20px; }
.text-center { text-align: center; }

.featured-banner-carousel {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 48px;
}

.featured-slides-container {
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  padding: 4px;
}

.featured-slides-container .product-card {
  min-width: 100%;
  flex: 0 0 100%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  background: #ffffff;
  border-radius: 18px;
  border: 1.5px solid rgba(2, 132, 199, 0.4);
  position: relative;
  box-shadow: var(--neon-glow);
  will-change: transform;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.featured-slides-container .prod-img-box {
  width: 100%;
  height: 220px;
  aspect-ratio: auto;
  padding: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-slides-container .prod-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.featured-slides-container .product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--neon-glow-active);
}

.badge-fire { display: none !important; }

.featured-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.3);
  color: var(--primary);
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--neon-glow);
  z-index: 10;
  transition: all 0.25s ease;
}

.featured-nav-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--neon-glow-active);
}

.featured-nav-btn.prev-btn { left: 4px; }
.featured-nav-btn.next-btn { right: 4px; }

.featured-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.featured-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.featured-dots .dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 99px;
  box-shadow: 0 0 10px var(--primary);
}

/* Filtro Avançado */
.categories-section { margin-bottom: 40px; }
.filter-steps-indicator { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; overflow-x: auto; padding-bottom: 4px; }
.filter-steps-indicator::-webkit-scrollbar { display: none; }
.step-badge { font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 99px; background: var(--border); color: var(--text-muted); white-space: nowrap; }
.step-badge.active { background: var(--primary); color: #fff; box-shadow: var(--neon-glow); }
.step-arrow { color: var(--text-muted); font-weight: 700; }

.flex-between { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; gap: 16px; }
.btn-reset-filter { background: #fee2e2; color: #dc2626; border: none; padding: 8px 16px; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 12px; transition: background 0.2s; white-space: nowrap; }
.btn-reset-filter:hover { background: #fca5a5; }

.category-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px; }
.category-card {
  background: #fff; border: 1px solid rgba(2, 132, 199, 0.2); border-radius: 20px; padding: 14px;
  text-align: center; cursor: pointer; transition: all 0.25s ease; display: flex; flex-direction: column; align-items: center; gap: 10px;
  box-shadow: var(--neon-glow);
}
.category-card:hover, .category-card.active { border-color: var(--primary); box-shadow: var(--neon-glow-active); transform: translateY(-4px); }
.category-card.active { background: var(--primary-light); }

.cat-img-wrapper { width: 64px; height: 64px; border-radius: 14px; background: var(--bg-main); display: flex; align-items: center; justify-content: center; padding: 6px; overflow: hidden; }
.cat-img-wrapper img { width: 100%; height: 100%; object-fit: contain; }
.category-card h3, .category-card span { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.2; }

/* Subcategorias e Marcas */
.sub-wrapper, .brands-wrapper { margin-top: 24px; }
.subcategory-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
.subcategory-card {
  background: #fff; border: 1px solid rgba(2, 132, 199, 0.15); border-radius: 16px; padding: 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  cursor: pointer; transition: all 0.2s ease; box-shadow: var(--neon-glow);
}
.subcategory-card:hover, .subcategory-card.active { border-color: var(--primary); background: var(--primary-light); box-shadow: var(--neon-glow-active); transform: translateY(-2px); }
.subcat-img-wrapper { width: 48px; height: 48px; border-radius: 10px; background: var(--bg-main); display: flex; align-items: center; justify-content: center; padding: 4px; overflow: hidden; }
.subcat-img-wrapper img { width: 100%; height: 100%; object-fit: contain; }
.subcategory-card span { font-size: 12px; font-weight: 600; color: var(--text-dark); }

.brand-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; }
.brand-card-item {
  background: #fff; border: 1px solid rgba(2, 132, 199, 0.15); border-radius: 14px; padding: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; transition: all 0.2s ease; height: 70px; box-shadow: var(--neon-glow);
}
.brand-card-item:hover, .brand-card-item.active { border-color: var(--primary); box-shadow: var(--neon-glow-active); transform: translateY(-2px); }
.brand-card-item img { max-height: 32px; max-width: 80%; object-fit: contain; }
.brand-card-item span { font-size: 11px; font-weight: 700; color: var(--text-muted); }

/* Vitrine de Produtos */
.products-section { margin: 50px 0; }
.products-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.products-count { font-size: 13px; font-weight: 700; color: var(--text-muted); background: var(--border); padding: 4px 12px; border-radius: 99px; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.product-card {
  background: #fff; border: 1px solid rgba(2, 132, 199, 0.2); border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; transition: all 0.25s ease; position: relative;
  box-shadow: var(--neon-glow); cursor: pointer;
}
.product-card:hover { border-color: var(--primary); box-shadow: var(--neon-glow-active); transform: translateY(-4px); }

.prod-img-box {
  width: 100%; aspect-ratio: 1 / 1; height: auto; padding: 16px; background: #fff;
  display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid var(--border);
}
.prod-img-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.prod-code { position: absolute; top: 8px; left: 8px; background: var(--bg-main); color: var(--text-muted); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }

.prod-info { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.prod-brand { font-size: 10px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.prod-title { font-size: 14px; font-weight: 600; margin: 4px 0 12px 0; color: var(--text-dark); line-height: 1.3; min-height: 36px; }

.prod-price-box { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.price-val { font-size: 18px; font-weight: 800; color: var(--green); }
.pix-tag { font-size: 10px; font-weight: 700; color: var(--green); background: var(--green-bg); width: fit-content; padding: 2px 6px; border-radius: 4px; }

.btn-add-cart {
  width: 100%; margin-top: 12px; background: var(--primary); color: #fff; border: none;
  padding: 10px; border-radius: 10px; font-weight: 700; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-add-cart:hover, .btn-add-cart:active { background: var(--primary-dark); box-shadow: 0 0 12px rgba(2, 132, 199, 0.4); }

/* Formas de Pagamento Modernas */
.payments-section { margin: 60px 0; }
.payment-methods-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 32px; }
.payment-card {
  background: #ffffff; border: 1.5px solid rgba(2, 132, 199, 0.2); border-radius: 24px; padding: 28px 20px;
  text-align: center; position: relative; transition: all 0.3s ease; box-shadow: var(--neon-glow);
  display: flex; flex-direction: column; align-items: center;
}
.payment-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--neon-glow-active); }
.payment-card.highlight-card { border-color: var(--green); background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%); box-shadow: var(--neon-green-glow); }

.pulse-icon-wrapper {
  width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; position: relative; animation: pulse-glow 2s infinite ease-in-out;
}
.pix-glow { background: var(--green-bg); color: var(--green); }
.cash-glow { background: #e0f2fe; color: var(--primary); }
.card-glow { background: #fef3c7; color: #d97706; }
.link-glow { background: #f3e8ff; color: #9333ea; }

@keyframes pulse-glow {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.4); }
  70% { transform: scale(1.08); box-shadow: 0 0 0 14px rgba(2, 132, 199, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

.badge-off-pill { background: var(--green); color: #fff; font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 99px; margin-bottom: 12px; }
.badge-info-pill { background: var(--primary-light); color: var(--primary); font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 99px; margin-bottom: 12px; }
.payment-card h3 { font-size: 16px; margin-bottom: 8px; }
.payment-card p { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* Quem Somos Moderno */
.about-section-modern { margin: 70px 0; }
.about-hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.badge-header { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-light); color: var(--primary); font-size: 11px; font-weight: 800; padding: 6px 14px; border-radius: 99px; margin-bottom: 16px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px var(--primary); }
.about-title { font-size: 28px; line-height: 1.2; margin-bottom: 16px; }
.about-lead { font-size: 15px; color: var(--text-body); line-height: 1.6; margin-bottom: 24px; }

.pillars-grid { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.pillar-card { display: flex; align-items: flex-start; gap: 14px; background: #ffffff; padding: 16px; border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.pillar-icon { font-size: 24px; }
.pillar-card h4 { font-size: 14px; margin-bottom: 2px; }
.pillar-card p { font-size: 12px; color: var(--text-muted); }

.about-stats-bar { display: flex; align-items: center; background: #ffffff; padding: 20px; border-radius: 20px; border: 1px solid rgba(2, 132, 199, 0.2); box-shadow: var(--neon-glow); }
.stat-box { flex: 1; text-align: center; }
.stat-number { font-size: 24px; font-weight: 800; color: var(--primary); display: block; }
.stat-label { font-size: 11px; font-weight: 700; color: var(--text-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.visual-glass-container {
  height: 380px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 28px; padding: 24px; position: relative; box-shadow: var(--neon-glow-active); overflow: hidden;
}
.glass-banner-content { height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.experience-badge {
  background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3); padding: 16px 20px; border-radius: 20px; color: #fff;
  display: flex; align-items: center; gap: 14px; width: fit-content;
}
.experience-badge .big-num { font-size: 36px; font-weight: 800; line-height: 1; }
.experience-badge .badge-txt strong { display: block; font-size: 14px; letter-spacing: 1px; }
.experience-badge .badge-txt span { font-size: 10px; opacity: 0.8; letter-spacing: 1px; }

.floating-info-card { background: #ffffff; padding: 16px 20px; border-radius: 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); }

/* Localização */
.location-section { margin: 60px 0; }
.location-glass-card { display: grid; grid-template-columns: 1fr 1fr; border-radius: 28px; overflow: hidden; background: #fff; border: 1.5px solid rgba(2, 132, 199, 0.25); box-shadow: var(--neon-glow); }
.location-details { padding: 40px; }
.location-info-list { margin: 24px 0; display: flex; flex-direction: column; gap: 16px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; }
.info-icon { font-size: 20px; }

.qr-codes-container { display: flex; gap: 16px; margin-top: 24px; border-top: 1px solid var(--border); padding-top: 24px; }
.qr-card { flex: 1; border: 1px solid rgba(2, 132, 199, 0.2); padding: 12px; border-radius: 14px; display: flex; gap: 12px; align-items: center; background: var(--bg-main); box-shadow: var(--neon-glow); }
.qr-card img { width: 54px; height: 54px; border-radius: 8px; object-fit: contain; }
.qr-card a { font-size: 12px; color: var(--primary); font-weight: 700; text-decoration: none; display: block; }
.map-container { min-height: 300px; width: 100%; height: 100%; }

/* Modal */
.product-modal-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; z-index: 2500; opacity: 0; visibility: hidden; transition: all 0.3s ease; padding: 20px; pointer-events: none; }
.product-modal-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.product-modal-card { background: #fff; width: 100%; max-width: 800px; border-radius: 24px; position: relative; overflow: hidden; box-shadow: var(--neon-glow-active); border: 1px solid rgba(2, 132, 199, 0.3); transform: scale(0.95); transition: transform 0.3s ease; max-height: calc(90vh - 40px); display: flex; flex-direction: column; }
.product-modal-overlay.open .product-modal-card { transform: scale(1); }
.close-product-modal { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-main); border: 1px solid var(--border); font-size: 20px; color: var(--text-muted); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.2s; }
.close-product-modal:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }

.product-modal-body { display: grid; grid-template-columns: 1fr 1fr; overflow-y: auto; padding: 24px; gap: 24px; }
.modal-img-container { background: var(--bg-main); border-radius: 16px; padding: 20px; display: flex; align-items: center; justify-content: center; position: relative; border: 1px solid var(--border); min-height: 280px; }
.modal-img-container img { max-width: 100%; max-height: 280px; object-fit: contain; }
.modal-badge-pix { position: absolute; top: 12px; left: 12px; background: var(--green); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 99px; }

.modal-info-container { display: flex; flex-direction: column; }
.modal-prod-brand { font-size: 11px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.modal-prod-title { font-size: 20px; margin: 4px 0 16px 0; color: var(--text-dark); line-height: 1.2; }
.modal-price-box { background: var(--green-bg); padding: 12px 16px; border-radius: 12px; margin-bottom: 20px; }
.modal-price-pix { font-size: 24px; font-weight: 800; color: var(--green); display: block; }
.modal-price-sub { font-size: 11px; color: var(--green); font-weight: 700; }

.modal-description-wrapper { margin-bottom: 24px; flex: 1; }
.modal-description-wrapper h4 { font-size: 13px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
.modal-description-wrapper p { font-size: 14px; color: var(--text-body); line-height: 1.5; font-family: var(--font-sub); }
.modal-btn-buy { padding: 14px; font-size: 15px; border-radius: 12px; }

/* Carrinho Drawer */
.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.4); backdrop-filter: blur(4px); display: none; z-index: 2000; }
.cart-drawer-overlay.open { display: block; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 400px; max-width: 100%; height: 100%; background: #fff; z-index: 2001; transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; box-shadow: var(--neon-glow-active); }
.cart-drawer.open { right: 0; }

.cart-header { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-size: 16px; }
.cart-header span { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.close-drawer { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-muted); padding: 4px; }

.cart-progress-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; background: var(--bg-main); border-bottom: 1px solid var(--border); }
.progress-step { width: 24px; height: 24px; border-radius: 50%; background: var(--border); color: var(--text-muted); font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.progress-step.active { background: var(--primary); color: #fff; box-shadow: 0 0 10px var(--primary); }
.progress-line { flex: 1; height: 2px; background: var(--border); margin: 0 4px; transition: all 0.3s ease; }
.progress-line.active { background: var(--primary); }

.cart-body-view { flex: 1; padding: 20px; overflow-y: auto; }
.cart-step-content { display: none; }
.cart-step-content.active { display: block; }
.step-heading { font-size: 14px; margin-bottom: 16px; color: var(--text-dark); }

.items-scroll-list { display: flex; flex-direction: column; gap: 12px; }
.cart-item-row { display: flex; gap: 12px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.cart-item-row img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; border: 1px solid var(--border); background: #fff; }
.cart-item-details { flex: 1; }
.cart-item-details h5 { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.cart-item-details .unit-p { font-size: 12px; font-weight: 800; color: var(--green); display: block; }

.qtd-controls { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.qtd-controls button { width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--border); background: var(--bg-main); cursor: pointer; font-weight: 700; }
.btn-remove-item { background: none; border: none; color: #ef4444; font-size: 20px; cursor: pointer; padding: 4px; }

.option-cards-grid, .payment-grid { display: flex; flex-direction: column; gap: 10px; }
.option-card, .pay-card { cursor: pointer; position: relative; }
.option-card input, .pay-card input { position: absolute; opacity: 0; }

.card-inner, .pay-inner { border: 1px solid var(--border); padding: 12px; border-radius: 12px; display: flex; flex-direction: column; transition: all 0.2s; }
.option-card input:checked + .card-inner, .pay-card input:checked + .pay-inner { border-color: var(--primary); background: var(--primary-light); box-shadow: var(--neon-glow); }

.badge-off { font-size: 9px; font-weight: 800; color: var(--green); background: var(--green-bg); padding: 2px 6px; border-radius: 4px; width: fit-content; margin-bottom: 4px; }
.badge-credit { font-size: 9px; font-weight: 800; color: var(--text-muted); background: var(--border); padding: 2px 6px; border-radius: 4px; width: fit-content; margin-bottom: 4px; }

.inputs-group { display: flex; flex-direction: column; gap: 10px; }
.modern-field { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid var(--border); font-size: 14px; outline: none; background: #fff; }
.modern-field:focus { border-color: var(--primary); box-shadow: var(--neon-glow); }

.cart-footer-fixed { padding: 16px 20px; border-top: 1px solid var(--border); background: #fff; }
.cart-summary-mini { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 12px; }
.disc-text { color: var(--green); display: block; font-weight: 700; }
.total-highlight { text-align: right; }
.total-highlight strong { font-size: 18px; color: var(--green); display: block; line-height: 1; }

.cart-actions-row { display: flex; gap: 10px; }
.btn-step-nav { flex: 1; padding: 12px; border-radius: 10px; border: none; font-weight: 800; font-size: 13px; cursor: pointer; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 0 12px rgba(22, 163, 74, 0.3); }
.btn-secondary { background: var(--border); color: var(--text-dark); }

/* Rodapé Escuro */
.main-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 20px 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.brand-col h3 { color: #ffffff; font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.brand-col p { font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
.social-links-row { display: flex; gap: 12px; }
.social-links-row a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.08);
  color: #ffffff; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease;
}
.social-links-row a:hover { background: var(--primary); box-shadow: var(--neon-glow); }

.footer-col h4 { color: #ffffff; font-size: 15px; margin-bottom: 16px; }
.footer-links, .footer-info { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #ffffff; }
.footer-info li { font-size: 13px; line-height: 1.4; }

.accepted-payments { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-tag { background: rgba(255, 255, 255, 0.08); color: #ffffff; font-size: 11px; font-weight: 700; padding: 6px 10px; border-radius: 6px; }
.pay-tag.pix { background: var(--green); color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.dev-credits { color: #64748b; }

/* ==========================================================================
   REGRAS RESPONSIVAS (DISPOSITIVOS MÓVEIS)
   ========================================================================== */
@media (max-width: 768px) {
  :root { --header-height: auto; }
  body { padding-top: 125px; }

  .main-header { top: var(--marquee-height); padding: 8px 0; height: auto; }
  .header-container { flex-wrap: wrap; gap: 10px; }
  .brand-logo img { height: 32px; }
  .cart-btn-header { padding: 6px 12px; }
  .cart-title { display: none; }
  .cart-subtotal { font-size: 12px; }

  .search-bar { order: 3; width: 100%; max-width: 100%; margin-top: 2px; }
  .banner-carousel-wrapper { height: 160px; margin: 12px auto 24px auto; border-radius: 16px; }

  /* Destaque no Mobile */
  .featured-banner-carousel {
    max-width: 100%;
    padding: 0 36px;
  }

  .featured-slides-container {
    min-height: auto;
    border-radius: 16px;
  }

  .featured-slides-container .prod-img-box {
    height: 160px;
    padding: 8px;
  }

  .featured-slides-container .prod-title {
    font-size: 13px;
    min-height: auto;
    margin-bottom: 6px;
  }

  .featured-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .featured-nav-btn.prev-btn { left: 0; }
  .featured-nav-btn.next-btn { right: 0; }

  /* Outras seções no Mobile */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .visual-glass-container { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cart-drawer { width: 100%; }
}
/* ============================================================
   MEGA CENTER — MOBILE / PWA PREMIUM
   ============================================================ */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-x: none;
}

img {
  max-width: 100%;
}

/* =========================
   PRODUTOS
   ========================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.prod-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.prod-img-box {
  overflow: hidden;
}

.prod-img-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

/* =========================
   BOTÃO VER MAIS
   ========================= */

.load-more-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-load-more {
  border: 0;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-load-more small {
  opacity: .65;
  font-size: 11px;
}

.btn-load-more:active {
  transform: scale(.96);
}

/* =========================
   DESTAQUE MODERNO
   ========================= */

.featured-section {
  overflow: hidden;
}

.featured-banner-carousel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.featured-slides-container {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
}

.featured-modern-card {
  width: 100%;
  min-height: 420px;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  border-radius: 28px;
  cursor: pointer;
  position: relative;
}

.featured-modern-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.featured-modern-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.38),
    transparent
  );
  pointer-events: none;
}

.featured-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 35px;
}

.featured-top-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  font-size: 12px;
  font-weight: 900;
}

.featured-code {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 11px;
}

.featured-modern-content {
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.featured-brand {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .65;
}

.featured-modern-content h3 {
  margin: 10px 0 22px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.08;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.featured-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.featured-price-label {
  font-size: 11px;
  font-weight: 800;
  opacity: .6;
}

.featured-price strong {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1;
}

.featured-benefit {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 800;
}

.featured-buy-btn {
  margin-top: 24px;
  min-height: 52px;
  border: 0;
  border-radius: 15px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  cursor: pointer;
}

.featured-buy-btn span {
  font-size: 22px;
}

.featured-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
}

.featured-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: all .25s ease;
}

.featured-dot.active {
  width: 26px;
  border-radius: 999px;
}

/* =====================================================
   PWA - BARRA DE INSTALAÇÃO
   ===================================================== */

.pwa-install-bar {
  position: fixed !important;

  right: 20px !important;
  bottom: 20px !important;
  left: auto !important;

  width: 360px;
  max-width: calc(100vw - 40px);

  z-index: 999999 !important;

  display: none !important;
  align-items: center;
  gap: 12px;

  padding: 12px 14px;

  border-radius: 18px;

  background: #ffffff;
  color: #222;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, .20);

  transform: translateY(140%);
  transition: transform .35s ease;
}

.pwa-install-bar.show {
  display: flex !important;
  transform: translateY(0) !important;
}

/* Ícone */

.pwa-install-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #f1f5f9;
}

/* Texto */

.pwa-install-info {
  flex: 1;
  min-width: 0;
}

.pwa-install-info strong {
  display: block;

  font-size: 13px;
  line-height: 1.2;

  color: #222;
}

.pwa-install-info span {
  display: block;

  margin-top: 3px;

  font-size: 10px;
  line-height: 1.2;

  color: #777;
}

/* Botão instalar */

#btn-install-pwa {
  position: relative !important;

  display: block !important;

  min-height: 40px;

  padding: 0 15px;

  border: 0;
  border-radius: 11px;

  background: #0d6efd;
  color: #fff;

  font-size: 12px;
  font-weight: 800;

  cursor: pointer;

  white-space: nowrap;

  box-shadow: 0 4px 12px rgba(13, 110, 253, .25);
}

/* Fechar */

.pwa-close {
  width: 26px;
  height: 26px;

  flex-shrink: 0;

  border: 0;
  background: transparent;

  color: #777;

  font-size: 20px;

  cursor: pointer;
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 767px) {

  .pwa-install-bar {
    left: 10px !important;
    right: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;

    width: auto;
    max-width: none;

    padding: 10px;

    border-radius: 16px;

    gap: 8px;
  }

  .pwa-install-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .pwa-install-info strong {
    font-size: 11px;
  }

  .pwa-install-info span {
    font-size: 8px;
  }

  #btn-install-pwa {
    min-height: 38px;
    padding: 0 11px;

    font-size: 11px;
  }

  .pwa-close {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }
}
/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card {
    border-radius: 16px;
  }

  .prod-info {
    padding: 10px;
  }

  .prod-title {
    font-size: 13px;
    line-height: 1.25;
    min-height: 33px;
  }

  .prod-brand {
    font-size: 10px;
  }

  .price-val {
    font-size: 15px;
  }

  .pix-tag {
    font-size: 8px;
    line-height: 1.2;
  }

  .btn-add-cart {
    width: 100%;
    min-height: 42px;
    padding: 8px 7px;
    font-size: 11px;
  }

  .prod-code {
    font-size: 8px;
  }

  /* DESTAQUE MOBILE */

  .featured-section {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .featured-modern-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 22px;
  }

  .featured-modern-image {
    width: 100%;
    min-height: 260px;
    height: 260px;
  }

  .featured-modern-image img {
    padding: 22px;
  }

  .featured-top-badge {
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    font-size: 9px;
  }

  .featured-modern-content {
    padding: 22px 18px 18px;
  }

  .featured-modern-content h3 {
    font-size: 21px;
    margin: 7px 0 15px;
    -webkit-line-clamp: 2;
  }

  .featured-price strong {
    font-size: 27px;
  }

  .featured-benefit {
    font-size: 11px;
    margin-top: 12px;
  }

  .featured-buy-btn {
    margin-top: 17px;
    min-height: 48px;
    font-size: 13px;
  }

  .featured-nav-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .featured-banner-carousel {
    padding: 0;
  }

  /* PWA */

  .pwa-install-bar {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 10px;
    gap: 7px;
  }

  .pwa-install-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 18px;
  }

  .pwa-install-info strong {
    font-size: 11px;
  }

  .pwa-install-info span {
    font-size: 8px;
  }

  #btn-install-pwa {
    min-height: 38px;
    padding: 0 11px;
    font-size: 11px;
  }

  .pwa-close {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }

}

/* iPhones com notch */
@supports (padding: max(0px)) {

  body {
    padding-bottom: env(safe-area-inset-bottom);
  }

}

/* =========================================================
   MEGA CENTER — AJUSTE MOBILE FINAL
   ========================================================= */

/* Nunca permitir conteúdo horizontal escapar da tela */
html,
body,
main,
section,
header,
footer,
.container,
.app-content {
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

/* =========================================================
   LOCALIZAÇÃO — SEM CORTES NO CELULAR
   ========================================================= */

.location-section,
.location-section .container,
.location-glass-card,
.location-details,
.location-info-list,
.info-row,
.info-row > div,
.qr-codes-container,
.qr-card,
.map-container {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.location-glass-card {
  width: 100%;
  overflow: hidden;
}

.location-details {
  width: 100%;
}

.location-info-list {
  width: 100%;
}

.info-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-row > div {
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.info-row p,
.location-details p,
.location-details h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.qr-codes-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.qr-card {
  min-width: 0;
  width: 100%;
}

.qr-card img {
  max-width: 100%;
  height: auto;
}

.map-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
}

/* =========================================================
   BOTÃO INSTALAR APP
   ========================================================= */

.install-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #0d6efd, #0757c9);
  color: #fff;
  box-shadow: 0 7px 18px rgba(13,110,253,.25);
  white-space: nowrap;
  cursor: pointer;
}

@media (max-width: 680px) {

  .header-container {
    grid-template-columns:
      minmax(0, 1fr)
      auto
      auto !important;
  }

  .brand-logo {
    overflow: hidden;
  }

  .brand-logo img {
    max-width: 125px;
  }

  .cart-btn-header {
    width: 44px;
    min-width: 44px;
  }

  .install-app-btn {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
  }

  .install-app-btn span {
    display: none;
  }

  .location-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .location-glass-card {
    border-radius: 18px;
  }

  .location-details {
    padding: 18px 14px;
  }

  .location-details h2 {
    font-size: 21px;
    line-height: 1.2;
  }

  .info-row {
    gap: 8px;
  }

  .info-row p {
    font-size: 13px;
    line-height: 1.45;
  }

  .qr-codes-container {
    grid-template-columns: 1fr;
  }

  .qr-card {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .map-container {
    min-height: 280px;
  }

  .map-container iframe {
    min-height: 280px;
  }

  .featured-add-cart {
    min-height: 52px;
    font-size: 14px;
  }
}

/* iPhone pequeno */
@media (max-width: 380px) {

  .header-container {
    gap: 6px;
  }

  .brand-logo img {
    max-width: 110px;
  }

  .cart-btn-header,
  .install-app-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .featured-add-cart {
    min-height: 50px;
    font-size: 13px;
  }
}

/* =========================================================
   CORREÇÃO FINAL — LOCALIZAÇÃO MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .location-glass-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .location-details {
    width: 100%;
    padding: 20px 16px;
  }

  .location-info-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .info-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .info-icon {
    flex: 0 0 24px;
    width: 24px;
    text-align: center;
  }

  .info-row > div {
    min-width: 0;
    flex: 1;
  }

  .info-row p,
  .info-row span,
  .info-row strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.45;
  }

  .qr-codes-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .qr-card {
    width: 100%;
    min-width: 0;
  }

  .map-container {
    width: 100%;
    min-height: 280px;
    height: 280px;
  }

  .map-container iframe {
    width: 100%;
    height: 280px;
    min-height: 280px;
    display: block;
    border: 0;
  }
}

.featured-add-cart {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  padding: 13px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 0;
  border-radius: 16px;

  background: linear-gradient(
    135deg,
    #0284c7 0%,
    #0369a1 100%
  );

  color: #fff;

  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 800;

  opacity: 1;
  visibility: visible;

  box-shadow:
    0 10px 24px rgba(2,132,199,.28),
    inset 0 1px 0 rgba(255,255,255,.25);

  cursor: pointer;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.featured-add-cart:hover {
  filter: brightness(1.08);
  box-shadow:
    0 14px 30px rgba(2,132,199,.35),
    inset 0 1px 0 rgba(255,255,255,.25);
}

.featured-add-cart:active {
  transform: scale(.97);
}

.featured-add-cart svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .featured-add-cart {
    min-height: 54px;
    margin-top: 16px;
    border-radius: 15px;
    font-size: 14px;
  }
}

/* =========================================================
   CATEGORIAS — CARROSSEL ESTILO APP
   ========================================================= */

#categories-cards-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;

    gap: 14px !important;

    padding: 8px 4px 18px !important;

    width: 100% !important;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
}

#categories-cards-container::-webkit-scrollbar {
    display: none;
}

/* Cada categoria */

#categories-cards-container .category-card {
    flex: 0 0 82px !important;

    width: 82px !important;
    min-width: 82px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    gap: 7px !important;

    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    cursor: pointer;

    scroll-snap-align: start;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

/* Imagem da categoria */

#categories-cards-container .cat-img-wrapper {
    width: 68px !important;
    height: 68px !important;

    min-width: 68px !important;

    border-radius: 50% !important;

    overflow: hidden !important;

    display: grid !important;
    place-items: center !important;

    background: #f3f4f6 !important;

    border: 2px solid transparent;

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;

    box-sizing: border-box;
}

/* Imagem */

#categories-cards-container .cat-img-wrapper img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    display: block;
}

/* Ícone quando não existe imagem */

#categories-cards-container .cat-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background: #f1f3f5;
}

/* Nome */

#categories-cards-container .category-card h3 {
    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    font-size: 11px !important;

    line-height: 1.25 !important;

    font-weight: 700 !important;

    text-align: center !important;

    white-space: normal !important;

    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Categoria selecionada */

#categories-cards-container
.category-card.active
.cat-img-wrapper {

    border-color: #0d6efd !important;

    box-shadow:
        0 0 0 3px rgba(13, 110, 253, .10) !important;

    transform: scale(1.04);
}

#categories-cards-container
.category-card.active h3 {

    color: #0d6efd !important;
}

/* Toque */

#categories-cards-container
.category-card:active {

    transform: scale(.95);
}

/* Desktop */

@media (min-width: 768px) {

    #categories-cards-container .category-card {
        flex-basis: 92px !important;
        width: 92px !important;
        min-width: 92px !important;
    }

    #categories-cards-container .cat-img-wrapper {
        width: 76px !important;
        height: 76px !important;
    }

    #categories-cards-container .category-card h3 {
        font-size: 12px !important;
    }
}

/* =========================================================
   CATEGORIAS — IMAGEM 100% CIRCULAR
   ========================================================= */

#categories-cards-container .cat-img-wrapper {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    min-height: 68px !important;

    border-radius: 50% !important;

    overflow: hidden !important;

    padding: 0 !important;

    display: block !important;

    position: relative !important;

    background: #f3f4f6 !important;

    box-sizing: border-box !important;
}

#categories-cards-container .cat-img-wrapper img {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    object-fit: cover !important;

    border-radius: 50% !important;
}

/* Quando não houver imagem */

#categories-cards-container .cat-placeholder {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    border-radius: 50% !important;

    display: grid !important;
    place-items: center !important;
}

/* Categoria selecionada */

#categories-cards-container
.category-card.active
.cat-img-wrapper {

    border: 2px solid #0d6efd !important;

    box-shadow:
        0 0 0 3px rgba(13, 110, 253, .12) !important;
}

/* =========================================================
   PAGAMENTOS — ESTILO CARROSSEL DE APP
   ========================================================= */

.payments-section {
    overflow: hidden;
}

.payment-methods-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;

    gap: 14px !important;

    padding: 8px 4px 20px !important;

    width: 100% !important;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
}

.payment-methods-grid::-webkit-scrollbar {
    display: none;
}

/* Cards */

.payment-methods-grid .payment-card {
    flex: 0 0 calc(88% - 7px) !important;

    width: calc(88% - 7px) !important;
    min-width: calc(88% - 7px) !important;

    box-sizing: border-box !important;

    scroll-snap-align: center;

    border-radius: 22px !important;

    padding: 24px 20px !important;

    min-height: 230px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

/* Ícone */

.payment-methods-grid .pulse-icon-wrapper {
    flex-shrink: 0;
}

/* Título */

.payment-methods-grid .payment-card h3 {
    margin-top: 14px;
    margin-bottom: 8px;
}

/* Descrição */

.payment-methods-grid .payment-card p {
    margin: 0;
    line-height: 1.5;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .payments-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .payments-section .section-title-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .payments-section .section-title {
        font-size: 24px;
        line-height: 1.15;
    }

    .payments-section .section-subtitle {
        font-size: 12px;
        line-height: 1.5;
    }

    .payment-methods-grid {
        margin-left: -4px;
        margin-right: -4px;

        padding-left: 8px !important;
        padding-right: 8px !important;

        gap: 12px !important;
    }

    .payment-methods-grid .payment-card {
        flex: 0 0 88% !important;

        width: 88% !important;
        min-width: 88% !important;

        min-height: 220px;

        padding: 22px 18px !important;

        border-radius: 22px !important;
    }

    .payment-methods-grid .payment-card h3 {
        font-size: 18px;
    }

    .payment-methods-grid .payment-card p {
        font-size: 12px;
    }

}

/* =========================================================
   DESKTOP — MANTÉM OS CARDS LADO A LADO
   ========================================================= */

@media (min-width: 768px) {

    .payment-methods-grid {
        display: grid !important;

        grid-template-columns:
            repeat(4, minmax(0, 1fr)) !important;

        overflow: visible !important;

        scroll-snap-type: none;

        padding: 8px 0 20px !important;
    }

    .payment-methods-grid .payment-card {
        width: auto !important;
        min-width: 0 !important;
    }

}