#toastContainer {
    position: fixed;
    bottom: 100px;
    left: 16px;
    z-index: 1080; /* acima do conteúdo; ajuste se quiser abaixo do modal */
    max-width: 92vw;
}
.app-toast {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid #28a745;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 0.375rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
}
.app-toast.show {
    opacity: 1;
    transform: translateY(0);
}
.app-toast .toast-icon {
    margin-right: 0.5rem;
    line-height: 1;
    font-size: 1.25rem;
}
.app-toast .toast-body {
    font-size: 0.95rem;
}
.app-toast .toast-time {
    font-size: 0.75rem;
    color: #6c757d;
}
.app-toast .close {
    margin-left: 0.5rem;
    opacity: 0.5;
}

#activityFeed {
    max-height: 160px;
    overflow: auto;
}
#activityFeedList li {
    display: flex;
    align-items: flex-start;
    padding: 0.35rem 0.25rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.075);
}
#activityFeedList li:last-child {
    border-bottom: 0;
}
#activityFeedList .feed-icon {
    margin-right: 0.5rem;
    line-height: 1;
}
#activityFeedList .feed-text {
    flex: 1;
    font-size: 0.9rem;
}
#activityFeedList .feed-time {
    font-size: 0.75rem;
    color: #6c757d;
}
.whats {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    animation: shakeX 2s infinite;
}
.whats a {
    background-color: #00bf49;
    color: #fff;
    padding: 10px 15px;
    border-radius: 40px;
    display: block;
}
.whats a:hover {
    background-color: #13d45d;
}

.oferta-promo {
    color: #fff;
    background: #71b542;
    background: linear-gradient(90deg, rgba(113, 181, 66, 1) 0%, rgba(47, 115, 8, 1) 100%);
    color: #fff;
    font-size: 20px;
    padding: 10px;
    display: inline-block;
    border-radius: 20px;
    font-weight: bold;
}

.anima-pulse {
    box-shadow: 0 0 0 0 rgba(125, 218, 122, 0.9);
    animation: anima-pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
    will-change: transform, opacity, filter;
    transform: translateZ(0);
}

/* Barra fixa de oferta (top: 50px) */
.promo-bar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 1060; /* acima do conteúdo, abaixo do modal/backdrop (1050/1060~). Ajuste se precisar */
    display: flex;
    justify-content: center;
    pointer-events: none; /* evita bloquear cliques no conteúdo abaixo */
}
.promo-bar .promo-bar-inner {
    pointer-events: auto; /* itens internos continuam clicáveis se você quiser links/CTAs */
    background: #56a904; /* bg escuro (combina com BS 4) */
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px; /* pílula */
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.promo-bar .label {
    opacity: 0.8;
    margin-right: 0.25rem;
}
.promo-bar .value {
    font-weight: 700;
}
.promo-bar .sep {
    opacity: 0.5;
    margin: 0 0.35rem;
}
.promo-bar .suffix {
    opacity: 0.8;
    margin-left: 0.25rem;
}

@keyframes anima-pulse {
    to {
        box-shadow: 0 0 0 20px rgba(220, 220, 220, 0);
    }
}
@media (max-width: 575px) {
    .eye-feature-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 768px) {
    .eye-feature-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
