/* =========================
   RESET BASE
========================= */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 100vh !important;
  font-family: 'Helvetica', 'Arial', sans-serif;
  background-color: #ffffff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* =========================
   ESTRUTURA PRINCIPAL
========================= */
#li-main-content {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
  padding: 0 !important;
}

#main {
  flex: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* =========================
   REMOVE ESPAÇO TOPO
========================= */
body.pagina-inicial,
body.pagina-inicial #main,
body.pagina-inicial .container,
body.pagina-inicial section,
body.pagina-inicial section:first-of-type,
body.pagina-inicial .banner,
body.pagina-inicial .banner-home,
body.pagina-inicial .home-banner,
body.pagina-inicial .vitrine-home,
#main > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================
   ESCONDE HEADER SEM QUEBRAR
========================= */
header,
.header,
header.header {
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* =========================
   REMOVE RODAPÉ PADRÃO LOJA INTEGRADA
========================= */
#rodape,
footer.footer {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* =========================
   REMOVE QUALQUER ESPAÇO FINAL
========================= */
body > div:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  height: auto !important;
}

/* =========================
   BOTÃO FLUTUANTE WHATSAPP
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 0 15px #25d366, 0 0 30px #43a047;
  animation: neon-pulse 2s infinite;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.2);
}

@keyframes neon-pulse {
  0% { box-shadow: 0 0 15px #25d366, 0 0 30px #43a047; }
  50% { box-shadow: 0 0 25px #25d366, 0 0 50px #43a047; }
  100% { box-shadow: 0 0 15px #25d366, 0 0 30px #43a047; }
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }
}