/* Animação do sino */
@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

.animate-bell {
    animation: shake 0.5s ease-in-out;
}

/* Efeito de glow oscilante no badge */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(220, 53, 69, 0.3);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
        transform: scale(1);
    }
}

#badgeNovidade {
    animation: pulse-glow 1.5s ease-in-out infinite;
    display: block;
}

/* Estilo para as novidades */
.novidade-item {
    border-left: 4px solid #0d6efd;
    transition: all 0.3s ease;
}

.novidade-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.novidade-titulo {
    color: #0d6efd;
    margin-bottom: 10px;
}

.novidade-data {
    font-size: 0.85rem;
    color: #6c757d;
}

.novidade-conteudo {
    color: #212529;
    line-height: 1.6;
}

.novidade-conteudo img {
    max-width: 100%;
    height: auto;
}

.separador-novidades {
    border-top: 1px solid #dee2e6;
    margin: 20px 0;
}