/* Estilo da página inicial da loja.
 *
 * ESTE ARQUIVO NASCEU DE DENTRO DO HTML.
 *
 * O estilo do site morava em blocos <style> no template: 140 KB que
 * viajavam de novo em CADA página aberta, por cada visitante e por cada
 * robô de busca -- e que o navegador não tinha como guardar, porque
 * estilo dentro do HTML não tem endereço próprio para cachear.
 *
 * Aqui ele tem: é baixado uma vez, fica no navegador por um ano (o
 * endereço carrega a impressão digital do conteúdo, então mudar o
 * arquivo muda o endereço) e sai do peso de toda página.
 *
 * A ORDEM FOI PRESERVADA. Os blocos entraram na mesma sequência em que
 * estavam no template, e o <link> ficou na posição do primeiro deles:
 * em CSS, quem vem depois ganha o empate, e trocar a ordem mudaria a
 * aparência de coisas que ninguém foi conferir.
 */

/* Montserrat vem de core/static/vendor/fontes.css, servida pelo site. */

/* =========================================================
   BASE
========================================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f8f9fa;
  color: #2c3e50;
}

/* Mantém o respiro lateral do base.html no computador. */
main.content-section {
  width: 100%;
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0 20px;
  overflow: visible;
}

@media (max-width: 768px) {
  main.content-section {
    max-width: none;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-x: clip;
  }
}

.nenhum-produto,
.empty-message {
  width: 100%;
  text-align: center;
  margin: 40px 0;
  font-size: 1.1rem;
  color: #666;
}

.espacador {
  height: 80px;
  width: 100%;
  background: #ffffff;
}


@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}


/* =========================================================
   TÍTULOS / SUBTÍTULOS
========================================================= */
.titulo-sec,
.carousel-box h2,
.categorias-section .section-title,
.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #007BFF;
  margin-bottom: 45px;
  letter-spacing: .5px;
  text-decoration: none;
}

.section-title {
  margin-top: 60px;
  margin-bottom: 30px;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-size: 1.2rem;
  color: #444;
  margin-top: 30px;
  margin-bottom: 35px;
  letter-spacing: .3px;
  font-weight: 400;
  line-height: 1.6;
}

.popup-overlay-celebra {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.62);
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.popup-box-celebra {
  position: relative;
  width: min(92vw, 390px);
  max-height: calc(100vh - 28px);
  background: #0f3460;
  border-radius: 14px;
  overflow-y: auto;
  overflow-x: hidden;
  animation: popIn 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.popup-close-celebra {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.popup-header-celebra {
  background: #0f3460;
  padding: 18px 18px 14px;
  text-align: center;
}

.popup-header-celebra p {
  font-size: 10px;
  letter-spacing: 2px;
  color: #ffd700;
  font-weight: 700;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.popup-header-celebra h2 {
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.popup-header-celebra span {
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 900;
  color: #ffd700;
  display: block;
  line-height: 1.05;
}

.popup-header-celebra small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}

.popup-img-celebra {
  width: 100%;
  display: block;
  max-height: 190px;
  object-fit: cover;
  object-position: top;
}

.popup-info-celebra {
  padding: 14px 18px 16px;
  background: #0f3460;
}

.popup-dados-celebra {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.popup-linha-celebra {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.popup-linha-celebra span {
  font-size: 18px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.popup-linha-celebra p {
  margin: 0;
  font-size: 10px;
  color: #ffd700;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.popup-linha-celebra strong {
  display: block;
  margin: 0;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  line-height: 1.25;
}

.popup-botoes-celebra {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.popup-botoes-celebra a,
.popup-fechar-btn-celebra {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.popup-instagram-celebra {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737);
  color: #fff;
}

.popup-whatsapp-celebra {
  background: #25d366;
  color: #fff;
}

.popup-fechar-btn-celebra {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,215,0,0.4);
  color: rgba(255,215,0,0.85);
}

@media (max-height: 720px) {
  .popup-box-celebra {
    width: min(92vw, 360px);
  }

  .popup-header-celebra {
    padding: 14px 16px 10px;
  }

  .popup-img-celebra {
    max-height: 145px;
  }

  .popup-info-celebra {
    padding: 12px 16px;
  }

  .popup-linha-celebra strong {
    font-size: 12px;
  }

  .popup-botoes-celebra a,
  .popup-fechar-btn-celebra {
    padding: 8px;
    font-size: 12px;
  }
}


/* =========================================================
   BOTÕES GERAIS
========================================================= */
.btn-vertodos,
.btn-pequeno,
.ver-todos-eventos,
.ver-todos-projetos {
  display: inline-block;
  background: #007BFF;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: .25s ease;
  box-shadow: 0 4px 10px rgba(0,123,255,0.25);
}

.btn-vertodos {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: .95rem;
}

.btn-pequeno {
  padding: 8px 18px;
  border-radius: 6px;
}

.ver-todos-eventos,
.ver-todos-projetos {
  padding: 14px 32px;
  font-size: 1.2rem;
  font-weight: 700;
  background: #004AAD;
  border-radius: 30px;
  box-shadow: 0 6px 15px rgba(0, 74, 173, 0.35);
}

.btn-vertodos:hover,
.btn-pequeno:hover,
.ver-todos-eventos:hover,
.ver-todos-projetos:hover {
  background: #E63946;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.35);
}

/* =========================================================
   SECTIONS PADRÃO
========================================================= */
.destaques,
.pecas-destaques {
  padding: 70px 20px;
  background: #E3F2FD;
}

.combos-section,
.promocoes-section {
  background: #e8f1ff;
  padding: 40px 0;
  border-radius: 14px;
  margin-top: 40px;
}

.eventos-section {
  padding: 50px 0;
  background: #e8f3ff;
}

/* =========================================================
   IMAGENS / ÁREAS DE IMAGEM
========================================================= */
.img-area {
  width: 100%;
  height: 220px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.img-area img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .25s ease;
}

/* =========================================================
   CATEGORIAS / SCROLL CARDS
========================================================= */
.categorias-section {
  --cat-blue: #0878f9;
  --cat-blue-deep: #004aad;
  --cat-red: #e63946;
  --cat-bg: #06101d;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 82px;
  margin-top: 0;
  padding: 72px 24px 82px;
  color: #f4f8ff;
  background:
    radial-gradient(circle at 6% 8%, rgba(8,120,249,.20), transparent 25rem),
    radial-gradient(circle at 95% 82%, rgba(230,57,70,.14), transparent 24rem),
    linear-gradient(150deg, #0a1728 0%, #050b14 62%, #07111f 100%);
  border-top: 1px solid rgba(120,165,224,.16);
  border-bottom: 1px solid rgba(120,165,224,.13);
}

.categorias-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .15;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.categorias-section a,
.categoria-link {
  text-decoration: none !important;
  color: inherit;
}

.categorias-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  width: min(1460px, 100%);
  margin: 0 auto 22px;
}

.categorias-head-copy {
  max-width: 750px;
}

.categorias-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(99,166,255,.24);
  border-radius: 999px;
  color: #91c2ff;
  background: rgba(8,120,249,.10);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.categorias-section .section-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.055em;
  text-align: left;
}

.categorias-section .section-subtitle {
  max-width: 690px;
  margin: 13px 0 0;
  color: #a8b8cc;
  font-size: .93rem;
  line-height: 1.65;
  text-align: left;
}

.categorias-head-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.categorias-counter {
  display: inline-flex;
  align-items: center;
  min-height: 43px;
  padding: 0 13px;
  border: 1px solid rgba(140,176,220,.16);
  border-radius: 13px;
  color: #9db0c8;
  background: rgba(255,255,255,.045);
  font-size: .68rem;
  font-weight: 850;
  white-space: nowrap;
}

.categorias-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 43px;
  padding: 0 15px;
  border: 1px solid rgba(99,166,255,.22);
  border-radius: 13px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--cat-blue-deep), var(--cat-blue));
  box-shadow: 0 10px 24px rgba(0,74,173,.24);
  font-size: .72rem;
  font-weight: 900;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}

.categorias-all-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 30px rgba(0,74,173,.34);
}

/* Estrutura compartilhada pelos carrosséis antigos de promoções/combos. */
.scroll-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
}

.scroll-container::-webkit-scrollbar {
  height: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #007bff;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0,123,255,.9);
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  font-size: 24px;
  cursor: pointer;
  transform: translateY(-50%);
}

.scroll-btn.left { left: 0; }
.scroll-btn.right { right: 0; }

.scroll-btn:hover {
  background: #e63946;
}

/* O carrossel de categorias recebe o novo padrão visual. */
.categorias-section .scroll-wrapper {
  position: relative;
  width: min(1460px, 100%);
  max-width: none;
  margin: 0 auto;
  padding: 0 54px;
  overflow: visible;
}

.categorias-section .scroll-container {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 16px 3px 26px;
}

.categorias-section .scroll-container::-webkit-scrollbar {
  display: none;
}

.categorias-section .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(136,178,230,.24);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #132a47, #0a1728);
  box-shadow: 0 13px 28px rgba(0,3,11,.42), inset 0 1px 0 rgba(255,255,255,.07);
  font-size: 15px;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, opacity .22s ease;
  z-index: 10;
}

.categorias-section .scroll-btn:hover {
  border-color: rgba(255,255,255,.30);
  background: linear-gradient(145deg, var(--cat-red), #b91e30);
  transform: translateY(-50%) scale(1.04);
}

.categorias-section .scroll-btn:disabled {
  opacity: .28;
  cursor: default;
  transform: translateY(-50%);
}

.categorias-section .scroll-btn.left { left: 0; }
.categorias-section .scroll-btn.right { right: 0; }

.categoria-link {
  flex: 0 0 calc((100% - 42px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.categoria-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  height: 326px;
  overflow: hidden;
  border: 1px solid rgba(132,170,218,.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(8,120,249,.12), transparent 42%),
    linear-gradient(155deg, #12233a, #0a1524 72%);
  box-shadow: 0 18px 38px rgba(0,4,13,.34), inset 0 1px 0 rgba(255,255,255,.035);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.categoria-card:hover {
  transform: translateY(-7px);
  border-color: rgba(78,151,246,.48);
  box-shadow: 0 26px 55px rgba(0,4,14,.52), 0 0 0 1px rgba(8,120,249,.08);
}

.categoria-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 204px;
  min-height: 204px;
  padding: 14px;
  overflow: hidden;
  border-bottom: 1px solid rgba(143,176,218,.12);
  background:
    linear-gradient(rgba(226,236,249,.48) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,236,249,.48) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, #fff 0%, #f4f8fd 72%, #e8f0fa 100%);
  background-size: 24px 24px, 24px 24px, auto;
}

.categoria-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--cat-blue), var(--cat-red), transparent);
}

.categoria-media > img,
.categoria-media .pecas-slider img {
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  border-radius: 15px;
  object-fit: contain !important;
  object-position: center center;
  filter: drop-shadow(0 12px 13px rgba(13,42,81,.16));
  transition: transform .45s ease, opacity .6s ease, filter .45s ease;
}

.categoria-media .pecas-slider img {
  inset: 4px;
  margin: auto;
}

.categoria-media-fallback {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, var(--cat-blue), var(--cat-blue-deep));
  box-shadow: 0 14px 30px rgba(0,74,173,.25);
  font-size: 1.7rem;
}

.categoria-card:hover .categoria-media > img,
.categoria-card:hover .categoria-media .pecas-slider img.active {
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 16px rgba(13,42,81,.22));
}

.categoria-card-tag {
  position: absolute;
  z-index: 3;
  top: 11px;
  left: 11px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(5,17,33,.74);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.categoria-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 17px 17px 15px;
}

.categoria-info h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 40px;
  margin: 0;
  color: #f4f8ff;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.28;
  letter-spacing: -.025em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.categoria-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}

.categoria-info p {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: #80b9ff;
  font-size: .62rem;
  font-weight: 850;
}

.categoria-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--cat-blue-deep), var(--cat-blue));
  font-size: .68rem;
  transition: transform .24s ease, background .24s ease;
}

.categoria-card:hover .categoria-arrow {
  transform: translateX(3px);
  background: linear-gradient(135deg, var(--cat-red), #b91e30);
}

/* slider de peças na categoria */
.pecas-slider {
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.pecas-slider img {
  object-fit: contain;
  opacity: 0;
  transition: opacity .6s ease;
}

.pecas-slider img.active {
  opacity: 1;
}

.pecas-slider::-webkit-scrollbar {
  display: none;
}

.pecas-slider.premium {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

.pecas-slider.premium img {
  position: absolute;
  object-fit: contain;
  opacity: 0;
  transition: opacity .6s ease;
}

.pecas-slider.premium img.active {
  opacity: 1;
}

@media (max-width: 1180px) {
  .categoria-link {
    flex-basis: calc((100% - 28px) / 3);
  }
}

@media (max-width: 920px) {
  .categorias-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .categoria-link {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 768px) {
  .categorias-section {
    margin-top: 0;
    padding: 54px 13px 60px;
  }

  .categorias-head {
    gap: 17px;
    margin-bottom: 18px;
  }

  .categorias-section .section-title {
    font-size: 2rem;
  }

  .categorias-section .section-subtitle {
    font-size: .78rem;
  }

  .categorias-head-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .categorias-counter {
    display: none;
  }

  .categorias-all-link {
    width: 100%;
  }

  .categorias-section .scroll-wrapper {
    width: 100%;
    padding: 0;
  }

  .categorias-section .scroll-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    overflow: visible;
    padding: 4px 0 0;
  }

  .categoria-link {
    min-width: 0;
  }

  .categoria-link:nth-child(n + 5) {
    display: none;
  }

  .categoria-card {
    height: 266px;
    border-radius: 19px;
  }

  .categoria-media {
    height: 154px;
    min-height: 154px;
    padding: 9px;
  }

  .categoria-media > img,
  .categoria-media .pecas-slider img {
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 12px;
  }

  .categoria-card-tag {
    top: 8px;
    left: 8px;
    padding: 5px 7px;
    font-size: .48rem;
  }

  .categoria-info {
    padding: 11px;
  }

  .categoria-info h3 {
    min-height: 34px;
    font-size: .75rem;
  }

  .categoria-meta {
    padding-top: 7px;
  }

  .categoria-info p {
    font-size: .55rem;
  }

  .categoria-arrow {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    border-radius: 8px;
    font-size: .58rem;
  }

  .categorias-section .scroll-btn {
    display: none;
  }
}

/* =========================================================
   DIVISOR
========================================================= */
.section-divider {
  width: 100%;
  background: #007BFF;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  margin: 60px 0;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  line-height: 1.4;
}

.rotating-messages .message {
  display: none;
}

.rotating-messages .message.active {
  display: inline-block;
}

/* =========================================================
   GRID DE PRODUTOS
========================================================= */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  min-width: 0;
  height: 100%;
}

#produtos-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0 10px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  align-items: stretch;
  min-height: 600px;
}

.card-produto {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(244,248,255,.92) 0, #fff 43%),
    #fff;
  border: 1px solid rgba(0,74,173,.13);
  border-radius: 26px;
  box-shadow:
    0 18px 45px rgba(15,38,76,.09),
    0 3px 10px rgba(15,38,76,.04);
  overflow: hidden;
  transition:
    transform .32s cubic-bezier(.22,1,.36,1),
    box-shadow .32s ease,
    border-color .32s ease;
  margin: 0 auto;
  height: 100%;
  animation: fadeCard .5s ease forwards;
  isolation: isolate;
}

.card-produto::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #004aad 0 72%, #e63946 72%);
  z-index: 6;
}

.card-produto.is-sale::before {
  background: linear-gradient(90deg, #004aad 0 48%, #e63946 48% 100%);
}

.card-link:hover .card-produto,
.card-link:focus-within .card-produto {
  transform: translateY(-8px);
  border-color: rgba(0,74,173,.3);
  box-shadow:
    0 26px 56px rgba(15,38,76,.16),
    0 8px 18px rgba(0,74,173,.08);
}

.produto-media-link,
.produto-title-link {
  color: inherit;
  text-decoration: none;
}

.produto-media-link {
  display: block;
}

.card-produto .img-area {
  position: relative;
  height: 238px;
  padding: 24px 22px 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(230,57,70,.12), transparent 29%),
    radial-gradient(circle at 18% 82%, rgba(0,74,173,.14), transparent 34%),
    linear-gradient(145deg, #f7faff, #edf4ff);
  border-bottom: 1px solid rgba(0,74,173,.09);
}

.card-produto .img-area::after {
  content: "";
  position: absolute;
  inset: auto 12% 8px;
  height: 18px;
  border-radius: 50%;
  background: rgba(9,31,62,.16);
  filter: blur(12px);
  z-index: 0;
}

.card-produto .img-area img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 14px rgba(9,31,62,.19));
  transition: transform .48s cubic-bezier(.22,1,.36,1), filter .35s ease;
}

.card-link:hover .card-produto .img-area img,
.card-link:focus-within .card-produto .img-area img {
  transform: translateY(-3px);
  filter: drop-shadow(0 20px 18px rgba(9,31,62,.25));
}

.produto-status {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 32px);
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #004aad;
  border: 1px solid rgba(0,74,173,.14);
  box-shadow: 0 8px 22px rgba(15,38,76,.12);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.produto-status.is-sale {
  background: linear-gradient(135deg, #004aad, #0069e8);
  color: #fff;
  border-color: transparent;
}

.produto-status.is-sale i {
  color: #fff;
}

.card-produto .conteudo {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 21px 21px 20px;
}

.card-produto .categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  margin: 0 0 12px;
}

.card-produto .categoria-pill {
  padding: 5px 9px;
  border: 1px solid rgba(0,74,173,.11);
  border-radius: 999px;
  background: #edf4ff;
  color: #004aad;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.2;
}

.card-produto h3 {
  margin: 0;
  color: #10233f;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: -.025em;
  text-align: left;
  transition: color .2s ease;
}

.produto-title-link:hover h3 {
  color: #004aad;
}

.card-produto .avaliacao {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  margin: 9px 0 0;
}

.card-produto .stars {
  display: inline-flex;
  gap: 4px;
  color: #e63946;
  line-height: 0;
}

.card-produto .avaliacao .nota {
  color: #65758b;
  font-size: .78rem;
  font-weight: 700;
}

.card-produto .descricao {
  display: -webkit-box;
  min-height: 58px;
  margin: 13px 0 15px;
  overflow: hidden;
  color: #526176;
  font-size: .86rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.produto-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 13px;
}

.produto-spec {
  display: flex;
  min-width: 0;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 8px 7px;
  border: 1px solid #e5ebf4;
  border-radius: 13px;
  background: #f7f9fc;
  color: #516076;
  text-align: center;
}

.produto-spec i {
  color: #004aad;
  font-size: .84rem;
}

.produto-spec span {
  overflow: hidden;
  font-size: .66rem;
  font-weight: 750;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.card-produto .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 24px;
  margin: 0 0 15px;
}

.card-produto .tag {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f2f5f9;
  color: #617088;
  font-size: .67rem;
  font-weight: 700;
}

.produto-comercial {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #e8edf5;
}

.produto-preco-wrap {
  min-width: 0;
}

.produto-preco-label {
  display: block;
  margin-bottom: 3px;
  color: #6d7c91;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.card-produto .produto-preco {
  display: block;
  color: #004aad;
  font-size: clamp(1.24rem, 2vw, 1.58rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.produto-consulta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #10233f;
  font-size: .92rem;
  font-weight: 850;
}

.produto-favoritos {
  margin: 0 0 10px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.acoes-fixas {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 9px;
  margin-top: 14px;
}

.produto-acao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 47px;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.produto-acao:hover {
  transform: translateY(-2px);
}

.btn-cart-brinquedo {
  background: linear-gradient(135deg, #004aad, #006ee6);
  color: #fff;
  box-shadow: 0 9px 20px rgba(0,74,173,.22);
}

.btn-cart-brinquedo:hover {
  background: linear-gradient(135deg, #003f93, #005ec6);
  box-shadow: 0 12px 24px rgba(0,74,173,.3);
}

.btn-cart-brinquedo.is-added {
  background: linear-gradient(135deg, #128442, #19a455);
}

.btn-cart-brinquedo:disabled {
  cursor: wait;
  opacity: .84;
}

.btn-detalhes-brinquedo {
  background: #fff;
  color: #004aad;
  border-color: rgba(0,74,173,.22);
}

.btn-detalhes-brinquedo:hover {
  background: #edf4ff;
  border-color: rgba(0,74,173,.36);
}

.btn-orcamento-brinquedo {
  background: linear-gradient(135deg, #e63946, #c91f31);
  color: #fff;
  box-shadow: 0 9px 20px rgba(230,57,70,.2);
}

.btn-orcamento-brinquedo:hover {
  background: linear-gradient(135deg, #ce2d3a, #ad1828);
  box-shadow: 0 12px 24px rgba(230,57,70,.27);
}

@media (max-width: 1020px) {
  .grid-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .grid-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .card-produto {
    max-width: 430px;
    border-radius: 22px;
  }

  .card-produto .img-area {
    height: 218px;
  }

  .card-produto .conteudo {
    padding: 18px;
  }
}

@media (max-width: 390px) {
  .produto-specs {
    grid-template-columns: 1fr;
  }

  .produto-spec {
    min-height: 44px;
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .acoes-fixas {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FILTROS
========================================================= */
.filtros-horizontal {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 20px 0 30px 0;
  flex-wrap: wrap;
}

.filtro-btn {
  display: block;
  width: 220px;
  text-align: center;
  padding: 14px 0;
  font-size: 1rem;
  background: #ffffff;
  color: #3a3a3a;
  text-decoration: none;
  font-weight: 600;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: all .25s ease;
  cursor: pointer;
}

.filtro-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
  background: #f8f8f8;
}

.filtro-btn.ativo {
  background: linear-gradient(135deg, #0d6efd, #4aa3ff);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(13,110,253,0.45);
}

/* =========================================================
   PAGINAÇÃO
========================================================= */
.paginacao {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 40px 0;
  font-family: "Poppins", sans-serif;
  flex-wrap: wrap;
}

.page-atual {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1f2d3d;
  background: #f1f7ff;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #cce1ff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

#paginacao-wrapper,
#paginacao-pecas,
#paginacao-eventos,
#paginacao-projetos {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

#paginacao-wrapper .paginacao,
#paginacao-pecas .paginacao,
#paginacao-eventos .paginacao,
#paginacao-projetos .paginacao {
  margin: 0;
  width: 100%;
}

.page-btn-produtos,
.page-btn-pecas {
  padding: 10px 18px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #007BFF;
  color: #007BFF;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  cursor: pointer;
}

.page-btn-produtos:disabled,
.page-btn-pecas:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.page-btn-produtos:disabled:hover,
.page-btn-pecas:disabled:hover {
  background: #ffffff;
  color: #007BFF;
}

.page-btn-produtos:hover,
.page-btn-pecas:hover {
  background: #007BFF;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,123,255,0.35);
}

/* =========================================================
   PEÇAS
========================================================= */
#pecas-container {
  width: 100%;
}

.pecas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.pecas-card-link {
  display: flex;
  color: inherit;
  min-width: 0;
}

.pecas-card {
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(12, 73, 145, .12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 250, 254, .98));
  box-shadow: 0 16px 40px rgba(22, 56, 94, .11);
  animation: fadeCardPeca .6s ease forwards;
  transition:
    transform .3s cubic-bezier(.22, 1, .36, 1),
    box-shadow .3s ease,
    border-color .3s ease;
}

.pecas-card-link:hover .pecas-card {
  border-color: rgba(0, 123, 255, .27);
  transform: translateY(-7px);
  box-shadow: 0 24px 56px rgba(19, 58, 102, .17);
}

.pecas-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.pecas-card .img-area {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: auto;
  aspect-ratio: 1.24 / 1;
  overflow: hidden;
  padding: 18px;
  border-radius: 23px 23px 18px 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 123, 255, .18), transparent 28%),
    radial-gradient(circle at 88% 86%, rgba(230, 57, 70, .12), transparent 25%),
    linear-gradient(145deg, #eaf3fd 0%, #f8fbff 47%, #e9eff7 100%);
}

.pecas-card .img-area::before,
.pecas-card .img-area::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(0, 74, 173, .1);
  border-radius: 50%;
}

.pecas-card .img-area::before {
  width: 152px;
  height: 152px;
  top: -88px;
  right: -55px;
  box-shadow:
    0 0 0 18px rgba(0, 123, 255, .035),
    0 0 0 38px rgba(0, 123, 255, .025);
}

.pecas-card .img-area::after {
  width: 90px;
  height: 90px;
  left: -42px;
  bottom: -45px;
  box-shadow: 0 0 0 16px rgba(230, 57, 70, .03);
}

.pecas-card .img-area img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 13px 15px rgba(23, 51, 82, .16));
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
}

.pecas-card-link:hover .img-area img {
  transform: translateY(-2px);
}

.pecas-original-badge {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 13px;
  min-height: 28px;
  padding: 6px 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #004aad, #007bff);
  box-shadow: 0 7px 16px rgba(0, 74, 173, .22);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.pecas-original-badge i {
  font-size: .65rem;
}

.pecas-card .conteudo {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 17px 18px 18px;
  text-align: left;
}

.pecas-card h3 {
  min-height: 2.6em;
  margin: 4px 0 8px;
  display: -webkit-box;
  overflow: hidden;
  color: #132d4a;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.018em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pecas-title-link {
  color: inherit;
  text-decoration: none;
}

.pecas-card .categorias {
  min-height: 27px;
  margin: 0 0 8px;
  justify-content: flex-start;
  overflow: hidden;
  flex-wrap: nowrap;
}

.pecas-card .categoria-pill {
  flex: 0 1 auto;
  overflow: hidden;
  padding: 5px 9px;
  border: 1px solid rgba(0, 105, 218, .11);
  color: #0757ae;
  background: #eaf4ff;
  font-size: .67rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pecas-card p.descricao {
  min-height: 3.95em;
  margin: 0 0 13px;
  padding: 0;
  display: -webkit-box;
  overflow: hidden;
  color: #61758b;
  font-size: .79rem;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.pecas-price-row {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(23, 71, 117, .1);
}

.pecas-price-copy small {
  display: block;
  margin-bottom: 2px;
  color: #7a8da0;
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pecas-card .preco {
  margin: 0;
  color: #075ccb;
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-align: left;
}

.pecas-price-consulta {
  color: #516a83;
  font-size: .9rem;
  font-weight: 800;
}

.pecas-actions {
  margin-top: 13px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
}

.pecas-cart-button,
.pecas-details-button,
.pecas-whatsapp-button {
  position: relative;
  z-index: 2;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-family: inherit;
  font-size: .76rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
}

.pecas-cart-button {
  padding: 10px 13px;
  background: linear-gradient(135deg, #004aad, #087dff);
  box-shadow: 0 9px 20px rgba(0, 92, 203, .24);
}

.pecas-cart-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 92, 203, .31);
}

.pecas-cart-button.is-loading {
  opacity: .74;
  cursor: wait;
  pointer-events: none;
}

.pecas-cart-button.is-added {
  background: linear-gradient(135deg, #079452, #12bb69);
  box-shadow: 0 9px 20px rgba(7, 148, 82, .24);
}

.pecas-details-button {
  width: 44px;
  color: #075ccb;
  border: 1px solid rgba(0, 92, 203, .16);
  background: #edf5ff;
}

.pecas-details-button:hover {
  color: #fff;
  background: #075ccb;
  transform: translateY(-2px);
}

.pecas-whatsapp-button {
  padding: 10px 13px;
  background: linear-gradient(135deg, #128c4a, #20c763);
  box-shadow: 0 9px 20px rgba(18, 140, 74, .22);
}

.pecas-whatsapp-button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(18, 140, 74, .29);
}

.pecas-cart-button:focus-visible,
.pecas-details-button:focus-visible,
.pecas-whatsapp-button:focus-visible,
.pecas-media-link:focus-visible,
.pecas-title-link:focus-visible {
  outline: 3px solid rgba(0, 123, 255, .3);
  outline-offset: 3px;
}

/* =========================================================
   PROMOÇÕES / COMBOS
========================================================= */
.oferta-card-link {
  display: block;
  flex: 0 0 338px;
  min-width: 338px;
  height: auto;
  color: inherit;
  text-decoration: none !important;
  border-radius: 24px;
  outline: none;
}

.oferta-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 548px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 74, 173, 0.15);
  border-radius: 26px;
  box-shadow: 0 15px 38px rgba(20, 48, 88, 0.16);
  isolation: isolate;
  transition:
    transform .32s cubic-bezier(.22, 1, .36, 1),
    box-shadow .32s ease,
    border-color .32s ease;
}

.oferta-card::before,
.oferta-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.oferta-card::before {
  right: -58px;
  bottom: 112px;
  width: 150px;
  height: 150px;
  border: 24px solid rgba(0, 123, 255, .055);
}

.oferta-card::after {
  left: -42px;
  bottom: -52px;
  width: 126px;
  height: 126px;
  background: radial-gradient(circle, rgba(230, 57, 70, .09) 0 3px, transparent 4px);
  background-size: 17px 17px;
}

.oferta-card.combo-card::before {
  border-color: rgba(255, 215, 0, .10);
}

.oferta-card-link:hover .oferta-card,
.oferta-card-link:focus-visible .oferta-card {
  transform: translateY(-8px);
  border-color: rgba(0, 123, 255, 0.28);
  box-shadow: 0 22px 46px rgba(0, 74, 173, 0.18);
}

.oferta-card-media {
  position: relative;
  width: 100%;
  height: 252px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #eaf3ff, #d2e5ff);
}

.oferta-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(8, 25, 50, .34), transparent);
}

.oferta-card-media-bg {
  position: absolute;
  inset: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  max-width: none;
  object-fit: cover;
  filter: blur(15px) saturate(1.12);
  opacity: .32;
  transform: scale(1.08);
}

.oferta-card-media img.oferta-card-produto {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  padding: 12px 15px 8px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  filter: drop-shadow(0 13px 15px rgba(9, 31, 62, .24));
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), filter .35s ease;
}

.oferta-card-link:hover .oferta-card-media img.oferta-card-produto {
  transform: translateY(-2px);
  filter: drop-shadow(0 17px 18px rgba(9, 31, 62, .30)) saturate(1.06);
}

.oferta-card-selo {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #e63946, #c9152d);
  box-shadow: 0 8px 18px rgba(114, 13, 27, .28);
  font-size: .72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.oferta-card-selo.combo {
  background: linear-gradient(135deg, #004aad, #007bff);
  box-shadow: 0 8px 18px rgba(0, 74, 173, .30);
}

.oferta-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 23px;
  text-align: left;
}

.oferta-card-info h3 {
  min-height: 2.65em;
  margin: 0 0 7px;
  color: #10233f;
  font-size: 1.24rem;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -.025em;
}

.oferta-card-title-link {
  color: inherit;
  text-decoration: none;
}

.oferta-card-title-link:hover h3 {
  color: #004aad;
}

.oferta-card-info .nome-brinquedo {
  min-height: 2.5em;
  margin: 0 0 15px;
  color: #64748b;
  font-size: .88rem;
  line-height: 1.45;
  font-weight: 600;
}

.oferta-precos {
  margin-top: auto;
  padding: 14px 15px;
  border: 1px solid #e5edf7;
  border-radius: 16px;
  background: #f7faff;
}

.oferta-precos p {
  margin: 0;
  line-height: 1.45;
}

.oferta-precos .preco-original,
.oferta-precos .combo-total {
  color: #718096;
  font-size: .81rem;
  font-weight: 600;
}

.oferta-precos .preco-promocao,
.oferta-precos .combo-preco {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  color: #334155;
  font-size: .82rem;
  font-weight: 700;
}

.oferta-precos .preco-promocao strong,
.oferta-precos .preco-promo {
  color: #0aa44f;
  font-size: 1.28rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.035em;
  text-shadow: none;
}

.oferta-card .combo-economia {
  margin: 10px 0 0;
  padding: 9px 11px;
  border-radius: 11px;
  color: #08783d;
  background: #eafaf1;
  font-size: .79rem;
  line-height: 1.35;
  font-weight: 700;
}

.oferta-card .combo-economia strong {
  color: #08783d;
}

.oferta-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
  padding: 12px 15px;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #004aad, #007bff);
  box-shadow: 0 9px 20px rgba(0, 74, 173, .22);
  font-size: .88rem;
  line-height: 1;
  font-weight: 800;
  transition: background .25s ease, box-shadow .25s ease;
}

.oferta-card-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 14px;
}

.oferta-card-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border: 1px solid #dce9f8;
  border-radius: 999px;
  color: #315274;
  background: rgba(240, 247, 255, .88);
  font-size: .66rem;
  line-height: 1;
  font-weight: 800;
}

.oferta-card-benefits i {
  color: #007bff;
}

.oferta-card-link:hover .oferta-card-cta,
.oferta-card-cta:hover {
  background: linear-gradient(135deg, #e63946, #c9152d);
  box-shadow: 0 10px 22px rgba(201, 21, 45, .24);
}

.oferta-card-acoes {
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  gap: 9px;
  margin-top: 16px;
}

.oferta-card-acoes .oferta-card-cta {
  margin-top: 0;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.oferta-card-cart {
  justify-content: center;
  background: linear-gradient(135deg, #0ead55, #07883f);
  box-shadow: 0 9px 20px rgba(7, 136, 63, .24);
}

.oferta-card-cart:hover {
  background: linear-gradient(135deg, #12bf60, #087d3c);
  box-shadow: 0 12px 24px rgba(7, 136, 63, .32);
}

.oferta-card-details {
  justify-content: center;
  color: #004aad;
  background: #eef5ff;
  box-shadow: none;
  text-decoration: none;
}

.oferta-card-details:hover {
  color: #ffffff;
}

.oferta-card-cta i {
  font-size: .78rem;
  transition: transform .25s ease;
}

.oferta-card-link:hover .oferta-card-cta i {
  transform: translateX(4px);
}

.oferta-card-cart i {
  font-size: .93rem;
}

.nome-brinquedo {
  margin-bottom: 6px;
  color: #555;
  font-size: 0.95rem;
}

.preco-box {
  margin-bottom: 12px;
}

.preco-original span,
.total-riscado {
  text-decoration: line-through;
  color: #888;
}

.preco-promocao strong {
  font-size: 1.25rem;
  color: #00B341;
  text-shadow: 0 0 6px rgba(0, 179, 65, 0.4);
}

.preco-promo {
  color: #28a745;
  font-size: 1.4em;
  font-weight: bold;
}

.economia-verde {
  color: #2ecc71;
  font-weight: bold;
}

.combo-economia {
  margin-top: 8px;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .oferta-card-link {
    flex-basis: min(82vw, 300px);
    min-width: min(82vw, 300px);
  }

  .oferta-card {
    min-height: 520px;
    height: auto;
    border-radius: 21px;
  }

  .oferta-card-media {
    height: 224px;
  }

  .oferta-card-info {
    padding: 18px;
  }

  .oferta-card-info h3 {
    min-height: auto;
    font-size: 1.08rem;
  }

  .oferta-card-info .nome-brinquedo {
    min-height: auto;
  }

  .oferta-card-acoes {
    grid-template-columns: 1fr;
  }

  .oferta-card-acoes .oferta-card-cta {
    min-height: 43px;
  }
}

/* =========================================================
   MANUTENÇÃO
========================================================= */
.btn-manutencao {
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  transition: all .3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-manutencao:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
}

.btn-manutencao .icon {
  font-size: 36px;
}

.btn-manutencao small {
  display: block;
  font-size: 13px;
  opacity: .9;
}

.manutencao-card {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.manutencao-info {
  flex: 1;
}

.manutencao-info .form-group {
  margin-bottom: 12px;
}

.manutencao-info input,
.manutencao-info textarea,
.manutencao-info select,
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: .9rem;
}

.manutencao-info button.btn-vermais {
  width: 100%;
  background: #007BFF;
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.manutencao-info button.btn-vermais:hover {
  background: #E63946;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.btn-enviar {
  width: 100%;
  padding: 14px;
  background: #ff5722;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

.btn-enviar:hover {
  background: #e64a19;
}

/* Bloco antigo de #contato (ID) removido: ele tinha mais
   especificidade que as classes .ls-loc-* usadas hoje na
   seção de contato, e por isso vencia a briga de CSS,
   travando a altura do mapa em 300px, forçando os links a
   ficarem dourados (#FFD166) e trocando o fundo/padding da
   seção pelo gradiente azul/vermelho antigo. Toda a
   estilização atual dessa seção vem das classes .ls-loc-*
   logo abaixo, no bloco "CONTATO" com o mapa. */

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 30px 10px 0;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.social-icons a.instagram {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 22%, #d62976 48%, #962fbf 72%, #4f5bd5 100%);
}

.social-icons a.whatsapp {
  background: #25D366;
}

.social-icons a.facebook {
  background: #1877F2;
}

.social-icons a.linkedin {
  background: #0A66C2;
}

.social-icons a.threads {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* =========================================================
   EVENTOS / ESTABELECIMENTOS
========================================================= */
.eventos-header,
.projetos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.titulo-eventos {
  font-size: 2.4rem;
  color: #004AAD;
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.evento-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: 0.3s;
}

.evento-card:hover {
  transform: translateY(-6px);
}

.evento-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
  border-bottom: 1px solid #eee;
}

.evento-card:hover .evento-thumb img {
  transform: scale(1.05);
}

/* =========================================================
   PROJETOS CARROSSEL
========================================================= */
.carousel-box {
  width: 100%;
  min-height: 420px;
  padding: 60px 0;
  background: #f0f4ff;
  margin: 80px auto;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* =========================================================
   CARROSSEIS / CONTROLES
========================================================= */
.carousel-container {
  width: 100%;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: auto;
}

.carousel-slide.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #004AAD;
  color: white;
  border: none;
  font-size: 22px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .9;
  transition: .25s ease;
}

.carousel-btn:hover {
  background: #E63946;
  transform: translateY(-50%) scale(1.12);
}

.carousel-btn.prev,
.prev {
  left: 10px;
}

.carousel-btn.next,
.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot,
.carousel-dots .dot {
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s, transform .2s;
  padding: 5px;
  background-clip: content-box;
}

.dot.active,
.carousel-dots .dot.active {
  background: #E63946;
}

.dot:hover,
.carousel-dots .dot:hover {
  transform: scale(1.3);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}

.carousel-nav.left { left: 0; }
.carousel-nav.right { right: 0; }

/* =========================================================
   MODAIS
========================================================= */
.modal,
.evento-modal,
.projeto-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 99999;
}

.evento-modal,
.projeto-modal {
  padding: 30px 20px;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}

.modal {
  z-index: 1000;
  background: rgba(0,0,0,.6);
}

.modal-content,
.modal-conteudo {
  background: linear-gradient(145deg, #ffffff, #f0f4ff);
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeInUp .4s ease-out;
}

.modal-conteudo {
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close,
.fechar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  color: #E63946;
  transition: .25s;
}

.modal-close:hover,
.fechar:hover {
  transform: scale(1.12);
}

.modal-title {
  font-size: 2.2rem;
  color: #004AAD;
  margin-bottom: 10px;
  font-weight: 800;
}

.modal-descricao {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.modal-subtitle {
  font-size: 1.3rem;
  color: #004AAD;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: left;
}

.modal-carousel {
  position: relative;
  margin: 25px 0 35px;
  overflow: hidden;
  border-radius: 16px;
}

.modal-carousel-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.modal-carousel-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.modal-carousel-track img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.stack-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
}

.stack-gallery::-webkit-scrollbar {
  display: none;
}

.stack-gallery .stack-img {
  width: 260px;
  height: 165px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform .25s ease;
}

.stack-gallery .stack-img:hover {
  transform: scale(1.05);
}

.modal-brinquedos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.brinquedo-card {
  background: #e6f0ff;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brinquedo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.brinquedo-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.brinquedo-card h4 {
  font-size: 1.2rem;
  color: #004AAD;
  margin-bottom: 8px;
  font-weight: 700;
}

.brinquedo-card p {
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.brinquedo-card .preco {
  font-weight: 700;
  color: #E63946;
  font-size: 1rem;
}

/* =========================================================
   ANIMAÇÕES
========================================================= */
@keyframes fadeCard {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeCardPeca {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   HERO
========================================================= */
.hero h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1em;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero .btn {
  background: white;
  color: #007BFF;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #E63946;
  color: white;
  transform: scale(1.05);
}

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width: 1024px) {
  .pecas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .img-area {
    height: 200px;
    padding: 14px;
  }

  .pecas-card h3 {
    font-size: 1.15em;
  }
}

@media (max-width: 768px) {
  .carousel-wrapper {
    height: 300px;
  }

  .carousel-btn {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
  }

  .pecas-destaques,
  .destaques {
    padding: 50px 15px;
  }

  .pecas-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .pecas-card .img-area {
    max-height: 330px;
    padding: 16px;
  }

  .pecas-card {
    max-width: 430px;
    margin: 0 auto;
    border-radius: 20px;
  }

  .pecas-card h3 {
    min-height: auto;
    font-size: 1.02rem;
  }

  .pecas-card p.descricao {
    min-height: auto;
    font-size: .77rem;
  }

  .pecas-card .conteudo {
    padding: 15px;
  }

  .pecas-card .preco {
    font-size: 1.3rem;
  }

  .pecas-cart-button,
  .pecas-details-button,
  .pecas-whatsapp-button {
    min-height: 43px;
  }

  .scroll-btn {
    display: none;
  }

  .card-produto .img-area img {
    object-fit: contain;
    transform: none;
  }
}

@media (max-width: 520px) {
  .card-produto {
    width: 100%;
  }

  .grid-cards {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
    font-size: 18px;
    margin: 24px 6px 0;
  }
}

.ls-home-hero {
        --hero-blue: #0878f9;
        --hero-blue-deep: #004aad;
        --hero-red: #e63946;
        position: relative;
        isolation: isolate;
        overflow: hidden;
        padding: clamp(48px, 5vw, 68px) 24px 58px;
        color: #fff;
        background:
            radial-gradient(circle at 88% 12%, rgba(230,57,70,.25), transparent 27rem),
            radial-gradient(circle at 8% 94%, rgba(8,120,249,.35), transparent 31rem),
            linear-gradient(140deg, #071426 0%, #0a2447 58%, #063d83 100%);
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .ls-home-hero::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 0;
        opacity: .14;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
        background-size: 46px 46px;
        mask-image: linear-gradient(to bottom, #000, transparent 90%);
    }

    .ls-home-hero-inner {
        width: min(1420px, 100%);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0,.88fr) minmax(580px,1.12fr);
        gap: 48px;
        align-items: center;
    }

    .ls-home-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 24px;
        padding: 9px 14px;
        border: 1px solid rgba(255,255,255,.20);
        border-radius: 999px;
        color: #fff;
        background: linear-gradient(135deg, var(--hero-red), #bd2033);
        box-shadow: 0 10px 24px rgba(129,13,31,.24);
        font-family: 'Poppins', sans-serif;
        font-size: .7rem;
        font-weight: 850;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    .ls-home-title {
        max-width: 680px;
        margin: 0 0 20px;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: clamp(2.35rem, 4.7vw, 4rem);
        font-weight: 850;
        line-height: 1.04;
        letter-spacing: -.055em;
    }

    .ls-home-title span { color: #72b6ff; }

    .ls-home-subtitle {
        max-width: 620px;
        margin: 0 0 31px;
        color: #bdcce0;
        font-size: 1rem;
        line-height: 1.72;
    }

    .ls-home-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .ls-home-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 49px;
        padding: 0 20px;
        border: 1px solid transparent;
        border-radius: 14px;
        font-size: .78rem;
        font-weight: 850;
        text-decoration: none;
        transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
    }

    .ls-home-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

    .ls-home-btn-dark {
        color: #fff;
        background: linear-gradient(135deg, var(--hero-blue-deep), var(--hero-blue));
        box-shadow: 0 12px 26px rgba(0,74,173,.30);
    }

    .ls-home-btn-outline {
        color: #fff;
        border-color: rgba(255,255,255,.22);
        background: rgba(255,255,255,.08);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }

    .ls-home-btn-primary {
        color: #fff;
        background: linear-gradient(135deg, #22aa59, #118541);
        box-shadow: 0 12px 26px rgba(17,133,65,.28);
    }

    .ls-home-hero-card {
        min-width: 0;
        padding: 16px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 28px;
        background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
        box-shadow: 0 28px 70px rgba(0,5,16,.36), inset 0 1px 0 rgba(255,255,255,.10);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }

    .ls-home-hero-img {
        display: block;
        width: 100%;
        height: 252px;
        margin-bottom: 15px;
        padding: 10px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 19px;
        object-fit: contain;
        object-position: center;
        background:
            linear-gradient(rgba(220,232,247,.45) 1px, transparent 1px),
            linear-gradient(90deg, rgba(220,232,247,.45) 1px, transparent 1px),
            radial-gradient(circle at center, #fff, #edf4fc);
        background-size: 28px 28px, 28px 28px, auto;
        box-shadow: 0 14px 32px rgba(0,4,14,.24);
    }

    .ls-home-mini-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin: 3px 2px 11px;
    }

    .ls-home-mini-head strong {
        color: #fff;
        font-size: .72rem;
        font-weight: 850;
        letter-spacing: .045em;
        text-transform: uppercase;
    }

    .ls-home-mini-head a {
        color: #8fc2ff;
        font-size: .65rem;
        font-weight: 800;
        text-decoration: none;
    }

    .ls-home-hero-minis {
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 9px;
    }

    .ls-home-mini {
        display: block;
        position: relative;
        min-width: 0;
        min-height: 75px;
        padding: 12px 30px 11px 12px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 14px;
        color: #fff;
        background: rgba(3,13,27,.34);
        text-decoration: none;
        transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }

    .ls-home-mini:nth-child(n + 7) { display: none; }

    .ls-home-mini:hover {
        transform: translateY(-2px);
        border-color: rgba(113,180,255,.38);
        background: rgba(8,120,249,.15);
    }

    .ls-home-mini strong {
        display: -webkit-box;
        overflow: hidden;
        margin-bottom: 5px;
        color: #f4f8ff;
        font-family: 'Poppins', sans-serif;
        font-size: .7rem;
        font-weight: 800;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .ls-home-mini span {
        color: #82b9fb;
        font-size: .61rem;
        font-weight: 750;
    }

    .ls-home-mini i {
        position: absolute;
        top: 50%;
        right: 11px;
        color: #6daeff;
        font-size: .62rem;
        transform: translateY(-50%);
    }

    .ls-home-stats {
        padding: 20px 24px;
        border-bottom: 1px solid rgba(126,163,210,.13);
        background: #050c16;
    }

    .ls-home-stats-inner {
        width: min(1420px, 100%);
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 12px;
    }

    .ls-home-stat {
        display: flex;
        align-items: center;
        gap: 13px;
        min-width: 0;
        padding: 16px 18px;
        border: 1px solid rgba(132,170,218,.13);
        border-radius: 17px;
        background: linear-gradient(145deg, #0e1b2d, #091421);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
    }

    .ls-home-stat-icon {
        display: grid;
        place-items: center;
        width: 43px;
        height: 43px;
        flex: 0 0 43px;
        border-radius: 13px;
        color: #fff;
        background: linear-gradient(145deg, var(--hero-blue), var(--hero-blue-deep));
        box-shadow: 0 10px 22px rgba(0,74,173,.22);
    }

    .ls-home-stat:nth-child(2) .ls-home-stat-icon {
        background: linear-gradient(145deg, var(--hero-red), #b91e30);
    }

    .ls-home-stat:nth-child(3) .ls-home-stat-icon {
        background: linear-gradient(145deg, #24aa5b, #128241);
    }

    .ls-home-stat h3 {
        margin: 0;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 1.55rem;
        font-weight: 850;
        line-height: 1;
    }

    .ls-home-stat p {
        margin: 4px 0 0;
        color: #96a8be;
        font-size: .7rem;
        line-height: 1.35;
    }

    @media (max-width: 1080px) {
        .ls-home-hero-inner {
            grid-template-columns: 1fr;
            max-width: 820px;
        }
    }

    @media (max-width: 768px) {
        .ls-home-hero { padding: 38px 14px 42px; }
        .ls-home-title { font-size: 2.25rem; }
        .ls-home-subtitle { font-size: .84rem; }
        .ls-home-actions { display: grid; grid-template-columns: 1fr; }
        .ls-home-btn { width: 100%; }
        .ls-home-hero-card { padding: 12px; border-radius: 21px; }
        .ls-home-hero-img { height: 208px; padding: 7px; border-radius: 15px; }
        .ls-home-hero-minis { grid-template-columns: repeat(2, minmax(0,1fr)); }
        .ls-home-mini:nth-child(n + 5) { display: none; }
        .ls-home-stats { padding: 12px 8px; }
        .ls-home-stats-inner { gap: 7px; }
        .ls-home-stat { justify-content: center; padding: 12px 7px; text-align: center; }
        .ls-home-stat-icon { display: none; }
        .ls-home-stat h3 { font-size: 1.35rem; }
        .ls-home-stat p { font-size: .57rem; }
    }

.ls-showcase-tag {
        display: inline-block;
        background: #E3F2FD;
        color: #004AAD;
        border-radius: 999px;
        padding: 8px 16px;
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        margin-bottom: 10px;
    }

    .eventos-header,
    .projetos-header {
        max-width: 1200px;
        margin: 0 auto 8px;
        padding: 0 20px;
        align-items: flex-end;
    }

    .titulo-eventos {
        font-family: 'Poppins', sans-serif;
        font-size: 2rem !important;
        margin: 0;
    }

    .ver-todos-eventos,
    .ver-todos-projetos {
        padding: 12px 24px !important;
        font-size: 0.95rem !important;
    }

    .eventos-grid {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Cards de evento/estabelecimento */
    .evento-card {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(13, 27, 46, 0.08);
        transition: transform .3s ease, box-shadow .3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        animation: fadeCard .5s ease forwards;
    }

    .evento-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(13, 27, 46, 0.16);
    }

    .evento-thumb {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4 / 3;
        border-bottom: 0;
    }

    .evento-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .5s ease;
    }

    .evento-card:hover .evento-thumb img {
        transform: scale(1.09);
    }

    .evento-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(13, 27, 46, 0.6) 100%);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .evento-card:hover .evento-thumb::after {
        opacity: 1;
    }

    .evento-ver-mais {
        position: absolute;
        left: 18px;
        bottom: 14px;
        color: #fff;
        font-weight: 700;
        font-size: 0.86rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        opacity: 0;
        transform: translateY(8px);
        transition: all .3s ease;
        z-index: 1;
    }

    .evento-card:hover .evento-ver-mais {
        opacity: 1;
        transform: translateY(0);
    }

    .evento-info {
        padding: 20px 22px 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .evento-info h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.12rem;
        font-weight: 700;
        color: #0d1b2e;
        margin-bottom: 8px;
    }

    .evento-info p {
        color: #6c757d;
        font-size: 0.9rem;
        line-height: 1.6;
        flex: 1;
        margin: 0;
    }

    @media (max-width: 575px) {
        .eventos-header, .projetos-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
        }
    }

#promocoes-section,
  #brinquedos,
  #pecas-section,
  #combos-section,
  #estabelecimentos,
  #eventos,
  #projetos {
    --ls-section-blue: #0878f9;
    --ls-section-blue-deep: #004aad;
    --ls-section-red: #e63946;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin: 0;
    padding: 68px 28px 72px;
    border: 1px solid rgba(0,74,173,.11);
    border-radius: 30px;
    color: #10233f;
    background:
      radial-gradient(circle at 7% 7%, rgba(8,120,249,.13), transparent 24rem),
      radial-gradient(circle at 94% 88%, rgba(230,57,70,.07), transparent 24rem),
      linear-gradient(150deg, #eef5fd 0%, #e7eff9 58%, #f7faff 100%);
    box-shadow:
      0 20px 48px rgba(19,53,92,.10),
      inset 0 1px 0 rgba(255,255,255,.75);
    scroll-margin-top: 84px;
  }

  #promocoes-section::before,
  #brinquedos::before,
  #pecas-section::before,
  #combos-section::before,
  #estabelecimentos::before,
  #eventos::before,
  #projetos::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .62;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(0,74,173,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,74,173,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
  }

  .ls-section-intro,
  #estabelecimentos .eventos-header,
  #eventos .eventos-header,
  #projetos .projetos-header {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto 31px;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
  }

  .ls-section-intro-copy,
  #estabelecimentos .eventos-header > div,
  #eventos .eventos-header > div,
  #projetos .projetos-header > div {
    max-width: 770px;
  }

  .ls-section-kicker,
  #estabelecimentos .ls-showcase-tag,
  #eventos .ls-showcase-tag,
  #projetos .ls-showcase-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 8px 12px;
    border: 1px solid rgba(99,166,255,.24);
    border-radius: 999px;
    color: #91c2ff;
    background: rgba(8,120,249,.10);
    font-size: .68rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  #promocoes-section .ls-section-intro .section-title,
  #brinquedos .ls-section-intro .titulo-sec,
  #pecas-section .ls-section-intro .titulo-sec,
  #combos-section .ls-section-intro .section-title,
  #estabelecimentos .titulo-eventos,
  #eventos .titulo-eventos,
  #projetos .titulo-eventos {
    margin: 0;
    color: #102b4c;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4vw, 3.15rem) !important;
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -.05em;
    text-align: left;
  }

  #promocoes-section .ls-section-intro .section-subtitle,
  #brinquedos .ls-section-intro .section-subtitle,
  #pecas-section .ls-section-intro .section-subtitle,
  #combos-section .ls-section-intro .section-subtitle,
  #estabelecimentos .eventos-header .section-subtitle,
  #eventos .eventos-header .section-subtitle,
  #projetos .projetos-header .section-subtitle {
    max-width: 740px;
    margin: 13px 0 0;
    color: #60758f;
    font-family: "Poppins", sans-serif;
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.65;
    text-align: left;
  }

  #brinquedos .btn-vertodos,
  #pecas-section .btn-vertodos,
  #estabelecimentos .ver-todos-eventos,
  #eventos .ver-todos-eventos,
  #projetos .ver-todos-eventos {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 17px !important;
    border: 1px solid rgba(99,166,255,.25);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--ls-section-blue-deep), var(--ls-section-blue));
    box-shadow: 0 11px 26px rgba(0,74,173,.28);
    font-size: .76rem !important;
    font-weight: 900;
    white-space: nowrap;
  }

  #brinquedos .btn-vertodos:hover,
  #pecas-section .btn-vertodos:hover,
  #estabelecimentos .ver-todos-eventos:hover,
  #eventos .ver-todos-eventos:hover,
  #projetos .ver-todos-eventos:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--ls-section-red), #b91e30);
    box-shadow: 0 14px 30px rgba(185,30,48,.28);
    transform: translateY(-2px);
  }

  /* Promoções e combos: carrosséis com o mesmo acabamento premium. */
  #promocoes-section .scroll-wrapper,
  #combos-section .scroll-wrapper {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 49px;
    overflow: visible;
  }

  #promocoes-section .scroll-container,
  #combos-section .scroll-container {
    gap: 18px;
    padding: 12px 3px 25px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  #promocoes-section .scroll-container::-webkit-scrollbar,
  #combos-section .scroll-container::-webkit-scrollbar {
    display: none;
  }

  #promocoes-section .oferta-card-link,
  #combos-section .oferta-card-link {
    scroll-snap-align: start;
  }

  #promocoes-section .scroll-btn,
  #combos-section .scroll-btn {
    top: 50%;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(136,178,230,.24);
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg, #132a47, #0a1728);
    box-shadow: 0 13px 28px rgba(0,3,11,.42);
    font-size: 16px;
  }

  #promocoes-section .scroll-btn:hover,
  #combos-section .scroll-btn:hover {
    background: linear-gradient(145deg, var(--ls-section-red), #b91e30);
    transform: translateY(-50%) scale(1.04);
  }

  #promocoes-section .oferta-card,
  #combos-section .oferta-card,
  #brinquedos .card-produto,
  #pecas-section .pecas-card,
  #estabelecimentos .evento-card,
  #eventos .evento-card,
  #projetos .evento-card {
    border-color: rgba(0,74,173,.15);
    background: linear-gradient(160deg, #f9fbff, #f0f5fc 76%);
    box-shadow:
      0 18px 40px rgba(20,55,96,.12),
      inset 0 1px 0 rgba(255,255,255,.92);
  }

  #promocoes-section .oferta-card:hover,
  #combos-section .oferta-card:hover,
  #brinquedos .card-link:hover .card-produto,
  #pecas-section .pecas-card-link:hover .pecas-card,
  #estabelecimentos .evento-card:hover,
  #eventos .evento-card:hover,
  #projetos .evento-card:hover {
    border-color: rgba(0,105,218,.31);
    box-shadow: 0 25px 52px rgba(20,55,96,.19);
  }

  /* Filtros claros com contraste azul. */
  #brinquedos .filtros-horizontal,
  #pecas-section .filtros-horizontal {
    width: 100%;
    margin: 0 auto 31px;
    padding: 10px;
    gap: 9px;
    border: 1px solid rgba(0,74,173,.11);
    border-radius: 19px;
    justify-content: flex-start;
    background: rgba(255,255,255,.62);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
  }

  #brinquedos .filtro-btn,
  #pecas-section .filtro-btn {
    width: auto;
    min-width: 154px;
    min-height: 43px;
    padding: 0 15px;
    border: 1px solid rgba(0,74,173,.12);
    border-radius: 13px;
    color: #355270;
    background: #f7faff;
    box-shadow: none;
    font-size: .72rem;
    font-weight: 850;
  }

  #brinquedos .filtro-btn:hover,
  #pecas-section .filtro-btn:hover {
    color: #004aad;
    border-color: rgba(99,166,255,.35);
    background: #e8f2ff;
    box-shadow: none;
  }

  #brinquedos .filtro-btn.ativo,
  #pecas-section .filtro-btn.ativo {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--ls-section-blue-deep), var(--ls-section-blue));
    box-shadow: 0 9px 20px rgba(0,74,173,.28);
  }

  #brinquedos #produtos-container,
  #pecas-section #pecas-container {
    padding-top: 0;
  }

  /* Parceiros, eventos e projetos seguem os mesmos cards claros. */
  #estabelecimentos .eventos-grid,
  #eventos .eventos-grid,
  #projetos .eventos-grid {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #estabelecimentos .evento-card,
  #eventos .evento-card,
  #projetos .evento-card {
    border: 1px solid rgba(118,164,221,.24);
    border-radius: 24px;
    background: linear-gradient(180deg, #f9fbff, #edf4fc);
  }

  #estabelecimentos .evento-thumb,
  #eventos .evento-thumb,
  #projetos .evento-thumb {
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, #eaf3fd, #f8fbff);
  }

  #estabelecimentos .evento-info,
  #eventos .evento-info,
  #projetos .evento-info {
    padding: 20px 21px 23px;
  }

  #estabelecimentos .evento-info h3,
  #eventos .evento-info h3,
  #projetos .evento-info h3 {
    color: #10233f;
    font-size: 1.08rem;
    font-weight: 850;
  }

  #estabelecimentos .evento-info p,
  #eventos .evento-info p,
  #projetos .evento-info p {
    color: #617187;
    font-size: .82rem;
    line-height: 1.55;
  }

  /* Paginação consistente com o fundo azul-gelo. */
  #paginacao-wrapper,
  #paginacao-pecas,
  #paginacao-eventos,
  #paginacao-projetos {
    margin-top: 32px;
  }

  #paginacao-wrapper .paginacao,
  #paginacao-pecas .paginacao,
  #paginacao-eventos .paginacao,
  #paginacao-projetos .paginacao {
    width: auto;
    max-width: 100%;
    padding: 8px;
    gap: 8px;
    border: 1px solid rgba(0,74,173,.11);
    border-radius: 16px;
    background: rgba(255,255,255,.68);
  }

  #brinquedos .page-atual,
  #pecas-section .page-atual,
  #eventos .page-atual,
  #projetos .page-atual {
    color: #173858;
    border-color: rgba(0,74,173,.12);
    background: #edf5ff;
    box-shadow: none;
    font-size: .72rem;
  }

  #brinquedos .page-btn-produtos,
  #pecas-section .page-btn-pecas,
  #eventos .page-btn-produtos,
  #projetos .page-btn-produtos {
    min-height: 40px;
    border: 1px solid rgba(99,166,255,.23);
    color: #004aad;
    background: #f7faff;
    box-shadow: none;
    font-size: .7rem;
    font-weight: 850;
  }

  #brinquedos .page-btn-produtos:hover,
  #pecas-section .page-btn-pecas:hover,
  #eventos .page-btn-produtos:hover,
  #projetos .page-btn-produtos:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--ls-section-blue-deep), var(--ls-section-blue));
  }

  #brinquedos .page-btn-produtos:disabled,
  #pecas-section .page-btn-pecas:disabled,
  #eventos .page-btn-produtos:disabled,
  #projetos .page-btn-produtos:disabled {
    color: #8493a5;
    border-color: rgba(0,74,173,.08);
    background: #edf2f8;
  }

  #promocoes-section .empty-message,
  #combos-section .empty-message,
  #brinquedos .nenhum-produto,
  #pecas-section .nenhum-produto,
  #estabelecimentos .nenhum-produto,
  #eventos .nenhum-produto,
  #projetos .nenhum-produto {
    margin: 18px auto;
    padding: 24px;
    border: 1px dashed rgba(139,177,225,.22);
    border-radius: 18px;
    color: #60758f;
    background: rgba(255,255,255,.62);
  }

  /* Respirações entre as vitrines sem faixas brancas. */
  .espacador {
    width: 100%;
    height: 24px;
    background: transparent;
  }

  .section-divider {
    margin: 24px 0;
    padding: 20px 24px;
    border: 1px solid rgba(99,166,255,.22);
    border-radius: 22px;
    color: #fff;
    background:
      radial-gradient(circle at 90% 0, rgba(230,57,70,.24), transparent 16rem),
      linear-gradient(135deg, #004aad, #0878f9);
    box-shadow: 0 14px 32px rgba(0,74,173,.22);
  }

  @media (min-width: 769px) {
    .ls-home-hero {
      border-radius: 30px 30px 0 0;
    }

    .categorias-section {
      border-radius: 0 0 30px 30px;
    }
  }

  @media (max-width: 920px) {
    #estabelecimentos .eventos-grid,
    #eventos .eventos-grid,
    #projetos .eventos-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 768px) {
    #promocoes-section,
    #brinquedos,
    #pecas-section,
    #combos-section,
    #estabelecimentos,
    #eventos,
    #projetos {
      padding: 52px 13px 58px;
      border-right: 0;
      border-left: 0;
      border-radius: 0;
    }

    .ls-section-intro,
    #estabelecimentos .eventos-header,
    #eventos .eventos-header,
    #projetos .projetos-header {
      margin-bottom: 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
    }

    #promocoes-section .ls-section-intro .section-title,
    #brinquedos .ls-section-intro .titulo-sec,
    #pecas-section .ls-section-intro .titulo-sec,
    #combos-section .ls-section-intro .section-title,
    #estabelecimentos .titulo-eventos,
    #eventos .titulo-eventos,
    #projetos .titulo-eventos {
      font-size: 2rem !important;
    }

    #brinquedos .btn-vertodos,
    #pecas-section .btn-vertodos,
    #estabelecimentos .ver-todos-eventos,
    #eventos .ver-todos-eventos,
    #projetos .ver-todos-eventos {
      width: 100%;
      white-space: normal;
    }

    #promocoes-section .scroll-wrapper,
    #combos-section .scroll-wrapper {
      padding: 0;
    }

    #promocoes-section .scroll-container,
    #combos-section .scroll-container {
      gap: 13px;
      padding: 8px 0 20px;
    }

    #promocoes-section .scroll-btn,
    #combos-section .scroll-btn {
      display: none;
    }

    #brinquedos .filtros-horizontal,
    #pecas-section .filtros-horizontal {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      padding: 8px;
      scrollbar-width: none;
    }

    #brinquedos .filtros-horizontal::-webkit-scrollbar,
    #pecas-section .filtros-horizontal::-webkit-scrollbar {
      display: none;
    }

    #brinquedos .filtro-btn,
    #pecas-section .filtro-btn {
      flex: 0 0 auto;
      min-width: max-content;
      padding: 0 14px;
    }

    #estabelecimentos .eventos-grid,
    #eventos .eventos-grid,
    #projetos .eventos-grid,
    #pecas-section .pecas-grid {
      grid-template-columns: 1fr;
      gap: 17px;
    }

    #estabelecimentos .evento-card,
    #eventos .evento-card,
    #projetos .evento-card {
      border-radius: 20px;
    }

    #paginacao-wrapper .paginacao,
    #paginacao-pecas .paginacao,
    #paginacao-eventos .paginacao,
    #paginacao-projetos .paginacao {
      gap: 6px;
      padding: 6px;
    }

    #brinquedos .page-btn-produtos,
    #pecas-section .page-btn-pecas,
    #eventos .page-btn-produtos,
    #projetos .page-btn-produtos {
      padding: 9px 10px;
    }

    .espacador {
      height: 13px;
    }

    .section-divider {
      margin: 13px 0;
      border-right: 0;
      border-left: 0;
      border-radius: 0;
    }
  }

.ls-loc-section {
        background:
            radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.22), transparent 26%),
            linear-gradient(135deg, #0d1b2e 0%, #16233a 100%);
        color: #ffffff;
        padding: 64px 24px;
    }

    .ls-loc-inner {
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
        align-items: stretch;
    }

    .ls-loc-card {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 30px;
        padding: 38px;
    }

    .ls-loc-tag {
        display: inline-block;
        background: #E63946;
        color: #fff;
        border-radius: 999px;
        padding: 8px 16px;
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        margin-bottom: 18px;
    }

    .ls-loc-card h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .ls-loc-card > p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
        margin-bottom: 26px;
    }

    .ls-loc-line {
        display: flex;
        gap: 14px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ls-loc-line:last-of-type { border-bottom: 0; }

    .ls-loc-icon {
        min-width: 42px;
        height: 42px;
        background: #E63946;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .ls-loc-line h5 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        margin-bottom: 3px;
        font-size: 0.98rem;
    }

    .ls-loc-line p, .ls-loc-line a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.92rem;
    }

    .ls-loc-line a:hover { color: #E63946; }

    .ls-loc-routes {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 24px;
    }

    .ls-loc-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 13px 22px;
        border-radius: 999px;
        font-weight: 700;
        text-decoration: none;
        font-size: 0.92rem;
        transition: transform 0.2s ease;
    }

    .ls-loc-btn:hover { transform: translateY(-2px); }
    .ls-loc-btn-maps { background: #E63946; color: #fff; }
    .ls-loc-btn-waze { background: #004AAD; color: #fff; }

    .ls-loc-map {
        background: #ffffff;
        border-radius: 30px;
        padding: 10px;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
        min-height: 520px;
        display: flex;
        overflow: hidden;
    }

    .ls-loc-map iframe {
        flex: 1;
        width: 100%;
        height: 100%;
        min-height: 100%;
        border: 0;
        border-radius: 22px;
        display: block;
    }

    .ls-loc-social {
        max-width: 1180px;
        margin: 40px auto 0;
        text-align: center;
    }

    .ls-loc-social p {
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 16px;
    }

    @media (max-width: 900px) {
        .ls-loc-inner { grid-template-columns: 1fr; }
        .ls-loc-map { min-height: 360px; height: 360px; }
        .ls-loc-map iframe { min-height: 0; height: 100%; }
    }

.clientes-section {
        max-width: 1200px;
        margin: 70px auto 0;
        padding: 0 20px;
    }

    .clientes-header {
        margin-bottom: 8px;
    }

    .clientes-subtitle {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 640px;
        margin-bottom: 24px;
    }

    .clientes-toolbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 18px;
    }

    .clientes-filtro {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        border: 1px solid #e3e8f0;
        border-radius: 999px;
        padding: 8px 8px 8px 18px;
        box-shadow: 0 6px 18px rgba(0, 74, 173, 0.08);
    }

    .clientes-filtro label {
        font-size: 0.85rem;
        font-weight: 700;
        color: #004AAD;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .clientes-filtro select {
        border: none;
        background: #f5f8ff;
        border-radius: 999px;
        padding: 8px 16px;
        font-family: 'Poppins', sans-serif;
        font-size: 0.88rem;
        color: #2c3e50;
        cursor: pointer;
        outline: none;
    }

    .clientes-contador {
        font-size: 0.85rem;
        color: #6c757d;
    }

    .clientes-contador strong {
        color: #004AAD;
    }

    .clientes-mapa-wrap {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 45px rgba(13, 27, 46, 0.14);
        border: 1px solid #e3e8f0;
    }

    #mapa-clientes {
        width: 100%;
        height: 480px;
        background: #eef3fb;
    }

    .clientes-vazio {
        text-align: center;
        color: #8a94a6;
        padding: 40px 20px;
        background: #fff;
        border-radius: 24px;
        border: 1px dashed #e3e8f0;
    }

    /* Tamanho, posição e cor do pino vão inline no HTML gerado pelo JS.
       Aqui só ficam efeitos que não afetam se o pino aparece ou não. */
    .cliente-marker,
    .fabrica-marker {
        background: transparent !important;
        border: 0 !important;
        overflow: visible !important;
    }

    .cliente-marker .pino-gota,
    .fabrica-marker .pino-gota {
        isolation: isolate;
        overflow: visible;
    }

    .pino-gota {
        display: block;
        position: relative;
        transition: transform 0.24s cubic-bezier(.2, .8, .2, 1), filter 0.24s ease;
        transform-origin: 50% 100%;
        pointer-events: auto;
        cursor: pointer;
        will-change: transform;
    }

    .pino-gota__corpo {
        position: absolute;
        inset: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        display: block;
        overflow: visible;
        pointer-events: none;
        filter: drop-shadow(0 4px 5px rgba(13, 27, 46, 0.38));
    }

    .pino-gota__janela {
        position: absolute;
        left: 50%;
        top: 35%;
        z-index: 1;
        transform: translate(-50%, -50%);
        overflow: hidden;
        border: 0;
        border-radius: 50%;
        background: #fff;
        display: grid;
        place-items: center;
        pointer-events: none;
        box-shadow: none;
    }

    .pino-gota__janela img {
        position: absolute;
        inset: 0;
        z-index: 0;
        display: block;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        object-position: center;
        border: 0 !important;
        border-radius: 50% !important;
        background: #fff;
    }

    .pino-gota__janela i {
        position: relative;
        z-index: 1;
    }

    .pino-gota__aro {
        position: absolute;
        inset: 0;
        z-index: 3;
        width: 100%;
        height: 100%;
        display: block;
        overflow: visible;
        pointer-events: none;
    }

    .pino-fabrica-icone {
        width: 72%;
        height: 72%;
        display: block;
        fill: #101318;
    }

    @media (hover: hover) and (pointer: fine) {
        .pino-gota:hover {
            transform: translateY(-6px) scale(1.1);
        }
    }

    .cliente-marker.marcador-elevado .pino-gota,
    .fabrica-marker.marcador-elevado .pino-gota {
        transform: translateY(-8px) scale(1.12);
        filter: drop-shadow(0 10px 10px rgba(13, 27, 46, .24));
    }

    .pino-pulse {
        animation: pulso-fabrica-gota 2.4s ease-in-out infinite;
    }

    @keyframes pulso-fabrica-gota {
        0%, 100% {
            filter: drop-shadow(0 3px 5px rgba(0,0,0,.45)) drop-shadow(0 0 0 rgba(230,57,70,.6));
        }
        50% {
            filter: drop-shadow(0 3px 5px rgba(0,0,0,.45)) drop-shadow(0 0 8px rgba(230,57,70,0));
        }
    }

    /* Bolha de agrupamento -- aparece quando clientes ficam perto
       o bastante pra se tocarem visualmente na tela atual */
    .cluster-lazer {
        background: transparent !important;
        border: 0 !important;
        overflow: visible !important;
    }

    .cluster-lazer span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, #4aa3ff, #004AAD);
        color: #fff;
        font-weight: 800;
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        box-shadow: 0 6px 14px rgba(0,74,173,.45), 0 0 0 3px rgba(255,255,255,.9);
        transition: transform 0.2s ease;
        cursor: pointer;
    }

    .cluster-lazer:hover span {
        transform: scale(1.1);
    }

    .clientes-legenda {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin: -6px 0 16px;
        font-size: 0.82rem;
        color: #6c757d;
    }

    .clientes-legenda span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .clientes-legenda .ponto {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: inline-block;
    }

    .clientes-legenda .ponto.fabrica {
        background: linear-gradient(135deg, #ff6b6b, #E63946);
    }

    .clientes-legenda .ponto.cliente {
        background: linear-gradient(135deg, #4aa3ff, #004AAD);
    }

    #mapa-clientes .leaflet-tile-pane { z-index: 200; }
    #mapa-clientes .leaflet-overlay-pane { z-index: 400; }
    #mapa-clientes .leaflet-marker-pane { z-index: 600; }
    #mapa-clientes .leaflet-tooltip-pane { z-index: 650; }
    #mapa-clientes .leaflet-popup-pane { z-index: 700; }

    .clientes-map-hint {
        position: absolute;
        top: 14px;
        left: 50%;
        z-index: 640;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        max-width: calc(100% - 90px);
        padding: 9px 14px;
        border: 1px solid rgba(255, 255, 255, .72);
        border-radius: 999px;
        background: rgba(8, 27, 54, .86);
        color: #fff;
        box-shadow: 0 10px 25px rgba(13, 27, 46, .2);
        font-size: .72rem;
        font-weight: 750;
        line-height: 1.25;
        text-align: center;
        transform: translateX(-50%);
        backdrop-filter: blur(12px);
        pointer-events: none;
    }

    .clientes-map-hint i {
        color: #7db8ff;
    }

    .clientes-map-hint .hint-mobile {
        display: none;
    }

    #mapa-clientes .leaflet-popup {
        margin-bottom: 12px;
    }

    #mapa-clientes .leaflet-popup-content-wrapper {
        overflow: hidden;
        padding: 0;
        border: 1px solid rgba(86, 157, 255, .28);
        border-radius: 20px;
        background: #070b12;
        box-shadow: 0 18px 45px rgba(8, 27, 54, .23);
        backdrop-filter: blur(14px);
        color-scheme: dark;
        transform-origin: 50% 100%;
        animation: clientePopupRise .22s cubic-bezier(.2, .8, .2, 1) both;
    }

    #mapa-clientes .leaflet-popup-content {
        width: auto !important;
        margin: 0;
        line-height: 1.45;
    }

    #mapa-clientes .leaflet-popup-tip {
        background: #070b12;
        box-shadow: 4px 4px 10px rgba(0, 0, 0, .25);
    }

    #mapa-clientes .leaflet-popup-close-button {
        top: 10px;
        right: 10px;
        z-index: 5;
        display: grid;
        place-items: center;
        width: 29px;
        height: 29px;
        padding: 0;
        border: 1px solid #2a3548;
        border-radius: 50%;
        background: #111827;
        color: #f8fafc;
        box-shadow: 0 5px 14px rgba(0, 0, 0, .24);
        font-size: 20px;
        line-height: 1;
        transition: color .2s ease, background .2s ease, transform .2s ease;
    }

    #mapa-clientes .leaflet-popup-close-button:hover {
        background: #004AAD;
        color: #fff;
        transform: scale(1.05);
    }

    .cliente-popup {
        width: 286px;
        max-width: calc(100vw - 76px);
        padding: 16px;
        background:
            radial-gradient(circle at 100% 0, rgba(0, 93, 214, .24), transparent 36%),
            linear-gradient(145deg, #090e17 0%, #03060b 100%);
    }

    .cliente-popup--fabrica {
        background:
            radial-gradient(circle at 100% 0, rgba(230, 57, 70, .24), transparent 38%),
            linear-gradient(145deg, #10090c 0%, #030406 100%);
    }

    .cliente-popup__top {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-right: 28px;
    }

    .cliente-popup__media {
        display: grid;
        flex: 0 0 auto;
        place-items: center;
        width: 58px;
        height: 58px;
        overflow: hidden;
        border: 3px solid #26354c;
        border-radius: 17px;
        background: #0d1420;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .26);
    }

    .cliente-popup__media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        background: #0d1420;
    }

    .cliente-popup--fabrica .cliente-popup__media img {
        object-fit: contain;
        padding: 4px;
    }

    .cliente-popup__copy {
        min-width: 0;
    }

    .cliente-popup__kicker {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 3px;
        color: #74b2ff;
        font-size: .62rem;
        font-weight: 900;
        letter-spacing: .055em;
        text-transform: uppercase;
    }

    .cliente-popup--fabrica .cliente-popup__kicker {
        color: #ff7782;
    }

    .cliente-popup h4 {
        overflow: hidden;
        margin: 0;
        color: #fff;
        font-size: .95rem;
        font-weight: 900;
        line-height: 1.25;
        text-overflow: ellipsis;
    }

    .cliente-popup__location {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        margin-top: 10px;
        padding: 9px 10px;
        border: 1px solid #263349;
        border-radius: 11px;
        background: #0d1420;
        color: #d6deea;
        font-size: .72rem;
        line-height: 1.4;
    }

    .cliente-popup__location i {
        margin-top: 2px;
        color: #74b2ff;
    }

    .cliente-popup--fabrica .cliente-popup__location i {
        color: #E63946;
    }

    .cliente-popup__description {
        margin: 9px 0 0;
        color: #b8c3d3;
        font-size: .71rem;
        line-height: 1.45;
    }

    .cliente-popup__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin-top: 11px;
    }

    .cliente-popup__actions--single {
        grid-template-columns: 1fr;
    }

    .cliente-popup__action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 100%;
        min-height: 38px;
        border-radius: 11px;
        border: 1px solid #334159;
        background: #101826;
        color: #fff;
        font-size: .72rem;
        font-weight: 850;
        text-decoration: none;
        box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
        transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .cliente-popup__action:hover {
        color: #fff;
        text-decoration: none;
        transform: translateY(-1px);
        border-color: #4d77ad;
        background: #17263b;
        box-shadow: 0 11px 22px rgba(0, 0, 0, .3);
    }

    .cliente-popup__action--instagram {
        border-color: transparent;
        background:
            linear-gradient(
                135deg,
                #833AB4 0%,
                #C13584 32%,
                #E1306C 57%,
                #F56040 78%,
                #FCAF45 100%
            );
        color: #fff;
        font-weight: 900;
        letter-spacing: .01em;
        text-shadow: 0 1px 2px rgba(72, 12, 78, .22);
        box-shadow: 0 8px 18px rgba(225, 48, 108, .24);
        -webkit-font-smoothing: antialiased;
    }

    .cliente-popup__action--instagram:hover {
        border-color: transparent;
        color: #fff;
        box-shadow: 0 11px 23px rgba(225, 48, 108, .32);
    }

    .cliente-popup__action--instagram,
    .cliente-popup__action--instagram:visited,
    .cliente-popup__action--instagram:hover,
    .cliente-popup__action--instagram:focus {
        color: #fff !important;
    }

    .cliente-popup__instagram-text {
        color: #fff !important;
        opacity: 1 !important;
        font-weight: 900;
        text-decoration: none !important;
        text-shadow: 0 1px 2px rgba(45, 0, 48, .34);
    }

    .cliente-popup__action i {
        flex: 0 0 auto;
        font-size: 1.04em;
    }

    .cliente-popup__action--route {
        border: 1px solid #334159;
        background: #0d1420;
        color: #f3f6fb;
        box-shadow: 0 7px 16px rgba(0, 0, 0, .22);
    }

    .cliente-popup__action--route:hover {
        border-color: #004AAD;
        background: #10284a;
        color: #fff;
        box-shadow: 0 9px 18px rgba(0, 74, 173, .2);
    }

    .cliente-popup-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 10px;
    }

    .cliente-popup-tags span {
        border: 1px solid #243754;
        background: #101a2a;
        color: #8fc0ff;
        font-size: .62rem;
        font-weight: 800;
        padding: 4px 8px;
        border-radius: 999px;
        white-space: nowrap;
    }

    #mapa-clientes .cliente-hover-tooltip {
        padding: 0;
        border: 0;
        border-radius: 13px;
        background: transparent;
        box-shadow: 0 12px 30px rgba(8, 27, 54, .18);
    }

    #mapa-clientes .cliente-hover-tooltip::before {
        border-top-color: #0a2548;
    }

    .cliente-hover-card {
        min-width: 178px;
        max-width: 240px;
        padding: 10px 12px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 13px;
        background: linear-gradient(135deg, #071a34, #0b376f);
        color: #fff;
    }

    .cliente-hover-card--fabrica {
        background: linear-gradient(135deg, #8f1522, #E63946);
    }

    .cliente-hover-card strong,
    .cliente-hover-card span,
    .cliente-hover-card small {
        display: block;
    }

    .cliente-hover-card strong {
        overflow: hidden;
        font-size: .76rem;
        font-weight: 900;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .cliente-hover-card span {
        margin-top: 2px;
        color: rgba(255, 255, 255, .78);
        font-size: .64rem;
    }

    .cliente-hover-card small {
        margin-top: 6px;
        color: #9dc9ff;
        font-size: .59rem;
        font-weight: 750;
    }

    .cliente-hover-card--fabrica small {
        color: #ffd2d6;
    }

    @keyframes clientePopupRise {
        from {
            opacity: 0;
            transform: translateY(10px) scale(.97);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @media (max-width: 575px) {
        .clientes-toolbar { flex-direction: column; align-items: stretch; }
        #mapa-clientes { height: 360px; }

        .clientes-map-hint {
            top: 10px;
            max-width: calc(100% - 100px);
            padding: 8px 12px;
            font-size: .66rem;
        }

        .clientes-map-hint .hint-desktop {
            display: none;
        }

        .clientes-map-hint .hint-mobile {
            display: inline;
        }

        .cliente-popup {
            width: min(238px, calc(100vw - 48px));
            padding: 11px;
        }

        #mapa-clientes .leaflet-popup-content-wrapper {
            border-radius: 16px;
        }

        #mapa-clientes .leaflet-popup-close-button {
            top: 7px;
            right: 7px;
            width: 25px;
            height: 25px;
            font-size: 17px;
        }

        .cliente-popup__top {
            gap: 8px;
            padding-right: 22px;
        }

        .cliente-popup__media {
            width: 42px;
            height: 42px;
            border-width: 2px;
            border-radius: 12px;
        }

        .cliente-popup__kicker {
            gap: 3px;
            margin-bottom: 1px;
            font-size: .52rem;
            letter-spacing: .035em;
        }

        .cliente-popup h4 {
            font-size: .79rem;
            line-height: 1.2;
        }

        .cliente-popup__location {
            gap: 4px;
            margin-top: 6px;
            padding: 6px 7px;
            border-radius: 9px;
            font-size: .62rem;
            line-height: 1.3;
        }

        .cliente-popup__description {
            margin-top: 6px;
            font-size: .6rem;
            line-height: 1.35;
        }

        .cliente-popup-tags {
            gap: 3px;
            margin-top: 6px;
        }

        .cliente-popup-tags span {
            padding: 2px 5px;
            font-size: .52rem;
        }

        .cliente-popup-tags span:nth-child(n + 3) {
            display: none;
        }

        .cliente-popup__actions {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 5px;
            margin-top: 7px;
        }

        .cliente-popup__actions--single {
            grid-template-columns: 1fr;
        }

        .cliente-popup__action {
            min-height: 32px;
            gap: 4px;
            padding: 4px 6px;
            border-radius: 9px;
            font-size: .59rem;
            line-height: 1.15;
        }
    }

    .clientes-seo-lista {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 22px 0 0;
        padding: 0;
    }

    .clientes-seo-lista li {
        background: #f5f8ff;
        border: 1px solid #e3e8f0;
        border-radius: 999px;
        padding: 8px 16px;
        font-size: 0.82rem;
        color: #4a4a4a;
    }

    .clientes-seo-lista strong {
        color: #004AAD;
    }

#clientes-section {
        --clientes-blue: #0878f9;
        --clientes-blue-deep: #004aad;
        --clientes-red: #e63946;
        position: relative;
        isolation: isolate;
        overflow: hidden;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 68px 28px 72px;
        border: 1px solid rgba(0, 74, 173, .11);
        border-radius: 30px;
        color: #10233f;
        background:
            radial-gradient(circle at 7% 7%, rgba(8, 120, 249, .13), transparent 24rem),
            radial-gradient(circle at 94% 88%, rgba(230, 57, 70, .07), transparent 24rem),
            linear-gradient(150deg, #eef5fd 0%, #e7eff9 58%, #f7faff 100%);
        box-shadow:
            0 20px 48px rgba(19, 53, 92, .10),
            inset 0 1px 0 rgba(255, 255, 255, .75);
        scroll-margin-top: 84px;
    }

    #clientes-section::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 0;
        opacity: .62;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(0, 74, 173, .035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 74, 173, .035) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: linear-gradient(to bottom, #000, transparent 88%);
    }

    #clientes-section .clientes-header {
        width: 100%;
        margin: 0 0 29px;
        padding: 0;
    }

    #clientes-section .clientes-header > div {
        max-width: 830px;
    }

    #clientes-section .ls-showcase-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 0 0 12px;
        padding: 8px 12px;
        border: 1px solid rgba(0, 105, 218, .18);
        border-radius: 999px;
        color: #0757ae;
        background: rgba(8, 120, 249, .08);
        font-size: .68rem;
        font-weight: 900;
        line-height: 1;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    #clientes-section .titulo-eventos {
        margin: 0;
        color: #102b4c;
        font-family: "Poppins", sans-serif;
        font-size: clamp(2rem, 4vw, 3.15rem) !important;
        font-weight: 850;
        line-height: 1.04;
        letter-spacing: -.05em;
        text-align: left;
    }

    #clientes-section .clientes-subtitle {
        max-width: 790px;
        margin: 13px 0 0;
        color: #60758f;
        font-size: .9rem;
        line-height: 1.65;
    }

    #clientes-section .clientes-controls-panel {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        margin: 0 0 16px;
        padding: 13px;
        border: 1px solid rgba(0, 74, 173, .11);
        border-radius: 18px;
        background: rgba(238, 245, 253, .88);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
    }

    #clientes-section .clientes-toolbar {
        flex: 1 1 auto;
        margin: 0;
    }

    #clientes-section .clientes-filtro {
        padding: 7px 7px 7px 15px;
        border-color: rgba(0, 74, 173, .13);
        background: #e5effb;
        box-shadow: none;
    }

    #clientes-section .clientes-filtro label {
        color: #0757ae;
    }

    #clientes-section .clientes-filtro select {
        border: 1px solid rgba(0, 74, 173, .10);
        color: #173858;
        background: #d9e8f8;
    }

    #clientes-section .clientes-contador {
        color: #60758f;
        font-weight: 700;
    }

    #clientes-section .clientes-contador strong {
        color: #004aad;
    }

    #clientes-section .clientes-legenda {
        flex: 0 0 auto;
        margin: 0;
        padding: 8px 11px;
        border: 1px solid rgba(0, 74, 173, .10);
        border-radius: 13px;
        color: #45617e;
        background: #e2edf9;
    }

    #clientes-section .clientes-mapa-wrap {
        padding: 7px;
        border: 1px solid rgba(0, 74, 173, .16);
        border-radius: 25px;
        background: linear-gradient(145deg, #d8e7f7, #cbddef);
        box-shadow: 0 22px 48px rgba(20, 55, 96, .16);
    }

    #clientes-section #mapa-clientes {
        height: 500px;
        overflow: hidden;
        border-radius: 18px;
        background: #dce8f5;
    }

    #mapa-clientes .leaflet-control-zoom a {
        border-color: rgba(0, 74, 173, .12);
        color: #0757ae;
        background: #e9f2fc;
    }

    #mapa-clientes .leaflet-control-zoom a:hover {
        color: #fff;
        background: #0878f9;
    }

    #clientes-section .clientes-seo-lista {
        gap: 8px;
        margin-top: 18px;
    }

    #clientes-section .clientes-seo-lista li {
        padding: 8px 13px;
        border: 1px solid rgba(0, 74, 173, .11);
        color: #45617e;
        background: #e1ecf8;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .62);
    }

    #clientes-section .clientes-seo-lista strong {
        color: #004aad;
    }

    #clientes-section .clientes-vazio {
        color: #60758f;
        border-color: rgba(0, 74, 173, .17);
        background: #e5effa;
    }

    @media (max-width: 920px) {
        #clientes-section .clientes-controls-panel {
            flex-direction: column;
            align-items: stretch;
        }

        #clientes-section .clientes-legenda {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        #clientes-section {
            padding: 52px 13px 58px;
            border-right: 0;
            border-left: 0;
            border-radius: 0;
        }

        #clientes-section .titulo-eventos {
            font-size: 2rem !important;
        }

        #clientes-section .clientes-controls-panel {
            padding: 9px;
            border-radius: 15px;
        }

        #clientes-section .clientes-toolbar {
            flex-direction: column;
            align-items: stretch;
        }

        #clientes-section .clientes-filtro {
            border-radius: 15px;
        }

        #clientes-section .clientes-filtro select {
            flex: 1;
            min-width: 0;
        }

        #clientes-section .clientes-legenda {
            gap: 10px;
            font-size: .72rem;
        }

        #clientes-section .clientes-mapa-wrap {
            padding: 5px;
            border-radius: 19px;
        }

        #clientes-section #mapa-clientes {
            height: 370px;
            border-radius: 14px;
        }

        #clientes-section .clientes-seo-lista li {
            width: 100%;
            border-radius: 13px;
            line-height: 1.4;
        }
    }

.ls-home-hero {
        color: #10233f;
        border: 1px solid rgba(0, 74, 173, .11);
        border-bottom-color: rgba(0, 74, 173, .08);
        background:
            radial-gradient(circle at 88% 12%, rgba(230, 57, 70, .10), transparent 27rem),
            radial-gradient(circle at 8% 94%, rgba(8, 120, 249, .16), transparent 31rem),
            linear-gradient(140deg, #f7faff 0%, #eaf2fb 58%, #dceafa 100%);
        box-shadow:
            0 20px 48px rgba(19, 53, 92, .10),
            inset 0 1px 0 rgba(255, 255, 255, .86);
    }

    .ls-home-hero::before {
        opacity: .68;
        background-image:
            linear-gradient(rgba(0, 74, 173, .035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 74, 173, .035) 1px, transparent 1px);
    }

    .ls-home-title {
        color: #102b4c;
        text-shadow: 0 1px 0 rgba(255, 255, 255, .72);
    }

    .ls-home-title span {
        color: #0878f9;
    }

    .ls-home-subtitle {
        color: #5e738d;
        font-weight: 500;
    }

    .ls-home-btn-outline {
        color: #004aad;
        border-color: rgba(0, 74, 173, .18);
        background: rgba(244, 248, 253, .82);
        box-shadow: 0 10px 22px rgba(19, 53, 92, .08);
    }

    .ls-home-btn-outline:hover {
        color: #fff;
        border-color: transparent;
        background: linear-gradient(135deg, #e63946, #bf2033);
    }

    .ls-home-hero-card {
        border-color: rgba(0, 74, 173, .13);
        background: linear-gradient(145deg, rgba(249, 252, 255, .94), rgba(226, 237, 249, .88));
        box-shadow:
            0 24px 54px rgba(19, 53, 92, .16),
            inset 0 1px 0 rgba(255, 255, 255, .95);
    }

    .ls-home-mini-head strong {
        color: #173858;
    }

    .ls-home-mini-head a {
        color: #075ccb;
    }

    .ls-home-mini {
        border-color: rgba(0, 74, 173, .11);
        color: #173858;
        background: linear-gradient(145deg, #edf5fd, #dfeaf7);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74);
    }

    .ls-home-mini:hover {
        border-color: rgba(0, 105, 218, .27);
        background: linear-gradient(145deg, #e3f0ff, #d4e6f8);
        box-shadow: 0 10px 22px rgba(19, 53, 92, .11);
    }

    .ls-home-mini strong {
        color: #173858;
    }

    .ls-home-mini span {
        color: #075ccb;
    }

    .ls-home-mini i {
        color: #0878f9;
    }

    .ls-home-stats {
        border-right: 1px solid rgba(0, 74, 173, .11);
        border-left: 1px solid rgba(0, 74, 173, .11);
        border-bottom-color: rgba(0, 74, 173, .09);
        background: linear-gradient(180deg, #e7f0fa, #dfeaf6);
    }

    .ls-home-stat {
        border-color: rgba(0, 74, 173, .11);
        background: linear-gradient(145deg, #f7faff, #eaf2fb);
        box-shadow:
            0 12px 28px rgba(19, 53, 92, .09),
            inset 0 1px 0 rgba(255, 255, 255, .88);
    }

    .ls-home-stat h3 {
        color: #102b4c;
    }

    .ls-home-stat p {
        color: #60758f;
        font-weight: 600;
    }

    .categorias-section {
        color: #10233f;
        border-color: rgba(0, 74, 173, .11);
        background:
            radial-gradient(circle at 6% 8%, rgba(8, 120, 249, .13), transparent 25rem),
            radial-gradient(circle at 95% 82%, rgba(230, 57, 70, .07), transparent 24rem),
            linear-gradient(150deg, #eef5fd 0%, #e6eff9 62%, #f7faff 100%);
        box-shadow:
            0 20px 48px rgba(19, 53, 92, .10),
            inset 0 1px 0 rgba(255, 255, 255, .78);
    }

    .categorias-section::before {
        opacity: .62;
        background-image:
            linear-gradient(rgba(0, 74, 173, .035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 74, 173, .035) 1px, transparent 1px);
    }

    .categorias-eyebrow {
        color: #0757ae;
        border-color: rgba(0, 105, 218, .18);
        background: rgba(8, 120, 249, .08);
    }

    .categorias-section .section-title {
        color: #102b4c;
    }

    .categorias-section .section-subtitle {
        color: #60758f;
    }

    .categorias-counter {
        color: #526b87;
        border-color: rgba(0, 74, 173, .11);
        background: rgba(231, 240, 250, .88);
    }

    .categorias-section .scroll-btn {
        color: #075ccb;
        border-color: rgba(0, 74, 173, .14);
        background: linear-gradient(145deg, #f7faff, #e3edf8);
        box-shadow: 0 12px 26px rgba(19, 53, 92, .14);
    }

    .categorias-section .scroll-btn:hover {
        color: #fff;
        border-color: transparent;
        background: linear-gradient(145deg, #e63946, #b91e30);
    }

    .categoria-card {
        border-color: rgba(0, 74, 173, .14);
        background:
            radial-gradient(circle at 100% 0, rgba(8, 120, 249, .09), transparent 42%),
            linear-gradient(155deg, #f8fbff, #e9f2fb 72%);
        box-shadow:
            0 17px 38px rgba(19, 53, 92, .13),
            inset 0 1px 0 rgba(255, 255, 255, .90);
    }

    .categoria-card:hover {
        border-color: rgba(0, 105, 218, .32);
        box-shadow: 0 25px 52px rgba(19, 53, 92, .20);
    }

    .categoria-info h3 {
        color: #173858;
    }

    .categoria-info p {
        color: #075ccb;
    }

    /* Projetos ganha um cabeçalho mais forte que as demais vitrines. */
    #projetos .projetos-header {
        position: relative;
        isolation: isolate;
        overflow: hidden;
        align-items: center;
        margin-bottom: 30px;
        padding: 25px 26px;
        border: 1px solid rgba(0, 74, 173, .15);
        border-radius: 24px;
        background:
            radial-gradient(circle at 92% 0, rgba(230, 57, 70, .13), transparent 17rem),
            radial-gradient(circle at 5% 100%, rgba(8, 120, 249, .18), transparent 19rem),
            linear-gradient(135deg, #dceafa, #f8fbff 72%);
        box-shadow:
            0 18px 38px rgba(19, 53, 92, .13),
            inset 0 1px 0 rgba(255, 255, 255, .90);
    }

    #projetos .projetos-header::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 5px;
        background: linear-gradient(180deg, #0878f9, #004aad 58%, #e63946);
    }

    #projetos .projetos-header::after {
        content: "";
        position: absolute;
        z-index: -1;
        right: -64px;
        bottom: -82px;
        width: 190px;
        height: 190px;
        border: 30px solid rgba(0, 74, 173, .045);
        border-radius: 50%;
    }

    #projetos .projetos-header > div,
    #projetos .projetos-header > a {
        position: relative;
        z-index: 1;
    }

    #projetos .ls-showcase-tag {
        color: #fff;
        border-color: transparent;
        background: linear-gradient(135deg, #e63946, #bd2033);
        box-shadow: 0 9px 20px rgba(189, 32, 51, .20);
    }

    #projetos .titulo-eventos {
        color: #082c55;
        font-size: clamp(2.25rem, 4.2vw, 3.35rem) !important;
        letter-spacing: -.055em;
    }

    #projetos .projetos-header .section-subtitle {
        max-width: 700px;
        color: #405f7e;
        font-size: .96rem;
        font-weight: 650;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        #projetos .projetos-header {
            align-items: stretch;
            padding: 21px 18px;
            border-radius: 20px;
        }

        #projetos .titulo-eventos {
            font-size: 2.15rem !important;
        }

        #projetos .projetos-header .section-subtitle {
            font-size: .82rem;
        }
    }

/* Retorna hero, indicadores e categorias ao azul-marinho anterior. */
    .ls-home-hero {
        color: #fff;
        border-color: rgba(255, 255, 255, .12);
        border-bottom-color: rgba(255, 255, 255, .12);
        background:
            radial-gradient(circle at 88% 12%, rgba(230, 57, 70, .25), transparent 27rem),
            radial-gradient(circle at 8% 94%, rgba(8, 120, 249, .35), transparent 31rem),
            linear-gradient(140deg, #071426 0%, #0a2447 58%, #063d83 100%);
        box-shadow: none;
    }

    .ls-home-hero::before {
        opacity: .14;
        background-image:
            linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    }

    .ls-home-title {
        color: #fff;
        text-shadow: none;
    }

    .ls-home-title span {
        color: #72b6ff;
    }

    .ls-home-subtitle {
        color: #c8d6e8;
        font-weight: 520;
    }

    .ls-home-btn-outline {
        color: #fff;
        border-color: rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .08);
        box-shadow: none;
    }

    .ls-home-btn-outline:hover {
        color: #fff;
        border-color: rgba(255, 255, 255, .28);
        background: rgba(255, 255, 255, .14);
    }

    .ls-home-hero-card {
        border-color: rgba(255, 255, 255, .16);
        background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
        box-shadow:
            0 28px 70px rgba(0, 5, 16, .36),
            inset 0 1px 0 rgba(255, 255, 255, .10);
    }

    .ls-home-mini-head strong {
        color: #fff;
    }

    .ls-home-mini-head a {
        color: #9dccff;
    }

    .ls-home-mini {
        border-color: rgba(255, 255, 255, .12);
        color: #fff;
        background: rgba(3, 13, 27, .34);
        box-shadow: none;
    }

    .ls-home-mini:hover {
        border-color: rgba(113, 180, 255, .38);
        background: rgba(8, 120, 249, .15);
        box-shadow: none;
    }

    .ls-home-mini strong {
        color: #f4f8ff;
    }

    .ls-home-mini span {
        color: #91c4ff;
    }

    .ls-home-mini i {
        color: #72b6ff;
    }

    .ls-home-stats {
        border-color: rgba(126, 163, 210, .13);
        background: #050c16;
    }

    .ls-home-stat {
        border-color: rgba(132, 170, 218, .13);
        background: linear-gradient(145deg, #0e1b2d, #091421);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
    }

    .ls-home-stat h3 {
        color: #fff;
    }

    .ls-home-stat p {
        color: #a9bbd1;
        font-weight: 600;
    }

    .categorias-section {
        color: #f4f8ff;
        border-color: rgba(120, 165, 224, .15);
        background:
            radial-gradient(circle at 6% 8%, rgba(8, 120, 249, .20), transparent 25rem),
            radial-gradient(circle at 95% 82%, rgba(230, 57, 70, .14), transparent 24rem),
            linear-gradient(150deg, #0a1728 0%, #050b14 62%, #07111f 100%);
        box-shadow: none;
    }

    .categorias-section::before {
        opacity: .15;
        background-image:
            linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    }

    .categorias-eyebrow {
        color: #9bc9ff;
        border-color: rgba(99, 166, 255, .24);
        background: rgba(8, 120, 249, .10);
    }

    .categorias-section .section-title {
        color: #fff;
    }

    .categorias-counter {
        color: #b7c8dc;
        border-color: rgba(140, 176, 220, .16);
        background: rgba(255, 255, 255, .045);
    }

    .categorias-section .scroll-btn {
        color: #fff;
        border-color: rgba(136, 178, 230, .24);
        background: linear-gradient(145deg, #132a47, #0a1728);
        box-shadow: 0 13px 28px rgba(0, 3, 11, .42);
    }

    .categorias-section .scroll-btn:hover {
        color: #fff;
        border-color: rgba(255, 255, 255, .30);
        background: linear-gradient(145deg, #e63946, #b91e30);
    }

    .categoria-card {
        border-color: rgba(132, 170, 218, .16);
        background:
            radial-gradient(circle at 100% 0, rgba(8, 120, 249, .12), transparent 42%),
            linear-gradient(155deg, #12233a, #0a1524 72%);
        box-shadow:
            0 18px 38px rgba(0, 4, 13, .34),
            inset 0 1px 0 rgba(255, 255, 255, .035);
    }

    .categoria-card:hover {
        border-color: rgba(78, 151, 246, .48);
        box-shadow:
            0 26px 55px rgba(0, 4, 14, .52),
            0 0 0 1px rgba(8, 120, 249, .08);
    }

    .categoria-info h3 {
        color: #f4f8ff;
    }

    .categoria-info p {
        color: #8ac2ff;
    }

    /* Selos de contexto nítidos e consistentes com a identidade da marca. */
    .categorias-eyebrow,
    #promocoes-section .ls-section-kicker,
    #brinquedos .ls-section-kicker,
    #pecas-section .ls-section-kicker,
    #combos-section .ls-section-kicker,
    #estabelecimentos .ls-showcase-tag,
    #eventos .ls-showcase-tag,
    #projetos .ls-showcase-tag,
    #clientes-section .ls-showcase-tag {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        min-height: 39px;
        margin-bottom: 13px;
        padding: 7px 14px 7px 8px;
        border: 1px solid rgba(8, 120, 249, .85);
        border-radius: 12px;
        color: #ffffff !important;
        background: linear-gradient(135deg, #004aad 0%, #0878f9 100%);
        box-shadow:
            0 9px 20px rgba(0, 74, 173, .22),
            inset 0 1px 0 rgba(255, 255, 255, .20);
        font-size: .72rem;
        font-weight: 900;
        line-height: 1.15;
        letter-spacing: .075em;
        text-shadow: 0 1px 1px rgba(0, 30, 75, .28);
        opacity: 1;
    }

    .categorias-eyebrow > i,
    #promocoes-section .ls-section-kicker > i,
    #brinquedos .ls-section-kicker > i,
    #pecas-section .ls-section-kicker > i,
    #combos-section .ls-section-kicker > i,
    #estabelecimentos .ls-showcase-tag > i,
    #eventos .ls-showcase-tag > i,
    #projetos .ls-showcase-tag > i,
    #clientes-section .ls-showcase-tag > i {
        display: inline-grid;
        place-items: center;
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        border-radius: 8px;
        color: #ffffff;
        background: linear-gradient(135deg, #ef4352, #c91f31);
        box-shadow: 0 4px 10px rgba(166, 17, 35, .30);
    }

    /* Subtítulos mais nítidos desde Categorias até o mapa de clientes. */
    .categorias-section .section-subtitle {
        max-width: 720px;
        padding-left: 15px;
        border-left: 3px solid #0878f9;
        color: #e2ecf8;
        font-size: .98rem;
        font-weight: 650;
        line-height: 1.7;
        opacity: 1;
        text-shadow: 0 1px 2px rgba(0, 0, 0, .20);
    }

    #promocoes-section .ls-section-intro .section-subtitle,
    #brinquedos .ls-section-intro .section-subtitle,
    #pecas-section .ls-section-intro .section-subtitle,
    #combos-section .ls-section-intro .section-subtitle,
    #estabelecimentos .eventos-header .section-subtitle,
    #eventos .eventos-header .section-subtitle,
    #projetos .projetos-header .section-subtitle,
    #clientes-section .clientes-subtitle {
        max-width: 760px;
        padding-left: 15px;
        border-left: 3px solid rgba(0, 105, 218, .55);
        color: #334f70;
        font-size: .97rem;
        font-weight: 650;
        line-height: 1.7;
        opacity: 1;
    }

    /* Filtros maiores, funcionais e bem distribuídos em desktop e mobile. */
    #brinquedos #filtros-bar {
        width: 100%;
        max-width: 1200px;
        margin: 25px auto 36px;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px;
    }

    #brinquedos #filtros-bar .filtro-btn {
        appearance: none;
        width: 100%;
        min-width: 0;
        min-height: 60px;
        padding: 12px 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border: 1px solid rgba(0, 74, 173, .15);
        border-radius: 16px;
        color: #274768;
        background: linear-gradient(145deg, #ffffff, #edf4fc);
        box-shadow:
            0 9px 22px rgba(20, 54, 92, .09),
            inset 0 1px 0 rgba(255, 255, 255, .85);
        font-family: "Poppins", sans-serif;
        font-size: .92rem;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
    }

    #brinquedos #filtros-bar .filtro-btn i {
        display: inline-grid;
        place-items: center;
        flex: 0 0 29px;
        width: 29px;
        height: 29px;
        border-radius: 9px;
        color: #0878f9;
        background: #dceafa;
        font-size: .82rem;
        transition: color .22s ease, background .22s ease, transform .22s ease;
    }

    #brinquedos #filtros-bar .filtro-btn:hover {
        transform: translateY(-3px);
        border-color: rgba(8, 120, 249, .34);
        color: #004aad;
        background: #ffffff;
        box-shadow: 0 14px 28px rgba(0, 74, 173, .14);
    }

    #brinquedos #filtros-bar .filtro-btn:hover i {
        transform: scale(1.06);
    }

    #brinquedos #filtros-bar .filtro-btn.ativo {
        border-color: transparent;
        color: #ffffff;
        background: linear-gradient(135deg, #004aad 0%, #0878f9 100%);
        box-shadow: 0 13px 28px rgba(0, 74, 173, .28);
    }

    #brinquedos #filtros-bar .filtro-btn.ativo i {
        color: #ffffff;
        background: linear-gradient(135deg, #ef4352, #c91f31);
        box-shadow: 0 5px 12px rgba(166, 17, 35, .28);
    }

    #brinquedos #filtros-bar .filtro-btn:focus-visible {
        outline: 3px solid rgba(8, 120, 249, .30);
        outline-offset: 3px;
    }

    /* Combos com largura confortável, altura natural e nenhum texto cortado. */
    #combos-section .scroll-wrapper {
        width: min(1320px, 100%);
        max-width: 1320px;
        padding: 0 54px;
        overflow: visible;
        box-sizing: border-box;
    }

    #combos-section .scroll-container {
        align-items: stretch;
        gap: 22px;
        padding: 22px 4px 30px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
        scrollbar-color: #0878f9 rgba(0, 74, 173, .08);
    }

    #combos-section .oferta-card-link {
        display: flex;
        flex: 0 0 clamp(365px, 31vw, 392px);
        min-width: clamp(365px, 31vw, 392px);
        height: auto;
        align-self: stretch;
        scroll-snap-align: start;
    }

    #combos-section .oferta-card {
        height: 100%;
        min-height: 0;
        border-top: 4px solid #0878f9;
        background:
            radial-gradient(circle at 100% 100%, rgba(8, 120, 249, .08), transparent 38%),
            linear-gradient(160deg, #f9fbff, #edf4fc 78%);
    }

    #combos-section .oferta-card-media {
        height: 244px;
        border-bottom: 1px solid rgba(0, 74, 173, .10);
        background:
            radial-gradient(circle at 18% 20%, rgba(8, 120, 249, .18), transparent 32%),
            radial-gradient(circle at 88% 86%, rgba(230, 57, 70, .10), transparent 28%),
            linear-gradient(145deg, #e7f1fc, #d8e8f8);
    }

    #combos-section .oferta-card-info {
        min-height: 0;
        padding: 23px;
    }

    #combos-section .oferta-card-info h3 {
        display: block;
        min-height: 0;
        margin: 0 0 13px;
        overflow: visible;
        color: #102b4c;
        font-size: 1.24rem;
        line-height: 1.3;
        overflow-wrap: anywhere;
        -webkit-line-clamp: unset;
    }

    #combos-section .oferta-card-benefits {
        margin-bottom: 12px;
    }

    #combos-section .oferta-card-benefits span {
        color: #315274;
        border-color: rgba(0, 74, 173, .11);
        background: #e6f0fb;
    }

    #combos-section .oferta-precos {
        display: grid;
        gap: 10px;
        margin-top: auto;
        padding: 15px;
        border-color: rgba(0, 74, 173, .12);
        background: linear-gradient(145deg, #eaf3fd, #dfeafa);
    }

    #combos-section .oferta-precos .combo-total,
    #combos-section .oferta-precos .combo-preco {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
        margin: 0;
        color: #526b87;
        line-height: 1.4;
    }

    #combos-section .oferta-precos .combo-preco strong {
        display: block;
        color: #087f45;
        font-size: 1.42rem;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    #combos-section .oferta-card .combo-economia {
        margin: 0;
        padding: 10px 11px;
        border: 1px solid rgba(8, 127, 69, .12);
        color: #08733f;
        background: #dff5e9;
        font-size: .76rem;
        line-height: 1.4;
    }

    #combos-section .oferta-card-acoes {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
        align-items: stretch;
        gap: 10px;
        margin-top: 16px;
    }

    #combos-section .oferta-card-acoes .oferta-card-cta {
        min-width: 0;
        min-height: 50px;
        padding: 11px 12px;
        white-space: normal;
        text-align: center;
    }

    #combos-section .scroll-btn.left {
        left: 5px;
    }

    #combos-section .scroll-btn.right {
        right: 5px;
    }

    #combos-section .oferta-card-details {
        color: #004aad;
        border: 1px solid rgba(0, 74, 173, .15);
        background: #e5effb;
    }

    #combos-section .oferta-card-details:hover {
        color: #fff;
        background: linear-gradient(135deg, #004aad, #0878f9);
    }

    #combos-section .combo-economia-neutra {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #34506f;
        border-color: rgba(0, 74, 173, .14);
        background: #e5effb;
    }

    #combos-section .combo-economia-neutra i {
        flex: 0 0 auto;
        color: #0878f9;
    }

    /* Mantém o destaque solicitado para Projetos, agora dentro da paleta uniforme. */
    #projetos .projetos-header {
        border-color: rgba(0, 74, 173, .17);
        background:
            radial-gradient(circle at 92% 0, rgba(230, 57, 70, .12), transparent 17rem),
            radial-gradient(circle at 5% 100%, rgba(8, 120, 249, .16), transparent 19rem),
            linear-gradient(135deg, #dceafa, #f8fbff 72%);
    }

    @media (max-width: 768px) {
        .categorias-eyebrow,
        #promocoes-section .ls-section-kicker,
        #brinquedos .ls-section-kicker,
        #pecas-section .ls-section-kicker,
        #combos-section .ls-section-kicker,
        #estabelecimentos .ls-showcase-tag,
        #eventos .ls-showcase-tag,
        #projetos .ls-showcase-tag,
        #clientes-section .ls-showcase-tag {
            max-width: 100%;
            min-height: 36px;
            padding: 6px 11px 6px 7px;
            font-size: .65rem;
            letter-spacing: .06em;
        }

        .categorias-section .section-subtitle,
        #promocoes-section .ls-section-intro .section-subtitle,
        #brinquedos .ls-section-intro .section-subtitle,
        #pecas-section .ls-section-intro .section-subtitle,
        #combos-section .ls-section-intro .section-subtitle,
        #estabelecimentos .eventos-header .section-subtitle,
        #eventos .eventos-header .section-subtitle,
        #projetos .projetos-header .section-subtitle,
        #clientes-section .clientes-subtitle {
            padding-left: 12px;
            font-size: .84rem;
            line-height: 1.65;
        }

        #brinquedos #filtros-bar {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 9px;
            margin: 21px auto 29px;
        }

        #brinquedos #filtros-bar .filtro-btn {
            min-height: 56px;
            padding: 9px 8px;
            gap: 7px;
            border-radius: 14px;
            font-size: .82rem;
        }

        #brinquedos #filtros-bar .filtro-btn i {
            flex-basis: 27px;
            width: 27px;
            height: 27px;
            font-size: .75rem;
        }

        #brinquedos #filtros-bar .filtro-btn:last-child:nth-child(odd) {
            grid-column: 1 / -1;
        }

        #combos-section .scroll-wrapper {
            width: 100%;
            padding: 0 14px;
            overflow: hidden;
        }

        #combos-section .scroll-container {
            gap: 14px;
            padding: 16px 2px 25px;
        }

        #combos-section .scroll-btn {
            display: none;
        }

        #combos-section .oferta-card-link {
            flex-basis: min(370px, calc(100vw - 32px));
            min-width: min(370px, calc(100vw - 32px));
        }

        #combos-section .oferta-card {
            height: auto;
            min-height: 0;
        }

        #combos-section .oferta-card-media {
            height: 218px;
        }

        #combos-section .oferta-card-info {
            padding: 19px;
        }

        #combos-section .oferta-card-info h3 {
            font-size: 1.12rem;
            line-height: 1.35;
        }

        #combos-section .oferta-card-acoes {
            grid-template-columns: 1fr;
        }
    }

    @media (min-width: 769px) and (max-width: 1050px) {
        #brinquedos #filtros-bar {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

/* A faixa dos indicadores agora continua o mesmo fundo do hero. */
    .ls-home-hero {
        border-bottom: 0;
    }

    .ls-home-stats {
        margin-top: -1px;
        border-top: 0;
        background:
            radial-gradient(circle at 88% -150%, rgba(230, 57, 70, .25), transparent 27rem),
            radial-gradient(circle at 8% 180%, rgba(8, 120, 249, .35), transparent 31rem),
            linear-gradient(140deg, #071426 0%, #0a2447 58%, #063d83 100%);
    }

    /* Três combos inteiros no desktop, mantendo setas e arraste lateral. */
    #combos-section .scroll-wrapper {
        width: min(1320px, 100%);
        max-width: 1320px;
        padding: 0 54px;
        overflow: visible;
        box-sizing: border-box;
    }

    #combos-section .scroll-container {
        display: flex;
        align-items: stretch;
        gap: 22px;
        width: 100%;
        padding: 22px 2px 30px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 2px;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        cursor: grab;
        -webkit-overflow-scrolling: touch;
    }

    #combos-section .scroll-container::-webkit-scrollbar {
        display: none;
    }

    #combos-section .scroll-container.is-dragging {
        cursor: grabbing;
        scroll-behavior: auto;
        scroll-snap-type: none;
        user-select: none;
    }

    #combos-section .oferta-card-link {
        display: flex;
        width: auto;
        min-width: 0;
        max-width: none;
        height: auto;
        flex: 0 0 calc((100% - 44px) / 3);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    #combos-section .oferta-card {
        width: 100%;
        height: 100%;
    }

    #combos-section .scroll-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    #combos-section .scroll-btn.left {
        left: 4px;
    }

    #combos-section .scroll-btn.right {
        right: 4px;
    }

    @media (min-width: 769px) and (max-width: 1050px) {
        #combos-section .oferta-card-link {
            flex-basis: calc((100% - 22px) / 2);
        }
    }

    @media (max-width: 768px) {
        #combos-section .scroll-wrapper {
            width: 100%;
            padding: 0;
            overflow: visible;
        }

        #combos-section .scroll-container {
            gap: 18px;
            padding: 16px 2px 25px;
            overflow-x: auto;
            overflow-y: visible;
        }

        #combos-section .oferta-card-link {
            width: auto;
            min-width: 0;
            max-width: none;
            flex: 0 0 100%;
        }

        #combos-section .scroll-btn {
            display: none !important;
        }
    }

    /* Trilhos horizontais visíveis no desktop. */
    @media (min-width: 769px) {
        .categorias-section .scroll-container,
        #promocoes-section .scroll-container,
        #combos-section .scroll-container {
            scrollbar-width: thin !important;
            scrollbar-color: #0878f9 rgba(0, 74, 173, 0.12) !important;
            scrollbar-gutter: stable !important;
        }

        .categorias-section .scroll-container::-webkit-scrollbar,
        #promocoes-section .scroll-container::-webkit-scrollbar,
        #combos-section .scroll-container::-webkit-scrollbar {
            display: block !important;
            height: 10px !important;
        }

        .categorias-section .scroll-container::-webkit-scrollbar-track,
        #promocoes-section .scroll-container::-webkit-scrollbar-track,
        #combos-section .scroll-container::-webkit-scrollbar-track {
            border-radius: 999px;
            background: rgba(0, 74, 173, 0.12);
        }

        .categorias-section .scroll-container::-webkit-scrollbar-thumb,
        #promocoes-section .scroll-container::-webkit-scrollbar-thumb,
        #combos-section .scroll-container::-webkit-scrollbar-thumb {
            min-width: 48px;
            border: 2px solid transparent;
            border-radius: 999px;
            background: linear-gradient(90deg, #004aad, #0878f9, #ffd700);
            background-clip: padding-box;
        }
    }
