.laco-setembro-amarelo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    background-color: transparent;
    border: none;
    width: auto;
    height: auto;
    box-shadow: none;
}

.laco-setembro-amarelo:hover {
    transform: scale(1.1);
}

.laco-setembro-amarelo img {
    width: 100px;
    height: 120px;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

/* Tooltip */
.laco-setembro-amarelo::after {
    content: 'Setembro Amarelo';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.laco-setembro-amarelo:hover::after {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .laco-setembro-amarelo {
        bottom: 15px;
        right: 15px;
    }

    .laco-setembro-amarelo img {
        width: 80px;
        height: 100px;
    }
}