.image-satisfaction-survey {
    position: relative;
}

.image-satisfaction-survey img {
    position: fixed;
    bottom: 15px;
    right: 15px;
    max-width: 140px; /* Ajuste o tamanho conforme necessário */
    z-index: 1000; /* Garante que a imagem fique no topo */
    margin-bottom: 60px;
}

.close-survey-btn {
    position: fixed;
    bottom: 175px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    display: none; /* Escondido por padrão */
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-survey-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Mostrar botão de fechar apenas em dispositivos móveis */
@media (max-width: 768px) {
    .close-survey-btn {
        display: flex;
    }

    .image-satisfaction-survey img {
        max-width: 120px;
    }
}
