/* ============================
   PREÇOS – HIERARQUIA PREMIUM
   ============================ */

.preco-produto,
.preco-produto * {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}

/* PREÇO PROMOCIONAL (principal) */
strong.preco-promocional {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-left: 4px;
}

/* PREÇO CHEIO (riscado, menor e elegante) */
s.preco-venda {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #9a9a9a !important;
    text-decoration: line-through;
}

/* ============================
   AJUSTE FINO PARA MOBILE
   ============================ */
@media (max-width: 768px) {
    strong.preco-promocional {
        font-size: 18px !important;
    }

    s.preco-venda {
        font-size: 14px !important;
    }
}

/* ============================
   TARJA TOPO – LOOP COMPLETO
   ============================ */

div.info-destaque {
    overflow: hidden;
    position: relative;
}

/* ícone + texto andando juntos */
div.info-destaque a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding-right: 100%;
    animation: moveLTR 24s linear infinite;
}

/* garante linha única */
div.info-destaque a * {
    white-space: nowrap;
    margin-right: 6px;
}

@keyframes moveLTR {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
