/* News Teaser (Padrão Noticioso 2026) */
.news-teaser {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-lg);
    border-left: 5px solid #209869; /* Verde Mega-Sena */
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
}
.news-tag {
    background: #dc2626; /* Vermelho para Urgência */
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

/* Status do Sorteio */
.status-badge {
    text-align: center;
    background: #f0fdf4;
    color: #166534;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid #bbf7d0;
}

/* Bolas do Sorteio */
.mega-ball-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.ball {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #209869, #166534);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 2px solid #fff;
}

/* Rateio */
.rateio-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
}
.rateio-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}
.rateio-row:last-child { border-bottom: none; }
.premio { color: #166534; font-weight: 800; font-size: 1.2rem; }
.premio-sec { color: var(--text-dark); font-weight: 700; }

/* Botão WhatsApp Viral */
.whatsapp-viral {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}
.whatsapp-viral:hover { transform: scale(1.1); }

@media (max-width: 600px) {
    .ball { width: 50px; height: 50px; font-size: 1.3rem; }
}