.barra-bolao-lotofacil {
    width: 100%;
    background-color: #d1b009;
    animation: trocaCor 1s infinite alternate;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.barra-bolao-lotofacil a {
    text-decoration: none;
}

.barra-bolao-lotofacil-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 6px 15px; /* altura próxima a <p> */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    text-align: center;
}

.barra-bolao-texto {
    margin: 0;
    font-weight: 600;
}

.barra-bolao-texto span {
    font-weight: 800;
}

.barra-bolao-btn {
    padding: 4px 12px;
    border-radius: 20px;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    background:  #00772f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.barra-bolao-btn:hover {
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
}

.barra-bolao-btn i {
    font-size: 15px;
}

/* ---- ANIMAÇÃO DE COR ---- */
@keyframes trocaCor {
    0%   { background-color: #d29404; }
    100% { background: linear-gradient(135deg, #0F675B, #062D2A); }
}
