.elementor-126 .elementor-element.elementor-element-3f4c813{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-03ffc4e */.promo-info {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.price-old {
    font-size: 15px; /* antes ~14px */
    text-decoration: line-through;
    color: #000;
}

.price--new {
    font-size: 19px; /* aumento leve */
    font-weight: bold;
    color: red;
}
/* BLOCO GERAL DO FORMULÁRIO */
.best-form {
    background: #b9d9e6;
    padding: 40px 20px;
    border-radius: 12px;
}

.best-form .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* PRODUTO */
.best-form .product img {
    max-width: 260px;
}

/* ÁREA DO FORMULÁRIO */
.best-form .order {
    background: transparent;
    max-width: 360px;
    width: 100%;
}

/* PREÇOS */
.price-wrap {
    text-align: right;
    margin-bottom: 16px;
}

.price {
    font-size: 14px;
    color: #000;
}

.price-old {
    text-decoration: line-through;
    color: #000;
}

.price--new {
    font-size: 18px;
    font-weight: bold;
    color: red;
}

/* INPUTS */
.input-wrapper {
    margin-bottom: 12px;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
}

/* BOTÃO */
.button-submit {
    width: 100%;
    background: linear-gradient(to bottom, #2bc400, #1e9b00);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    animation: pulse 1.5s infinite;
}

/* TEXTO DO BOTÃO */
.button-submit-text {
    color: #fff;
}

/* ÍCONE DE ENTREGA */
.nw {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    color: #333;
}

/* ANIMAÇÃO DE PULSO (BOTÃO) */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(43, 196, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(43, 196, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(43, 196, 0, 0);
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .best-form .wrap {
        flex-direction: column;
        text-align: center;
    }

    .price-wrap {
        text-align: center;
    }
}
.promo-info {
    text-align: center;
    background: #f6fff9;
    border: 1px solid #cfeedd;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
}

.promo-title {
    color: #1aa36f;
    font-size: 20px;
    margin-bottom: 6px;
}

.promo-text {
    font-size: 14px;
    color: #333;
    margin: 0;
}
.comments-section {
    max-width: 700px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.comments-show-all {
    font-size: 14px;
    text-decoration: none;
    color: #1877f2;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Comentário individual */
.comment {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Avatar */
.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Corpo do comentário */
.comment-body {
    background: #f0f2f5;
    border-radius: 12px;
    padding: 10px 14px;
    width: 100%;
}

/* Nome */
.comment-author {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
}

/* Texto */
.comment-text {
    font-size: 14px;
    margin: 0 0 6px 0;
}

/* Imagem no comentário */
.comment-image {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    margin-top: 8px;
}

/* Rodapé */
.comment-footer {
    display: flex;
    gap: 16px;
    font-size: 13px;
    margin-top: 6px;
}

.comment-footer a {
    text-decoration: none;
    color: #65676b;
}
.tag-pill {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px 4px 4px 0;
    font-size: 14px;
    font-weight: 500;
    color: #1aa36f;          /* VERDE da hashtag */
    background-color: #e9f7f1; /* Fundo verde claro */
    border-radius: 8px;
    text-decoration: none;
    cursor: default;
}
.mini-order-form {
    max-width: 320px;
    background: #f6fff9;
    border: 1px solid #cfeedd;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
}

.mini-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.mini-price .old {
    font-size: 13px;
    text-decoration: line-through;
    color: #555;
}

.mini-price .new {
    font-size: 18px;
    font-weight: bold;
    color: red;
}

.mini-form select,
.mini-form input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.mini-btn {
    width: 100%;
    background: linear-gradient(to bottom, #2bc400, #1e9b00);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    animation: pulse 1.5s infinite;
}

/* Reaproveita a animação */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(43,196,0,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(43,196,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(43,196,0,0); }
}/* End custom CSS */