:root {
  --primary: #16A34A;
  --primary-dark: #15803D;
  --secondary: #EAB308;
  --secondary-dark: #CA8A04;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-h: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  --dark: #1A1A2E;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --bg-light: #F9FAFB;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

body { font-family: 'Poppins', sans-serif; color: #1f2937; background: #fff; }

a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* BTN */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: 50px; font-family: inherit;
  font-weight: 600; font-size: .95rem; border: none; cursor: pointer; transition: .2s;
}
.btn--wa  { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1ebe5d; }
.btn--sm  { padding: .5rem 1rem; font-size: .85rem; }
.btn--lg  { padding: 1rem 2rem; font-size: 1.1rem; }
.btn--grad { background: var(--gradient); color: #fff; }
.btn--grad:hover { background: var(--gradient-h); }

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark); color: #fff;
  padding: 1rem 0; box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header__inner { display: flex; align-items: center; gap: 1.5rem; }
.header__logo  { display: flex; align-items: center; gap: .75rem; flex: 1; }
.header__logo img { height: 40px; border-radius: 6px; }
.header__brand { font-size: 1.2rem; font-weight: 700; }
.header__nav   { display: flex; gap: 1.5rem; }
.header__nav a { font-size: .9rem; opacity: .85; transition: opacity .2s; }
.header__nav a:hover { opacity: 1; }

/* HERO CARROSSEL */
.hero-carousel { position: relative; overflow: hidden; background: var(--dark); }
.hero-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.hero-slide {
  flex: 0 0 100%; min-height: 480px;
  display: flex; align-items: center;
  background: var(--gradient); background-size: cover; background-position: center;
}
.hero-slide__inner { color: #fff; padding: 4rem 0; max-width: 620px; }
.hero-slide__inner--center { margin: 0 auto; text-align: center; }
.hero-slide__inner--right { margin-left: auto; text-align: right; }
.hero-slide__inner h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.hero-slide__inner p  { font-size: clamp(1rem, 2.2vw, 1.2rem); opacity: .95; margin-bottom: 1.75rem; line-height: 1.55; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.18); color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
  transition: background .2s; z-index: 3;
}
.hero-arrow:hover { background: rgba(255,255,255,.35); }
.hero-arrow--prev { left: 1rem; }
.hero-arrow--next { right: 1rem; }
.hero-dots { position: absolute; bottom: 1.1rem; left: 0; right: 0; display: flex; gap: .5rem; justify-content: center; z-index: 3; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.45); transition: .2s; padding: 0; }
.hero-dot.active { background: #fff; width: 26px; border-radius: 6px; }

/* FAIXA DE BENEFÍCIOS */
.benefits { background: #fff; border-bottom: 1px solid var(--gray-light); padding: 1.75rem 0; }
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.benefit { display: flex; align-items: center; gap: .9rem; }
.benefit i { font-size: 1.5rem; color: var(--primary); width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--primary) 12%, #fff); border-radius: 12px; }
.benefit strong { display: block; font-size: .92rem; color: #1f2937; line-height: 1.25; }
.benefit span { font-size: .8rem; color: var(--gray); line-height: 1.4; }

/* BUSCA */
.search-bar { padding: 1.5rem 0; background: #fff; }
.search-bar__form { display: flex; align-items: center; gap: .6rem; max-width: 560px; margin: 0 auto; position: relative; }
.search-bar__icon { position: absolute; left: 1rem; color: var(--gray); font-size: .9rem; pointer-events: none; }
.search-bar__input {
  flex: 1; padding: .8rem 1rem .8rem 2.6rem; border: 1.5px solid var(--gray-light); border-radius: 999px;
  font-family: inherit; font-size: .92rem; outline: none; transition: border-color .15s; min-height: 44px;
}
.search-bar__input:focus { border-color: var(--primary); }
.search-bar__btn {
  flex-shrink: 0; background: var(--gradient); color: #fff; border: none; border-radius: 999px;
  padding: .8rem 1.4rem; font-family: inherit; font-size: .88rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: .4rem; min-height: 44px;
}
.search-bar__btn:hover { opacity: .92; }
@media (max-width: 480px) {
  .search-bar__btn span { display: none; }
}

/* COLEÇÕES */
.collections { padding: 4.5rem 0; background: #fff; }
.section-sub { text-align: center; color: var(--gray); font-size: 1rem; margin: -1.75rem auto 2.5rem; max-width: 640px; }
.collections__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.25rem; }
.collection-card {
  position: relative; border: none; padding: 0; cursor: pointer; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 4/3; background: #f3f4f6;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; font-family: inherit;
}
.collection-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.16); }
.collection-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.collection-card:hover img { transform: scale(1.06); }
.collection-card__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem; text-align: left; color: #fff;
  background: linear-gradient(to top, rgba(15,23,42,.82) 0%, rgba(15,23,42,.15) 55%, transparent 100%);
}
.collection-card__overlay strong { font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.collection-card__overlay span { font-size: .78rem; opacity: .85; margin-top: .15rem; }

/* CATALOG */
.catalog { padding: 5rem 0; background: var(--bg-light); }
.section-title { text-align: center; font-size: 2rem; font-weight: 700; margin-bottom: 2.5rem; }
.section-title--light { color: #fff; }

/* FILTER */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .45rem 1.1rem; border-radius: 50px; border: 2px solid var(--gray-light);
  background: #fff; font-family: inherit; font-size: .85rem; cursor: pointer; transition: .2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gradient); color: #fff; border-color: transparent;
}

/* GRID (usado dentro do modal de produtos por categoria/data) */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .9rem;
}
.prod-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.prod-card img { width: 100%; height: 120px; object-fit: cover; display: block; }
.prod-card__body { padding: .7rem; }
.prod-card__body h3 { font-size: .82rem; font-weight: 600; margin-bottom: .35rem; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-card__cat   { font-size: .64rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray); margin-bottom: .2rem; }
.prod-card__price { font-size: .74rem; color: var(--primary); font-weight: 600; margin-bottom: .5rem; }
.prod-card .btn { width: 100%; justify-content: center; }
.prod-card .btn--sim { padding: .5rem .6rem; font-size: .76rem; }

.loading { text-align: center; color: var(--gray); padding: 3rem; grid-column: 1/-1; }

.load-more-btn {
  display: flex; align-items: center; gap: .5rem; margin: 2.5rem auto 0;
  padding: .8rem 2rem; border-radius: 50px; border: 2px solid var(--gray-light);
  background: #fff; color: #1f2937; font-family: inherit; font-weight: 600; font-size: .92rem;
  cursor: pointer; transition: .2s;
}
.load-more-btn:hover { background: var(--gradient); color: #fff; border-color: transparent; }

/* CONTACT */
.contact { padding: 5rem 0; background: var(--gradient); }
.contact__info { color: #fff; }
.contact__info .info-item { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; font-size: .95rem; }
.contact__info .info-item i { opacity: .8; }
.contact__info--center {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem;
  margin-top: .5rem;
}
.contact__info--center .info-item { margin-bottom: 0; }
.info-item--link {
  color: inherit; text-decoration: none;
  transition: opacity .15s;
}
.info-item--link:hover { opacity: .75; }

/* FOOTER */
.footer { background: var(--dark); color: #9CA3AF; padding: 2rem 0 1rem; text-align: center; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; margin-bottom: 1rem; font-size: .9rem; }
.footer__inner a:hover { color: #fff; }
.footer__powered { font-size: .75rem; opacity: .5; }

/* Suspended state */
.suspended-banner {
  background: #dc2626; color: #fff; text-align: center; padding: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .header__inner { gap: .75rem; }
  .header__nav { display: none; }
  .header__brand { font-size: 1rem; }
  .hero-slide { min-height: 340px; }
  .hero-slide__inner { padding: 2.5rem 0; }
  .hero-slide__inner h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .benefits__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .benefit i { width: 38px; height: 38px; font-size: 1.2rem; }
  .collections { padding: 3rem 0; }
  .collections__grid { grid-template-columns: 1fr 1fr; gap: .85rem; }
  .catalog { padding: 3rem 0; }
  .catalog__grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: .7rem; }
  .prod-card img { height: 100px; }
  .filter-bar { gap: .4rem; margin-bottom: 1.5rem; }
  .filter-btn { padding: .35rem .85rem; font-size: .8rem; }
  .contact { padding: 3rem 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-title { font-size: 1.5rem; margin-bottom: 1.75rem; }
}

@media (max-width: 400px) {
  .catalog__grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .prod-card img { height: 90px; }
  .container { padding: 0 1rem; }
  .btn--wa { font-size: .8rem; padding: .6rem 1rem; }
}

/* ── ABOUT ─────────────────────────────────────────────────────────── */
.about-section { padding: 5rem 0; background: #fff; }
.about-desc { text-align: center; color: var(--gray); font-size: 1.05rem; max-width: 720px; margin: 0 auto 2.5rem; line-height: 1.8; }
.about-bullets { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.about-bullet { display: flex; align-items: flex-start; gap: .85rem; padding: 1.25rem; background: var(--bg-light); border-radius: var(--radius); }
.about-bullet .bullet-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.about-bullet .bullet-text strong { display: block; margin-bottom: .2rem; color: #1f2937; font-size: .95rem; }
.about-bullet .bullet-text span { font-size: .85rem; color: var(--gray); line-height: 1.5; }

/* ── PROCESS ────────────────────────────────────────────────────────── */
.process-section { padding: 5rem 0; background: var(--bg-light); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.process-step { text-align: center; }
.process-step .step-num { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient); color: #fff; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-weight: 700; }
.process-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.process-step p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ── SERVICES ───────────────────────────────────────────────────────── */
.services-section { padding: 5rem 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.service-card { padding: 2rem 1.5rem; border-radius: var(--radius); border: 2px solid var(--gray-light); transition: .2s; text-align: center; }
.service-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card .svc-icon { font-size: 2.5rem; margin-bottom: .75rem; line-height: 1; }
.service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.service-card p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ── HERO secondary CTA ─────────────────────────────────────────────── */
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn--hero-sec { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn--hero-sec:hover { background: rgba(255,255,255,.3); }

@media (max-width: 768px) {
  .about-section, .process-section, .services-section { padding: 3rem 0; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .process-steps { gap: 1.5rem; }
}

/* ── Botão "Simular Orçamento" nos cards ─────────────────────── */
.btn--sim {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  width: 100%; padding: .65rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-weight: 600; font-size: .88rem;
  border: none; border-radius: 8px; cursor: pointer; margin-top: auto;
  transition: opacity .15s;
}
.btn--sim:hover { opacity: .88; }

/* ── Página de Produto (era um modal — agora seção de página com URL própria) ── */
.product-page { padding: 2rem 0 3.5rem; }
.breadcrumb { font-size: .82rem; color: #6b7280; margin-bottom: 1rem; display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__current { color: #1f2937; font-weight: 600; }
.product-page__back { margin-bottom: 1.5rem; }
.product-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.product-page__media img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius);
  background: #f3f4f6; box-shadow: var(--shadow);
}
.product-page__top-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: .6rem; }
.product-page__info h1 { font-size: 1.5rem; font-weight: 700; line-height: 1.3; margin-bottom: .5rem; }
@media (max-width: 768px) {
  .product-page { padding: 1.25rem 0 2.5rem; }
  .product-page__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-page__info h1 { font-size: 1.25rem; }
}
.sim-close-btn {
  background: none; border: none; color: #9ca3af; font-size: 1.1rem; cursor: pointer; flex-shrink: 0;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.sim-close-btn:hover { color: #fff; background: rgba(255,255,255,.1); }
.sim-cat-chip {
  display: inline-block; background: #f3f4f6; color: #6b7280;
  font-size: .7rem; padding: .12rem .5rem; border-radius: 99px;
}
.sim-prod-desc { font-size: .9rem; color: #4b5563; line-height: 1.6; margin-bottom: 1.25rem; }
.sim-specs__list { display: grid; grid-template-columns: auto 1fr; column-gap: .75rem; row-gap: .4rem; font-size: .82rem; }
.sim-specs__list dt { color: #6b7280; font-weight: 600; }
.sim-specs__list dd { color: #1f2937; margin: 0; }

/* Compartilhar */
.share-row { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.1rem; }
.share-row__label { font-size: .78rem; color: #6b7280; margin-right: .2rem; }
.share-row a, .share-row button {
  width: 32px; height: 32px; border-radius: 50%; background: #f3f4f6; color: #4b5563;
  display: flex; align-items: center; justify-content: center; font-size: .82rem;
  border: none; cursor: pointer; transition: background .15s, color .15s;
}
.share-row a:hover, .share-row button:hover { background: var(--primary); color: #fff; }

/* Abas: Descrição / Informação adicional */
.product-tabs { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #f3f4f6; }
.product-tabs__nav { display: flex; gap: .5rem; border-bottom: 1px solid var(--gray-light); margin-bottom: 1.25rem; }
.product-tab {
  background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer;
  font-family: inherit; font-size: .88rem; font-weight: 600; color: #6b7280;
  padding: .65rem .3rem; margin-bottom: -1px; transition: color .15s, border-color .15s;
}
.product-tab:hover { color: var(--primary); }
.product-tab.active { color: var(--primary); border-color: var(--primary); }
.product-tabs__panel .sim-prod-desc { font-size: .9rem; color: #4b5563; line-height: 1.65; }

/* Produtos relacionados */
.related-products { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #f3f4f6; }
.related-products__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.1rem; }
.related-products__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .9rem; }

/* Toast */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #1a1f2e; color: #fff; padding: .7rem 1.2rem; border-radius: 10px;
  font-size: .85rem; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  z-index: 9500; box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.btn--outline-dark {
  background: #fff; border: 1.5px solid #d1d5db; color: #374151;
  font-size: .78rem; padding: .35rem .65rem; border-radius: 7px; cursor: pointer; white-space: nowrap; flex-shrink: 0;
}
.btn--outline-dark:hover { border-color: var(--primary); color: var(--primary); }
.sim-step { margin-bottom: 1.25rem; }
.sim-step-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .65rem; }
.sim-step-num {
  width: 26px; height: 26px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; flex-shrink: 0;
}
.sim-step-head strong { font-size: .92rem; }
.sim-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.sim-chip {
  border: 2px solid #e5e7eb; border-radius: 10px; padding: .5rem .8rem;
  cursor: pointer; background: #fff; text-align: center; font-size: .82rem;
  line-height: 1.35; transition: border-color .12s, background .12s;
  user-select: none;
}
.sim-chip:hover { border-color: var(--primary); }
.sim-chip.selected { border-color: var(--primary); background: #f0fdf4; }
.sim-chip .chip-top { font-weight: 700; font-size: .88rem; display: block; }
.sim-chip .chip-sub { color: #6b7280; font-size: .75rem; display: block; }
.sim-picker-back { margin-bottom: .75rem; background: #f3f4f6; border: none; border-radius: 8px; padding: .4rem .8rem; cursor: pointer; font-size: .85rem; }
.sim-picker-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem .75rem; border: 2px solid #e5e7eb; border-radius: 10px;
  cursor: pointer; background: #fff; margin-bottom: .4rem; transition: border-color .12s;
}
.sim-picker-item:hover { border-color: var(--primary); }
.sim-picker-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 7px; background: #f3f4f6; flex-shrink: 0; }
.sim-picker-item strong { font-size: .88rem; display: block; }
.sim-picker-item span { font-size: .75rem; color: #6b7280; }
.sim-footer { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid #e5e7eb; }
.sim-result-box {
  background: #1a1f2e; color: #9ca3af; font-size: .85rem; text-align: center;
  padding: .8rem 1rem; border-radius: 10px; margin-bottom: .65rem; line-height: 1.45;
}
.sim-result-box.has-result { color: #d1fae5; }
.sim-result-box .res-price { font-size: 1.25rem; font-weight: 700; color: #fff; display: block; }
.sim-result-box .res-detail { font-size: .74rem; color: #9ca3af; }
.sim-cart-btn {
  width: 100%; padding: .82rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-weight: 700; font-size: .95rem;
  border: none; border-radius: 10px; cursor: pointer;
  opacity: .4; transition: opacity .2s; display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.sim-cart-btn:not([disabled]) { opacity: 1; }
.sim-cart-btn[disabled] { cursor: default; }

/* ── Carrinho ────────────────────────────────────────────────── */
.cart-header-btn {
  position: relative; background: none; border: 2px solid rgba(255,255,255,.35);
  color: #fff; border-radius: 8px; padding: .35rem .6rem; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; gap: .3rem; min-height: 44px; min-width: 44px; justify-content: center;
}
.cart-header-btn:hover { background: rgba(255,255,255,.1); }
.cart-badge {
  position: absolute; top: -7px; right: -7px;
  background: #ef4444; color: #fff; font-size: .65rem; font-weight: 700;
  border-radius: 99px; min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
#cart-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 9000; display: flex; align-items: flex-end; justify-content: center;
}
.cart-modal {
  background: #fff; width: 100%; max-width: 480px;
  border-radius: 20px 20px 0 0;
  display: flex; flex-direction: column; max-height: 92vh; overflow: hidden;
  animation: simUp .22s ease;
}
@media (min-width: 600px) {
  #cart-backdrop { align-items: center; }
  .cart-modal { border-radius: 16px; max-height: 82vh; }
}
.cart-header {
  background: #1a1f2e; color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1rem; flex-shrink: 0; border-radius: 20px 20px 0 0;
  font-weight: 700; font-size: .92rem;
}
@media (min-width: 600px) { .cart-header { border-radius: 16px 16px 0 0; } }
.cart-body { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-header-count { font-weight: 400; opacity: .75; margin-left: .25rem; }
.cart-empty { text-align: center; color: #9ca3af; padding: 3rem 1rem; font-size: .9rem; }
.cart-empty i { font-size: 2rem; display: block; margin-bottom: .75rem; opacity: .3; }

/* Cart item */
.cart-item {
  border: 1.5px solid #e5e7eb; border-radius: 14px; padding: .9rem 1rem;
  margin-bottom: .75rem; background: #fff;
}
.cart-item-name { font-weight: 700; font-size: .95rem; color: #111827; margin-bottom: .2rem; }
.cart-item-qty  { font-size: .82rem; color: #6b7280; margin-bottom: .35rem; }
.cart-item-opts { font-size: .78rem; color: #6b7280; margin-bottom: .4rem; line-height: 1.7; }
.cart-item-opts span { display: block; }
.cart-item-price-row {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; margin-bottom: .65rem; flex-wrap: wrap;
}
.cart-item-unit  { color: #6b7280; }
.cart-item-sep   { color: #d1d5db; }
.cart-item-total { font-weight: 700; color: var(--primary); }
.cart-item-actions { display: flex; gap: .5rem; }
.cart-action-btn {
  flex: 1; padding: .45rem .6rem; border-radius: 9px; border: 1.5px solid;
  font-size: .8rem; font-weight: 600; cursor: pointer; transition: background .15s, color .15s;
  display: flex; align-items: center; justify-content: center; gap: .35rem;
  background: #fff; font-family: inherit;
}
.cart-edit-btn   { border-color: #d1d5db; color: #374151; }
.cart-edit-btn:hover { background: #f3f4f6; }
.cart-remove-btn { border-color: #fecaca; color: #ef4444; }
.cart-remove-btn:hover { background: #fef2f2; }

/* Cart footer */
.cart-footer { background: #1a1f2e; padding: .9rem 1rem 1rem; flex-shrink: 0; border-radius: 0 0 20px 20px; }
@media (min-width: 600px) { .cart-footer { border-radius: 0 0 16px 16px; } }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .75rem; font-size: .9rem; color: #e5e7eb;
}
.cart-total-row strong { font-size: 1.1rem; color: #facc15; }
.cart-footer-btns { display: flex; gap: .5rem; }
.cart-continue-btn {
  flex: 1; padding: .65rem .5rem; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.25);
  background: transparent; color: #e5e7eb; font-size: .82rem; font-weight: 600; font-family: inherit;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: .4rem;
  transition: background .15s; white-space: nowrap;
}
.cart-continue-btn:hover { background: rgba(255,255,255,.1); }
.cart-checkout-btn {
  flex: 2; padding: .65rem .75rem; border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-size: .88rem; font-weight: 700; font-family: inherit; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  transition: opacity .15s; white-space: nowrap;
}
.cart-checkout-btn:hover { opacity: .9; }

/* Simulator — success state after add */
.sim-added-banner {
  background: #f0fdf4; border: 1.5px solid #86efac; border-radius: 10px;
  color: #16a34a; font-weight: 600; font-size: .88rem;
  padding: .65rem .9rem; margin-bottom: .6rem; text-align: center;
}
.sim-added-banner i { margin-right: .4rem; }
.sim-footer-btns { display: flex; gap: .5rem; }

/* Checkout modal */
#checkout-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 9200; padding: 0;
}
@media (min-width: 600px) {
  #checkout-backdrop { align-items: center; padding: 1rem; }
}
.checkout-modal {
  background: #fff; border-radius: 20px 20px 0 0;
  width: 100%; max-width: 480px;
  max-height: 92vh; display: flex; flex-direction: column;
  overflow: hidden;
}
@media (min-width: 600px) { .checkout-modal { border-radius: 16px; } }
.checkout-body { flex: 1; overflow-y: auto; padding: 1rem; }
.checkout-summary { margin-bottom: .5rem; }
.co-item {
  padding: .6rem .75rem; background: #f9fafb; border-radius: 10px;
  margin-bottom: .5rem;
}
.co-item-name { font-weight: 700; font-size: .88rem; color: #111827; }
.co-item-detail { font-size: .78rem; color: #6b7280; margin: .15rem 0 .2rem; line-height: 1.5; }
.co-opt-tag {
  display: inline-block; background: #e5e7eb; border-radius: 5px;
  padding: .05rem .35rem; font-size: .72rem; margin-left: .2rem;
}
.co-item-price { font-size: .82rem; color: #374151; }
.co-item-price strong { color: var(--primary); }
.checkout-total-bar {
  display: flex; justify-content: space-between; align-items: center;
  background: #1a1f2e; color: #e5e7eb; border-radius: 10px;
  padding: .65rem .9rem; margin-bottom: .85rem; font-size: .9rem;
}
.checkout-total-bar strong { color: #facc15; font-size: 1.05rem; }
.checkout-form-title { font-size: .88rem; font-weight: 700; color: #374151; margin: 0 0 .65rem; }
.co-field { margin-bottom: .65rem; }
.co-field label { display: block; font-size: .78rem; font-weight: 600; color: #6b7280; margin-bottom: .3rem; }
.co-field input, .co-field textarea {
  width: 100%; padding: .6rem .8rem; border: 1.5px solid #e5e7eb; border-radius: 10px;
  font-size: .9rem; font-family: inherit; outline: none; box-sizing: border-box;
  transition: border-color .15s;
}
.co-field input:focus, .co-field textarea:focus { border-color: var(--primary); }
.co-field textarea { resize: vertical; min-height: 60px; }
.checkout-footer {
  background: #1a1f2e; padding: .9rem 1rem 1rem; flex-shrink: 0;
  border-radius: 0 0 20px 20px; display: flex; gap: .5rem;
}
@media (min-width: 600px) { .checkout-footer { border-radius: 0 0 16px 16px; } }

/* Optional group badge & free-qty input */
.sim-optional-tag { font-size:.72rem; font-weight:600; color:#6b7280; background:#f3f4f6; border-radius:6px; padding:.15rem .45rem; margin-left:.1rem; }
.sim-qty-free { display:flex; align-items:center; gap:.6rem; flex-wrap:wrap; }
.sim-qty-free input[type=number] { width:100px; padding:.5rem .75rem; border:2px solid #e5e7eb; border-radius:10px; font-size:1rem; font-family:inherit; outline:none; transition:border-color .12s; }
.sim-qty-free input[type=number]:focus { border-color:var(--primary); }
.sim-qty-unit { font-size:.88rem; color:#374151; }
.sim-qty-price { font-size:.88rem; color:#374151; font-weight:600; }

/* ── DATAS COMEMORATIVAS (anúncios) ─────────────────────────────────── */
.campaigns { padding: 3.5rem 0 1.5rem; background: #fff; }
.campaigns__strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(155px, 1fr); gap: 1rem; overflow-x: auto; padding-bottom: .5rem; scroll-snap-type: x mandatory; }
.campaign-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--shadow); text-decoration: none; scroll-snap-align: start; }
.campaign-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.campaign-card:hover img { transform: scale(1.06); }
.campaign-card__ov { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: .85rem; color: #fff; background: linear-gradient(to top, rgba(15,23,42,.88), rgba(15,23,42,.12) 60%, transparent); }
.campaign-card__pre { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.campaign-card__ov strong { font-size: .95rem; line-height: 1.15; }
.campaign-card__date { font-size: .72rem; opacity: .9; margin-top: .15rem; font-weight: 600; }

/* ── RODAPÉ FALE CONOSCO (3 colunas) ────────────────────────────────── */
.site-footer { background: var(--dark); color: #cbd5e1; padding: 3.5rem 0 1.25rem; margin-top: 2rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.site-footer__brand img { max-height: 56px; margin-bottom: .75rem; border-radius: 8px; background: #fff; padding: 4px; }
.site-footer__name { display: block; font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.site-footer__mission { font-size: .88rem; line-height: 1.6; color: #94a3b8; max-width: 340px; }
.site-footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; text-align: center; }
.site-footer__col #contact-info { display: flex; flex-direction: column; gap: .6rem; align-items: center; }
.site-footer .info-item { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: #cbd5e1; }
.site-footer .info-item--link { text-decoration: none; }
.site-footer .info-item--link:hover { color: #fff; }
.site-footer__links { list-style: none; display: flex; flex-direction: column; gap: .55rem; align-items: center; padding: 0; margin: 0; }
.site-footer__links a { color: #cbd5e1; font-size: .9rem; }
.site-footer__links a:hover { color: #fff; text-decoration: underline; }
.site-footer .footer__powered { text-align: center; margin-top: 2.5rem; opacity: .5; font-size: .75rem; }

/* ── MODAL DE PRODUTOS POR CATEGORIA ────────────────────────────────── */
/* ── Página de Produtos (categoria / todos / campanha) — era um modal ── */
.products-page { padding: 2rem 0 3.5rem; }
.products-page__title { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.cat-modal__tabs { margin-bottom: 1.5rem; }
.cat-select {
  width: 100%; max-width: 320px; padding: .65rem 2.2rem .65rem 1rem; border-radius: 10px;
  border: 2px solid var(--gray-light); background: #fff; font-family: inherit; font-size: .92rem;
  font-weight: 600; color: #1f2937; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center; background-size: 1rem;
}
.cat-select:hover, .cat-select:focus { border-color: var(--primary); outline: none; }

/* Orçamento sob consulta */
.sim-qty-price--quote { color: #f59e0b; font-weight: 600; }

@media (max-width: 768px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .site-footer__mission { max-width: none; margin: 0 auto; }
  .campaigns { padding: 2.5rem 0 1rem; }
  .campaigns__strip { grid-auto-columns: minmax(130px, 1fr); }
  .products-page { padding: 1.25rem 0 2.5rem; }
}
