.header-box-content {
    text-align: center;
    text-transform: uppercase;
}

#nav-main .element-banner-stripe {
    background: #999;
}

.banner-stripe-item-41{
  margin-top: 30px;  
}

#nav-bottom .element-newsletter-bottom .newsletter-header .desc-newsletter {
    text-align: center;
}

.info-phone:not(.info-whatsapp) {
  display: none !important;
}

.element-product-detail .wrapper-product-price .wrapper-btn-buy .btn.btn-buy, .element-product-detail .wrapper-product-price .wrapper-btn-buy .btn.btn-buy-kit {
    border-radius: 15px !important;
}

/*#footer-main::before {
  content: "Inovação que respeita a natureza: tecnologia HP Latex 7 cores e sem solventes, madeira de reflorestamento em cada criação.";
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #555;
  padding: 30px 20px 0;
  margin-top: 8px;
  font-weight: bold;
}*/

.certificates-item::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url("https://cdn.dlojavirtual.com/static1/113574/galeria/177487769919327.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 20px auto 10px;
}

.element-newsletter-bottom::before {
  content: "";
  display: block;
  width: 1150px;
  height: 400px;
  background-image: url("https://cdn.dlojavirtual.com/static1/113574/galeria/177686531625217.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 20px auto 10px;
}




.title-secundary{
    font-size: 25px !important;
    word-spacing: 10px;
}    

/* teste de badge */
/* Injeção do Badge 10% OFF no PIX para os seletores customizados */

/* 1. Alvo: Containers dos produtos */
.product-list-item, 
.product-compounded {
    position: relative;
    /* Se o layout quebrar um pouco, mude display para inline-block */
}

/* 2. Criação do Badge usando Pseudo-elemento */
.product-list-item::before,
.product-compounded::before {
    content: "10% OFF NO PIX";
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 999; /* Chutando o z-index lá pro alto para o tema não engolir */
    
    /* Design do Badge */
    background-color: #32BCAD; /* Verde PIX */
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 3px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    
    /* Garante que não quebre linha */
    white-space: nowrap;
    pointer-events: none;
}

/* 3. Efeito de Hover (opcional) */
.product-list-item:hover::before,
.product-compounded:hover::before {
    opacity: 0.8;
}

/* 4. Ajuste fino para Mobile */
@media (max-width: 767px) {
    .product-list-item::before,
    .product-compounded::before {
        font-size: 9px;
        padding: 4px 7px;
        top: 5px;
        left: 5px;
    }
}