/* =============================================
   EMPÓRIO DA CELMINHA V3.0
   Layout atualizado com novo header
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fredoka+One&display=swap');

:root {
  --primary: #1a2e6e;
  --primary-dark: #0f1f54;
  --secondary: #d63384;
  --accent: #FF69B4;
  --accent-light: #FFB6D9;
  --turquoise: #00929a;
  --bg-white: #ffffff;
  --bg-light: #f7f7f7;
  --text-dark: #141414;
  --text-medium: #555;
  --text-light: #999;
  --border: #eeeeee;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.10);
  --radius: 14px;
  --radius-sm: 8px;
  --font-main: 'Nunito', sans-serif;
  --font-display: 'Fredoka One', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background: var(--bg-white); color: var(--text-dark); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { font-family: inherit; border: none; cursor: pointer; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER
============================================= */
.header-wrapper {
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 220px 1fr auto auto;
  align-items: center;
  gap: 24px;
  height: 160px;
}

.logo-col {
  height: 160px;
  display: flex;
  align-items: center;
}
.logo-col a {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo-col img {
  height: 155px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
  transition: transform .3s ease;
}
.logo-col img:hover { transform: scale(1.04); }

/* SEARCH */
.search-wrap { flex: 1; }
.search-form {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border: 2px solid #eee;
  border-radius: 50px;
  padding: 0 8px 0 20px;
  transition: border-color .2s, box-shadow .2s;
}
.search-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,105,180,.12);
  background: #fff;
}
.search-form input {
  flex: 1; border: none; background: transparent;
  padding: 13px 12px;
  font-family: var(--font-main); font-size: .95rem;
  outline: none; color: #333;
}
.search-form input::placeholder { color: #bbb; }
.search-form button {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: white; border: none; border-radius: 50px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
}
.search-form button:hover { transform: scale(1.08); box-shadow: 0 4px 14px rgba(214,51,132,.35); }
.search-form button svg { width: 18px; height: 18px; }

/* QUICK LINKS */
.quick-links { display: flex; align-items: center; gap: 4px; }
.quick-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 12px;
  color: #444; transition: all .2s; white-space: nowrap;
}
.quick-link:hover { background: #fff5fb; color: var(--secondary); }
.ql-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ql-icon svg { width: 20px; height: 20px; }
.ql-icon.pink { background: #fff0f7; color: var(--secondary); }
.ql-icon.cyan { background: #e8fafa; color: var(--turquoise); }
.ql-icon.green { background: #e8f8f0; color: #1a9a5c; }
.ql-text small { font-size: .68rem; color: #bbb; display: block; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; }
.ql-text strong { font-size: .88rem; font-weight: 800; display: block; }
.ql-div { width: 1px; height: 36px; background: #eee; margin: 0 2px; }

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: #f5f5f5; border-radius: 50%; border: none;
  align-items: center; justify-content: center;
  color: #444; cursor: pointer;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* MOBILE MENU — drawer lateral com overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1098;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .3s;
}
.mobile-menu-overlay.active { display: block; opacity: 1; }

.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  z-index: 1099;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 32px rgba(0,0,0,.18);
  padding-bottom: env(safe-area-inset-bottom, 16px);
}
.mobile-menu.active { transform: translateX(0); }

/* Cabeçalho do drawer */
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 2px solid #f0f0f0;
  background: linear-gradient(135deg, var(--primary) 0%, #2d4a9e 100%);
  flex-shrink: 0;
}
.mobile-menu-head-logo {
  font-family: var(--font-display); font-size: 1.2rem; color: #fff;
}
.mobile-menu-head-logo span { color: var(--accent); }
.mobile-menu-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; flex-shrink: 0;
  transition: background .2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.3); }
.mobile-menu-close svg { width: 18px; height: 18px; }

/* Links principais */
.mobile-menu-section { padding: 8px 0; border-bottom: 1px solid #f5f5f5; }
.mobile-menu-section-label {
  font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  color: #bbb; padding: 10px 20px 4px;
}
.mobile-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px;
  font-size: .92rem; font-weight: 700;
  color: var(--text-dark);
  transition: background .2s, color .15s;
  border: none; text-decoration: none;
}
.mobile-menu a:active { background: #fff0f7; }
.mobile-menu a:hover { background: #fff5fb; color: var(--secondary); }
.mobile-menu a svg { width: 18px; height: 18px; flex-shrink: 0; color: #888; }
.mobile-menu a:hover svg { color: var(--secondary); }
.mobile-menu a.wpp { color: #128C7E; }
.mobile-menu a.wpp svg { color: #25D366; }

/* Categorias expansíveis */
.mobile-cat-item {
  display: flex; align-items: center;
  padding: 12px 20px; gap: 12px;
  border: none; background: none; width: 100%;
  font-family: var(--font-main); font-size: .9rem; font-weight: 700;
  color: var(--text-dark); cursor: pointer; text-align: left;
  transition: background .2s;
}
.mobile-cat-item:hover, .mobile-cat-item.open { background: #fff5fb; color: var(--secondary); }
.mobile-cat-item svg { width: 18px; height: 18px; flex-shrink: 0; color: #bbb; }
.mobile-cat-item .cat-chevron { margin-left: auto; transition: transform .25s; color: #ccc; }
.mobile-cat-item.open .cat-chevron { transform: rotate(90deg); color: var(--secondary); }
.mobile-cat-subs {
  display: none; flex-direction: column;
  background: #fafafa; border-top: 1px solid #f0f0f0;
}
.mobile-cat-subs.open { display: flex; }
.mobile-cat-subs a {
  padding: 11px 20px 11px 48px; font-size: .85rem; font-weight: 600;
  color: #555; border-bottom: 1px solid #f5f5f5; display: block;
  transition: background .15s, color .15s;
}
.mobile-cat-subs a:last-child { border-bottom: none; }
.mobile-cat-subs a:hover { background: #fff0f7; color: var(--secondary); }

/* =============================================
   CATEGORY BAR
============================================= */
.catbar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: sticky;
  top: 160px;
  z-index: 998;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  overflow: visible;
}
.catbar-scroll {
  max-width: 1280px; margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.catbar-scroll::-webkit-scrollbar { display: none; }
.catbar-inner {
  padding: 0 24px;
  display: inline-flex; align-items: stretch;
  overflow: visible;
  min-height: 72px;
  min-width: 100%;
}
.catbar-inner::-webkit-scrollbar { display: none; }
.cat-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 10px 20px;
  color: rgba(255,255,255,.75);
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.cat-item:hover, .cat-item.active {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-bottom-color: var(--accent);
}
.cat-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  overflow: hidden;
}
.cat-item:hover .cat-icon, .cat-item.active .cat-icon { background: rgba(255,105,180,.35); }
.cat-icon svg { width: 15px; height: 15px; }
.cat-icon-img img { width: 34px; height: 34px; object-fit: cover; border-radius: 50%; }

/* =============================================
   BANNER SLIDER
============================================= */
.banner-swiper { width: 100%; overflow: hidden !important; }
.banner-slide {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.banner-overlay {
  position: absolute; inset: 0; overflow: hidden;
  background: linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.05) 60%, transparent 100%);
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.banner-content h2 {
  font-family: var(--font-display);
  font-size: 3rem; color: white;
  line-height: 1.1; margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.banner-content h2 span { color: #FFD700; }
.banner-content p {
  color: rgba(255,255,255,.92);
  font-size: 1.05rem; margin-bottom: 24px; font-weight: 600;
}
.banner-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--secondary);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
}
.banner-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.banner-btn svg { width: 18px; height: 18px; }
.swiper-button-next, .swiper-button-prev { color: white !important; }
.swiper-pagination-bullet { background: white !important; opacity: .5; }
.swiper-pagination-bullet-active { opacity: 1 !important; }

/* =============================================
   BENEFITS BAR
============================================= */
.benefits-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.benefits-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; flex-wrap: wrap;
}
.benefit {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 12px;
  flex: 1; min-width: 140px;
  transition: background .2s; color: inherit;
}
.benefit:hover { background: #fff5fb; }
.benefit-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-icon svg { width: 20px; height: 20px; }
.benefit-icon.pink   { background: #fff0f7; color: var(--secondary); }
.benefit-icon.blue   { background: #e8f0ff; color: var(--primary); }
.benefit-icon.green  { background: #e8f8f0; color: #1a9a5c; }
.benefit-icon.purple { background: #f3e8ff; color: #7c3aed; }
.benefit-icon.orange { background: #fff4e8; color: #e07b00; }
.benefit-text strong { display: block; font-size: .88rem; font-weight: 800; color: #222; }
.benefit-text small  { font-size: .74rem; color: #999; font-weight: 600; }
.benefit-sep { width: 1px; height: 38px; background: #f0f0f0; flex-shrink: 0; }

/* BENEFITS BAR — versão mobile carrossel */
.benefits-bar-mobile {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.benefits-mobile-track {
  display: flex;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 14px;
  gap: 0;
}
.benefits-mobile-track::-webkit-scrollbar { display: none; }
.benefit-mobile-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 4px 16px 4px 0;
  margin-right: 16px;
  border-right: 1px solid #ebebeb;
  text-decoration: none;
  color: inherit;
}
.benefit-mobile-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.benefit-mobile-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-mobile-icon svg { width: 14px; height: 14px; }
.benefit-mobile-icon.pink   { background: #fff0f7; color: var(--secondary); }
.benefit-mobile-icon.blue   { background: #e8f0ff; color: var(--primary); }
.benefit-mobile-icon.green  { background: #e8f8f0; color: #1a9a5c; }
.benefit-mobile-icon.purple { background: #f3e8ff; color: #7c3aed; }
.benefit-mobile-icon.orange { background: #fff4e8; color: #e07b00; }
.benefit-mobile-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.benefit-mobile-text strong {
  font-size: .76rem; font-weight: 800; color: #222;
  white-space: nowrap; line-height: 1.2;
}
.benefit-mobile-text small {
  font-size: .65rem; color: #999; font-weight: 600;
  white-space: nowrap; line-height: 1.2;
}

/* =============================================
   SECTIONS / PRODUCTS
============================================= */
.products-section { padding: 56px 0; }
.products-section.bg-light { background: var(--bg-light); }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400; color: var(--text-dark);
}
.section-title span { color: var(--accent); }
.section-link {
  display: flex; align-items: center; gap: 6px;
  font-size: .9rem; font-weight: 800; color: var(--primary);
  transition: color .2s;
}
.section-link:hover { color: var(--secondary); }
.section-link svg { width: 18px; height: 18px; }

/* PRODUCT GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all .3s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-image {
  position: relative; aspect-ratio: 1;
  background: var(--bg-light); overflow: hidden;
}
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; color: #ccc;
}
.product-placeholder svg { width: 48px; height: 48px; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 12px; font-size: .68rem; font-weight: 800;
  text-transform: uppercase; border-radius: 50px;
}
.badge-new      { background: var(--secondary); color: white; }
.badge-featured { background: var(--accent); color: white; }

/* MARCA D'ÁGUA - LOGO NO CANTO */
.product-watermark {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.18;
  pointer-events: none;
  filter: grayscale(20%);
  transition: opacity .3s;
  z-index: 2;
}
.product-card:hover .product-watermark {
  opacity: 0.28;
}

/* SELO DE PROMOÇÃO - BOOM */
.product-promo-seal {
  position: absolute;
  top: -4px;
  right: 10px;
  width: 62px;
  height: 62px;
  z-index: 3;
  pointer-events: none;
  animation: sealPop .4s cubic-bezier(.17,.67,.35,1.4) both;
}
@keyframes sealPop {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg);   opacity: 1; }
}
.product-promo-seal svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 3px 8px rgba(214,51,132,.5));
}
.product-promo-seal .seal-pct {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  line-height: 1;
  text-align: center;
}
.product-promo-seal .seal-pct strong {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -1px;
}
.product-promo-seal .seal-pct span {
  font-size: .55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: .9;
}
.product-info { padding: 14px 14px 6px; }
.product-category {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .4px; color: var(--turquoise);
}
.product-title {
  font-size: .92rem; font-weight: 800; color: var(--text-dark);
  margin-top: 5px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.product-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: calc(100% - 28px); margin: 10px 14px 14px;
  padding: 11px; background: var(--primary);
  color: white; font-size: .85rem; font-weight: 800;
  border-radius: var(--radius-sm); transition: all .2s;
}
.product-btn:hover { background: var(--secondary); color: white; }
.product-btn svg { width: 16px; height: 16px; }

/* =============================================
   DROPDOWN SUBCATEGORIAS NA CATBAR
============================================= */
.cat-item-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}
.cat-item-wrap > a.cat-item {
  height: 100%;
}
.cat-item-wrap:hover > a.cat-item {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-bottom-color: var(--accent);
}

/* cat-dropdown replaced by cat-dropdown-mega */

/* =============================================
   MEGADROPDOWN TODOS — 2 COLUNAS
============================================= */
.cat-todos-wrap { position: relative; flex-shrink: 0; }
.cat-todos-btn {
  background: rgba(255,255,255,.12);
  border: none; cursor: pointer;
  font-family: var(--font-main);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 10px 20px;
  color: rgba(255,255,255,.9);
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
  white-space: nowrap; height: 100%;
  border-bottom: 3px solid var(--accent);
  transition: all .2s;
}
.cat-todos-wrap:hover .cat-todos-btn,
.cat-todos-btn:hover { background: rgba(255,255,255,.18); color: #fff; }
.cat-todos-btn .cat-icon { background: rgba(255,105,180,.35); }

/* MEGADROPDOWN */
.cat-mega {
  display: none; flex-direction: row; align-items: stretch;
  background: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  z-index: 99998; overflow: visible;
  position: fixed;
  min-width: 210px;
}
.cat-mega-list {
  list-style: none; width: 210px; flex-shrink: 0;
  border-right: 1px solid #f0f0f0;
  padding: 8px 0; margin: 0;
  background: #fff;
  border-radius: 0 0 0 14px;
  position: relative; z-index: 2;
}
.cat-mega-item span {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  font-size: .82rem; font-weight: 700;
  color: #333; text-transform: uppercase; letter-spacing: .3px;
  transition: background .15s, color .15s; gap: 8px;
  cursor: default;
}
.cat-mega-item span i { width: 14px; height: 14px; color: #ccc; flex-shrink: 0; }
.cat-mega-item:hover span,
.cat-mega-item.active span { background: #fff5fb; color: var(--secondary); }
.cat-mega-item.active span i { color: var(--secondary); }
.cat-mega-subs {
  list-style: none; width: 200px; flex-shrink: 0;
  padding: 8px 0; margin: 0;
  display: none; flex-direction: column;
  background: #fafafa; border-right: 1px solid #f0f0f0;
  overflow-y: auto; max-height: 400px;
  position: fixed;
  box-shadow: 4px 4px 16px rgba(0,0,0,.08);
  border-radius: 0 0 14px 0;
  z-index: 99999;
}
.cat-mega-subs.active { display: flex; }
.cat-mega-sub-item {
  display: block; padding: 10px 16px;
  font-size: .82rem; font-weight: 700;
  color: #333; text-transform: uppercase; letter-spacing: .3px;
  transition: background .15s, color .15s; white-space: nowrap;
}
.cat-mega-sub-item:hover,
.cat-mega-sub-item.active { background: #fff5fb; color: var(--secondary); }

/* DROPDOWN CATEGORIAS INDIVIDUAIS — 2 colunas (subs + produto) */
.cat-dropdown-mega {
  position: fixed;
  display: none; flex-direction: row;
  background: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  z-index: 9999; overflow: visible; min-width: 220px;
}
.cdm-subs { min-width: 220px; flex-shrink: 0; padding: 6px 0; }
.cdm-header {
  padding: 10px 16px 8px;
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--primary); background: #f7f7f7; border-bottom: 1px solid #eee;
}
.cdm-sub-item {
  display: block; padding: 10px 16px;
  font-size: .85rem; font-weight: 700;
  color: #333; text-transform: uppercase; letter-spacing: .3px;
  border-bottom: 1px solid #f5f5f5;
  transition: background .15s, color .15s; white-space: nowrap;
}
.cdm-sub-item:hover,
.cdm-sub-item.active { background: #fff5fb; color: var(--secondary); }
.cdm-sub-item:last-child { border-bottom: none; }
.cdm-preview {
  width: 185px; flex-shrink: 0; padding: 12px;
  background: #fafafa; border-left: 1px solid #f0f0f0;
  display: none; align-items: flex-start; justify-content: center;
}
.cdm-preview:not(:empty) { display: flex; }
/* Carrossel produto destaque */
.cmi-carrossel { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cmi-carrossel-inner { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; }
.cmi-produto-img {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 10px; overflow: hidden;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cmi-produto-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cmi-produto-placeholder { font-size: 2.5rem; }
.cmi-produto-nome {
  font-size: .75rem; font-weight: 700; color: #333;
  text-align: center; text-transform: uppercase;
  letter-spacing: .3px; line-height: 1.3;
}
.cmi-produto-btn {
  width: 100%; background: var(--primary); color: #fff;
  border: none; border-radius: 8px; padding: 8px 10px;
  font-size: .72rem; font-weight: 700; cursor: pointer;
  text-transform: uppercase; letter-spacing: .4px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: background .15s;
}
.cmi-produto-btn:hover { background: var(--secondary); }
/* Navegação carrossel — setas sobre a imagem */
.cmi-nav {
  display: flex; align-items: center; justify-content: center;
  width: 100%; gap: 8px; margin-top: 2px;
}
.cmi-prev, .cmi-next {
  background: rgba(26,46,110,.75); border: none; border-radius: 50%;
  width: 22px; height: 22px; cursor: pointer; flex-shrink: 0;
  font-size: .75rem; display: flex; align-items: center; justify-content: center;
  transition: background .15s; color: #fff;
}
.cmi-prev:hover, .cmi-next:hover { background: var(--secondary); }
/* Animação pulsante nas setas quando autoplay ativo */
.cmi-autoplay .cmi-next {
  animation: arrowPulse 1.2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100% { background: rgba(26,46,110,.75); transform: scale(1); }
  50%      { background: var(--secondary); transform: scale(1.2); }
}
.cmi-dots { display: flex; gap: 4px; align-items: center; }
.cmi-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #ddd; transition: background .2s;
}
.cmi-dot.active { background: var(--primary); }
.cta-section { padding: 72px 0; background: var(--primary); }
.cta-content {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: 2rem; color: white; margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,.8); font-size: 1.05rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; font-size: 1rem; font-weight: 800;
  border-radius: 50px; transition: all .3s; cursor: pointer;
}
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* =============================================
   FOOTER
============================================= */
/* =============================================
   FOOTER PROFISSIONAL
============================================= */
.footer {
  background: linear-gradient(180deg, #0a1640 0%, #0f1f54 100%);
  color: white;
  padding: 0;
}
.footer-top-bar {
  background: rgba(255,105,180,.08);
  border-bottom: 1px solid rgba(255,105,180,.15);
  padding: 16px 0;
}
.footer-top-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-top-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: rgba(255,255,255,.8);
}
.footer-top-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-top-item strong { color: #fff; }
.footer-main { padding: 56px 0 40px; }
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1.2fr 1.4fr;
  gap: 48px; align-items: start;
}

/* Coluna marca */
.footer-brand {}
.footer-logo-wrap { margin-bottom: 14px; }
.footer-brand-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 4px;
}
.footer-brand-title span { color: var(--accent); }
.footer-brand-sub {
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,.3); margin-bottom: 16px;
}
.footer-tagline {
  font-size: .88rem; color: rgba(255,255,255,.5);
  line-height: 1.65; margin-bottom: 20px; max-width: 240px;
}
.footer-cols-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: all .25s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-social a svg { width: 18px; height: 18px; }

/* Títulos de coluna */
.footer-col h4 {
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.footer-col h4::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,.08);
}

/* Links */
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55); font-size: .88rem;
  transition: all .2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before {
  content: ''; width: 4px; height: 4px;
  background: var(--accent); border-radius: 50%;
  flex-shrink: 0; opacity: 0; transition: opacity .2s;
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col ul li a:hover::before { opacity: 1; }

/* Contato */
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,105,180,.12);
  border: 1px solid rgba(255,105,180,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg { width: 15px; height: 15px; color: var(--accent); }
.footer-contact-item p { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.55; }
.footer-contact-item p strong { color: #fff; display: block; font-size: .78rem; margin-bottom: 1px; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* =============================================
   MODAL
============================================= */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.modal.active { opacity: 1; visibility: visible; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(8,16,48,.72); backdrop-filter: blur(6px);
}
/* card compacto — vertical — animação pop do centro */
.modal-content {
  position: relative; border-radius: 22px;
  max-width: 340px; width: 100%;
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(.6); opacity: 0;
  transition: transform .3s cubic-bezier(.34,1.5,.64,1), opacity .22s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  background: white;
}
.modal.active .modal-content { transform: scale(1); opacity: 1; }

/* topo — imagem quadrada */
.modal-image {
  width: 100%; aspect-ratio: 1/1; position: relative;
  background: linear-gradient(145deg, #f0e8ff 0%, #fce4f0 100%);
  overflow: hidden; flex-shrink: 0;
}
.modal-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.18) 100%);
  pointer-events: none; z-index: 2;
}
.modal-image .prod-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.modal-image .modal-watermark {
  position: absolute; bottom: 10px; left: 10px;
  width: 72px; object-fit: contain;
  opacity: 1; pointer-events: none; z-index: 4;
}
.modal-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; color: #ccc; gap: 8px;
}
.modal-placeholder svg { width: 44px; height: 44px; }

/* badge categoria sobre a imagem */
.modal-category {
  position: absolute; top: 12px; left: 12px; z-index: 5;
  font-size: .6rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--secondary);
  background: white; border-radius: 50px;
  padding: 4px 10px; box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

/* mascote no canto da imagem */
.modal-mascote { display: none; }

/* fechar */
.modal-close {
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px; background: rgba(255,255,255,.9);
  border-radius: 50%; color: #666;
  display: flex; align-items: center; justify-content: center;
  z-index: 20; transition: all .2s; cursor: pointer; border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.modal-close:hover { background: var(--secondary); color: white; transform: rotate(90deg); }
.modal-close svg { width: 13px; height: 13px; }

/* info embaixo */
.modal-info {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.1rem; margin: 0 0 8px; color: var(--text-dark); line-height: 1.2;
}
.modal-description {
  font-size: .78rem; color: var(--text-medium);
  line-height: 1.6; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.modal-footer {
  display: flex; gap: 0;
}
.modal-footer .btn-whatsapp {
  width: 100%; justify-content: center; border-radius: 12px;
  padding: 12px; font-size: .85rem; font-weight: 800; white-space: nowrap;
  gap: 8px;
}
.modal-badge {
  font-size: .73rem; font-weight: 700; color: #bbb;
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.modal-badge svg { width: 13px; height: 13px; color: var(--secondary); }

/* =============================================
   WHATSAPP FLOAT
============================================= */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px; background: #25D366;
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999; transition: all .3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* =============================================
   SEARCH MODAL
============================================= */
.search-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.9);
  z-index: 2000; display: flex; align-items: flex-start;
  justify-content: center; padding-top: 100px;
  opacity: 0; visibility: hidden; transition: all .3s;
}
.search-modal.active { opacity: 1; visibility: visible; }
.search-modal-content { width: 100%; max-width: 600px; padding: 0 20px; }
.search-modal form {
  display: flex; align-items: center; gap: 16px;
  background: white; border-radius: var(--radius); padding: 8px 8px 8px 24px;
}
.search-modal svg { width: 24px; height: 24px; color: #bbb; }
.search-modal input { flex: 1; padding: 14px 0; font-size: 1.1rem; border: none; outline: none; font-family: var(--font-main); }
.search-close {
  width: 44px; height: 44px; background: var(--bg-light);
  border-radius: 50%; color: var(--text-medium);
  display: flex; align-items: center; justify-content: center;
}
.search-close:hover { background: var(--secondary); color: white; }

/* =============================================
   RESPONSIVE
============================================= */
/* =============================================
   RESPONSIVE — TABLET
============================================= */
@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 200px 1fr auto auto; gap: 16px; }
  .quick-links .ql-text { display: none; }
  .quick-link { padding: 10px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   RESPONSIVE — MOBILE (≤860px)
============================================= */

/* Ícones sociais mobile — escondidos no desktop */
.mobile-social-icons { display: none; }

@media (max-width: 860px) {
  /* ── HEADER — logo span 2 linhas / sociais + hambúrguer / busca ── */
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    height: auto;
    gap: 10px 14px;
    padding: 12px 16px 14px;
    align-items: center;
  }
  /* Logo ocupa as 2 linhas */
  .logo-col {
    height: auto;
    grid-column: 1; grid-row: 1 / 3;
    display: flex; align-items: center;
  }
  .logo-col img { height: 110px; width: auto; }

  /* Ícones sociais — linha 1, coluna 2 */
  .mobile-social-icons {
    display: flex; align-items: center; gap: 8px;
    grid-column: 2; grid-row: 1;
    justify-content: flex-end;
  }
  .msi-btn {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    transition: transform .15s;
  }
  .msi-btn:active { transform: scale(.92); }
  .msi-btn svg { width: 20px; height: 20px; }
  .msi-fb  { background: #e8eeff; color: #1877F2; }
  .msi-ig  { background: #fce8ff; color: #C13584; }
  .msi-wpp { background: #e6f9ef; color: #25D366; }

  /* Hambúrguer — linha 1, coluna 3 */
  .menu-toggle {
    display: flex;
    grid-column: 3; grid-row: 1;
    width: 42px; height: 42px;
    border-radius: 50%; background: #f3f4f6;
    align-self: center; flex-shrink: 0;
  }
  .menu-toggle svg { width: 20px; height: 20px; }

  /* Busca — linha 2, colunas 2 e 3 */
  .search-wrap {
    grid-column: 2 / -1; grid-row: 2;
  }
  .search-form { border-radius: 50px; }
  .search-form input { font-size: .88rem; padding: 11px 10px; }
  .search-form button { width: 40px; height: 40px; }

  /* Esconde quick-links desktop */
  .quick-links { display: none; }

  /* ── CATBAR — escondida no mobile ── */
  .catbar { display: none !important; }

  /* ── BENEFITS ── */
  .benefits-bar { display: none; }
  .benefits-bar-mobile { display: block; }

  /* ── BANNER ── */
  .banner-slide { height: 220px; min-height: 0; }
  .banner-content { padding: 0 20px; }
  .banner-content h2 { font-size: 1.55rem; line-height: 1.2; }
  .banner-content p { font-size: .88rem; margin-bottom: 14px; }
  .banner-btn { padding: 10px 22px; font-size: .85rem; gap: 8px; }
  .swiper-button-next, .swiper-button-prev { display: none !important; }

  /* ── PRODUTOS ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-section { padding: 32px 0; }
  .section-title { font-size: 1.4rem; }
  .product-info { padding: 10px 10px 4px; }
  .product-title { font-size: .82rem; }
  .product-btn { font-size: .78rem; padding: 10px 9px; margin: 8px 10px 10px; width: calc(100% - 20px); }
  .product-watermark { width: 28px !important; height: 28px !important; }

  /* ── CTA ── */
  .cta-section { padding: 40px 0; }
  .cta-content { flex-direction: column; text-align: center; gap: 20px; }
  .cta-text h2 { font-size: 1.5rem; }

  /* ── FOOTER ── */
  .footer-top-bar-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-main { padding: 36px 0 24px; }
  .footer-cols-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-brand { text-align: left; }
  .footer-brand-title { text-align: left; }
  .footer-brand-sub { text-align: left; }
  .footer-tagline { text-align: left; }
  .footer-social { justify-content: flex-start; }
  .footer-brand { text-align: center; }
  .footer-tagline { max-width: 100%; }
  .footer-social { justify-content: center; }

  /* ── MODAL — bottom-sheet ── */
  .modal { padding: 0; align-items: flex-end; }
  .modal-content {
    max-height: 92dvh; max-height: 92vh;
    width: 100%; border-radius: 20px 20px 0 0;
    overflow: hidden; display: flex; flex-direction: column;
  }
  .modal-content::before {
    content: ''; display: block;
    width: 40px; height: 4px;
    background: #ddd; border-radius: 2px;
    margin: 10px auto 0; flex-shrink: 0;
  }
  .modal { align-items: center; }
  .modal-content { max-width: 90vw; border-radius: 20px; }
  .modal-mascote { width: 60px; }

  /* ── WHATSAPP FLOAT — sobe acima do bottom nav ── */
  .whatsapp-float {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 16px; width: 52px; height: 52px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }

  /* ── PROMOÇÃO ── */
  .promo-layout { gap: 20px; }
  .promo-seal-big { width: 80px; height: 80px; }
  .promo-seal-text strong { font-size: 1.5rem; }
  .timer-num { font-size: 1.4rem; }
  .timer-block { padding: 7px 10px; min-width: 46px; }
  .timer-sep { font-size: 1.4rem; }
}

/* =============================================
   RESPONSIVE — MOBILE PEQUENO (≤500px)
============================================= */
@media (max-width: 500px) {
  /* ── HEADER ── */
  .header-inner { padding: 10px 14px 12px; gap: 8px; }
  .logo-col img { height: 80px; }
  .menu-toggle { width: 44px; height: 44px; border-radius: 12px; }
  .search-form input { font-size: .82rem; padding: 10px 8px; }
  .search-form button { width: 36px; height: 36px; }

  /* ── BANNER ── */
  .banner-slide { height: 190px; }
  .banner-content { padding: 0 14px; }
  .banner-content h2 { font-size: 1.2rem; }
  .banner-content p { display: none; }
  .banner-btn { padding: 9px 18px; font-size: .8rem; }

  /* ── CATBAR ── */
  .cat-item { padding: 8px 12px; font-size: .62rem; }
  .cat-icon { width: 28px; height: 28px; }

  /* ── PRODUTOS ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .container { padding: 0 12px; }
  .product-card { border-radius: 10px; }
  .product-badge { font-size: .6rem; padding: 3px 8px; top: 8px; left: 8px; }
  .product-watermark { width: 20px !important; height: 20px !important; bottom: 4px !important; right: 4px !important; }
  .product-promo-seal { width: 46px !important; height: 46px !important; }
  .product-promo-seal .seal-pct strong { font-size: .82rem !important; }
  .product-btn { font-size: .75rem; padding: 9px 6px; }

  /* ── SEÇÃO ── */
  .section-header { margin-bottom: 14px; }
  .section-title { font-size: 1.18rem; }
  .section-link { font-size: .75rem; }
  .products-section { padding: 24px 0; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-cols-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-top-bar { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-main { padding: 28px 0 20px; }

  /* ── MODAL ── */
  .modal-content::before { margin: 8px auto 0; }
  .modal-image { aspect-ratio: 4/3; }
  .modal-info { padding: 14px; }
  .modal-description { font-size: .84rem; }
  .modal-title { font-size: 1.05rem; }

  /* ── PROMOÇÃO ── */
  .promo-badge-top { font-size: .62rem; padding: 4px 12px; }
  .promo-seal-big { width: 64px; height: 64px; }
  .promo-seal-text strong { font-size: 1.2rem; }
  .timer-num { font-size: 1.15rem; }
  .timer-block { padding: 6px 8px; min-width: 38px; border-radius: 7px; }
  .timer-sep { font-size: 1.15rem; }
  .timer-lbl { font-size: .52rem; }
}

/* =============================================
   SAFE AREA — iPhones com notch/home bar
============================================= */
@supports (padding: max(0px)) {
  .header-inner { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
  .catbar-inner { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); }
  .footer-bottom { padding-bottom: max(20px, env(safe-area-inset-bottom)); }
  .modal-content { padding-bottom: env(safe-area-inset-bottom, 0px); }
}

/* =============================================
   TOUCH — estados de toque melhores
============================================= */
@media (hover: none) and (pointer: coarse) {
  /* remove hover effects que causam sticky state no touch */
  .product-card:hover { transform: none; box-shadow: var(--shadow); }
  .product-card:active { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
  .banner-btn:hover { transform: none; }
  .btn-whatsapp:hover { transform: none; }

  /* tap highlight personalizado */
  a, button { -webkit-tap-highlight-color: rgba(214,51,132,.12); }

  /* catbar: força scroll suave com snap */
  .catbar-scroll {
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .cat-item { scroll-snap-align: start; }
}

/* =============================================
   BANNER PROMOÇÃO RELÂMPAGO
============================================= */
.banner-promo { overflow: hidden; position: relative; height: 400px; }
.banner-promo-content { display: flex; flex-direction: column; gap: 6px; padding: 20px 0; }

.promo-badge-top {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.2); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  padding: 5px 16px; border-radius: 50px;
  font-size: .72rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 1.5px; width: fit-content;
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.3); }
  50%      { box-shadow: 0 0 0 8px rgba(255,255,255,.0); }
}
.promo-layout {
  display: flex; align-items: center; gap: 24px; flex-wrap: nowrap;
}
.promo-seal-big {
  position: relative; width: 120px; height: 120px; flex-shrink: 0;
  animation: sealSpin 1s cubic-bezier(.17,.67,.35,1.4) both;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.3));
}
@keyframes sealSpin {
  0%   { transform: scale(0) rotate(-30deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg);   opacity: 1; }
}
.promo-seal-big svg { width: 100%; height: 100%; overflow: hidden; display: block; }
.promo-seal-text {
  position: absolute; inset: 0; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1;
}
.promo-seal-text strong { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.promo-seal-text span { font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }

.promo-timer-wrap { display: flex; flex-direction: column; gap: 10px; }
.promo-timer-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; opacity: .7; }
.promo-timer { display: flex; align-items: center; gap: 8px; }
.timer-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,.25); backdrop-filter: blur(8px);
  border-radius: 10px; padding: 10px 14px; min-width: 62px;
  border: 1px solid rgba(255,255,255,.15);
}
.timer-num { font-family: var(--font-display); font-size: 2rem; line-height: 1; font-weight: 400; color: inherit; }
.timer-lbl { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.timer-sep { font-family: var(--font-display); font-size: 2rem; line-height: 1; opacity: .7; align-self: flex-start; padding-top: 8px; }

.promo-btn {
  margin-top: 4px; width: fit-content;
  font-weight: 900 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.25) !important;
  transition: transform .2s, box-shadow .2s !important;
}
.promo-btn:hover { transform: translateY(-3px) scale(1.04) !important; box-shadow: 0 8px 30px rgba(0,0,0,.35) !important; }

/* =============================================
   LAYOUTS DA PROMOÇÃO RELÂMPAGO
============================================= */
.promo-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  gap: 32px;
  box-sizing: border-box;
}
.promo-h2 {
  font-family: var(--font-display);
  font-size: 2.2rem; line-height: 1.1; margin: 6px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.promo-p { font-size: .95rem; margin: 0; }
.promo-seal-timer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin: 8px 0; }

/* Imagem do produto */
.promo-prod-img { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; overflow: hidden; }
.promo-prod-img img { max-width: 100%; max-height: 380px; width: auto; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.3)); }

/* Layout 1 — Texto+Timer esq | Produto dir */
.promo-lay-1 { }
.promo-lay-1 .psl-left  { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.promo-lay-1 .psl-right { width: 38%; height: 400px; max-height: 400px; display: flex; align-items: center; justify-content: center; padding: 0; overflow: hidden; flex-shrink: 0; }

/* Layout 2 — Produto esq | Texto dir */
.promo-lay-2 { flex-direction: row-reverse; }
.promo-lay-2 .psl-left  { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.promo-lay-2 .psl-right { width: 38%; height: 100%; max-height: 400px; display: flex; align-items: center; justify-content: center; padding: 16px 0; overflow: hidden; }
.promo-lay-2 .psl-right-align { align-items: flex-end; text-align: right; }

/* Layout 3 — Centralizado, produto ao fundo */
.promo-lay-3 { justify-content: center; }
.promo-lay-3 .psl-bg-prod { position: absolute; right: 0; top: 0; bottom: 0; width: 42%; opacity: .22; display: flex; align-items: center; justify-content: flex-end; padding-right: 24px; }
.promo-lay-3 .psl-center  { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; z-index: 1; }

/* Layout 4 — Timer grande */
.promo-lay-4 { }
.promo-lay-4 .psl-full   { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.promo-lay-4 .psl-row    { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.promo-lay-4 .psl-prod-small { margin-left: auto; width: 24%; min-width: 80px; max-height: 160px; display: flex; align-items: center; }

/* Layout 5 — Duplo */
.promo-lay-5 { justify-content: center; }
.promo-lay-5 .psl-center { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; width: 100%; }
.promo-lay-5 .psl-duplo  { display: flex; gap: 20px; align-items: center; }
.promo-lay-5 .psl-prod-duplo { width: 90px; height: 90px; border-radius: 12px; overflow: hidden; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.promo-lay-5 .psl-mid-col { display: flex; flex-direction: column; gap: 8px; align-items: center; }

/* Responsivo layouts */
@media (max-width: 860px) {
  .promo-slide-inner { padding: 0 20px; gap: 16px; }
  .promo-h2 { font-size: 1.5rem; }
  .promo-lay-1 .psl-right,
  .promo-lay-2 .psl-right { width: 35%; }
  .promo-lay-4 .psl-prod-small { width: 20%; }
}
@media (max-width: 500px) {
  .promo-slide-inner { padding: 0 14px; gap: 10px; flex-wrap: wrap; align-content: center; }
  .promo-h2 { font-size: 1.15rem; }
  .promo-p  { display: none; }
  .promo-lay-1 .psl-right,
  .promo-lay-2 .psl-right { width: 30%; }
  .promo-lay-3 .psl-bg-prod { opacity: .12; }
  .promo-lay-5 .psl-prod-duplo { width: 60px; height: 60px; }
}

/* =============================================
   LAYOUTS PROMOÇÃO — VERSÃO 2
============================================= */

/* Cantos */
.promo-corner { position: absolute; z-index: 5; width: 90px; height: 90px; object-fit: contain; }
.promo-corner-tl { top: 16px; left: 16px; }
.promo-corner-tr { top: 16px; right: 16px; }
.promo-corner-bl { bottom: 16px; left: 16px; }
.promo-corner-br { bottom: 16px; right: 16px; }

/* Preço grande */
.promo-preco { font-size: 3rem; font-weight: 900; line-height: 1; text-shadow: 0 2px 16px rgba(0,0,0,.3); margin: 6px 0; }

/* L1 — Texto | Produto */
.promo-lay-1 { justify-content: space-between; }
.promo-lay-1 .psl-left  { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.promo-lay-1 .psl-right { width: 36%; height: 100%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.promo-lay-1 .psl-right .promo-prod-img { height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; }
.promo-lay-1 .psl-right .promo-prod-img img { max-height: 380px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.3)); }

/* L2 — Logo esq | Texto meio | Produto dir */
.promo-lay-2 { justify-content: space-between; }
.promo-lay-2 .psl-logo-col { width: 14%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; flex-shrink: 0; }
.promo-lay-2 .psl-logo-circle { width: 70px; height: 70px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.promo-lay-2 .psl-logo-circle img { width: 100%; height: 100%; object-fit: contain; }
.promo-lay-2 .psl-logo-line { width: 2px; height: 50px; background: rgba(255,255,255,.2); border-radius: 2px; }
.promo-lay-2 .psl-logo-sub { font-size: .75rem; color: rgba(255,255,255,.7); text-align: center; line-height: 1.3; }
.promo-lay-2 .psl-center-col { flex: 1; display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; padding: 0 20px; }
.promo-lay-2 .psl-right { width: 34%; height: 100%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.promo-lay-2 .psl-right .promo-prod-img { height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; }
.promo-lay-2 .psl-right .promo-prod-img img { max-height: 380px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.3)); }

/* L3 — 4 cantos + centro */
.promo-lay-3 { justify-content: center; }
.promo-lay-3 .psl-corner { position: absolute; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.promo-lay-3 .psl-c-tl { top: 0; left: 0; width: 28%; height: 85%; }
.promo-lay-3 .psl-c-tr { top: 0; right: 0; width: 28%; height: 85%; }
.promo-lay-3 .psl-c-bl { bottom: 0; left: 0; width: 24%; height: 70%; }
.promo-lay-3 .psl-c-br { bottom: 0; right: 0; width: 24%; height: 70%; }
.promo-lay-3 .psl-corner .promo-prod-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.promo-lay-3 .psl-corner .promo-prod-img img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 6px 16px rgba(0,0,0,.25)); }
.promo-lay-3 .psl-center { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; z-index: 2; }

/* L4 — Composição assimétrica */
.promo-lay-4 { }
.promo-lay-4 .psl-asym-main { position: absolute; left: 48px; top: 0; bottom: 0; width: 22%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.promo-lay-4 .psl-asym-main .promo-prod-img img { max-height: 390px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.3)); }
.promo-lay-4 .psl-asym-text { display: flex; flex-direction: column; gap: 6px; flex: 1; margin-left: 26%; padding-right: 28%; z-index: 2; }
.promo-lay-4 .psl-asym-side { position: absolute; right: 0; top: 0; bottom: 0; width: 28%; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-around; padding: 8px 12px; gap: 6px; }
.promo-lay-4 .psl-asym-p2 { width: 85%; display: flex; justify-content: center; }
.promo-lay-4 .psl-asym-p3 { width: 70%; display: flex; justify-content: center; }
.promo-lay-4 .psl-asym-p4 { width: 55%; display: flex; justify-content: center; }
.promo-lay-4 .psl-asym-side .promo-prod-img img { max-width: 100%; max-height: 110px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,.25)); }

/* L5 — 2 produtos + flip clock */
.promo-lay-5 { justify-content: space-between; }
.promo-lay-5 .psl-right { width: 28%; height: 100%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.promo-lay-5 .psl-right .promo-prod-img { height: 100%; display: flex; align-items: center; justify-content: center; }
.promo-lay-5 .psl-right .promo-prod-img img { max-height: 380px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.3)); }
.promo-lay-5 .psl-center { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; justify-content: center; }

/* Flip Clock */
.promo-flip-clock { display: flex; align-items: center; gap: 8px; }
.flip-blk { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.flip-n { background: rgba(0,0,0,.45); border-radius: 8px; padding: 8px 14px; font-size: 2rem; font-weight: 900; min-width: 60px; text-align: center; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 4px 16px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08); letter-spacing: 2px; }
.flip-l { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; opacity: .65; }
.flip-s { font-size: 2rem; font-weight: 900; opacity: .5; margin-bottom: 18px; }

/* Responsivo layouts novos */
@media (max-width: 860px) {
  .promo-lay-1 .psl-right,
  .promo-lay-2 .psl-right,
  .promo-lay-5 .psl-right { width: 32%; }
  .promo-lay-2 .psl-logo-col { width: 12%; }
  .promo-lay-3 .psl-c-tl, .promo-lay-3 .psl-c-tr { width: 24%; }
  .promo-lay-3 .psl-c-bl, .promo-lay-3 .psl-c-br { width: 20%; }
  .promo-preco { font-size: 2.2rem; }
  .flip-n { font-size: 1.5rem; min-width: 46px; padding: 6px 10px; }
  .flip-s { font-size: 1.5rem; }
}
@media (max-width: 500px) {
  .promo-lay-1 .psl-right,
  .promo-lay-2 .psl-right,
  .promo-lay-5 .psl-right { width: 28%; }
  .promo-lay-2 .psl-logo-col { display: none; }
  .promo-preco { font-size: 1.8rem; }
  .flip-n { font-size: 1.1rem; min-width: 36px; padding: 5px 7px; }
  .promo-corner { width: 60px; height: 60px; }
}
