/* ================================================================
   CENTER IMPRESSORAS — main.css v4.0 PREMIUM
   Cores: #005092 · #29cfb2 · #f20621
   Upgrade visual: animações, gradientes, microinterações premium
   ================================================================ */

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

:root {
  /* ── BRAND ── */
  --blue:        #005092;
  --blue-dark:   #003a6b;
  --blue-mid:    #185fa5;
  --blue-light:  #e6f1fb;
  --teal:        #29cfb2;
  --teal-dark:   #1a9e88;
  --teal-bg:     #e1f9f5;
  --red:         #f20621;
  --red-dark:    #c0041a;
  --red-bg:      #fff0f1;
  /* ── GRAYS ── */
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-300:    #d1d5db;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --gray-900:    #111827;
  /* ── SEMANTIC ── */
  --amber:       #f59e0b;
  --green:       #16a34a;
  --green-light: #f0fdf4;
  /* ── GRADIENTS ── */
  --grad-blue:   linear-gradient(135deg, #003166 0%, #005092 60%, #0b6bbf 100%);
  --grad-teal:   linear-gradient(135deg, #1a9e88 0%, #29cfb2 100%);
  --grad-hero:   linear-gradient(135deg, #001228 0%, #002a5c 50%, #003d7a 100%);
  --grad-card:   linear-gradient(145deg, #ffffff 0%, #f6f9ff 100%);
  /* ── SHADOWS ── */
  --shadow-xs:   0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.04);
  --shadow-xl:   0 20px 25px rgba(0,0,0,.10), 0 8px 10px rgba(0,0,0,.04);
  --shadow-card: 0 2px 8px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
  --shadow-card-hover: 0 18px 40px rgba(0,80,146,.2), 0 6px 14px rgba(0,0,0,.08), 0 0 0 1.5px rgba(0,80,146,.14);
  --shadow-blue: 0 6px 20px rgba(0,80,146,.3);
  --shadow-teal: 0 6px 20px rgba(41,207,178,.3);
  /* ── RADIUS ── */
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-btn: 50px;
  /* ── LAYOUT ── */
  --container: 1280px;
  /* ── TRANSITIONS ── */
  --t:        .2s ease;
  --t-slow:   .4s ease;
  --t-spring: .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── SCROLL BEHAVIOR ──────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

/* ── BASE ─────────────────────────────────────────────────── */
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px; line-height: 1.65; color: var(--gray-900);
  background: #edf1f7; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media(max-width:640px) { .container { padding: 0 16px; } }

/* ── KEYFRAMES ────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bounce-in {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
@keyframes skeleton {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── TOP BAR ──────────────────────────────────────────────── */
.top-bar {
  background: linear-gradient(135deg, #001228 0%, #002555 40%, #003d7a 75%, #001a3d 100%);
  padding: 7px 0; position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(41,207,178,.15);
}
.top-bar-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.top-bar-ticker {
  flex: 1; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: inline-flex; white-space: nowrap;
  animation: ticker 30s linear infinite;
  color: rgba(255,255,255,.82); font-size: 12px; font-weight: 500;
  gap: 0;
}
.ticker-track:hover { animation-play-state: paused; }
.top-bar-links { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.top-bar-links a {
  color: rgba(255,255,255,.72); font-size: 12px;
  display: flex; align-items: center; gap: 4px;
  transition: color var(--t); white-space: nowrap;
}
.top-bar-links a:hover { color: var(--teal); }
.top-bar-links a i { font-size: 13px; }
@media(max-width:640px) {
  .top-bar-inner { padding: 0 16px; }
  .top-bar-links a span { display: none; }
  .top-bar-links { gap: 12px; }
}

/* ── HEADER SEARCH ────────────────────────────────────────── */
.header-search {
  background: #fff; padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 34px; z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: box-shadow var(--t-slow);
}
.header-search.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.header-search-inner { display: flex; align-items: center; gap: 16px; }

/* LOGO */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img.logo-img { height: 42px; width: auto; object-fit: contain; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--grad-blue);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 21px; flex-shrink: 0;
  transition: transform var(--t-spring), box-shadow var(--t);
  box-shadow: var(--shadow-blue);
}
.logo:hover .logo-mark { transform: scale(1.1) rotate(-5deg); }
.logo-mark-sm { width: 32px; height: 32px; font-size: 16px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-sub  { font-family: 'Sora', sans-serif; font-size: 9px; font-weight: 700; color: var(--teal-dark); letter-spacing: 1.2px; text-transform: uppercase; }
.logo-main { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 800; color: var(--blue); letter-spacing: -.3px; }

/* SEARCH */
.search-wrap { flex: 1; max-width: 640px; position: relative; }
.search-input {
  width: 100%; height: 46px;
  border: 2px solid var(--gray-200); border-radius: var(--r-btn);
  padding: 0 52px 0 20px; font-size: 14px; color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  outline: none;
}
.search-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,80,146,.08);
  background: #fff;
}
.search-input::placeholder { color: var(--gray-400); }
.search-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: var(--grad-blue); border: none; border-radius: 50px;
  color: #fff; font-size: 15px; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform var(--t-spring), box-shadow var(--t);
  box-shadow: var(--shadow-blue);
}
.search-btn:hover { transform: translateY(-50%) scale(1.1); }

/* HEADER ACTIONS */
.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 6px 9px; border-radius: var(--r-sm);
  color: var(--gray-500); font-size: 10.5px; font-weight: 600;
  transition: background var(--t), color var(--t), transform var(--t-spring);
  position: relative; text-decoration: none;
}
.action-btn i { font-size: 22px; }
.action-btn:hover { background: var(--gray-100); color: var(--blue); transform: translateY(-2px); }
.action-btn.minha-area {
  background: var(--blue-light); color: var(--blue);
  border-radius: var(--r-btn); padding: 7px 16px;
  flex-direction: row; gap: 6px; font-size: 12.5px; font-weight: 700;
}
.action-btn.minha-area:hover {
  background: var(--grad-blue); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-blue);
}
.action-btn.minha-area i { font-size: 17px; }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--red); color: #fff; font-size: 9.5px; font-weight: 800;
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-badge.bump { animation: bounce-in .35s ease; }

/* SEARCH SUGGESTIONS */
.search-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,.14); z-index: 999;
  overflow: hidden; display: none;
  animation: fadeSlideUp .2s ease;
}
.suggest-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  font-size: 13px; color: var(--gray-700);
  transition: background var(--t); text-decoration: none;
}
.suggest-item:hover { background: var(--blue-light); color: var(--blue); }
.suggest-item img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; background: var(--gray-100); flex-shrink: 0; }
.suggest-item .s-price { color: var(--teal-dark); font-weight: 700; margin-left: auto; font-size: 12px; white-space: nowrap; }

@media(max-width:700px) {
  .header-search-inner { flex-wrap: wrap; gap: 10px; }
  .search-wrap { order: 3; flex: 1 0 100%; max-width: 100%; }
  .logo-text { display: none; }
  .action-btn span { display: none; }
  .action-btn.minha-area span { display: none; }
  .action-btn.minha-area { padding: 7px 10px; }
}

/* ── NAV MENU ─────────────────────────────────────────────── */
.nav-menu {
  background: linear-gradient(90deg, #002a5c 0%, #004890 50%, #002a5c 100%);
  position: sticky; top: 78px; z-index: 998; overflow: visible !important;
  box-shadow: 0 3px 14px rgba(0,0,0,.18);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; position: relative; overflow: visible;
}
.nav-list {
  display: flex; align-items: center; width: 100%;
  list-style: none; overflow: visible; scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-spacer { flex: 1; min-width: 4px; }
.nav-item {
  display: flex; align-items: center; gap: 5px; padding: 13px 14px;
  white-space: nowrap; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t);
  text-decoration: none; flex-shrink: 0;
  background: transparent; border-top: none; border-left: none; border-right: none;
  cursor: pointer; -webkit-appearance: none; appearance: none;
}
.nav-item i { font-size: 15px; }
.nav-item:hover, .nav-item.active {
  background: rgba(255,255,255,.1); color: #fff;
  border-bottom-color: var(--teal);
}
.nav-highlight {
  background: linear-gradient(135deg, #1a9e88, #29cfb2);
  color: #002d1f !important; font-weight: 700;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  border-bottom-color: transparent !important;
  box-shadow: 0 -3px 14px rgba(41,207,178,.25);
}
.nav-highlight:hover { background: linear-gradient(135deg, #29cfb2, #3de8cc) !important; }
.nav-hamburger {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0;
  color: #fff; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-sm);
  font-size: 22px; cursor: pointer; flex-shrink: 0;
  transition: background var(--t);
}
.nav-hamburger:hover { background: rgba(255,255,255,.22); }

/* NAV DROPDOWN */
.nav-has-dropdown { position: relative; }
.nav-dropdown { display: none; }
.nav-dropdown.open { display: block; animation: fadeSlideUp .18s ease; }
.nav-dd-inner { display: grid; grid-template-columns: 1fr; padding: 6px; min-width: 220px; }
.nav-dd-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: var(--r-sm);
  font-size: 13px; color: var(--gray-700);
  transition: background var(--t), color var(--t); text-decoration: none;
}
.nav-dd-item:hover, .nav-dd-item.active { background: var(--blue-light); color: var(--blue); }
.nav-dd-item i { font-size: 15px; color: var(--blue); flex-shrink: 0; }
.nav-dd-ver-todos {
  border-top: 1px solid var(--gray-100); margin-top: 4px; padding-top: 11px;
  font-weight: 600; color: var(--teal-dark);
}
.nav-arrow { font-size: 12px !important; transition: transform var(--t); margin-left: 2px; }

@media(max-width:768px) {
  body.nav-mobile-open { overflow: hidden; }
  .nav-menu { top: 0; z-index: 999; }
  .nav-inner { min-height: 50px; padding: 0 14px; justify-content: space-between; }
  .nav-hamburger { display: inline-flex; margin-left: auto; }
  .nav-list {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: calc(100% + 8px); left: 12px; right: 12px; width: auto;
    background: #fff; padding: 8px;
    border: 1px solid var(--gray-200); border-radius: var(--r-md);
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
    z-index: 9999; overflow-y: auto; max-height: calc(100dvh - 68px);
    -webkit-overflow-scrolling: touch;
  }
  .nav-list.open { display: flex !important; animation: fadeSlideUp .2s ease; }
  .nav-inner { position: relative; }
  .nav-spacer { display: none; }
  .nav-item {
    width: 100%; min-height: 44px; padding: 11px 12px; border: 0;
    border-radius: var(--r-sm); color: var(--gray-800);
    justify-content: flex-start; white-space: normal;
  }
  .nav-item i { color: var(--blue); font-size: 18px; }
  .nav-item:hover, .nav-item.active { background: var(--blue-light); color: var(--blue); border: 0; }
  .nav-highlight { margin-top: 4px; border-radius: var(--r-sm); background: var(--teal-bg); color: var(--teal-dark) !important; box-shadow: none; }
  .nav-highlight:hover { background: var(--teal) !important; color: #00362d !important; }
  .nav-has-dropdown { width: 100%; flex-direction: column; }
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb-wrap { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 8px 0; }
.breadcrumb { display: flex; align-items: center; gap: 4px; font-size: 12px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.bc-link { color: var(--blue); }
.bc-link:hover { text-decoration: underline; }
.bc-sep { color: var(--gray-300); font-size: 10px; }
.bc-current { color: var(--gray-500); }

/* FLASH */
.flash-wrap { margin-top: 6px; }
.flash { display: flex; align-items: center; gap: 8px; padding: 11px 16px; border-radius: var(--r-sm); margin-bottom: 10px; font-size: 13.5px; font-weight: 500; animation: fadeSlideUp .3s ease; }
.flash-success { background: var(--green-light); border-left: 4px solid var(--green); color: #15803d; }
.flash-error, .flash-danger { background: var(--red-bg); border-left: 4px solid var(--red); color: var(--red-dark); }
.flash-info { background: var(--blue-light); border-left: 4px solid var(--blue); color: var(--blue-dark); }
.flash-warning { background: #fffbeb; border-left: 4px solid var(--amber); color: #92400e; }

/* ── PROMO POPUP ──────────────────────────────────────────── */
.promo-popup {
  position: fixed; bottom: 24px; left: 24px; z-index: 99998;
  background: #fff; border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  width: 280px; overflow: hidden;
  animation: fadeSlideUp .4s ease;
}
.promo-popup-hd { padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; color: #fff; font-size: 13px; font-weight: 700; }
.promo-popup-close { background: none; border: none; color: rgba(255,255,255,.8); font-size: 20px; cursor: pointer; line-height: 1; padding: 0; }
.promo-popup-body { padding: 16px; }
.promo-popup-body p { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 10px; }
.promo-popup-badge { background: var(--blue-light); color: var(--blue); font-family: 'Sora', sans-serif; font-weight: 800; font-size: 17px; text-align: center; padding: 8px; border-radius: var(--r-sm); margin-bottom: 10px; letter-spacing: 1px; }

/* ── LAYOUT MAIN ──────────────────────────────────────────── */
.main-wrap { max-width: var(--container); margin: 0 auto; padding: 28px 24px 48px; }
@media(max-width:640px) { .main-wrap { padding: 16px 16px 36px; } }
main#main-content { min-height: 50vh; }

/* ── SECTION TITLE ────────────────────────────────────────── */
.section-title {
  font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--gray-900);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px; position: relative;
}
.section-title::after { content: ''; flex: 1; height: 2px; background: linear-gradient(90deg, var(--blue-light) 0%, transparent 100%); border-radius: 2px; }
.section-title-icon { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--grad-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.section-title-sub { font-size: 13px; font-weight: 500; color: var(--gray-400); margin-left: auto; font-family: 'DM Sans', sans-serif; }
.section-title-sub a { color: var(--blue); }
.section-title-sub a:hover { text-decoration: underline; }

/* ── PRODUCT GRID ─────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 32px; }
@media(max-width:1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:768px)  { .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; } }
@media(max-width:360px)  { .product-grid { gap: 8px !important; } }

/* ── PRODUCT CARD — premium ───────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1.5px solid rgba(0,0,0,.06);
  overflow: hidden;
  transition: transform var(--t-spring), box-shadow var(--t-slow), border-color var(--t);
  position: relative; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
/* ponytail: lift no hover é o único sinal de "isso é clicável" — sem shine decorativo cruzando o card */
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0,80,146,.18);
}

/* BADGES */
.product-badges { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.badge { padding: 3px 10px; border-radius: 20px; font-size: 9.5px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; line-height: 1.6; }
.badge-mais-vendido, .badge-bestseller { background: linear-gradient(135deg, #c0041a, #f20621); color: #fff; box-shadow: 0 2px 8px rgba(242,6,33,.3); }
.badge-novo  { background: linear-gradient(135deg, #1a9e88, #29cfb2); color: #003322; box-shadow: 0 2px 8px rgba(41,207,178,.3); }
.badge-promo { background: linear-gradient(135deg, #e25800, #ff7a00); color: #fff; box-shadow: 0 2px 8px rgba(255,100,0,.3); }
.badge-destaque { background: var(--grad-blue); color: #fff; }

/* WISH (FAVORITO) */
.product-wish {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.92);
  border: 1.5px solid var(--gray-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t-spring);
  backdrop-filter: blur(6px);
}
.product-wish:hover { background: var(--red-bg); border-color: var(--red); color: var(--red); transform: scale(1.15); }
.product-wish.ativo { background: var(--red-bg); border-color: var(--red); color: var(--red); }
.product-wish.ativo i { animation: bounce-in .35s ease; }

/* PRODUCT IMAGE */
.product-img {
  height: 200px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; flex-shrink: 0;
}
.product-img img {
  max-height: 170px; max-width: 90%; width: auto; height: auto;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.product-card:hover .product-img img { transform: scale(1.07); }
.product-img-link { display: block; }
.product-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: var(--gray-100); color: var(--gray-300); font-size: 48px;
}

/* PRODUCT BODY — espaçamento por proximidade: cada margem reflete o quanto os elementos
   pertencem ao mesmo grupo (identidade → confiança → preço), não um gap uniforme */
.product-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; position: relative; z-index: 2; }
.product-brand { font-size: 10.5px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 2px; }
.product-name { font-size: 13.5px; font-weight: 700; color: var(--gray-800); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }
.product-name-link:hover .product-name { color: var(--blue); }

/* TRUST ROW — avaliação + estoque lidos como um único bloco de confiança, separado do nome e do preço */
.product-trust-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.product-stars { display: flex; align-items: center; gap: 4px; }
.stars { font-size: 13px; letter-spacing: 1px; color: var(--amber); }
.reviews-count { font-size: 11px; color: var(--gray-400); }

/* STOCK */
.stock-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 6px; }
.stock-in  { background: var(--green-light); color: #15803d; }
.stock-low { background: #fffbeb; color: #92400e; }
.stock-out { background: var(--gray-100); color: var(--gray-500); }
.stock-in i, .stock-low i, .stock-out i { font-size: 10px; }

/* PRICE BLOCK — zona própria, empurrada para o fim do card (alinha preços entre cards da grade) */
.price-block { margin-top: auto; }
.price-old { font-size: 11.5px; color: var(--gray-400); text-decoration: line-through; }
.price-current {
  font-family: 'Sora', sans-serif;
  font-size: 23px; font-weight: 800;
  color: var(--blue-dark); letter-spacing: -.5px; line-height: 1.1;
}
.price-pix {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--green); font-weight: 600;
  background: var(--green-light); padding: 2px 8px; border-radius: 4px; margin-top: 4px;
}
.price-pix strong { font-weight: 700; }
.price-parcela { font-size: 11px; color: var(--gray-400); margin-top: 2px; }

/* QTY CONTROL */
.qty-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-label { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.qty-ctrl { display: flex; align-items: center; gap: 4px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  color: var(--gray-700); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t); line-height: 1;
}
.qty-btn:hover { background: var(--blue-light); color: var(--blue); border-color: var(--blue); }
.qty-val { width: 30px; text-align: center; font-size: 14px; font-weight: 700; color: var(--gray-900); }

/* ADD TO CART */
.btn-add-cart {
  width: 100%; padding: 10px 12px; margin-top: 8px;
  background: linear-gradient(135deg, #004480, #005092, #0b6bbf);
  background-size: 200% auto;
  color: #fff; font-size: 12.5px; font-weight: 700;
  border: none; border-radius: var(--r-btn); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background-position .4s ease, transform var(--t-spring), box-shadow var(--t);
  box-shadow: 0 4px 14px rgba(0,80,146,.25);
  position: relative; overflow: hidden;
}
.btn-add-cart::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transition: left .5s ease;
}
.btn-add-cart:hover::after { left: 140%; }
.btn-add-cart:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,80,146,.35); }
.btn-add-cart:active { transform: translateY(0); }
.btn-add-cart:disabled { background: var(--gray-300); box-shadow: none; cursor: not-allowed; transform: none; }

/* SPINNER */
.spinner { width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; display: inline-block; animation: spin .6s linear infinite; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: var(--r-btn);
  font-size: 13.5px; font-weight: 700; cursor: pointer;
  border: none; transition: transform var(--t-spring), box-shadow var(--t), background var(--t);
  text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .5s ease;
}
.btn:hover::after { left: 140%; }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,80,146,.38); }
.btn-teal { background: var(--grad-teal); color: #002d1f; box-shadow: var(--shadow-teal); }
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(41,207,178,.42); }
.btn-danger { background: linear-gradient(135deg, #c0041a, #f20621); color: #fff; box-shadow: 0 4px 14px rgba(242,6,33,.3); }
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,6,33,.42); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue-light); }
.btn-white { background: #fff; color: var(--blue); box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.btn-white:hover { background: var(--gray-50); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.16); }
.btn-sm  { padding: 7px 16px; font-size: 12.5px; }
.btn-lg  { padding: 14px 32px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.btn-outline::after, .btn-white::after { display: none; }

/* ── HERO SLIDER ──────────────────────────────────────────── */
.hero-slider {
  position: relative; overflow: hidden;
  height: var(--hero-current-h, 420px);
  border-radius: var(--r-xl); margin-bottom: 28px;
  box-shadow: 0 10px 36px rgba(0,0,0,.18);
}
.hero-slide {
  position: absolute; inset: 0;
  background: var(--grad-hero);
  min-height: var(--hero-h, 420px);
  display: flex; align-items: center;
  opacity: 0; transition: opacity .65s ease; overflow: hidden;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.hero-slide.active .hero-bg { transform: scale(1.04); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,18,48,.82) 0%, rgba(0,36,76,.58) 50%, rgba(0,70,130,.22) 100%);
}
.hero-inner {
  position: relative; z-index: 3; width: 100%;
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px;
}
.hero-content { max-width: 600px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(41,207,178,.18); border: 1px solid rgba(41,207,178,.4);
  color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: .6px;
  padding: 4px 12px; border-radius: 20px; text-transform: uppercase; margin-bottom: 14px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 800;
  color: #fff; line-height: 1.12; letter-spacing: -.5px;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
  margin-bottom: 14px;
}
.hero-desc { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 24px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-rows: repeat(3, auto); gap: 14px; }
.hero-stat {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: 14px 20px; border-radius: var(--r-md); text-align: center;
  backdrop-filter: blur(8px); min-width: 120px;
}
.hero-stat-num { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: var(--teal); line-height: 1; }
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,.75); margin-top: 4px; font-weight: 500; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), transform var(--t-spring);
  backdrop-filter: blur(6px);
}
.slider-btn:hover { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 10; }
.sdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s ease; border: none; }
.sdot.active { background: var(--teal); width: 22px; border-radius: 4px; }

/* ── CATEGORY GRID ────────────────────────────────────────── */
.cats-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; margin-bottom: 32px; }
.cat-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 8px 14px;
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--r-md);
  font-size: 12px; font-weight: 600; color: var(--gray-700); text-align: center;
  text-decoration: none; transition: all var(--t-spring);
  box-shadow: var(--shadow-sm);
}
.cat-item:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue); transform: translateY(-5px); box-shadow: var(--shadow-blue); }
.cat-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  transition: background var(--t), transform var(--t-spring);
}
.cat-item:hover .cat-icon { background: var(--blue); color: #fff; transform: scale(1.12) rotate(-6deg); }
.cat-count { font-size: 10px; color: var(--gray-700); font-weight: 600; background: var(--gray-100); padding: 2px 7px; border-radius: 10px; }
@media(max-width:1024px) { .cats-grid { grid-template-columns: repeat(4, 1fr); } }
@media(max-width:640px)  { .cats-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; } }
@media(max-width:380px)  { .cats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── BANNER ROW ───────────────────────────────────────────── */
.banner-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.banner-card {
  border-radius: var(--r-xl); padding: 30px 28px 26px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform var(--t-spring), box-shadow var(--t);
}
.banner-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,.22); }
.banner-blue { background: linear-gradient(135deg, #001e4a 0%, #003a80 60%, #0060b8 100%); color: #fff; }
.banner-teal { background: linear-gradient(135deg, #00251a 0%, #005c42 60%, #29cfb2 100%); }
.banner-teal h3, .banner-teal p { color: #fff; }
.banner-card h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; position: relative; z-index: 2; }
.banner-card p  { font-size: 13px; line-height: 1.6; opacity: .85; position: relative; z-index: 2; margin-bottom: 6px; }
.banner-blue p  { color: rgba(255,255,255,.8); }
.banner-card .btn { position: relative; z-index: 2; }
.banner-deco { position: absolute; top: 16px; right: 24px; font-family: 'Sora', sans-serif; font-size: 60px; font-weight: 900; opacity: .06; line-height: 1; pointer-events: none; color: currentColor; }
@media(max-width:768px) { .banner-row { grid-template-columns: 1fr; } }

/* ── BRANDS BAR ───────────────────────────────────────────── */
.brands-bar { background: #fff; border-radius: var(--r-lg); border: 1.5px solid var(--gray-200); padding: 24px 32px; margin-bottom: 32px; }
.brands-title { font-size: 11px; font-weight: 700; color: var(--gray-400); letter-spacing: .8px; text-transform: uppercase; text-align: center; margin-bottom: 20px; }
.brands-grid { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.brand-pill {
  display: flex; align-items: center; gap: 7px; padding: 10px 20px; border-radius: var(--r-btn);
  border: 1.5px solid var(--gray-200); background: var(--gray-50);
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 800; color: var(--gray-600);
  transition: all var(--t-spring); text-decoration: none;
}
.brand-pill i { color: var(--blue); font-size: 16px; }
.brand-pill:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); transform: translateY(-3px); box-shadow: var(--shadow-blue); }

/* ── SOCIAL PROOF ─────────────────────────────────────────── */
.social-proof { margin-bottom: 32px; }
.review-summary { display: flex; align-items: center; gap: 8px; }
.review-nota { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 800; color: var(--amber); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.review-card {
  background: #fff; border-radius: var(--r-lg); padding: 32px 28px;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t);
  display: flex; flex-direction: column; gap: 0;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-hd { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; font-family: 'Sora', sans-serif; }
.review-name { font-size: 15px; font-weight: 700; color: var(--gray-900); }
.review-date { font-size: 12px; color: var(--gray-400); margin-top: 3px; }
.review-text { font-size: 14px; color: var(--gray-600); line-height: 1.75; margin: 0; }
.review-verified { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--teal-dark); background: var(--teal-bg); padding: 5px 12px; border-radius: 6px; margin-top: 16px; align-self: flex-start; }
@media(max-width:768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── SKELETON LOADING ─────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 400px 100%; animation: skeleton 1.2s ease-in-out infinite;
  border-radius: var(--r-sm);
}
.skeleton-card  { height: 320px; }
.skeleton-title { height: 20px; width: 60%; margin-bottom: 10px; }
.skeleton-text  { height: 14px; width: 90%; margin-bottom: 8px; }

/* ── TABS ─────────────────────────────────────────────────── */
.tabs-wrap { border-bottom: 2px solid var(--gray-200); margin-bottom: 24px; display: flex; gap: 0; overflow-x: auto; }
.tab-btn { padding: 10px 18px; font-size: 13.5px; font-weight: 600; color: var(--gray-500); background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; transition: color var(--t), border-color var(--t); margin-bottom: -2px; }
.tab-btn:hover { color: var(--blue); }
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .2s ease; }

/* ── FORMS ────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-control {
  width: 100%; height: 44px;
  border: 1.5px solid var(--gray-300); border-radius: var(--r-sm);
  padding: 0 14px; font-size: 14px; color: var(--gray-900);
  background: #fff; transition: border-color var(--t), box-shadow var(--t); outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,80,146,.08); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { height: auto; padding: 12px 14px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-hint  { font-size: 11.5px; color: var(--gray-400); margin-top: 4px; }
.form-error { font-size: 11.5px; color: var(--red); margin-top: 4px; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:640px) { .form-row { grid-template-columns: 1fr; } }

/* ── CARDS GERAIS ─────────────────────────────────────────── */
.card { background: #fff; border-radius: var(--r-lg); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); overflow: hidden; padding: 22px; }
.card-header { padding: 18px 22px; border-bottom: 1px solid var(--gray-100); font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; color: var(--gray-900); display: flex; align-items: center; gap: 10px; }
.card-header i { color: var(--blue); font-size: 18px; }
.card-body { padding: 22px; }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); display: none; align-items: center; justify-content: center; z-index: 99999; padding: 20px; backdrop-filter: blur(4px); }
.modal-box { background: #fff; border-radius: var(--r-xl); box-shadow: 0 30px 80px rgba(0,0,0,.3); max-width: 480px; width: 100%; animation: fadeSlideUp .3s ease; }
.modal-header { padding: 20px 24px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 16px; }
.modal-close { background: none; border: none; font-size: 20px; color: var(--gray-400); cursor: pointer; transition: color var(--t); }
.modal-close:hover { color: var(--gray-900); }
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--gray-100); display: flex; gap: 10px; justify-content: flex-end; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #0a1628 0%, #060e1c 100%);
  color: rgba(255,255,255,.72); margin-top: 52px;
}
.footer-top { padding: 54px 0 42px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,.65);
  transition: all var(--t-spring); text-decoration: none;
}
.footer-social a:hover { background: var(--teal); color: #002d1f; transform: translateY(-3px) scale(1.1); border-color: var(--teal); }
.footer-col-title { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); transition: color var(--t); }
.footer-links a:hover { color: var(--teal); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-contact li i { color: var(--teal); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: var(--teal); }
.footer-seals { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.seal { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 6px 10px; border-radius: var(--r-sm); font-size: 10.5px; color: rgba(255,255,255,.6); font-weight: 600; }
.seal i { color: var(--teal); font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-pgtos { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-pgtos span { font-size: 12px; color: rgba(255,255,255,.4); }
.pgto-icons { display: flex; gap: 6px; }
.pgto-badge { display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.65); }
.pgto-badge i { font-size: 12px; }
.pgto-mp { font-size: 12px; color: rgba(255,255,255,.4); }
.pgto-mp strong { color: rgba(255,255,255,.6); }
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,.3); }

@media(max-width:1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media(max-width:640px)  { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-bottom-inner { flex-direction: column; align-items: flex-start; } }
@media(max-width:380px)  { .footer-grid { grid-template-columns: 1fr; } }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 9997; }
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--t-spring), box-shadow var(--t);
  position: relative;
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 12px 32px rgba(37,211,102,.6); }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; background: rgba(37,211,102,.4); animation: pulse-ring 2.2s ease-out infinite; }
.wa-bubble {
  position: absolute; right: 68px; bottom: 8px;
  background: #fff; border-radius: var(--r-lg) var(--r-lg) 0 var(--r-lg);
  padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--gray-800);
  white-space: nowrap; box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
.wa-bubble::after { content: ''; position: absolute; right: -8px; bottom: 0; border: 8px solid transparent; border-bottom-color: #fff; border-right: 0; }

/* ── PAGINATION ───────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; align-items: center; margin-top: 32px; flex-wrap: wrap; }
.page-btn {
  min-width: 38px; height: 38px; padding: 0 10px;
  border-radius: var(--r-sm); border: 1.5px solid var(--gray-200);
  background: #fff; color: var(--gray-700); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all var(--t);
}
.page-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.page-btn.active { background: var(--grad-blue); color: #fff; border-color: transparent; box-shadow: var(--shadow-blue); }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── EMPTY STATE ──────────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray-400); }
.empty-state i { font-size: 52px; color: var(--gray-300); margin-bottom: 14px; display: block; }
.empty-state h3 { font-size: 18px; color: var(--gray-600); margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* ── ALERTS ───────────────────────────────────────────────── */
.alert { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; border-radius: var(--r-sm); font-size: 13.5px; margin-bottom: 16px; }
.alert i { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.alert-info    { background: var(--blue-light); border: 1px solid rgba(0,80,146,.2); color: var(--blue-dark); }
.alert-success { background: var(--green-light); border: 1px solid rgba(22,163,74,.2); color: #15803d; }
.alert-warning { background: #fffbeb; border: 1px solid rgba(245,158,11,.2); color: #92400e; }
.alert-danger  { background: var(--red-bg); border: 1px solid rgba(242,6,33,.2); color: var(--red-dark); }

/* ── CHECKOUT STEPS ───────────────────────────────────────── */
.checkout-steps { display: flex; margin-bottom: 32px; overflow: hidden; border-radius: var(--r-btn); background: var(--gray-100); }
.checkout-step { flex: 1; padding: 12px 16px; text-align: center; font-size: 12px; font-weight: 600; color: var(--gray-400); display: flex; align-items: center; justify-content: center; gap: 6px; }
.checkout-step.active { background: var(--grad-blue); color: #fff; }
.checkout-step.done { background: var(--green-light); color: var(--green); }

/* ── PRODUCT DETAIL ───────────────────────────────────────── */
.product-detail { background: #fff; border-radius: var(--r-xl); padding: 32px; box-shadow: var(--shadow-md); }
.product-gallery { display: flex; gap: 14px; }
.thumb-list { display: flex; flex-direction: column; gap: 8px; }
.thumb-item { width: 70px; height: 70px; border: 2px solid var(--gray-200); border-radius: var(--r-sm); overflow: hidden; cursor: pointer; transition: border-color var(--t); }
.thumb-item.active, .thumb-item:hover { border-color: var(--blue); }
.thumb-item img { width: 100%; height: 100%; object-fit: contain; }
.main-photo { flex: 1; border-radius: var(--r-lg); overflow: hidden; background: var(--gray-50); }
.main-photo img { width: 100%; object-fit: contain; max-height: 420px; }

/* ── CARRINHO ─────────────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table td, .cart-table th { padding: 16px 12px; border-bottom: 1px solid var(--gray-100); }
.cart-table th { font-size: 12px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.cart-item-meta { font-size: 12px; color: var(--gray-400); margin-top: 3px; }
.order-summary { background: var(--gray-50); border-radius: var(--r-lg); padding: 24px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--gray-200); }
.summary-row:last-child { border: none; font-size: 16px; font-weight: 800; color: var(--blue-dark); }
.frete-gratis-badge { background: linear-gradient(135deg, var(--green), #22c55e); color: #fff; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }

/* ── UTILS ────────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-muted   { color: var(--gray-500); }
.text-primary { color: var(--blue); }
.text-teal    { color: var(--teal-dark); }
.text-danger  { color: var(--red); }
.text-success { color: var(--green); }
.text-sm      { font-size: 12.5px; }
.fw-bold      { font-weight: 700; }
.fw-semibold  { font-weight: 600; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media(max-width:640px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.rounded { border-radius: var(--r-md); }
.rounded-full { border-radius: 999px; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.hidden  { display: none !important; }
.visible { visibility: visible; }

/* ── MOBILE CARD OVERRIDES ────────────────────────────────── */
@media(max-width:768px) {
  .product-card { min-width: 0 !important; overflow: hidden !important; }
  .product-img  { height: 130px !important; }
  .product-img img { max-height: 110px !important; }
  .product-body { padding: 10px !important; }
  .product-name { font-size: 12px !important; line-height: 1.35 !important; }
  .price-current { font-size: 16px !important; }
  .price-old, .price-pix { font-size: 10px !important; }
  .badge { font-size: 8px !important; padding: 2px 6px !important; }
  .product-badges { max-width: calc(100% - 40px) !important; }
  .product-wish { width: 28px !important; height: 28px !important; top: 6px !important; right: 6px !important; }
  .btn-add-cart { padding: 8px 6px !important; font-size: 11px !important; }
  .qty-btn { width: 24px !important; height: 24px !important; }
  .qty-val { width: 26px !important; }
  .main-wrap { padding: 16px 12px !important; }
  .section-title { font-size: 18px; }
  .hero-slider { border-radius: var(--r-lg); height: var(--hero-current-mobile-h, 360px); min-height: 0; }
  .hero-slide { min-height: var(--hero-mobile-h, 360px); height: var(--hero-mobile-h, 360px); padding: 0; }
  .hero-inner { height: 100%; display: block; padding: 74px 22px 112px; }
  .hero-content { position: static; max-width: 100%; }
  .hero-tag { display: none; }
  .hero-title { font-size: clamp(22px, 7vw, 28px) !important; line-height: 1.14; margin: 0 0 10px; }
  .hero-desc { font-size: 14px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .hero-btns { position: absolute; left: 50%; bottom: 58px; transform: translateX(-50%); width: auto; justify-content: center; flex-wrap: nowrap; z-index: 6; }
  .hero-btns .btn, .hero-btns .btn-lg { width: auto !important; min-width: 190px; min-height: 42px; padding: 10px 22px !important; font-size: 14px !important; white-space: nowrap; box-shadow: 0 8px 22px rgba(0,0,0,.18); }
  .hero-btns .btn + .btn { display: none; }
  .slider-btn { top: auto; bottom: 52px; transform: none; width: 44px; height: 44px; }
  .slider-prev { left: 18px; }
  .slider-next { right: 18px; }
  .slider-dots { bottom: 18px; }
}
@media(max-width:390px) {
  .hero-title { font-size: 22px !important; }
  .hero-desc  { font-size: 13px; }
  .hero-btns .btn, .hero-btns .btn-lg { min-width: 176px; }
}

/* ── HERO SECTION WRAPPER ─────────────────────────────────── */
.hero-section { display: block; }
.hero-title-accent { display: block; color: var(--teal); }
.btn-hero-shop { background: linear-gradient(135deg, #29cfb2, #1a9e88); color: #002d1f; box-shadow: var(--shadow-teal); }
.btn-hero-shop:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(41,207,178,.42); }

/* ── HERO STATS GRID ──────────────────────────────────────── */
.hero-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px;
}
.hstat {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md); padding: 12px 14px; text-align: center;
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column; gap: 2px;
}
.hstat-val { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--teal); line-height: 1; }
.hstat-lbl { font-size: 10px; color: rgba(255,255,255,.7); font-weight: 500; }
.hstat-wide {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md); padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(6px);
}
.hstat-wide i { font-size: 22px; color: var(--teal); flex-shrink: 0; }
.hstat-wide strong { display: block; font-size: 13px; color: #fff; font-weight: 700; }
.hstat-wide span { font-size: 11px; color: rgba(255,255,255,.65); }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.trust-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
}
.trust-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm); flex-shrink: 0;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.trust-t1 { font-size: 13px; font-weight: 700; color: var(--gray-900); }
.trust-t2 { font-size: 11.5px; color: var(--gray-500); margin-top: 1px; }

@media(max-width:768px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media(max-width:480px) {
  .trust-inner { grid-template-columns: 1fr; }
}

/* ── SECTION / SECTION-HD ─────────────────────────────────── */
.section { margin-bottom: 36px; }
.section-hd {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; gap: 12px;
}
.section-hd h2 {
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--gray-900);
  position: relative; padding-left: 14px;
}
.section-hd h2::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 22px; background: var(--grad-blue); border-radius: 2px;
}
.section-hd a {
  font-size: 13px; font-weight: 600; color: var(--blue);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
  transition: gap var(--t);
}
.section-hd a:hover { gap: 7px; }

/* ── CAT CARD (usado no index.php) ───────────────────────── */
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 8px 14px;
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--r-md);
  font-size: 12px; font-weight: 600; color: var(--gray-700); text-align: center;
  text-decoration: none; transition: all var(--t-spring);
  box-shadow: var(--shadow-sm);
}
.cat-card:hover {
  background: var(--blue-light); border-color: var(--blue); color: var(--blue);
  transform: translateY(-5px); box-shadow: var(--shadow-blue);
}
.cat-card .cat-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  transition: background var(--t), transform var(--t-spring);
}
.cat-card:hover .cat-icon { background: var(--blue); color: #fff; transform: scale(1.1) rotate(-6deg); }
.cat-name { font-size: 12px; font-weight: 600; color: inherit; line-height: 1.3; }
.cat-card .cat-count { font-size: 10px; color: var(--gray-400); background: var(--gray-100); padding: 2px 7px; border-radius: 10px; }
